/*
Theme Name: neXor ISP Platform
Theme URI: https://www.nexor-billing.com/
Author: neXor
Author URI: https://www.nexor-billing.com/
Description: Modern, fully editable marketing theme for the neXor ISP billing and RADIUS management platform.
Version: 2.3.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: nexor
*/

:root {
	--nx-bg: #070b14;
	--nx-bg-soft: #0d1422;
	--nx-card: rgba(18, 28, 46, 0.78);
	--nx-card-solid: #111c2e;
	--nx-border: rgba(148, 163, 184, 0.16);
	--nx-border-bright: rgba(56, 189, 248, 0.32);
	--nx-text: #f1f5f9;
	--nx-muted: #9aa9bd;
	--nx-dim: #68788f;
	--nx-accent: #38bdf8;
	--nx-accent-dark: #0284c7;
	--nx-green: #34d399;
	--nx-violet: #a78bfa;
	--nx-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
	--nx-radius: 24px;
	--nx-radius-sm: 15px;
	--nx-container: 1180px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	margin: 0;
	background: var(--nx-bg);
	color: var(--nx-text);
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	color: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	clip: auto;
	background: #fff;
	color: #08111f;
	border-radius: 8px;
}

.nx-container {
	width: min(calc(100% - 40px), var(--nx-container));
	margin-inline: auto;
}

.nx-section {
	position: relative;
	padding: 112px 0;
	overflow: hidden;
}

.nx-section--soft {
	background: linear-gradient(180deg, rgba(13, 20, 34, 0.8), rgba(7, 11, 20, 0.25));
	border-block: 1px solid rgba(148, 163, 184, 0.08);
}

.nx-grid-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(56, 189, 248, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 189, 248, 0.035) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 75%, transparent);
}

.nx-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 18px;
	color: var(--nx-accent);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.3;
	text-transform: uppercase;
}

.nx-kicker::before {
	width: 22px;
	height: 1px;
	content: "";
	background: currentColor;
	box-shadow: 5px 0 14px currentColor;
}

.nx-section-heading {
	max-width: 760px;
	margin-bottom: 54px;
}

.nx-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.nx-section-heading--center .nx-kicker::before {
	display: none;
}

.nx-section-heading h2,
.nx-cta h2,
.entry-title {
	margin: 0;
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: clamp(2rem, 4.6vw, 3.6rem);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.nx-section-heading p {
	max-width: 650px;
	margin: 22px 0 0;
	color: var(--nx-muted);
	font-size: 1.05rem;
	line-height: 1.8;
}

.nx-section-heading--center p {
	margin-inline: auto;
}

.nx-btn {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 12px;
	cursor: pointer;
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nx-btn:hover,
.nx-btn:focus-visible {
	transform: translateY(-2px);
}

.nx-btn--primary {
	background: linear-gradient(135deg, var(--nx-accent), #5eead4);
	box-shadow: 0 12px 34px rgba(56, 189, 248, 0.22);
	color: #06111c;
}

.nx-btn--primary:hover,
.nx-btn--primary:focus-visible {
	box-shadow: 0 17px 44px rgba(56, 189, 248, 0.34);
}

.nx-btn--ghost {
	border-color: var(--nx-border);
	background: rgba(255, 255, 255, 0.025);
	color: var(--nx-text);
}

.nx-btn--ghost:hover,
.nx-btn--ghost:focus-visible {
	border-color: rgba(56, 189, 248, 0.5);
	background: rgba(56, 189, 248, 0.08);
}

.nx-btn svg {
	width: 18px;
	height: 18px;
}

/* Header */
.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	border-bottom: 1px solid transparent;
	transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
	border-color: var(--nx-border);
	background: rgba(7, 11, 20, 0.86);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.nx-header-inner {
	display: flex;
	min-height: 78px;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
	padding: 7px 11px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.custom-logo {
	width: auto;
	max-height: 30px;
}

.nx-brand-logo {
	display: inline-flex;
	align-items: center;
	padding: 7px 11px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.nx-brand-logo img {
	width: auto;
	height: 30px;
}

.nx-brand-logo--footer img {
	height: 34px;
}

.nx-wordmark {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.nx-wordmark-mark {
	display: grid;
	width: 37px;
	height: 37px;
	place-items: center;
	border: 1px solid var(--nx-border-bright);
	border-radius: 11px;
	background: linear-gradient(145deg, rgba(56, 189, 248, 0.2), rgba(167, 139, 250, 0.08));
	box-shadow: inset 0 0 16px rgba(56, 189, 248, 0.12);
}

.nx-wordmark-mark svg {
	width: 22px;
	height: 22px;
	color: var(--nx-accent);
}

.nx-nav-wrap {
	display: flex;
	align-items: center;
	gap: 26px;
}

.nx-nav ul {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nx-nav a {
	position: relative;
	color: #bac6d6;
	font-size: 0.88rem;
	font-weight: 700;
}

.nx-nav a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	content: "";
	background: var(--nx-accent);
	border-radius: 2px;
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.nx-nav a:hover,
.nx-nav a:focus-visible,
.nx-nav .current-menu-item > a {
	color: var(--nx-text);
}

.nx-nav a:hover::after,
.nx-nav a:focus-visible::after,
.nx-nav .current-menu-item > a::after {
	transform: scaleX(1);
}

.nx-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 1px solid var(--nx-border);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.03);
	cursor: pointer;
}

.nx-menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
	border-radius: 2px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.nx-menu-toggle[aria-expanded="true"] span:first-child {
	transform: translateY(7px) rotate(45deg);
}

.nx-menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nx-menu-toggle[aria-expanded="true"] span:last-child {
	transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.nx-hero {
	position: relative;
	min-height: 860px;
	padding: 168px 0 110px;
	overflow: hidden;
}

.nx-hero::before {
	position: absolute;
	top: -380px;
	left: 50%;
	width: 930px;
	height: 760px;
	content: "";
	background: radial-gradient(ellipse, rgba(56, 189, 248, 0.23), rgba(167, 139, 250, 0.07) 45%, transparent 70%);
	filter: blur(10px);
	transform: translateX(-50%);
}

.nx-hero-grid {
	position: relative;
	display: grid;
	align-items: center;
	gap: 52px;
	grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
}

.nx-hero-copy {
	position: relative;
	z-index: 2;
}

.nx-hero h1 {
	max-width: 700px;
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(3.2rem, 6.2vw, 5.8rem);
	font-weight: 700;
	letter-spacing: -0.062em;
	line-height: 0.98;
}

.nx-gradient-text {
	background: linear-gradient(100deg, #f8fafc 5%, var(--nx-accent) 50%, #5eead4 95%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.nx-hero-copy > p {
	max-width: 650px;
	margin: 27px 0 0;
	color: var(--nx-muted);
	font-size: clamp(1.02rem, 1.7vw, 1.16rem);
	line-height: 1.85;
}

.nx-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 34px;
}

.nx-hero-note {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 25px;
	color: var(--nx-dim);
	font-size: 0.78rem;
	font-weight: 700;
}

.nx-hero-note::before {
	width: 7px;
	height: 7px;
	content: "";
	background: var(--nx-green);
	border-radius: 50%;
	box-shadow: 0 0 14px var(--nx-green);
}

.nx-dashboard {
	position: relative;
	z-index: 1;
	padding: 12px;
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 27px;
	background: rgba(12, 19, 32, 0.76);
	box-shadow: var(--nx-shadow), inset 0 1px rgba(255, 255, 255, 0.05);
	transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

/* Real product screens */
.nx-product-showcase {
	background:
		radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.08), transparent 34%),
		radial-gradient(circle at 85% 72%, rgba(99, 102, 241, 0.09), transparent 34%);
}

.nx-product-frame {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 18px;
	background: #070e1d;
	box-shadow: 0 24px 75px rgba(0, 0, 0, 0.4);
}

.nx-product-frame::after {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.nx-product-frame img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: top left;
}

.nx-product-frame--hero {
	padding: 8px;
	border-radius: 24px;
	background: rgba(10, 18, 32, 0.9);
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48), 0 0 70px rgba(56, 189, 248, 0.08);
	transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}

.nx-product-frame--hero img {
	border-radius: 15px;
}

.nx-product-frame-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 4px 8px 11px;
	color: var(--nx-muted);
	font-size: 0.65rem;
	font-weight: 700;
}

.nx-product-frame-bar span {
	display: flex;
	align-items: center;
	gap: 7px;
}

.nx-product-frame-bar i {
	width: 7px;
	height: 7px;
	background: var(--nx-green);
	border-radius: 50%;
	box-shadow: 0 0 12px var(--nx-green);
}

.nx-product-frame-bar strong {
	color: var(--nx-accent);
	font-size: 0.58rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nx-screen-story {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nx-screen-card {
	display: grid;
	gap: 28px;
	padding: 30px;
	border: 1px solid var(--nx-border);
	border-radius: var(--nx-radius);
	background: linear-gradient(145deg, rgba(18, 28, 46, 0.88), rgba(9, 15, 26, 0.78));
}

.nx-screen-card--wide {
	align-items: center;
	grid-column: 1 / -1;
	grid-template-columns: 0.7fr 1.3fr;
}

.nx-screen-copy span {
	color: var(--nx-accent);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.nx-screen-copy h3 {
	margin: 12px 0 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.4rem, 2.6vw, 2.15rem);
	letter-spacing: -0.035em;
	line-height: 1.15;
}

.nx-screen-copy p {
	margin: 15px 0 0;
	color: var(--nx-muted);
	font-size: 0.88rem;
	line-height: 1.75;
}

/* SMS integration */
.nx-sms-section {
	background:
		radial-gradient(circle at 80% 18%, rgba(52, 211, 153, 0.08), transparent 32%),
		radial-gradient(circle at 12% 78%, rgba(56, 189, 248, 0.08), transparent 34%);
}

.nx-sms-grid {
	display: grid;
	gap: 48px;
	align-items: center;
	grid-template-columns: 1fr 1.05fr;
}

.nx-sms-features {
	display: grid;
	gap: 16px;
	margin-top: 28px;
}

.nx-sms-feature {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: start;
	padding: 14px 16px;
	border: 1px solid var(--nx-border);
	border-radius: var(--nx-radius-sm);
	background: rgba(12, 20, 34, 0.72);
}

.nx-sms-feature > span {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	margin-top: 2px;
	border-radius: 999px;
	background: rgba(52, 211, 153, 0.14);
	color: var(--nx-green);
}

.nx-sms-feature svg {
	width: 14px;
	height: 14px;
}

.nx-sms-feature h3 {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 700;
}

.nx-sms-feature p {
	margin: 4px 0 0;
	color: var(--nx-muted);
	font-size: 0.84rem;
	line-height: 1.65;
}

.nx-sms-visual {
	display: grid;
	gap: 16px;
}

.nx-product-frame--sms {
	padding: 8px;
	border-radius: 22px;
	background: rgba(10, 18, 32, 0.92);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 50px rgba(52, 211, 153, 0.06);
}

.nx-product-frame--sms img {
	border-radius: 14px;
}

.nx-sms-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.nx-sms-badges span {
	padding: 7px 12px;
	border: 1px solid rgba(52, 211, 153, 0.22);
	border-radius: 999px;
	background: rgba(52, 211, 153, 0.08);
	color: #b7f5d8;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.nx-dashboard::before {
	position: absolute;
	inset: -1px;
	z-index: -1;
	content: "";
	background: linear-gradient(130deg, rgba(56, 189, 248, 0.38), transparent 35%, transparent 65%, rgba(167, 139, 250, 0.24));
	border-radius: inherit;
	filter: blur(12px);
	opacity: 0.42;
}

.nx-dashboard-shell {
	overflow: hidden;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 18px;
	background: #0a1220;
}

.nx-dashboard-top {
	display: flex;
	height: 47px;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	border-bottom: 1px solid var(--nx-border);
}

.nx-dashboard-brand {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.68rem;
	font-weight: 800;
}

.nx-dashboard-brand i {
	width: 18px;
	height: 18px;
	background: linear-gradient(145deg, var(--nx-accent), #5eead4);
	border-radius: 5px;
}

.nx-dashboard-dots {
	display: flex;
	gap: 5px;
}

.nx-dashboard-dots i {
	width: 5px;
	height: 5px;
	background: #44536a;
	border-radius: 50%;
}

.nx-dashboard-body {
	display: grid;
	min-height: 405px;
	grid-template-columns: 74px 1fr;
}

.nx-dashboard-side {
	padding: 18px 13px;
	border-right: 1px solid var(--nx-border);
}

.nx-dashboard-side span {
	display: block;
	height: 8px;
	margin: 0 0 16px;
	background: #1e2a3d;
	border-radius: 8px;
}

.nx-dashboard-side span:first-child {
	background: rgba(56, 189, 248, 0.65);
}

.nx-dashboard-main {
	padding: 21px;
}

.nx-dashboard-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 17px;
}

.nx-dashboard-heading strong {
	font-size: 0.78rem;
}

.nx-live {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--nx-green);
	font-size: 0.53rem;
	font-weight: 800;
	text-transform: uppercase;
}

.nx-live::before {
	width: 5px;
	height: 5px;
	content: "";
	background: currentColor;
	border-radius: 50%;
	box-shadow: 0 0 8px currentColor;
}

.nx-dashboard-cards {
	display: grid;
	gap: 9px;
	grid-template-columns: repeat(3, 1fr);
}

.nx-mini-card {
	padding: 13px;
	border: 1px solid var(--nx-border);
	border-radius: 10px;
	background: #0f192a;
}

.nx-mini-card small {
	display: block;
	margin-bottom: 6px;
	color: var(--nx-dim);
	font-size: 0.48rem;
	font-weight: 800;
	text-transform: uppercase;
}

.nx-mini-card strong {
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.04rem;
}

.nx-mini-card em {
	display: block;
	margin-top: 4px;
	color: var(--nx-green);
	font-size: 0.48rem;
	font-style: normal;
}

.nx-chart-card {
	margin-top: 10px;
	padding: 14px;
	border: 1px solid var(--nx-border);
	border-radius: 12px;
	background: #0f192a;
}

.nx-chart-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #cbd5e1;
	font-size: 0.58rem;
	font-weight: 800;
}

.nx-chart {
	width: 100%;
	height: 100px;
	margin-top: 12px;
}

.nx-chart-grid line {
	stroke: rgba(148, 163, 184, 0.12);
}

.nx-chart-path {
	fill: none;
	stroke: var(--nx-accent);
	stroke-width: 2.2;
}

.nx-chart-area {
	fill: url("#chartGradient");
}

.nx-activity {
	display: grid;
	gap: 7px;
	margin-top: 10px;
}

.nx-activity-row {
	display: grid;
	align-items: center;
	gap: 9px;
	padding: 8px 10px;
	border: 1px solid rgba(148, 163, 184, 0.1);
	border-radius: 8px;
	color: var(--nx-dim);
	font-size: 0.48rem;
	grid-template-columns: 7px 1fr auto;
}

.nx-activity-row i {
	width: 6px;
	height: 6px;
	background: var(--nx-green);
	border-radius: 50%;
}

.nx-activity-row:nth-child(2) i {
	background: var(--nx-accent);
}

/* Overview */
.nx-overview-grid {
	display: grid;
	align-items: end;
	gap: 70px;
	grid-template-columns: 0.9fr 1.1fr;
}

.nx-overview-grid .nx-section-heading {
	margin: 0;
}

.nx-stats-grid {
	display: grid;
	border-top: 1px solid var(--nx-border);
	border-left: 1px solid var(--nx-border);
	grid-template-columns: repeat(2, 1fr);
}

.nx-stat {
	min-height: 155px;
	padding: 28px;
	border-right: 1px solid var(--nx-border);
	border-bottom: 1px solid var(--nx-border);
	background: linear-gradient(145deg, rgba(18, 28, 46, 0.6), rgba(12, 19, 32, 0.25));
}

.nx-stat strong {
	display: block;
	margin-bottom: 10px;
	color: var(--nx-accent);
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	letter-spacing: -0.06em;
	line-height: 1;
}

.nx-stat span {
	color: var(--nx-muted);
	font-size: 0.82rem;
	font-weight: 700;
}

/* Features */
.nx-feature-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, 1fr);
}

.nx-feature-card {
	position: relative;
	min-height: 315px;
	padding: 30px;
	overflow: hidden;
	border: 1px solid var(--nx-border);
	border-radius: var(--nx-radius-sm);
	background: linear-gradient(145deg, rgba(18, 28, 46, 0.84), rgba(11, 18, 30, 0.74));
	transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.nx-feature-card::after {
	position: absolute;
	right: -80px;
	bottom: -100px;
	width: 190px;
	height: 190px;
	content: "";
	background: radial-gradient(circle, rgba(56, 189, 248, 0.13), transparent 65%);
	transition: transform 250ms ease;
}

.nx-feature-card:hover {
	border-color: var(--nx-border-bright);
	background: linear-gradient(145deg, rgba(21, 35, 56, 0.96), rgba(11, 18, 30, 0.86));
	transform: translateY(-5px);
}

.nx-feature-card:hover::after {
	transform: translate(-15px, -15px) scale(1.15);
}

.nx-feature-icon {
	display: grid;
	width: 50px;
	height: 50px;
	margin-bottom: 47px;
	place-items: center;
	border: 1px solid rgba(56, 189, 248, 0.24);
	border-radius: 14px;
	background: rgba(56, 189, 248, 0.08);
	color: var(--nx-accent);
}

.nx-feature-icon svg {
	width: 24px;
	height: 24px;
}

.nx-feature-label {
	display: block;
	margin-bottom: 10px;
	color: var(--nx-accent);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.nx-feature-card h3 {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.25rem;
	letter-spacing: -0.025em;
}

.nx-feature-card p {
	margin: 14px 0 0;
	color: var(--nx-muted);
	font-size: 0.88rem;
	line-height: 1.75;
}

/* Roles */
.nx-roles-layout {
	display: grid;
	align-items: center;
	gap: 80px;
	grid-template-columns: 0.82fr 1.18fr;
}

.nx-roles-copy .nx-section-heading {
	margin: 0;
}

.nx-role-flow {
	position: relative;
}

.nx-role-flow::before {
	position: absolute;
	top: 34px;
	bottom: 34px;
	left: 28px;
	width: 1px;
	content: "";
	background: linear-gradient(var(--nx-accent), rgba(56, 189, 248, 0.08));
}

.nx-role-item {
	position: relative;
	display: grid;
	align-items: center;
	gap: 20px;
	margin-bottom: 12px;
	padding: 18px 22px 18px 76px;
	border: 1px solid var(--nx-border);
	border-radius: 14px;
	background: rgba(15, 25, 42, 0.7);
	transition: border-color 180ms ease, transform 180ms ease;
}

.nx-role-item:last-child {
	margin-bottom: 0;
}

.nx-role-item:hover {
	border-color: var(--nx-border-bright);
	transform: translateX(5px);
}

.nx-role-number {
	position: absolute;
	z-index: 1;
	left: 13px;
	display: grid;
	width: 31px;
	height: 31px;
	place-items: center;
	border: 1px solid rgba(56, 189, 248, 0.28);
	border-radius: 9px;
	background: #0b1524;
	color: var(--nx-accent);
	font-family: "Space Grotesk", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
}

.nx-role-item h3 {
	margin: 0;
	font-size: 0.95rem;
}

.nx-role-item p {
	margin: 4px 0 0;
	color: var(--nx-muted);
	font-size: 0.76rem;
	line-height: 1.55;
}

/* Mobile app */
.nx-mobile-app {
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 45%, rgba(56, 189, 248, 0.11), transparent 32%),
		linear-gradient(180deg, rgba(8, 14, 25, 0.35), rgba(12, 22, 37, 0.78));
}

.nx-mobile-grid {
	position: relative;
	display: grid;
	align-items: center;
	gap: 90px;
	grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
}

.nx-mobile-copy {
	position: relative;
	z-index: 2;
}

.nx-mobile-features {
	display: grid;
	gap: 15px;
	margin-top: 34px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nx-mobile-feature {
	display: flex;
	gap: 13px;
	padding: 18px;
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 14px;
	background: rgba(13, 23, 39, 0.68);
}

.nx-mobile-feature > span {
	display: grid;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border-radius: 9px;
	background: rgba(56, 189, 248, 0.12);
	color: var(--nx-accent);
	place-items: center;
}

.nx-mobile-feature svg {
	width: 15px;
	height: 15px;
}

.nx-mobile-feature h3 {
	margin: 2px 0 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: 0.9rem;
}

.nx-mobile-feature p {
	margin: 7px 0 0;
	color: var(--nx-muted);
	font-size: 0.74rem;
	line-height: 1.6;
}

.nx-mobile-visual {
	position: relative;
	min-height: 610px;
}

.nx-phone {
	position: absolute;
	top: 0;
	left: 50%;
	width: 300px;
	padding: 10px;
	border: 1px solid rgba(148, 163, 184, 0.3);
	border-radius: 42px;
	background: #050914;
	box-shadow: 0 38px 100px rgba(0, 0, 0, 0.52), 0 0 70px rgba(56, 189, 248, 0.1);
	transform: translateX(-50%) rotate(2deg);
}

.nx-phone-speaker {
	position: absolute;
	top: 19px;
	left: 50%;
	z-index: 3;
	width: 76px;
	height: 20px;
	border-radius: 12px;
	background: #03050a;
	transform: translateX(-50%);
}

.nx-phone-screen {
	min-height: 555px;
	padding: 52px 18px 22px;
	overflow: hidden;
	border-radius: 33px;
	background:
		radial-gradient(circle at 85% 5%, rgba(56, 189, 248, 0.18), transparent 30%),
		#0b1423;
}

.nx-phone-header {
	display: flex;
	align-items: center;
	gap: 9px;
}

.nx-phone-header img {
	width: 30px;
	height: 30px;
	border-radius: 9px;
	object-fit: cover;
}

.nx-phone-header div {
	display: grid;
	gap: 1px;
}

.nx-phone-header strong {
	font-family: "Space Grotesk", sans-serif;
	font-size: 0.78rem;
}

.nx-phone-header span,
.nx-phone-greeting span,
.nx-phone-stats span {
	color: var(--nx-muted);
	font-size: 0.55rem;
}

.nx-phone-header i {
	width: 7px;
	height: 7px;
	margin-left: auto;
	border-radius: 50%;
	background: var(--nx-green);
	box-shadow: 0 0 10px rgba(52, 211, 153, 0.7);
}

.nx-phone-greeting {
	display: grid;
	gap: 7px;
	margin-top: 48px;
}

.nx-phone-greeting strong {
	max-width: 210px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.45rem;
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.nx-phone-stats {
	display: grid;
	gap: 9px;
	margin-top: 28px;
	grid-template-columns: repeat(2, 1fr);
}

.nx-phone-stats div {
	display: grid;
	gap: 7px;
	padding: 14px;
	border: 1px solid rgba(148, 163, 184, 0.13);
	border-radius: 13px;
	background: rgba(16, 29, 49, 0.82);
}

.nx-phone-stats strong {
	color: #e7f7ff;
	font-size: 1rem;
}

.nx-phone-actions {
	display: grid;
	gap: 8px;
	margin-top: 17px;
	grid-template-columns: repeat(2, 1fr);
}

.nx-phone-actions span {
	padding: 14px 7px;
	border: 1px solid rgba(56, 189, 248, 0.12);
	border-radius: 11px;
	background: rgba(56, 189, 248, 0.06);
	color: #cbd5e1;
	font-size: 0.58rem;
	font-weight: 700;
	text-align: center;
}

.nx-push-card {
	position: absolute;
	z-index: 4;
	display: flex;
	border: 1px solid rgba(148, 163, 184, 0.24);
	background: rgba(13, 23, 39, 0.94);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(16px);
}

.nx-push-card--primary {
	right: -18px;
	bottom: 80px;
	width: 285px;
	gap: 12px;
	padding: 16px;
	border-radius: 18px;
}

.nx-push-icon {
	display: grid;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border-radius: 10px;
	background: rgba(52, 211, 153, 0.14);
	color: var(--nx-green);
	place-items: center;
}

.nx-push-icon svg {
	width: 17px;
	height: 17px;
}

.nx-push-card div {
	display: grid;
	gap: 3px;
}

.nx-push-card small {
	color: var(--nx-accent);
	font-size: 0.56rem;
	font-weight: 700;
}

.nx-push-card strong {
	font-size: 0.78rem;
}

.nx-push-card p {
	margin: 2px 0 0;
	color: var(--nx-muted);
	font-size: 0.62rem;
	line-height: 1.45;
}

.nx-push-card--secondary {
	bottom: 22px;
	left: -10px;
	align-items: center;
	gap: 10px;
	padding: 12px 15px;
	border-radius: 14px;
}

.nx-push-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #f59e0b;
	box-shadow: 0 0 12px rgba(245, 158, 11, 0.55);
}

/* Integrations */
.nx-integration-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, 1fr);
}

.nx-integration {
	display: flex;
	min-height: 130px;
	align-items: flex-start;
	gap: 16px;
	padding: 24px;
	border: 1px solid var(--nx-border);
	border-radius: 15px;
	background: rgba(13, 22, 37, 0.64);
}

.nx-integration-mark {
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	place-items: center;
	border-radius: 11px;
	background: linear-gradient(145deg, rgba(56, 189, 248, 0.14), rgba(167, 139, 250, 0.12));
	color: var(--nx-accent);
	font-family: "Space Grotesk", sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
}

.nx-integration h3 {
	margin: 1px 0 5px;
	font-size: 0.9rem;
}

.nx-integration p {
	margin: 0;
	color: var(--nx-muted);
	font-size: 0.72rem;
	line-height: 1.6;
}

/* Pricing */
.nx-pricing-grid {
	display: grid;
	max-width: 930px;
	align-items: stretch;
	gap: 18px;
	margin: 0 auto;
	grid-template-columns: repeat(2, 1fr);
}

.nx-plan {
	position: relative;
	display: flex;
	min-height: 590px;
	flex-direction: column;
	padding: 38px;
	border: 1px solid var(--nx-border);
	border-radius: var(--nx-radius);
	background: linear-gradient(155deg, rgba(18, 28, 46, 0.95), rgba(9, 15, 26, 0.9));
}

.nx-plan--featured {
	border-color: rgba(56, 189, 248, 0.48);
	box-shadow: 0 24px 80px rgba(2, 132, 199, 0.13);
}

.nx-plan--featured::before {
	position: absolute;
	inset: -1px;
	z-index: -1;
	content: "";
	background: linear-gradient(145deg, rgba(56, 189, 248, 0.25), transparent 45%, rgba(94, 234, 212, 0.1));
	border-radius: inherit;
	filter: blur(17px);
}

.nx-plan-badge {
	align-self: flex-start;
	margin: -16px 0 21px;
	padding: 7px 11px;
	background: rgba(56, 189, 248, 0.12);
	border-radius: 999px;
	color: var(--nx-accent);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.nx-plan h3 {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.5rem;
	letter-spacing: -0.03em;
}

.nx-plan-description {
	min-height: 64px;
	margin: 11px 0 25px;
	color: var(--nx-muted);
	font-size: 0.82rem;
}

.nx-price {
	display: flex;
	align-items: flex-end;
	gap: 9px;
	padding-bottom: 23px;
	border-bottom: 1px solid var(--nx-border);
}

.nx-price strong {
	font-family: "Space Grotesk", sans-serif;
	font-size: 3.1rem;
	letter-spacing: -0.06em;
	line-height: 1;
}

.nx-price span {
	max-width: 115px;
	padding-bottom: 3px;
	color: var(--nx-dim);
	font-size: 0.65rem;
	line-height: 1.35;
}

.nx-plan-capacity {
	margin: 22px 0 15px;
	color: #dce5f0;
	font-size: 0.76rem;
	font-weight: 800;
}

.nx-plan ul {
	display: grid;
	gap: 11px;
	margin: 0 0 29px;
	padding: 0;
	list-style: none;
}

.nx-plan li {
	position: relative;
	padding-left: 25px;
	color: var(--nx-muted);
	font-size: 0.76rem;
}

.nx-plan li::before {
	position: absolute;
	top: 5px;
	left: 0;
	width: 14px;
	height: 14px;
	content: "✓";
	background: rgba(52, 211, 153, 0.12);
	border-radius: 50%;
	color: var(--nx-green);
	font-size: 9px;
	font-weight: 900;
	line-height: 14px;
	text-align: center;
}

.nx-plan .nx-btn {
	width: 100%;
	margin-top: auto;
}

.nx-pricing-note {
	max-width: 760px;
	margin: 27px auto 0;
	color: var(--nx-dim);
	font-size: 0.72rem;
	text-align: center;
}

/* FAQ */
.nx-faq-wrap {
	max-width: 850px;
	margin: 0 auto;
	border-top: 1px solid var(--nx-border);
}

.nx-faq {
	border-bottom: 1px solid var(--nx-border);
}

.nx-faq button {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 25px 4px;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.04rem;
	font-weight: 600;
	text-align: left;
}

.nx-faq button span:last-child {
	position: relative;
	width: 27px;
	height: 27px;
	flex: 0 0 27px;
	border: 1px solid var(--nx-border);
	border-radius: 8px;
}

.nx-faq button span:last-child::before,
.nx-faq button span:last-child::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 1px;
	content: "";
	background: var(--nx-accent);
	transform: translate(-50%, -50%);
	transition: transform 180ms ease;
}

.nx-faq button span:last-child::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.nx-faq button[aria-expanded="true"] span:last-child::after {
	transform: translate(-50%, -50%) rotate(0);
}

.nx-faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 220ms ease;
}

.nx-faq-answer > div {
	overflow: hidden;
}

.nx-faq-answer p {
	margin: 0;
	padding: 0 50px 25px 4px;
	color: var(--nx-muted);
	font-size: 0.9rem;
}

.nx-faq button[aria-expanded="true"] + .nx-faq-answer {
	grid-template-rows: 1fr;
}

/* CTA */
.nx-cta {
	position: relative;
	padding: 68px;
	overflow: hidden;
	border: 1px solid rgba(56, 189, 248, 0.25);
	border-radius: 30px;
	background:
		radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.2), transparent 36%),
		linear-gradient(135deg, #111f34, #0b1423);
}

.nx-cta::after {
	position: absolute;
	right: -90px;
	bottom: -200px;
	width: 460px;
	height: 460px;
	content: "";
	border: 1px solid rgba(56, 189, 248, 0.13);
	border-radius: 50%;
	box-shadow: 0 0 0 45px rgba(56, 189, 248, 0.025), 0 0 0 90px rgba(56, 189, 248, 0.018);
}

.nx-cta-copy {
	position: relative;
	z-index: 1;
	max-width: 750px;
}

.nx-contact-intro {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: end;
	gap: 40px;
	grid-template-columns: 1fr auto;
}

.nx-cta h2 {
	font-size: clamp(2.1rem, 4.5vw, 3.7rem);
}

.nx-cta p {
	max-width: 660px;
	margin: 20px 0 0;
	color: var(--nx-muted);
}

.nx-cta .nx-btn {
	position: relative;
	z-index: 2;
	min-width: 170px;
}

.nx-btn--whatsapp {
	border-color: rgba(37, 211, 102, 0.55);
	background: #25d366;
	box-shadow: 0 14px 38px rgba(37, 211, 102, 0.18);
	color: #07170d;
}

.nx-btn--whatsapp:hover,
.nx-btn--whatsapp:focus-visible {
	background: #38e575;
	box-shadow: 0 18px 46px rgba(37, 211, 102, 0.28);
}

.nx-contact-form-wrap {
	position: relative;
	z-index: 1;
	margin-top: 48px;
	padding: 34px;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 20px;
	background: rgba(5, 12, 23, 0.58);
}

.nx-contact-form-wrap h3 {
	margin: 0 0 24px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.45rem;
	letter-spacing: -0.025em;
}

.nx-contact-form {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nx-contact-field {
	display: grid;
	gap: 8px;
}

.nx-contact-field--full,
.nx-contact-submit {
	grid-column: 1 / -1;
}

.nx-contact-field label {
	color: #cbd5e1;
	font-size: 0.76rem;
	font-weight: 700;
}

.nx-contact-field label span {
	color: var(--nx-accent);
}

.nx-contact-field input,
.nx-contact-field textarea {
	width: 100%;
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 11px;
	outline: none;
	background: rgba(3, 9, 18, 0.72);
	color: var(--nx-text);
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.nx-contact-field input {
	min-height: 50px;
	padding: 11px 14px;
}

.nx-contact-field textarea {
	min-height: 135px;
	padding: 13px 14px;
	resize: vertical;
}

.nx-contact-field input:focus,
.nx-contact-field textarea:focus {
	border-color: rgba(56, 189, 248, 0.72);
	box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.nx-contact-submit {
	justify-self: start;
	margin-top: 4px;
}

.nx-contact-trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.nx-form-notice {
	margin: 0 0 22px;
	padding: 12px 14px;
	border: 1px solid;
	border-radius: 10px;
	font-size: 0.82rem;
}

.nx-form-notice--success {
	border-color: rgba(52, 211, 153, 0.38);
	background: rgba(52, 211, 153, 0.1);
	color: #a7f3d0;
}

.nx-form-notice--error {
	border-color: rgba(248, 113, 113, 0.38);
	background: rgba(248, 113, 113, 0.1);
	color: #fecaca;
}

.nx-back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 90;
	display: grid;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(56, 189, 248, 0.42);
	border-radius: 14px;
	background: rgba(10, 20, 35, 0.9);
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
	color: var(--nx-accent);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	place-items: center;
	transform: translateY(12px);
	transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
	backdrop-filter: blur(12px);
}

.nx-back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.nx-back-to-top:hover,
.nx-back-to-top:focus-visible {
	background: rgba(20, 39, 63, 0.98);
}

.nx-back-to-top:focus-visible {
	outline: 2px solid var(--nx-accent);
	outline-offset: 3px;
}

.nx-back-to-top svg {
	width: 21px;
	height: 21px;
}

/* Footer */
.site-footer {
	padding: 76px 0 28px;
	border-top: 1px solid var(--nx-border);
	background: #060a12;
}

.nx-footer-grid {
	display: grid;
	gap: 80px;
	padding-bottom: 58px;
	grid-template-columns: 1fr 1.25fr;
}

.nx-footer-brand p {
	max-width: 430px;
	margin: 21px 0 0;
	color: var(--nx-muted);
	font-size: 0.87rem;
}

.nx-footer-columns {
	display: grid;
	gap: 35px;
	grid-template-columns: repeat(2, 1fr);
}

.nx-footer-column h2 {
	margin: 0 0 18px;
	color: #dce5f0;
	font-size: 0.72rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.nx-footer-column ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nx-footer-column a,
.nx-footer-column span {
	color: var(--nx-muted);
	font-size: 0.8rem;
}

.nx-footer-column a:hover {
	color: var(--nx-accent);
}

.nx-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 25px;
	border-top: 1px solid var(--nx-border);
	color: var(--nx-dim);
	font-size: 0.72rem;
}

.nx-footer-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.nx-footer-status::before {
	width: 6px;
	height: 6px;
	content: "";
	background: var(--nx-green);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(52, 211, 153, 0.7);
}

/* Inner pages */
.nx-main {
	min-height: 65vh;
	padding: 150px 0 100px;
}

.nx-content {
	max-width: 820px;
	margin: 0 auto;
}

.entry-header {
	margin-bottom: 45px;
}

.entry-content {
	color: #bcc8d7;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.8em;
	color: var(--nx-text);
	font-family: "Space Grotesk", sans-serif;
	line-height: 1.25;
}

.entry-content a {
	color: var(--nx-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content blockquote {
	margin-inline: 0;
	padding: 5px 0 5px 25px;
	border-left: 3px solid var(--nx-accent);
	color: #d4deeb;
}

.entry-content img {
	border-radius: 15px;
}

.nx-post-list {
	display: grid;
	gap: 22px;
}

.nx-post-card {
	padding: 30px;
	border: 1px solid var(--nx-border);
	border-radius: var(--nx-radius-sm);
	background: var(--nx-card);
}

.nx-post-card h2 {
	margin: 0 0 12px;
	font-family: "Space Grotesk", sans-serif;
}

.nx-post-card p {
	margin: 0;
	color: var(--nx-muted);
}

.nx-empty {
	padding: 50px;
	border: 1px solid var(--nx-border);
	border-radius: var(--nx-radius-sm);
	text-align: center;
}

/* Reveal */
.nx-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 600ms ease, transform 600ms ease;
}

.nx-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.nx-reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1120px) {
	.nx-header-cta {
		display: none;
	}

	.nx-hero-grid,
	.nx-overview-grid,
	.nx-roles-layout,
	.nx-mobile-grid {
		gap: 55px;
		grid-template-columns: 1fr;
	}

	.nx-sms-grid {
		gap: 36px;
		grid-template-columns: 1fr;
	}

	.nx-hero {
		padding-top: 145px;
	}

	.nx-hero-copy {
		max-width: 780px;
	}

	.nx-dashboard {
		width: min(100%, 650px);
		margin: 0 auto;
		transform: none;
	}

	.nx-product-frame--hero {
		width: min(100%, 820px);
		margin: 0 auto;
		transform: none;
	}

	.nx-feature-grid,
	.nx-integration-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nx-roles-copy {
		max-width: 700px;
	}

	.nx-mobile-copy {
		max-width: 820px;
	}

	.nx-mobile-visual {
		width: min(100%, 620px);
		margin: 0 auto;
	}

	.nx-cta {
		padding: 55px;
	}

	.nx-contact-intro {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.nx-contact-intro .nx-btn {
		justify-self: start;
	}

	.nx-footer-grid {
		gap: 50px;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 780px) {
	.nx-section {
		padding: 82px 0;
	}

	.nx-menu-toggle {
		display: block;
	}

	.nx-nav-wrap {
		position: fixed;
		top: 78px;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		padding: 25px 20px;
		background: rgba(7, 11, 20, 0.98);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.nx-nav-wrap.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.nx-nav ul {
		display: grid;
		gap: 0;
	}

	.nx-nav li {
		border-bottom: 1px solid var(--nx-border);
	}

	.nx-nav a {
		display: block;
		padding: 17px 5px;
		font-size: 1rem;
	}

	.nx-nav a::after {
		display: none;
	}

	.nx-hero {
		min-height: auto;
		padding: 132px 0 82px;
	}

	.nx-hero-grid {
		gap: 48px;
	}

	.nx-dashboard-body {
		grid-template-columns: 54px 1fr;
	}

	.nx-dashboard-side {
		padding: 18px 9px;
	}

	.nx-dashboard-main {
		padding: 14px;
	}

	.nx-feature-grid,
	.nx-pricing-grid {
		grid-template-columns: 1fr;
	}

	.nx-screen-story,
	.nx-screen-card--wide {
		grid-template-columns: 1fr;
	}

	.nx-mobile-features {
		grid-template-columns: 1fr;
	}

	.nx-screen-card--wide {
		grid-column: auto;
	}

	.nx-feature-card {
		min-height: 285px;
	}

	.nx-plan {
		min-height: auto;
	}

	.nx-plan ul {
		margin-bottom: 30px;
	}

	.nx-cta {
		padding: 42px 30px;
		border-radius: 22px;
	}

	.nx-contact-form {
		grid-template-columns: 1fr;
	}

	.nx-contact-field,
	.nx-contact-submit {
		grid-column: 1;
	}
}

@media (max-width: 560px) {
	.nx-container {
		width: min(calc(100% - 28px), var(--nx-container));
	}

	.nx-back-to-top {
		right: 14px;
		bottom: 14px;
		width: 43px;
		height: 43px;
	}

	.nx-mobile-visual {
		min-height: 570px;
	}

	.nx-phone {
		width: 270px;
	}

	.nx-phone-screen {
		min-height: 520px;
	}

	.nx-push-card--primary {
		right: 0;
		bottom: 55px;
		width: 245px;
	}

	.nx-push-card--secondary {
		bottom: 0;
		left: 0;
	}

	.nx-brand-logo img {
		height: 31px;
	}

	.nx-screen-card {
		gap: 20px;
		padding: 20px;
		border-radius: 18px;
	}

	.nx-contact-form-wrap {
		margin-top: 36px;
		padding: 24px 18px;
	}

	.nx-contact-intro .nx-btn,
	.nx-contact-submit {
		width: 100%;
	}

	.nx-header-inner {
		min-height: 70px;
	}

	.nx-nav-wrap {
		top: 70px;
	}

	.nx-hero h1 {
		font-size: clamp(2.75rem, 14vw, 4rem);
	}

	.nx-hero-actions {
		display: grid;
	}

	.nx-hero-actions .nx-btn {
		width: 100%;
	}

	.nx-hero-note {
		align-items: flex-start;
	}

	.nx-dashboard-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.nx-mini-card:last-child {
		display: none;
	}

	.nx-dashboard-body {
		min-height: 360px;
		grid-template-columns: 1fr;
	}

	.nx-dashboard-side {
		display: none;
	}

	.nx-stats-grid,
	.nx-feature-grid,
	.nx-integration-grid {
		grid-template-columns: 1fr;
	}

	.nx-stat {
		min-height: 130px;
	}

	.nx-feature-icon {
		margin-bottom: 36px;
	}

	.nx-plan {
		padding: 29px 24px;
	}

	.nx-faq button {
		font-size: 0.93rem;
	}

	.nx-footer-columns {
		grid-template-columns: 1fr;
	}

	.nx-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}
