/* ============================================================
   NOELTE — design tokens (dark only)
   ============================================================ */
:root {
	/* color */
	--bg: #070B12;
	--surface: #0D1420;
	--surface-2: #121B2B;
	--line: #1C2942;
	--text: #EAF0F8;
	--muted: #8CA0BC;
	--blue-deep: #16407F;
	--blue: #2E6BD6;
	--accent: #4D9FFF;
	--accent-glow: rgba(77, 159, 255, 0.35);
	--error: #FF6B6B;
	--success: #4DE0A6;

	/* type */
	--font-display: 'Space Grotesk', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, -apple-system, sans-serif;
	--font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
	--fs-sm: 0.875rem;
	--fs-base: 1rem;
	--fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
	--fs-xl: clamp(1.35rem, 1.1rem + 1vw, 1.6rem);
	--fs-2xl: clamp(1.7rem, 1.3rem + 1.6vw, 2.2rem);
	--fs-3xl: clamp(2rem, 1.4rem + 2.6vw, 3rem);
	--fs-hero: clamp(2.6rem, 1.6rem + 4.5vw, 4.8rem);

	/* 8px spacing scale */
	--space-1: 8px;  --space-2: 16px; --space-3: 24px; --space-4: 32px;
	--space-6: 48px; --space-8: 64px; --space-12: 96px; --space-16: 128px;
	--section-y: clamp(var(--space-8), 10vw, var(--space-16));

	/* misc */
	--radius-sm: 4px; --radius: 8px; --radius-lg: 12px;
	--shadow-glow: 0 0 0 1px var(--line), 0 12px 40px rgba(0, 0, 0, 0.45);
	--dur-fast: 150ms; --dur: 280ms; --dur-slow: 550ms;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-out: cubic-bezier(0, 0, 0.2, 1);
	--container: 1200px;
	--header-h: 72px;
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: var(--fs-base);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0 0 var(--space-2); letter-spacing: -0.01em; }
p { margin: 0 0 var(--space-2); }
a { color: var(--accent); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--text); }
.mono { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--muted); }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--space-3); }
.container--narrow { max-width: 760px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

::selection { background: var(--blue); color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--radius-sm); }

.skip-link {
	position: absolute; left: var(--space-2); top: -100px; z-index: 200;
	background: var(--accent); color: #04101F; padding: var(--space-1) var(--space-2);
	border-radius: var(--radius-sm); font-weight: 600; transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: var(--space-2); color: #04101F; }

/* ============================================================
   Intro splash — full-screen logo + tagline on first load
   ============================================================ */
.intro-splash {
	position: relative; z-index: 10;
	min-height: 100vh; display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	background: var(--bg); padding: var(--space-4);
	text-align: center; overflow: hidden;
}
.intro-splash__logo {
	width: clamp(180px, 28vw, 320px); height: auto;
	margin-bottom: var(--space-6);
	opacity: 0; transform: translateY(16px);
	animation: intro-fade-in 0.8s var(--ease) 0.2s forwards;
}
.intro-splash__tagline {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 3.2vw, 2.4rem);
	font-weight: 600; color: var(--text);
	letter-spacing: -0.02em; line-height: 1.2;
	max-width: 560px;
}
@keyframes intro-fade-in {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Fold text — vanilla CSS (matches React component)
   ============================================================ */
.fold-text {
	display: inline-block;
	color: var(--fold-text-color, currentColor);
	font-size: var(--fold-text-font-size, inherit);
	font-weight: var(--fold-text-font-weight, inherit);
	line-height: 1.05;
	letter-spacing: -0.03em;
	white-space: pre-wrap;
	user-select: text;
}
.fold-text-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;
}
.fold-text-visual { display: inline; }
.fold-text-segment {
	display: inline-block; line-height: inherit;
	perspective: var(--fold-perspective, 700px);
	transform-style: preserve-3d; vertical-align: baseline;
}
.fold-text-piece {
	position: relative; display: inline-block; color: inherit;
	line-height: inherit; transform-style: preserve-3d;
	backface-visibility: hidden; will-change: transform, opacity;
}
.fold-text-piece::after {
	content: ''; position: absolute; inset: -0.08em -0.02em;
	pointer-events: none; opacity: var(--fold-crease, 0);
	mix-blend-mode: multiply; border-radius: 0.08em;
	background: linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.22) 42%, rgba(255,255,255,0.26) 100%);
}

/* ============================================================
   Stroke text — SVG draw-on animation for hero
   ============================================================ */
.stroke-text {
	display: block; width: 100%; line-height: 0;
}
.stroke-text__svg {
	display: block; width: 100%;
	height: var(--stroke-text-height, clamp(60px, 8vw, 140px));
}
.stroke-text__stroke, .stroke-text__fill {
	font-family: var(--font-display);
	font-size: var(--fs-hero);
	font-weight: 700;
	letter-spacing: -0.025em;
	user-select: none;
}

/* ============================================================
   Proof bar — key numbers strip below hero
   ============================================================ */
.proof-bar {
	border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
	padding: var(--space-4) 0;
}
.proof-bar__inner {
	display: flex; justify-content: space-between; gap: var(--space-4);
}
.proof-bar__stat { text-align: center; flex: 1; }
.proof-bar__num {
	display: block; font-family: var(--font-display);
	font-size: 1.6rem; font-weight: 700; color: var(--text);
	margin-bottom: 4px;
}
.proof-bar__label { font-size: var(--fs-xs); color: var(--muted); }
@media (max-width: 600px) {
	.proof-bar__inner { flex-wrap: wrap; }
	.proof-bar__stat { flex: 0 0 48%; }
}

/* ============================================================
   Founder section
   ============================================================ */
.founder-grid {
	display: grid; grid-template-columns: 280px 1fr;
	gap: var(--space-6); align-items: start;
}
.founder-photo__placeholder {
	width: 100%; aspect-ratio: 3/4;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	display: flex; align-items: center; justify-content: center;
}
.founder-copy p {
	color: var(--muted); font-size: var(--fs-base); line-height: 1.7;
	margin: 0 0 var(--space-2);
}
.founder-copy .btn { margin-top: var(--space-2); }
@media (max-width: 720px) {
	.founder-grid { grid-template-columns: 1fr; }
	.founder-photo__placeholder { max-width: 200px; aspect-ratio: 1; }
}

/* ============================================================
   Process section — horizontal timeline stepper
   ============================================================ */
.timeline {
	display: flex; align-items: flex-start;
	position: relative; padding-top: var(--space-8);
}
.timeline__track {
	position: absolute; top: calc(var(--space-8) + 7px);
	left: 0; right: 0; height: 2px;
	background: var(--line);
}
.timeline__step {
	flex: 1; display: flex; flex-direction: column;
	align-items: center; text-align: center;
	position: relative; z-index: 1;
}
.timeline__dot {
	width: 16px; height: 16px; border-radius: 50%;
	background: var(--accent); border: 3px solid var(--bg);
	box-shadow: 0 0 0 2px var(--line);
	margin-bottom: var(--space-3); flex-shrink: 0;
}
.timeline__step:first-child .timeline__dot {
	box-shadow: 0 0 0 2px var(--accent);
}
.timeline__label { max-width: 200px; }
.timeline__title {
	font-size: 1.1rem; margin: 0 0 6px; color: var(--text);
}
.timeline__desc {
	font-size: var(--fs-sm); color: var(--muted); margin: 0; line-height: 1.5;
}

@media (max-width: 720px) {
	.timeline {
		flex-direction: column; align-items: stretch;
		padding-top: 0; padding-left: var(--space-4); gap: var(--space-4);
	}
	.timeline__track {
		top: 0; bottom: 0; left: 7px; right: auto;
		width: 2px; height: auto;
	}
	.timeline__step {
		flex-direction: row; align-items: flex-start;
		text-align: left; gap: var(--space-3);
	}
	.timeline__dot { margin-bottom: 0; flex-shrink: 0; }
	.timeline__label { max-width: none; }
}


/* ============================================================
   About page
   ============================================================ */
.about-story { max-width: 640px; }
.about-story__body { margin-top: var(--space-4); }
.about-story__body p { color: var(--muted); font-size: var(--fs-base); line-height: 1.7; margin: 0 0 var(--space-3); }
.about-story__body p:last-child { margin-bottom: 0; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.about-value__title { font-size: 1.1rem; margin-bottom: 8px; }
.about-value p { color: var(--muted); font-size: var(--fs-sm); line-height: 1.7; margin: 0; }
.stats-row--about { margin-top: var(--space-4); }
@media (max-width: 720px) {
	.about-values { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ============================================================
   Pricing page
   ============================================================ */
/* ============================================================
   Pricing page — plan tiers + project rows
   ============================================================ */
.plan-grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: var(--space-2); align-items: stretch;
}
.plan-card {
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius-lg); padding: var(--space-5) var(--space-4);
	display: flex; flex-direction: column; text-align: center;
	transition: border-color 0.3s var(--ease);
}
.plan-card:hover { border-color: var(--accent); }
.plan-card--featured {
	border-color: var(--accent);
	background: linear-gradient(180deg, rgba(57,109,212,0.06) 0%, var(--surface) 40%);
}
.plan-card__badge {
	font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em;
	color: var(--accent); margin-bottom: var(--space-3);
}
.plan-card__price { margin-bottom: var(--space-2); }
.plan-card__amount {
	font-family: var(--font-display); font-size: 3rem; font-weight: 700;
	color: var(--text);
}
.plan-card__term { font-size: var(--fs-sm); color: var(--muted); }
.plan-card__for {
	font-size: var(--fs-sm); color: var(--muted); margin: 0 0 var(--space-3);
	line-height: 1.5;
}
.plan-card__list {
	list-style: none; padding: 0; margin: 0 0 var(--space-4); flex: 1;
	text-align: left; display: flex; flex-direction: column; gap: 10px;
	border-top: 1px solid var(--line); padding-top: var(--space-3);
}
.plan-card__list li {
	font-size: 0.88rem; color: var(--muted); padding-left: 22px;
	position: relative; line-height: 1.4;
}
.plan-card__list li::before {
	content: ""; position: absolute; left: 0; top: 6px;
	width: 8px; height: 8px; border-radius: 50%;
	border: 1.5px solid var(--accent);
}
.plan-card__list--muted { opacity: 0.55; }
.plan-card__list--highlight { color: var(--accent) !important; }
.plan-card__list--highlight::before { background: var(--accent); }
.plan-card__cta { width: 100%; justify-content: center; }

/* Project rows */
.project-grid {
	max-width: 720px; margin: 0 auto;
	display: flex; flex-direction: column;
}
.project-row {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--space-4); padding: var(--space-3) 0;
	border-bottom: 1px solid var(--line);
}
.project-row:first-child { border-top: 1px solid var(--line); }
.project-row__info { flex: 1; }
.project-row__title { font-size: 1rem; margin: 0 0 4px; }
.project-row__info p { font-size: var(--fs-sm); color: var(--muted); margin: 0; line-height: 1.4; }
.project-row__price {
	font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
	color: var(--text); white-space: nowrap; flex-shrink: 0;
}
.pricing-fine { color: var(--muted); font-size: var(--fs-xs); margin-top: var(--space-4); text-align: center; max-width: 600px; margin-inline: auto; }

@media (max-width: 900px) {
	.plan-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
	.plan-card { padding: var(--space-4); }
}
@media (max-width: 600px) {
	.project-row { flex-direction: column; align-items: flex-start; gap: var(--space-1); }
}

/* ============================================================
   Loader (hidden — replaced by intro splash on front page)
   ============================================================ */
.loader {
	position: fixed; inset: 0; z-index: 300; display: grid; place-items: center;
	background: var(--bg); animation: loader-out 1.4s var(--ease) forwards;
	pointer-events: none;
}
.loader__icon {
	width: 80px; height: auto;
	animation: loader-icon 1.4s var(--ease) both;
	filter: drop-shadow(0 0 20px rgba(57, 109, 212, 0.4));
}
@keyframes loader-out {
	0%, 65% { opacity: 1; }
	100% { opacity: 0; visibility: hidden; }
}
@keyframes loader-icon {
	0%   { opacity: 0; transform: scale(0.7) rotate(-8deg); }
	40%  { opacity: 1; transform: scale(1) rotate(0deg); }
	70%  { opacity: 1; transform: scale(1) rotate(0deg); }
	100% { opacity: 0; transform: scale(1.15) rotate(0deg); }
}

/* ============================================================
   Desktop pill nav — floating bar, inline links, mega dropdowns
   ============================================================ */
.pill-nav {
	position: fixed; top: 1.2em; left: 50%; transform: translateX(-50%);
	width: 92%; max-width: 960px; z-index: 100;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 100px;
	backdrop-filter: blur(24px) saturate(1.6) brightness(1.05); -webkit-backdrop-filter: blur(24px) saturate(1.6) brightness(1.05);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(255, 255, 255, 0.02);
	transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pill-nav.is-scrolled {
	background: rgba(7, 11, 18, 0.6);
	border-color: rgba(255, 255, 255, 0.06);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.pill-nav__inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 0 6px 0 20px; height: 52px; gap: 4px;
}
.pill-nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.pill-nav__brand img { height: 26px; width: auto; display: block; }

.pill-nav__links { display: flex; align-items: center; gap: 2px; margin-left: auto; margin-right: 8px; }
.pill-nav__item { position: relative; }
.pill-nav__link {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 8px 14px; color: var(--muted); font-size: 0.88rem; font-weight: 500;
	background: none; border: 0; cursor: pointer; font-family: inherit;
	border-radius: 100px; transition: color 0.2s, background 0.2s; text-decoration: none;
	white-space: nowrap;
}
.pill-nav__link:hover, .pill-nav__item--has-menu.is-open > .pill-nav__link {
	color: var(--text); background: rgba(255,255,255,0.06);
}
.pill-nav__caret { transition: transform 0.2s var(--ease); flex-shrink: 0; }
.pill-nav__item--has-menu.is-open .pill-nav__caret { transform: rotate(180deg); }

.pill-nav__cta {
	flex-shrink: 0; display: inline-flex; align-items: center;
	padding: 0 18px; height: 36px; border-radius: 100px;
	background: var(--text); color: var(--bg); font-size: 0.85rem; font-weight: 600;
	text-decoration: none; transition: opacity 0.2s;
}
.pill-nav__cta:hover { opacity: 0.88; color: var(--bg); }

/* Mega dropdown panel */
.pill-mega {
	position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
	min-width: 520px; padding: 16px;
	background: rgba(14, 18, 27, 0.7);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--radius);
	box-shadow: 0 16px 48px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
	backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4);
	opacity: 0; transform: translateX(-50%) translateY(-8px); visibility: hidden; pointer-events: none;
	transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s 0.2s;
}
.pill-nav__item--has-menu.is-open > .pill-mega {
	opacity: 1; transform: translateX(-50%) translateY(0); visibility: visible; pointer-events: auto;
	transition-delay: 0s;
}
.pill-mega--narrow { min-width: 220px; padding: 10px; }
.pill-mega--account { min-width: 440px; }
.pill-mega__grid--account { grid-template-columns: 1.2fr 1fr; }
.pill-mega__group-label { font-size: 0.65rem; letter-spacing: 0.14em; color: var(--muted); margin-bottom: var(--space-1); padding: 0 10px; opacity: 0.7; }
.pill-mega__link small { color: var(--muted); font-size: 0.75rem; font-weight: 400; }
.mobile-panel__sublabel { font-size: 0.65rem; letter-spacing: 0.14em; color: var(--muted); margin: 12px 0 4px; opacity: 0.7; }

.pill-mega__grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 16px; }
.pill-mega__list { display: flex; flex-direction: column; gap: 2px; }
.pill-mega__link {
	display: flex; align-items: flex-start; gap: 8px; padding: 8px 10px;
	border-radius: var(--radius-sm); color: var(--muted); text-decoration: none;
	transition: background 0.15s, color 0.15s; font-size: 0.88rem;
}
.pill-mega__link:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.pill-mega__link strong { color: var(--text); font-weight: 500; display: block; }
.pill-mega__icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; font-size: 0.8rem; }

.pill-mega__cta {
	background: rgba(255,255,255,0.04); border-radius: var(--radius-sm);
	padding: 16px; display: flex; flex-direction: column; gap: 10px;
}
.pill-mega__cta h4 { font-size: 0.95rem; font-weight: 600; color: var(--text); margin: 0; }
.pill-mega__cta p { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.4; }
.pill-mega__cta .btn { font-size: 0.82rem; padding: 8px 14px; width: 100%; justify-content: center; }

/* ============================================================
   Mobile: burger + fullscreen panel
   ============================================================ */
.pill-nav__burger {
	display: none; flex-direction: column; gap: 5px; padding: 10px;
	background: none; border: 0; cursor: pointer;
}
.pill-nav__burger span {
	display: block; width: 22px; height: 2px; background: var(--text);
	transition: transform 0.25s var(--ease), opacity 0.2s;
}
.pill-nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.pill-nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 900px) {
	.pill-nav__desktop { display: none !important; }
	.pill-nav__burger { display: flex; }
	.pill-nav { border-radius: 14px; top: 0.8em; width: 94%; }
	body.nav-open { overflow: hidden; }
}

.mobile-panel {
	position: fixed; inset: 0; z-index: 95;
	background: color-mix(in srgb, var(--bg) 96%, transparent);
	backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
	padding: 80px var(--space-4) var(--space-4);
	overflow-y: auto;
	opacity: 0; transform: translateY(-8px);
	transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
	pointer-events: none;
}
.mobile-panel.is-open {
	opacity: 1; transform: none; pointer-events: auto;
}
.mobile-panel__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-panel__group { border-bottom: 1px solid var(--line); }
.mobile-panel__trigger {
	display: flex; align-items: center; justify-content: space-between; width: 100%;
	padding: 16px 0; font-size: 1.2rem; font-family: var(--font-display); font-weight: 600;
	color: var(--text); background: none; border: 0; cursor: pointer;
}
.mobile-panel__trigger[aria-expanded="true"] .pill-nav__caret { transform: rotate(180deg); }
.mobile-panel__sub {
	padding: 0 0 12px 8px; display: flex; flex-direction: column; gap: 2px;
}
.mobile-panel__sub a {
	display: block; padding: 10px 0; color: var(--muted); font-size: 1rem; text-decoration: none;
	transition: color 0.15s;
}
.mobile-panel__sub a:hover { color: var(--accent); }
.mobile-panel__link {
	display: block; padding: 16px 0; font-size: 1.2rem; font-family: var(--font-display); font-weight: 600;
	color: var(--text); text-decoration: none; border-bottom: 1px solid var(--line);
	transition: color 0.15s;
}
.mobile-panel__link:hover { color: var(--accent); }
.mobile-panel__cta { margin-top: var(--space-4); width: 100%; justify-content: center; }
.pill-nav__caret { transition: transform 0.2s var(--ease); }


/* ============================================================
   Buttons
   ============================================================ */
.btn {
	position: relative; display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 22px; border-radius: var(--radius-sm);
	font-weight: 600; font-size: 0.95rem; font-family: var(--font-body);
	border: 1px solid transparent; cursor: pointer; overflow: hidden; isolation: isolate;
	transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease),
		box-shadow var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform var(--dur-slow) var(--ease);
}
.btn--primary:hover { color: #fff; box-shadow: 0 0 24px var(--accent-glow); transform: translateY(-2px); }
.btn--primary:hover::before { transform: translateX(120%); }
.btn--ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 0 20px rgba(77, 159, 255, 0.15); }
.btn:active { transform: translateY(0); }
.btn--primary::after {
	content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
	box-shadow: 0 0 0 0 var(--accent-glow);
	transition: box-shadow var(--dur) var(--ease);
}
.btn--primary:hover::after { box-shadow: 0 0 30px 4px var(--accent-glow); }
.btn--ghost::after {
	content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
	background: linear-gradient(120deg, transparent 30%, rgba(77, 159, 255, 0.07) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform var(--dur-slow) var(--ease);
}
.btn--ghost:hover::after { transform: translateX(120%); }

/* ============================================================
   Eyebrow
   ============================================================ */
.eyebrow {
	display: flex; align-items: center; gap: 12px;
	font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--muted); margin-bottom: var(--space-2);
}
.eyebrow__index { color: var(--accent); }
.eyebrow__rule { width: 40px; height: 1px; background: var(--line); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
	position: relative; overflow: hidden;
	padding: calc(var(--header-h) + var(--space-12)) 0 var(--space-12);
	background: var(--bg);
}
.hero::before { display: none; }
.hero::after { display: none; }
.hero__canvas-wrap {
	position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
	overflow: hidden; touch-action: none;
	mask-image: linear-gradient(to bottom, black 0%, black 45%, rgba(0,0,0,0.3) 75%, transparent 93%);
	-webkit-mask-image: linear-gradient(to bottom, black 0%, black 45%, rgba(0,0,0,0.3) 75%, transparent 93%);
}
.hero__canvas-wrap canvas { display: block; width: 100% !important; height: 100% !important; }
.cursor-glow { display: none; }

.hero__frame { z-index: 0; }
.hero__frame {
	position: absolute; inset: var(--space-2); pointer-events: none; opacity: 0.5;
	border: 1px solid transparent;
	background:
		linear-gradient(var(--line), var(--line)) top left / 24px 1px,
		linear-gradient(var(--line), var(--line)) top left / 1px 24px,
		linear-gradient(var(--line), var(--line)) top right / 24px 1px,
		linear-gradient(var(--line), var(--line)) top right / 1px 24px,
		linear-gradient(var(--line), var(--line)) bottom left / 24px 1px,
		linear-gradient(var(--line), var(--line)) bottom left / 1px 24px,
		linear-gradient(var(--line), var(--line)) bottom right / 24px 1px,
		linear-gradient(var(--line), var(--line)) bottom right / 1px 24px;
	background-repeat: no-repeat;
}
.hero__inner { position: relative; z-index: 2; animation: hero-enter 1s var(--ease-out) both; }
.hero--home { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.hero--home .hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero--home .hero__title { text-align: center; animation: hero-enter 0.9s var(--ease-out) 0.15s both; }
.hero--home .hero__sub { max-width: 640px; text-align: center; animation: hero-enter 0.9s var(--ease-out) 0.3s both; }
.hero--home .hero__eyebrow { justify-content: center; }
.hero--home .hero__actions { justify-content: center; animation: hero-enter 0.9s var(--ease-out) 0.45s both; }
.hero--home .hero__meta { animation: hero-enter 0.9s var(--ease-out) 0.55s both; }
@keyframes hero-enter { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero__title { font-size: var(--fs-hero); font-weight: 700; letter-spacing: -0.025em; margin-bottom: var(--space-3); }
.hero__title--inner { font-size: var(--fs-3xl); }
.line-reveal { display: block; overflow: hidden; }
.line-reveal > span { display: block; transform: translateY(110%); animation: line-up 0.9s var(--ease) forwards; }
.line-reveal:nth-child(2) > span { animation-delay: 0.12s; }
.line-reveal:nth-child(3) > span { animation-delay: 0.24s; }
.line-reveal--accent > span { color: var(--accent); text-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(77, 159, 255, 0.15); }
@keyframes line-up { to { transform: none; } }
.hero__sub { max-width: 560px; font-size: var(--fs-lg); color: var(--muted); margin-bottom: var(--space-4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }
.hero__meta { opacity: 0.8; }
.hero--inner { padding: calc(var(--header-h) + var(--space-8)) 0 var(--space-8); }
.hero__search { margin-top: var(--space-4); max-width: 420px; }

.crumbs { margin-bottom: var(--space-3); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }

/* 404 glitch */
.hero--404 { text-align: left; }
.glitch { position: relative; font-size: clamp(5rem, 18vw, 11rem); color: var(--text); }
.glitch::before, .glitch::after {
	content: attr(data-text); position: absolute; inset: 0; opacity: 0.7;
}
.glitch::before { color: var(--accent); animation: glitch-a 2.4s steps(2, end) infinite; }
.glitch::after { color: var(--blue-deep); animation: glitch-b 2.4s steps(2, end) infinite; }
@keyframes glitch-a { 0%, 92%, 100% { transform: none; clip-path: none; } 94% { transform: translate(-4px, 2px); clip-path: inset(20% 0 55% 0); } 97% { transform: translate(3px, -2px); clip-path: inset(60% 0 15% 0); } }
@keyframes glitch-b { 0%, 90%, 100% { transform: none; clip-path: none; } 93% { transform: translate(4px, 1px); clip-path: inset(45% 0 30% 0); } 96% { transform: translate(-3px, -1px); clip-path: inset(10% 0 70% 0); } }

/* ============================================================
   Rotating hero text
   ============================================================ */
.rotating-text {
	display: inline-block;
	position: relative;
	min-width: 2ch;
	text-align: left;
	vertical-align: bottom;
}
.rotating-text__word {
	display: inline-block;
	position: absolute;
	left: 0;
	opacity: 0;
	transform: translateY(100%);
	transition: none;
	white-space: nowrap;
}
.rotating-text__word.is-entering {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.rotating-text__word.is-visible {
	position: relative;
	opacity: 1;
	transform: translateY(0);
}
.rotating-text__word.is-exiting {
	position: absolute;
	opacity: 0;
	transform: translateY(-110%);
	transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: var(--section-y) 0; }
.section--alt {
	background:
		linear-gradient(180deg,
			var(--surface) 0%,
			color-mix(in srgb, var(--surface) 60%, var(--bg)) 60%,
			var(--bg) 100%);
	border-top: 1px solid var(--line);
	border-bottom: none;
}
.section__head { max-width: 640px; margin-bottom: var(--space-6); }
.section__intro { color: var(--muted); font-size: var(--fs-lg); max-width: 580px; margin-top: var(--space-1); }
.section__title { font-size: var(--fs-2xl); }
.section__title--sm { font-size: var(--fs-xl); margin-bottom: var(--space-4); }

/* Service cards */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2); list-style: none; margin: 0; padding: 0; align-items: stretch; }
.svc-grid--compact { grid-template-columns: repeat(3, 1fr); }
.svc-card { display: flex; }
.svc-card a {
	position: relative; display: flex; flex-direction: column; height: 100%;
	padding: var(--space-3); color: var(--text); text-decoration: none;
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
	transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
	overflow: hidden;
}
.svc-card a:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3); }
.svc-card a:hover, .work-card:hover { will-change: transform; }

.svc-card__title { font-size: 1.1rem; margin-bottom: var(--space-1); }
.svc-card__desc { font-size: var(--fs-sm); color: var(--muted); margin-bottom: var(--space-3); }
.svc-card__arrow { margin-top: auto; color: var(--accent); transition: transform var(--dur-fast) var(--ease); }
.svc-card a:hover .svc-card__arrow { transform: translateX(6px); }

/* Steps */
.steps { display: grid; gap: var(--space-2); }
.steps--wide { grid-template-columns: repeat(4, 1fr); }
.step {
	padding: var(--space-3); border: 1px solid var(--line); border-radius: var(--radius-lg);
	background: var(--surface); position: relative; overflow: hidden;
	transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3); }
.step__num { font-family: var(--font-mono); color: var(--accent); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: var(--space-1); }
.step__title { font-size: 1.15rem; }
.step p:last-child { color: var(--muted); font-size: var(--fs-sm); margin: 0; }

/* Why Noelte section */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr) 1fr; gap: var(--space-2); }
.why-card {
	padding: var(--space-4); border: 1px solid var(--line); border-radius: var(--radius-lg);
	background: var(--surface); position: relative; overflow: hidden;
	transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.why-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3); }
.why-card h3 { font-size: 1.15rem; margin-bottom: var(--space-1); }
.why-card p { color: var(--muted); font-size: var(--fs-sm); margin: 0; }
.why-card__icon {
	display: flex; align-items: center; gap: 12px;
	margin-bottom: var(--space-3); color: var(--accent);
}
.why-pulse {
	display: block; width: 10px; height: 10px; border-radius: 50%;
	background: var(--accent); position: relative;
}
.why-pulse::before {
	content: ""; position: absolute; inset: -4px; border-radius: 50%;
	border: 1.5px solid var(--accent); opacity: 0;
	animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring { 0% { transform: scale(0.8); opacity: 0.7; } 100% { transform: scale(2.2); opacity: 0; } }

.why-card--stat {
	display: flex; flex-direction: column; gap: var(--space-3);
	background: linear-gradient(160deg, var(--surface-2), var(--surface));
}
.why-stat { display: flex; align-items: baseline; gap: var(--space-2); }
.why-stat__num {
	font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 700;
	color: var(--accent); margin: 0; line-height: 1;
}
.why-stat__label { font-size: var(--fs-sm); color: var(--muted); margin: 0; }
.why-card__location {
	margin-top: auto; padding-top: var(--space-3); border-top: 1px solid var(--line);
	display: flex; flex-direction: column; gap: 4px;
}
.why-card__location p { margin: 0; }
.why-pin {
	display: inline-block; width: 8px; height: 8px; border-radius: 50%;
	background: var(--success); margin-bottom: 4px;
	box-shadow: 0 0 8px rgba(77, 224, 166, 0.5);
}

/* Work */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.work-card {
	display: flex; flex-direction: column; gap: var(--space-1);
	padding: var(--space-4); color: var(--text); position: relative; overflow: hidden;
	background: linear-gradient(160deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line); border-radius: var(--radius-lg);
	transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.work-card:hover { border-color: var(--accent); transform: translateY(-4px); color: var(--text); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3); }
.work-card__type { color: var(--accent); }
.work-card__title { font-size: var(--fs-xl); margin: 0; }
.work-card__desc { color: var(--muted); margin: 0; }
.work-card__link { margin-top: var(--space-2); }
.work-card:hover .work-card__link { color: var(--accent); }

/* Spotlight */
.spotlight__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-8); align-items: center; }
.spotlight__copy p { color: var(--muted); margin-bottom: var(--space-3); }
.panel {
	padding: var(--space-4); border: 1px solid var(--line); border-radius: var(--radius-lg);
	background: linear-gradient(160deg, var(--surface-2), var(--surface));
	box-shadow: var(--shadow-glow);
	position: relative; overflow: hidden;
}
.panel::before {
	content: ""; position: absolute; left: 0; right: 0; height: 1px;
	background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
	top: -1px; animation: panel-scan 3s ease-in-out infinite;
}
@keyframes panel-scan { 0% { top: -1px; opacity: 0; } 10% { opacity: 0.8; } 90% { opacity: 0.8; } 100% { top: calc(100% + 1px); opacity: 0; } }
.panel__row { display: flex; justify-content: space-between; gap: var(--space-2); padding: 10px 0; border-bottom: 1px solid var(--line); margin: 0; }
.panel__row span:last-child { opacity: 0; }
.spotlight__panel.is-visible .panel__row span:last-child { animation: type-in 0.4s var(--ease) forwards; animation-delay: calc(var(--row, 0) * 0.4s + 0.6s); }
.panel__row:nth-child(1) { --row: 0; } .panel__row:nth-child(2) { --row: 1; } .panel__row:nth-child(3) { --row: 2; } .panel__row:nth-child(4) { --row: 3; }
@keyframes type-in { from { opacity: 0; transform: translateX(8px); filter: blur(4px); } to { opacity: 1; transform: none; filter: blur(0); } }
.panel__ok { color: var(--success); }
.panel__head { color: var(--accent); margin: 0 0 var(--space-2); padding-bottom: var(--space-1); border-bottom: 1px solid var(--line); letter-spacing: 0.12em; }
.panel__footer { color: var(--muted); margin: var(--space-1) 0 0; text-align: right; font-size: 0.7rem; letter-spacing: 0.14em; }
.panel__bar { height: 6px; margin-top: var(--space-3); background: var(--surface); border-radius: 999px; overflow: hidden; }
.panel__bar span { display: block; height: 100%; width: var(--w, 0%); border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--accent)); animation: bar-in 1.2s var(--ease) both; }
@keyframes bar-in { from { width: 0; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-6); align-items: start; }
.contact-info__item { display: flex; flex-direction: column; gap: 2px; padding: var(--space-2) 0; border-bottom: 1px solid var(--line); }
.contact-info__label { color: var(--accent); }
.contact-form-panel {
	padding: var(--space-4); background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius-lg); box-shadow: var(--shadow-glow);
}

/* Form elements */
.contact-form-panel input[type="text"],
.contact-form-panel input[type="email"],
.contact-form-panel input[type="tel"],
.contact-form-panel textarea,
.contact-form-panel select,
.search-field {
	width: 100%; padding: 13px 14px; color: var(--text);
	background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
	font-family: var(--font-body); font-size: 1rem;
	transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.contact-form-panel input:focus, .contact-form-panel textarea:focus, .search-field:focus {
	outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.contact-form-panel label { font-size: var(--fs-sm); color: var(--muted); }
.contact-form-panel button[type="submit"], .search-submit {
	padding: 12px 22px; background: var(--blue); color: #fff; border: 0;
	border-radius: var(--radius-sm); font-weight: 600; cursor: pointer;
	transition: box-shadow var(--dur) var(--ease);
}
.contact-form-panel button[type="submit"]:hover, .search-submit:hover { box-shadow: 0 0 24px var(--accent-glow); }
.search-form { display: flex; gap: var(--space-1); }

/* ============================================================
   Entry content (Gutenberg output)
   ============================================================ */
.entry h2 { font-size: var(--fs-xl); margin-top: var(--space-6); }
.entry h3 { font-size: var(--fs-lg); margin-top: var(--space-4); }
.entry .lead { font-size: var(--fs-lg); color: var(--text); }
.entry p, .entry li { color: var(--muted); }
.entry strong { color: var(--text); }
.entry ul.check-list { list-style: none; padding: 0; }
.entry ul.check-list li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid var(--line); }
.entry ul.check-list li::before {
	content: ""; position: absolute; left: 0; top: 16px; width: 14px; height: 8px;
	border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg);
}
.entry .steps { grid-template-columns: repeat(2, 1fr); margin-top: var(--space-3); }
.entry img { border-radius: var(--radius); }

/* ============================================================
   CTA band + footer
   ============================================================ */
.cta-band {
	padding: var(--section-y) 0; border-top: 1px solid var(--line);
	background: var(--surface);
}
.cta-band__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: var(--space-4); }
.cta-band__title { font-size: var(--fs-2xl); margin: 0; }
.cta-band__actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }

.site-footer { border-top: 1px solid var(--line); padding: var(--space-8) 0 var(--space-3); background: var(--bg); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 0.7fr 1fr; gap: var(--space-6); margin-bottom: var(--space-6); align-items: start; }
.site-footer__account a { color: var(--muted); font-size: var(--fs-sm); display: inline-block; padding: 4px 0; }
.site-footer__account a:hover { color: var(--accent); }
.brand__logo--footer { height: 40px; margin-bottom: var(--space-2); display: block; object-fit: contain; object-position: left; }
.site-footer__tag { color: var(--muted); margin-top: var(--space-2); }
.site-footer__heading { font-size: 0.8rem; font-family: var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--space-2); }
.site-footer__list { list-style: none; margin: 0; padding: 0; columns: 2; }
.site-footer__list .sub-menu, .site-footer__list ul { list-style: none; padding: 0; }
.site-footer__list a { display: inline-block; padding: 4px 0; color: var(--muted); font-size: var(--fs-sm); }
.site-footer__list a:hover { color: var(--accent); }
.site-footer__contact a { color: var(--text); }
.site-footer__contact a:hover { color: var(--accent); }
.site-footer__legal { display: flex; justify-content: space-between; align-items: center; gap: var(--space-2); padding-top: var(--space-3); border-top: 1px solid var(--line); }
.site-footer__legal-links { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.site-footer__legal-links a { color: var(--muted); }
.site-footer__legal-links a:hover { color: var(--accent); }

/* ============================================================
   Section label + section nav
   ============================================================ */
.section-label {
	position: fixed; top: var(--header-h); left: var(--space-3); z-index: 55;
	font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
	color: var(--accent); text-transform: uppercase;
	opacity: 0; transform: translateY(-6px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.section-label.is-visible { opacity: 0.7; transform: none; }
@media (max-width: 1024px) { .section-label { display: none; } }

.section-nav {
	position: fixed; left: var(--space-3); top: 50%; z-index: 60;
	transform: translateY(-50%);
	display: flex; flex-direction: column; gap: 16px;
}
.section-nav__dot {
	display: flex; align-items: center; gap: 12px;
	width: 10px; height: 10px; border-radius: 50%;
	background: var(--line); border: 0; padding: 0;
	transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
	position: relative; cursor: pointer;
	text-decoration: none;
}
.section-nav__dot span {
	position: absolute; left: 20px; white-space: nowrap;
	font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
	color: var(--muted); opacity: 0; transform: translateX(-4px);
	transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
	pointer-events: none;
}
.section-nav__dot:hover span { opacity: 1; transform: none; }
.section-nav__dot.is-active {
	background: var(--accent); box-shadow: 0 0 10px var(--accent-glow);
}
@media (max-width: 1024px) { .section-nav { display: none; } }

/* ============================================================
   Hero scroll hint
   ============================================================ */
.hero__scroll-hint {
	position: absolute; bottom: var(--space-4); left: 50%; z-index: 2;
	transform: translateX(-50%);
}
.hero__scroll-hint span {
	display: block; width: 20px; height: 32px; border: 2px solid var(--line); border-radius: 10px;
	position: relative;
}
.hero__scroll-hint span::before {
	content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 8px;
	margin-left: -1.5px; border-radius: 3px; background: var(--accent);
	animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot { 0%, 100% { opacity: 1; transform: translateY(0); } 50% { opacity: 0.3; transform: translateY(10px); } }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq__item {
	border-bottom: 1px solid var(--line); overflow: hidden;
}
.faq__q {
	display: flex; justify-content: space-between; align-items: center; gap: var(--space-2);
	padding: var(--space-3) 0; cursor: pointer; list-style: none;
	font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text);
	transition: color var(--dur-fast) var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { display: none; content: ""; }
.faq__q:hover { color: var(--accent); }
.faq__icon {
	width: 24px; height: 24px; flex-shrink: 0; position: relative;
}
.faq__icon::before, .faq__icon::after {
	content: ""; position: absolute; background: var(--accent);
	top: 50%; left: 50%; transform: translate(-50%, -50%);
	transition: transform var(--dur) var(--ease);
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; }
details[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a {
	padding: 0 0 var(--space-3); color: var(--muted); font-size: var(--fs-base);
	max-width: 640px; line-height: 1.7;
}

/* Brand mark hover */
.brand__mark { transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.brand:hover .brand__mark { box-shadow: 0 0 16px var(--accent-glow); border-color: var(--accent); }

/* Hero meta link */
.hero__meta-link { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
.hero__meta-link:hover { opacity: 0.8; }

/* ============================================================
   Demo section
   ============================================================ */
.demo-hero { text-align: center; margin-bottom: var(--space-6); }
.demo-badge {
	display: inline-block; padding: 6px 18px; border-radius: 100px;
	border: 1px solid var(--accent); color: var(--accent);
	font-size: 0.72rem; letter-spacing: 0.15em; margin-bottom: var(--space-3);
}
.demo-hero__title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: var(--space-3); max-width: 680px; margin-inline: auto; }
.demo-hero__desc { color: var(--muted); max-width: 580px; margin-inline: auto; line-height: 1.7; }

.demo-flow { max-width: 500px; margin: 0 auto var(--space-4); }
.demo-flow__step { display: flex; gap: var(--space-3); align-items: flex-start; padding: var(--space-2) 0; }
.demo-flow__num {
	width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
	border: 1.5px solid var(--accent); color: var(--accent);
	display: flex; align-items: center; justify-content: center;
	font-size: 0.85rem; font-weight: 700;
}
.demo-flow__step h3 { font-size: 1.05rem; margin-bottom: 4px; }
.demo-flow__step p { color: var(--muted); font-size: var(--fs-sm); margin: 0; line-height: 1.5; }
.demo-flow__line { width: 1.5px; height: 24px; background: var(--line); margin-left: 19px; }
.demo-cta { text-align: center; margin-top: var(--space-6); }

/* Star border removed — clean card hover only */

/* ============================================================
   Process — clean stacked list (Apple style)
   ============================================================ */
.section__head--center { text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__title--lg { font-size: clamp(1.8rem, 4vw, 2.8rem); }

.process-list { max-width: 600px; margin: 0 auto; }
.process-item {
	padding: var(--space-4) 0;
	border-bottom: 1px solid var(--line);
}
.process-item:first-child { border-top: 1px solid var(--line); }
.process-item__title { font-size: 1.2rem; margin-bottom: 6px; }
.process-item__desc { color: var(--muted); font-size: var(--fs-sm); margin: 0; line-height: 1.6; }

/* ============================================================
   Why us — traits + stats (Apple style)
   ============================================================ */
.traits { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8) var(--space-6); margin-bottom: var(--space-8); max-width: 720px; margin-inline: auto; }
.trait__title { font-size: 1.1rem; margin-bottom: 8px; }
.trait p { color: var(--muted); font-size: var(--fs-sm); margin: 0; line-height: 1.7; }

.stats-row {
	display: flex; justify-content: center; gap: var(--space-6);
	padding-top: var(--space-6); border-top: 1px solid var(--line);
	max-width: 600px; margin-inline: auto;
}
.stats-row__item { text-align: center; }
.stats-row__num {
	display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700; color: var(--text); line-height: 1;
}
.stats-row__label { display: block; font-size: var(--fs-sm); color: var(--muted); margin-top: 4px; }

@media (max-width: 720px) {
	.traits { grid-template-columns: 1fr; gap: var(--space-4); }
	.stats-row { gap: var(--space-4); flex-wrap: wrap; }
}

/* ============================================================
   Scroll reveals
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); transition-delay: var(--d, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal, .no-io .reveal { opacity: 1; transform: none; }

/* ============================================================
   Scroll float — per-character reveal on section headings
   ============================================================ */
/* Section headings use standard .reveal animation */

/* Extra nav list for Account dropdown */

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
	.svc-grid { grid-template-columns: repeat(2, 1fr); }
	.steps--wide { grid-template-columns: repeat(2, 1fr); }
	.why-grid { grid-template-columns: repeat(2, 1fr); }
	.spotlight__inner { grid-template-columns: 1fr; gap: var(--space-4); }
}
@media (max-width: 720px) {
	.svc-grid, .svc-grid--compact, .steps--wide, .work-grid, .contact-grid,
	.entry .steps, .why-grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
	.site-footer__brand { grid-column: 1 / -1; }
	.site-footer__list { columns: 1; }
	.hero { padding-top: calc(var(--header-h) + var(--space-4)); padding-bottom: var(--space-4); }
	.hero--home { min-height: 100svh; }
	.hero__title { font-size: clamp(2rem, 7vw, 3.2rem); }
	.hero__sub { font-size: var(--fs-base); }
	.hero__actions { flex-direction: column; }
	.hero__actions .btn { width: 100%; justify-content: center; min-height: 50px; }
	.hero__scroll-hint { bottom: var(--space-2); }
	.cta-band__inner { align-items: start; flex-direction: column; }
	.cta-band__actions { width: 100%; }
	.cta-band__actions .btn { flex: 1; justify-content: center; min-height: 50px; }
	.site-footer__legal { flex-direction: column; gap: var(--space-2); align-items: start; }
	.site-footer__legal-links { flex-direction: column; gap: var(--space-1); }
	.site-footer__grid { grid-template-columns: 1fr; }
	.hero__frame { display: none; }
	.spotlight__inner { grid-template-columns: 1fr; gap: var(--space-4); }

	/* Mobile hero entrance */
	.hero__inner { animation-duration: 0.7s; }
	.hero--home .hero__title { animation-delay: 0.1s; animation-duration: 0.7s; }
	.hero--home .hero__sub { animation-delay: 0.2s; animation-duration: 0.7s; }
	.hero--home .hero__actions { animation-delay: 0.3s; animation-duration: 0.7s; }
	.hero--home .hero__meta { animation-delay: 0.35s; animation-duration: 0.7s; }

	/* Section spacing — less cramped on mobile */
	.section { padding: var(--space-6) 0; }
	.section__head { margin-bottom: var(--space-4); }
	.section__title--lg { font-size: clamp(1.5rem, 5vw, 2.2rem); }
	.traits { grid-template-columns: 1fr; gap: var(--space-4); }
	.stats-row { gap: var(--space-4); flex-wrap: wrap; }

	/* Services grid — 2 columns on smaller screens */
	.svc-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-1); }
	.svc-card__desc { font-size: 0.8rem; }

	/* Touch targets */
	.svc-card a { padding: var(--space-3); }
	.step { padding: var(--space-3); }
	.why-card { padding: var(--space-3); }
	.faq__q { padding: var(--space-3) 0; min-height: 50px; font-size: 1rem; }

	/* Mobile tap feedback */
	.svc-card a:active, .work-card:active {
		transform: scale(0.98);
		border-color: var(--accent);
	}

	.mobile-nav__cta { width: 100%; text-align: center; min-height: 50px; }
	.reveal { --d: 0ms !important; }

	/* Contact grid: stack with form on top */
	.contact-grid { display: flex; flex-direction: column-reverse; gap: var(--space-4); }

	/* Stroke text on mobile */
	.stroke-text__svg { height: clamp(40px, 7vw, 80px); }
}

/* Small phones */
@media (max-width: 400px) {
	:root { --space-3: 20px; }
	.container { padding-inline: var(--space-2); }
	.hero__title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
	.section__title { font-size: var(--fs-xl); }
	.brand__logo { height: 30px; }
	.brand__logo--footer { height: 36px; }
	.panel { padding: var(--space-3); }
	.panel__row { font-size: 0.7rem; flex-wrap: wrap; gap: 4px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
	.reveal { opacity: 1; transform: none; }
	.line-reveal > span { transform: none; animation: none; }
	.loader { display: none; }
	.hero__canvas-wrap { display: none; }
	.cursor-glow { display: none; }
	.scroll-progress { display: none; }
	.fold-text-piece { transform: none !important; }
	.fold-text-piece::after { opacity: 0 !important; }
	.intro-splash__logo, .intro-splash__scroll-cue { opacity: 1; transform: none; animation: none; }
	.stroke-text__stroke { stroke-dashoffset: 0 !important; }
	.acc-panel { transition-duration: 0.01ms !important; }
	.acc-panel__content { transition-duration: 0.01ms !important; }
	.card { will-change: auto; transition: none !important; }
	.panel::before { display: none; }
	.panel__row span:last-child { opacity: 1; }
	.why-pulse::before { animation: none; opacity: 0; }
	.rotating-text__word { position: relative !important; opacity: 1 !important; transform: none !important; }
}
