:root {
	--deep-blue: #1533c0;
	--sky-blue: #0ea5e9;
	--midnight: #0a0f2e;
	--midnight-2: #0d1340;
	--ice-blue: #cce4ff;
	--surface: #f8f9fc;
	--surface-alt: #f0f4ff;
	--border: #e8ecf4;
	--text-body: #374151;
	--text-muted: #5c6b91;
	--text-faint: #6b7aa1;
	--success: #22c55e;
	--success-bg: #f0fdf4;
	--warning: #f59e0b;
	--danger: #ef4444;
	--white: #ffffff;
	--brand-gradient: linear-gradient(135deg, #1533c0 0%, #0ea5e9 100%);
	--shadow-sm:
		0 1px 3px rgba(10, 15, 46, 0.06), 0 1px 2px rgba(10, 15, 46, 0.04);
	--shadow-md:
		0 4px 16px rgba(10, 15, 46, 0.08), 0 2px 6px rgba(10, 15, 46, 0.04);
	--shadow-lg:
		0 8px 32px rgba(10, 15, 46, 0.14), 0 4px 12px rgba(10, 15, 46, 0.06);
	--shadow-brand: 0 8px 24px rgba(21, 51, 192, 0.28);
	--r-sm: 8px;
	--r-md: 12px;
	--r-lg: 16px;
	--r-xl: 20px;
	--r-2xl: 24px;
}

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

html {
	scroll-behavior: smooth;
}

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

/* ─── ACCESSIBILITY UTILITIES ─── */
.sr-only {
	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 {
	position: absolute;
	top: -48px;
	left: 16px;
	z-index: 1000;
	background: var(--white);
	color: var(--midnight);
	font-size: 14px;
	font-weight: 700;
	padding: 12px 20px;
	border-radius: var(--r-md);
	text-decoration: none;
	transition: top 0.2s;
	box-shadow: var(--shadow-md);
}
.skip-link:focus {
	top: 16px;
}

/* Consistent visible focus ring across all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--sky-blue);
	outline-offset: 2px;
	border-radius: 4px;
}
/* Pill-shaped controls get a matching pill outline */
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.hero-form input:focus-visible,
.cta-input:focus-visible {
	outline: 3px solid var(--sky-blue);
	outline-offset: 3px;
	border-radius: 100px;
}
/* Remove the legacy mouse-only focus styling in favor of :focus-visible */
a:focus,
button:focus {
	outline: none;
}

/* Form status / live region messaging */
.form-status {
	font-size: 13px;
	font-weight: 600;
	margin-top: 10px;
	min-height: 20px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.form-status[data-state="success"] {
	color: var(--success);
}
.form-status[data-state="error"] {
	color: #fca5a5;
}
.form-status:empty {
	margin-top: 0;
}
.field-error {
	font-size: 12px;
	font-weight: 600;
	color: #fca5a5;
	margin-top: 6px;
	display: none;
}
.field-error.visible {
	display: block;
}
input[aria-invalid="true"] {
	border-color: var(--danger) !important;
}

body {
	font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
	background: var(--midnight);
	color: var(--midnight);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* ─── UTILITY ─── */
.label-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3.5px;
	text-transform: uppercase;
	color: var(--deep-blue);
	margin-bottom: 14px;
}
.label-tag-light {
	color: rgba(255, 255, 255, 0.6);
}

.container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 32px;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--brand-gradient);
	color: white;
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	text-align: center;
	padding: 14px 28px;
	border-radius: 100px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	box-shadow: var(--shadow-brand);
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	letter-spacing: -0.2px;
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(21, 51, 192, 0.38);
}
.btn-primary:disabled {
	opacity: 0.75;
	cursor: not-allowed;
	transform: none;
}
.btn-primary:disabled:hover {
	transform: none;
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	font-weight: 600;
	padding: 14px 24px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	cursor: pointer;
	text-decoration: none;
	transition:
		background 0.2s,
		border-color 0.2s;
}
.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.24);
}

.section-light {
	background: var(--surface);
}
.section-white {
	background: var(--white);
}
.section-dark {
	background: var(--midnight);
}
.section-alt {
	background: var(--surface-alt);
}

/* ─── GRID LINES BACKGROUND ─── */
.grid-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 0;
}
.grid-bg svg {
	width: 100%;
	height: 100%;
	opacity: 0.07;
}

/* ─── NAV ─── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 0 32px;
	background: rgba(10, 15, 46, 0.82);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	height: 64px;
	display: flex;
	align-items: center;
}
.nav-inner {
	max-width: 1120px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}
.nav-wordmark {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1;
}
.nav-wordmark .b {
	color: white;
}
.nav-wordmark .l {
	color: var(--sky-blue);
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
}
.nav-links a {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.2s;
}
.nav-links a:hover {
	color: rgba(255, 255, 255, 0.85);
}
.nav-cta {
	font-size: 12px;
	font-weight: 700;
	padding: 9px 20px;
}

/* ─── HERO ─── */
#hero {
	position: relative;
	background: var(--midnight);
	padding: 160px 32px 100px;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero-noise {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(
			ellipse 70% 60% at 60% 40%,
			rgba(21, 51, 192, 0.18) 0%,
			transparent 70%
		),
		radial-gradient(
			ellipse 50% 40% at 80% 70%,
			rgba(14, 165, 233, 0.1) 0%,
			transparent 60%
		);
}
.hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1120px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 100px;
	padding: 6px 14px 6px 10px;
	margin-bottom: 28px;
}
.hero-eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--success);
	box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
	animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.4;
	}
}
.hero-eyebrow-text {
	font-size: 11px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.5px;
}
.hero-headline {
	font-size: clamp(38px, 5vw, 60px);
	font-weight: 900;
	letter-spacing: -2.5px;
	line-height: 1.04;
	color: white;
	margin-bottom: 22px;
}
.hero-headline .accent {
	background: var(--brand-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero-sub {
	font-size: 17px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.7;
	margin-bottom: 40px;
	max-width: 460px;
}
.hero-form {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	max-width: 480px;
}
.hero-form input {
	flex: 1;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 100px;
	color: white;
	font-size: 14px;
	font-family: inherit;
	outline: none;
	transition:
		border-color 0.2s,
		background 0.2s;
}
.hero-form input::placeholder {
	color: rgba(255, 255, 255, 0.35);
}
.hero-form input:focus {
	border-color: var(--sky-blue);
	background: rgba(255, 255, 255, 0.11);
}
.hero-fine {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	gap: 6px;
}
.hero-fine svg {
	opacity: 0.7;
}

/* ─── HERO MOCKUP ─── */
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}
.mockup-shell {
	width: 340px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 20px;
	box-shadow:
		0 32px 80px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
}
.mockup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
.mockup-logo {
	display: flex;
	align-items: center;
	gap: 7px;
}
.mockup-wordmark {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -0.3px;
}
.mockup-wordmark .b {
	color: white;
}
.mockup-wordmark .l {
	color: var(--sky-blue);
}
.mockup-date {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.3);
	font-weight: 500;
}
.mockup-profit-card {
	background: var(--brand-gradient);
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 14px;
	box-shadow: 0 8px 24px rgba(21, 51, 192, 0.4);
}
.mockup-profit-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 6px;
}
.mockup-profit-value {
	font-size: 32px;
	font-weight: 900;
	letter-spacing: -1.5px;
	color: white;
	display: flex;
	align-items: baseline;
	gap: 4px;
}
.mockup-profit-value .curr {
	font-size: 18px;
	font-weight: 700;
	opacity: 0.8;
}
.mockup-profit-change {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 100px;
	padding: 3px 10px;
	font-size: 11px;
	font-weight: 700;
	color: white;
	margin-top: 8px;
}
.mockup-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 14px;
}
.mockup-mini-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 14px;
}
.mmcard-label {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 5px;
}
.mmcard-value {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.5px;
	color: white;
}
.mmcard-sub {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 2px;
}
.mockup-tax-bar {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 14px;
}
.tax-bar-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.tax-bar-label {
	font-size: 11px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
}
.tax-bar-status {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	background: rgba(34, 197, 94, 0.15);
	color: var(--success);
	padding: 3px 8px;
	border-radius: 100px;
}
.progress-track {
	height: 4px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 100px;
	overflow: hidden;
}
.progress-fill {
	height: 100%;
	border-radius: 100px;
	background: var(--brand-gradient);
	width: 0;
	transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.progress-fill.animated {
	width: 72%;
}
.tax-bar-info {
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
}
.tax-bar-info span {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.3);
}
.tax-bar-info strong {
	font-size: 10px;
	color: var(--sky-blue);
	font-weight: 700;
}

/* Mini chart sparkline */
.mockup-chart {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	padding: 12px 14px 10px;
	margin-top: 0;
}
.chart-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
.chart-header span {
	font-size: 10px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.35);
	letter-spacing: 1px;
	text-transform: uppercase;
}
.chart-header strong {
	font-size: 10px;
	font-weight: 700;
	color: var(--sky-blue);
}
.sparkline {
	width: 100%;
	height: 44px;
}

/* WhatsApp teaser bubble */
.mockup-whatsapp {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 12px;
}
.wa-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #25d366;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.wa-bubble {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0 10px 10px 10px;
	padding: 8px 12px;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
	max-width: calc(100% - 36px);
}
.wa-bubble strong {
	color: white;
	font-weight: 700;
}

/* Floating badge */
.float-badge {
	position: absolute;
	bottom: -18px;
	left: -28px;
	background: var(--midnight-2);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	animation: float-anim 3s ease-in-out infinite;
}
@keyframes float-anim {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}
.float-badge-icon {
	font-size: 18px;
}
.float-badge-text {
	font-size: 11px;
	font-weight: 600;
	color: white;
	line-height: 1.3;
}
.float-badge-text span {
	color: var(--sky-blue);
	display: block;
	font-size: 10px;
	font-weight: 500;
	opacity: 0.7;
}

.mockup-wrap {
	position: relative;
}

/* ─── SECTION: STATS BAR ─── */
.stats-bar {
	background: rgba(255, 255, 255, 0.03);
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	padding: 32px 0;
}
.stats-bar-inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	text-align: center;
}
.stat-item {
	padding: 0 24px;
}
.stat-item + .stat-item {
	border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-value {
	font-size: 28px;
	font-weight: 900;
	letter-spacing: -1px;
	color: white;
}
.stat-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
	margin-top: 3px;
}

/* ─── SECTION: PROBLEM ─── */
#problem {
	background: var(--surface);
	padding: 100px 32px;
}
.problem-inner {
	max-width: 1120px;
	margin: 0 auto;
}
.section-heading {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 900;
	letter-spacing: -1.5px;
	color: var(--midnight);
	line-height: 1.1;
	margin-bottom: 18px;
}
.section-sub {
	font-size: 17px;
	color: var(--text-muted);
	line-height: 1.7;
	max-width: 520px;
	margin-bottom: 60px;
}
.problem-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 56px;
}
.problem-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 28px;
	box-shadow: var(--shadow-sm);
}
.problem-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--r-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 16px;
}
.problem-card h3 {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.4px;
	color: var(--midnight);
	margin-bottom: 10px;
}
.problem-card p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.65;
}

/* ─── SECTION: VISION ─── */
#vision {
	background: var(--midnight);
	padding: 100px 32px;
	position: relative;
	overflow: hidden;
}
.vision-inner {
	max-width: 1120px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.vision-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	margin-top: 20px;
}
.vision-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-top: 40px;
}
.vision-item {
	display: flex;
	gap: 16px;
}
.vision-check {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(21, 51, 192, 0.25);
	border: 1px solid rgba(21, 51, 192, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 3px;
}
.vision-check svg {
	width: 11px;
	height: 11px;
}
.vision-item-text h3 {
	font-size: 15px;
	font-weight: 700;
	color: white;
	margin-bottom: 4px;
}
.vision-item-text p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.6;
}

/* Vision mockup: whatsapp conversation */
.vision-wa-mock {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 24px;
	padding: 20px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.wa-header {
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	padding-bottom: 14px;
	margin-bottom: 16px;
}
.wa-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--brand-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	color: white;
}
.wa-header-info h3 {
	font-size: 13px;
	font-weight: 700;
	color: white;
}
.wa-header-info p {
	font-size: 11px;
	color: rgba(34, 197, 94, 0.8);
}
.wa-messages {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.wa-msg {
	max-width: 85%;
	border-radius: 8px;
	padding: 9px 12px;
	font-size: 12px;
	line-height: 1.5;
}
.wa-msg.user {
	align-self: flex-end;
	background: rgba(21, 51, 192, 0.3);
	border: 1px solid rgba(21, 51, 192, 0.4);
	color: rgba(255, 255, 255, 0.85);
	border-radius: 10px 10px 0 10px;
}
.wa-msg.bot {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	border-radius: 0 10px 10px 10px;
}
.wa-msg.bot strong {
	color: white;
}
.wa-msg-time {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.25);
	text-align: right;
	margin-top: 4px;
}
.wa-typing {
	align-self: flex-start;
	display: flex;
	align-items: center;
	gap: 4px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 0 10px 10px 10px;
	padding: 10px 14px;
}
.typing-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	animation: typing-bounce 1.2s infinite;
}
.typing-dot:nth-child(2) {
	animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
	animation-delay: 0.4s;
}
@keyframes typing-bounce {
	0%,
	60%,
	100% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(-4px);
	}
}

/* ─── SECTION: PRODUCT TEASER ─── */
#teaser {
	background: var(--surface-alt);
	padding: 100px 32px;
	overflow: hidden;
}
.teaser-inner {
	max-width: 1120px;
	margin: 0 auto;
}
.teaser-heading {
	text-align: center;
	margin-bottom: 60px;
}
.teaser-heading .section-sub {
	margin: 0 auto;
}
.teaser-screens {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 20px;
	align-items: start;
}

/* Desktop mockup */
.desk-chrome {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow:
		var(--shadow-lg),
		0 0 0 1px var(--border);
}
.desk-titlebar {
	background: #1e1e2e;
	height: 32px;
	display: flex;
	align-items: center;
	padding: 0 12px;
	gap: 7px;
}
.tb-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.desk-body {
	display: flex;
}
.desk-sidebar {
	width: 180px;
	background: var(--midnight);
	padding: 16px 0;
	flex-shrink: 0;
}
.ds-logo {
	padding: 0 16px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 800;
}
.ds-logo .b {
	color: white;
}
.ds-logo .l {
	color: var(--sky-blue);
}
.ds-item {
	padding: 7px 16px;
	font-size: 11px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.4);
	display: flex;
	align-items: center;
	gap: 8px;
}
.ds-item.active {
	color: white;
	background: rgba(255, 255, 255, 0.07);
	border-left: 2px solid var(--sky-blue);
	padding-left: 14px;
}
.ds-dot {
	width: 12px;
	height: 12px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.2);
	flex-shrink: 0;
}
.ds-dot.active-dot {
	background: var(--sky-blue);
}
.desk-content {
	flex: 1;
	padding: 20px;
	background: var(--surface);
}
.dc-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}
.dc-title {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.5px;
	color: var(--midnight);
}
.dc-date {
	font-size: 11px;
	color: var(--text-faint);
}
.dc-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 14px;
}
.dc-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 12px;
}
.dc-card-label {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-bottom: 4px;
}
.dc-card-val {
	font-size: 16px;
	font-weight: 900;
	letter-spacing: -0.5px;
	color: var(--midnight);
}
.dc-card-sub {
	font-size: 10px;
	color: var(--success);
	font-weight: 600;
	margin-top: 2px;
}
.dc-card-sub.warn {
	color: var(--warning);
}
.dc-chart-area {
	background: white;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 14px;
}
.dc-chart-top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
.dc-chart-title {
	font-size: 11px;
	font-weight: 700;
	color: var(--midnight);
}
.dc-legend {
	display: flex;
	gap: 10px;
}
.dc-leg-item {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 9px;
	color: var(--text-faint);
	font-weight: 600;
}
.dc-leg-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

/* Phone mockups */
.phone-chrome {
	background: var(--midnight);
	border-radius: 28px;
	overflow: hidden;
	box-shadow:
		0 16px 48px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.08);
}
.phone-status {
	height: 28px;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 14px;
}
.phone-time {
	font-size: 10px;
	font-weight: 700;
	color: white;
}
.phone-icons {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.6);
}
.phone-body {
	background: var(--surface);
}
.phone-header {
	background: white;
	padding: 14px 14px 12px;
	border-bottom: 1px solid var(--border);
}
.phone-title {
	font-size: 16px;
	font-weight: 900;
	letter-spacing: -0.5px;
	color: var(--midnight);
}
.phone-sub {
	font-size: 10px;
	color: var(--text-muted);
	margin-top: 1px;
}
.phone-content {
	padding: 12px;
}
.phone-profit-pill {
	background: var(--brand-gradient);
	border-radius: 14px;
	padding: 16px;
	margin-bottom: 10px;
	box-shadow: 0 4px 16px rgba(21, 51, 192, 0.35);
}
.ppp-label {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}
.ppp-value {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -1px;
	color: white;
	margin-top: 3px;
}
.ppp-change {
	font-size: 10px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.75);
	margin-top: 4px;
}
.phone-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 10px;
}
.pg-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 10px;
}
.pgc-label {
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--text-faint);
}
.pgc-value {
	font-size: 13px;
	font-weight: 900;
	letter-spacing: -0.3px;
	color: var(--midnight);
	margin-top: 3px;
}
.tax-alert-phone {
	background: rgba(245, 158, 11, 0.08);
	border: 1px solid rgba(245, 158, 11, 0.2);
	border-radius: 10px;
	padding: 10px 12px;
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.tap-icon {
	font-size: 14px;
	flex-shrink: 0;
}
.tap-text {
	font-size: 10px;
	color: var(--text-body);
	line-height: 1.4;
}
.tap-text strong {
	font-weight: 700;
	color: var(--midnight);
	font-size: 11px;
}
.phone-nav {
	display: flex;
	background: white;
	border-top: 1px solid var(--border);
	padding: 8px 0;
}
.pnav-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 8px;
	font-weight: 600;
	color: var(--text-faint);
}
.pnav-item.active {
	color: var(--deep-blue);
}
.pnav-icon {
	font-size: 14px;
}

/* ─── SECTION: WHO IT'S FOR ─── */
#audience {
	background: white;
	padding: 100px 32px;
}
.audience-inner {
	max-width: 1120px;
	margin: 0 auto;
}
.audience-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 56px;
}
.audience-card {
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 32px;
	background: var(--surface);
	transition:
		box-shadow 0.2s,
		transform 0.2s;
}
.audience-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}
.audience-pill {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: var(--surface-alt);
	color: var(--deep-blue);
	padding: 5px 12px;
	border-radius: 100px;
	margin-bottom: 16px;
}
.audience-card h3 {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.5px;
	color: var(--midnight);
	margin-bottom: 10px;
}
.audience-challenge {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 16px;
}
.audience-outcome {
	font-size: 13px;
	font-weight: 600;
	color: var(--deep-blue);
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.outcome-check {
	font-size: 14px;
	flex-shrink: 0;
}
.audience-join {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	font-size: 12px;
	color: var(--text-faint);
	font-weight: 500;
}

/* ─── SECTION: WHY JOIN EARLY ─── */
#early {
	background: var(--midnight);
	padding: 100px 32px;
	position: relative;
	overflow: hidden;
}
.early-inner {
	max-width: 1120px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.early-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 56px;
}
.early-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--r-xl);
	padding: 28px;
	transition:
		border-color 0.2s,
		background 0.2s;
}
.early-card:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.15);
}
.early-num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--sky-blue);
	margin-bottom: 12px;
}
.early-card h3 {
	font-size: 16px;
	font-weight: 800;
	color: white;
	margin-bottom: 10px;
	letter-spacing: -0.3px;
}
.early-card p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.65;
}

/* ─── SECTION: ROADMAP ─── */
#roadmap {
	background: var(--surface);
	padding: 100px 32px;
}
.roadmap-inner {
	max-width: 1120px;
	margin: 0 auto;
}
.roadmap-track {
	position: relative;
	margin-top: 60px;
}
.roadmap-line {
	position: absolute;
	left: 19px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--border);
}
.roadmap-line-fill {
	position: absolute;
	left: 19px;
	top: 0;
	width: 2px;
	height: 45%;
	background: var(--brand-gradient);
}
.roadmap-items {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.roadmap-item {
	display: flex;
	gap: 28px;
	padding-bottom: 36px;
	position: relative;
	z-index: 1;
}
.roadmap-dot {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--border);
	border: 2px solid white;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}
.roadmap-dot.done {
	background: var(--brand-gradient);
	border-color: white;
}
.roadmap-dot.current {
	background: white;
	border: 2px solid var(--deep-blue);
	box-shadow: 0 0 0 4px rgba(21, 51, 192, 0.15);
}
.roadmap-dot.upcoming {
	background: white;
	border-color: var(--border);
}
.roadmap-content {
	padding-top: 8px;
}
.roadmap-phase {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-bottom: 4px;
}
.roadmap-phase.current {
	color: var(--deep-blue);
}
.roadmap-content h3 {
	font-size: 16px;
	font-weight: 800;
	color: var(--midnight);
	letter-spacing: -0.4px;
	margin-bottom: 6px;
}
.roadmap-content p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}
.roadmap-tag {
	display: inline-block;
	margin-top: 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 100px;
}
.tag-done {
	background: var(--success-bg);
	color: #16a34a;
}
.tag-now {
	background: rgba(21, 51, 192, 0.08);
	color: var(--deep-blue);
}
.tag-soon {
	background: var(--surface-alt);
	color: var(--text-muted);
}

/* ─── SECTION: FOUNDER ─── */
#founder {
	background: white;
	padding: 100px 32px;
}
.founder-inner {
	max-width: 1120px;
	margin: 0 auto;
}
.founder-card {
	background: var(--midnight);
	border-radius: 28px;
	padding: 60px;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	align-items: center;
	box-shadow: var(--shadow-lg);
}
.founder-avatar-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.founder-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--brand-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-weight: 900;
	color: white;
	box-shadow: 0 8px 24px rgba(21, 51, 192, 0.35);
}
.founder-name {
	font-size: 16px;
	font-weight: 800;
	color: white;
	text-align: center;
}
.founder-title {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	text-align: center;
	font-weight: 500;
}
.founder-quote {
	font-size: 20px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.65;
	letter-spacing: -0.3px;
}
.founder-quote::before {
	content: '"';
	font-size: 60px;
	color: var(--deep-blue);
	line-height: 0;
	vertical-align: -24px;
	margin-right: 4px;
	font-weight: 900;
}
.founder-mission {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.6;
}

/* ─── SECTION: FAQ ─── */
#faq {
	background: var(--surface-alt);
	padding: 100px 32px;
}
.faq-inner {
	max-width: 760px;
	margin: 0 auto;
}
.faq-heading {
	text-align: center;
	margin-bottom: 56px;
}
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.faq-item {
	border-bottom: 1px solid var(--border);
	padding: 13px 0;
}
.faq-item:last-child {
	border-bottom: none;
}
.faq-q-wrap {
	font: inherit;
	margin: 0;
}
.faq-q {
	width: 100%;
	font-size: 15px;
	font-weight: 700;
	color: var(--midnight);
	letter-spacing: -0.3px;
	margin-bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	padding: 11px 0;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	min-height: 44px;
}
.faq-icon {
	color: var(--text-faint);
	font-size: 20px;
	margin-left: 16px;
	flex-shrink: 0;
	display: inline-block;
	transition:
		transform 0.25s ease,
		color 0.2s;
}
.faq-a {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-top: 10px;
}
.faq-q[aria-expanded="true"] .faq-icon {
	color: var(--sky-blue);
	transform: rotate(45deg);
}

/* ─── SECTION: FINAL CTA ─── */
#cta {
	background: var(--midnight);
	padding: 120px 32px;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.cta-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(21, 51, 192, 0.2) 0%,
		transparent 70%
	);
	pointer-events: none;
}
.cta-inner {
	max-width: 640px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.cta-headline {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -2px;
	color: white;
	line-height: 1.08;
	margin-bottom: 18px;
}
.cta-sub {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.7;
	margin-bottom: 40px;
}
.cta-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.cta-input-row {
	display: flex;
	gap: 10px;
	width: 100%;
	max-width: 480px;
}
.cta-input {
	flex: 1;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 100px;
	color: white;
	font-size: 14px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s;
}
.cta-input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}
.cta-input:focus {
	border-color: var(--sky-blue);
}
.cta-fine {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	gap: 6px;
}

/* ─── FOOTER ─── */
footer {
	background: #060a1c;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 48px 32px;
}
.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}
.footer-brand p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 12px;
	line-height: 1.6;
	max-width: 260px;
}
.footer-col h3 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 16px;
}
.footer-col a {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.62);
	text-decoration: none;
	margin-bottom: 10px;
	transition: color 0.2s;
}
.footer-col a:hover {
	color: rgba(255, 255, 255, 0.8);
}
.footer-bottom {
	max-width: 1120px;
	margin: 36px auto 0;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-copy {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}
.footer-social {
	display: flex;
	gap: 16px;
}
.social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	text-decoration: none;
	transition: background 0.2s;
	cursor: pointer;
}
.social-link:hover {
	background: rgba(255, 255, 255, 0.12);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.hero-visual {
		justify-content: flex-start;
	}
	.mockup-shell {
		width: 100%;
		max-width: 380px;
	}
	.stats-bar-inner {
		grid-template-columns: repeat(2, 1fr);
	}
	.stat-item + .stat-item {
		border-left: none;
	}
	.stat-item:nth-child(odd) {
		border-right: 1px solid rgba(255, 255, 255, 0.07);
	}
	.problem-grid {
		grid-template-columns: 1fr;
	}
	.vision-grid {
		grid-template-columns: 1fr;
	}
	.teaser-screens {
		grid-template-columns: 1fr;
	}
	.audience-grid {
		grid-template-columns: 1fr;
	}
	.early-grid {
		grid-template-columns: 1fr;
	}
	.founder-card {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.founder-avatar-area {
		flex-direction: row;
	}
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
	nav .nav-links {
		display: none;
	}
}
@media (max-width: 600px) {
	.hero-form {
		flex-direction: column;
	}
	.cta-input-row {
		flex-direction: column;
	}
	.footer-inner {
		grid-template-columns: 1fr;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 16px;
	}
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}
