/* =========================================================================
   FaderDesk marketing site — Cyberpunk v2
   Dark mode only. Calm, type-led, restrained glow.
   ========================================================================= */

:root {
  /* Surfaces */
  --bg: #0a0e1a;
  --surface: #11172a;
  --surface-el: #181f33;
  --border: #1e2d45;
  --border-accent: #2d3f6b;

  /* Text */
  --text: #e6e9f0;
  --text-muted: #8b94a8;
  --text-faint: #4a5470;

  /* Primary (violet) */
  --primary: #6d28d9;
  --primary-hover: #7c3aed;
  --primary-glow: rgba(124, 58, 237, 0.20);
  --primary-glow-strong: rgba(168, 85, 247, 0.28);

  /* Secondary (cyan) */
  --secondary: #06b6d4;
  --secondary-hover: #0891b2;
  --secondary-glow: rgba(6, 182, 212, 0.18);

  /* Tertiary */
  --tertiary: #d946ef;

  /* Semantic */
  --success: #34d399;
  --warning: #fbbf24;
  --error: #f87171;
  --info: #60a5fa;

  /* Type */
  --font-sans: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --max-w: 1200px;
  --space-section: clamp(80px, 10vw, 140px);
  --radius: 4px;
  --radius-sm: 2px;
}

/* Reset */
*, *::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: 15px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

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

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--surface-el);
  color: var(--text);
  padding: 8px 12px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip-link:focus { top: 8px; }

/* Container */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* Typography helpers */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 16px;
}

.section__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
}

.section__lede {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 56ch;
}

.link {
  color: var(--text);
  border-bottom: 1px solid var(--border-accent);
  transition: border-color 150ms ease, color 150ms ease;
}
.link:hover { color: var(--secondary); border-color: var(--secondary); }

/* =========================================================================
   Nav
   ========================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 26, 0.72);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 150ms ease;
}
.nav__link:hover { color: var(--text); }
.nav__signin {
  color: var(--text);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}
.nav__signin:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 12px var(--primary-glow);
}
@media (max-width: 720px) {
  .nav__links { gap: 14px; }
  .nav__link:not(.nav__signin) { display: none; }
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: background-color 150ms cubic-bezier(0.2, 0, 0, 1),
              box-shadow 150ms cubic-bezier(0.2, 0, 0, 1),
              border-color 150ms cubic-bezier(0.2, 0, 0, 1),
              transform 80ms ease;
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid transparent;
}
.btn--primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 0 1px var(--primary-hover), 0 0 24px 2px var(--primary-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 12px var(--primary-glow);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 15px;
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(64px, 10vw, 120px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: -80px -40px -40px -40px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 75%);
  animation: gridDrift 120s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}
.hero__glow {
  position: absolute;
  left: 50%;
  top: 22%;
  width: min(900px, 95vw);
  height: 460px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(168,85,247,0.22), transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(6,182,212,0.10), transparent 70%);
  filter: blur(20px);
  animation: glowPulse 6s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.hero__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__headline {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #c8cce0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}
.hero__sub {
  max-width: 60ch;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(48px, 8vw, 80px);
}

/* Hero visual: console */
.hero__visual {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  perspective: 1400px;
}
.console {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, #0d1322 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.08),
    0 30px 80px -30px rgba(0, 0, 0, 0.7),
    0 0 60px -15px var(--primary-glow);
  overflow: hidden;
  text-align: left;
  transform: rotateX(2deg);
  transform-origin: center top;
}
.console::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.console__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}
.console__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-accent);
}
.console__dot:nth-child(1) { background: #2d3f6b; }
.console__dot:nth-child(2) { background: #2d3f6b; }
.console__dot:nth-child(3) { background: var(--primary); box-shadow: 0 0 8px var(--primary-glow); }
.console__title { margin-left: 12px; color: var(--text-muted); }
.console__time { margin-left: auto; }

.console__body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  padding: 0;
}
.console__col {
  padding: 20px 22px;
}
.console__col + .console__col {
  border-left: 1px solid var(--border);
}
.console__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 14px;
}

/* Enquiry list inside console */
.enquiry-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.enquiry {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.enquiry:last-child { border-bottom: none; }
.enquiry__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.enquiry__dot--new { background: var(--secondary); box-shadow: 0 0 8px var(--secondary-glow); }
.enquiry__dot--quoted { background: var(--warning); }
.enquiry__dot--booked { background: var(--success); }
.enquiry__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}
.enquiry__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  margin: 2px 0 0;
}
.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
}
.badge--new {
  border-color: rgba(6,182,212,0.35);
  color: var(--secondary);
  background: rgba(6,182,212,0.06);
}
.badge--booked {
  border-color: rgba(52,211,153,0.35);
  color: var(--success);
  background: rgba(52,211,153,0.06);
}

/* Stats grid */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.stat {
  background: var(--surface);
  padding: 12px 14px;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 4px;
}
.stat__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

.waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 56px;
  padding-top: 8px;
}
.waveform > span {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(to top, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 1px;
  opacity: 0.6;
}

@media (max-width: 720px) {
  .console__body { grid-template-columns: 1fr; }
  .console__col + .console__col { border-left: none; border-top: 1px solid var(--border); }
}

/* =========================================================================
   Sections
   ========================================================================= */
.section {
  padding: var(--space-section) 0;
  position: relative;
}
.section + .section {
  border-top: 1px solid var(--border);
}
.section__head {
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}
.section__head--left {
  margin-left: 0;
  text-align: left;
}

/* Story */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .story { grid-template-columns: 280px 1fr; gap: 56px; }
}
.story__head .section__title {
  font-size: clamp(28px, 3.6vw, 38px);
}
.story__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.story__body p:last-child { margin-bottom: 0; }
.story__body p strong { color: var(--text); font-weight: 500; }
.story__signature {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 20px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}
.story__sig-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
}
.story__sig-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* Grids */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* Cards */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 200ms cubic-bezier(0.2, 0, 0, 1),
              box-shadow 200ms cubic-bezier(0.2, 0, 0, 1),
              transform 200ms cubic-bezier(0.2, 0, 0, 1);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(109,40,217,0.06), transparent 38%);
  pointer-events: none;
}
.card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 18px 1px var(--primary-glow);
  transform: translateY(-2px);
}

/* Feature cards */
.feature__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--secondary);
  margin: 0 0 14px;
}
.feature__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 10px;
}
.feature__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.feature__list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.feature__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 2px;
  background: var(--secondary);
  border-radius: 1px;
  box-shadow: 0 0 6px var(--secondary-glow);
}

/* Differentiators */
.differentiators { gap: 0; grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .differentiators { grid-template-columns: repeat(2, 1fr); }
}
.diff {
  position: relative;
  padding: 28px;
  border-top: 1px solid var(--border);
}
.diff:nth-child(2) { border-top: 1px solid var(--border); }
@media (min-width: 720px) {
  .diff { border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
  .diff:nth-child(odd) { border-left: none; }
  .diff:nth-child(-n+2) { border-top: none; }
}
.diff__mark {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  margin-bottom: 20px;
  border-radius: 1px;
}
.diff__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 10px;
}
.diff__body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: 48ch;
}

/* =========================================================================
   Pricing
   ========================================================================= */
.section--pricing { background: linear-gradient(180deg, transparent 0%, rgba(109,40,217,0.04) 100%); }

.pricing-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.18), 0 30px 80px -30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}
.pricing-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0;
}
.pricing-card__price { margin: 0; }
.pricing-card__amount {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.pricing-card__period {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
}
.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-card__honesty {
  margin: 0 0 28px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.18);
}
.pricing-card__honesty-title {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
}
.pricing-card__honesty-body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.pricing-card__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.pricing-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--secondary);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(45deg, transparent 50%, var(--secondary) 50%) bottom right / 8px 8px no-repeat;
}

/* Waitlist form */
.waitlist {
  margin-top: 4px;
}
.waitlist__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.waitlist__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 560px) {
  .waitlist__row { grid-template-columns: 1fr auto; }
}
.waitlist__input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.waitlist__input::placeholder { color: var(--text-faint); }
.waitlist__input:focus {
  outline: none;
  border-color: var(--primary-hover);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.waitlist__input.is-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(248,113,113,0.18);
}
.waitlist__btn { width: 100%; }
@media (min-width: 560px) {
  .waitlist__btn { width: auto; }
}
.waitlist__note {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}
.waitlist__note.is-error { color: var(--error); }

.waitlist__success {
  padding: 24px;
  border: 1px solid rgba(52,211,153,0.35);
  background: rgba(52,211,153,0.05);
  border-radius: var(--radius);
  margin-top: 16px;
}
.waitlist__success-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--success);
  margin: 0 0 4px;
}
.waitlist__success-body {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  border-top: 1px solid var(--border);
  padding: 8px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  transition: color 150ms ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--secondary); }
.faq__q::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--text-faint);
  transition: transform 200ms ease, color 200ms ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); color: var(--secondary); }
.faq__a {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 64ch;
}
.faq__a p { margin: 0; }

/* =========================================================================
   Final CTA
   ========================================================================= */
.section--final {
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.section--final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(168,85,247,0.16), transparent 70%);
  pointer-events: none;
}
.final {
  text-align: center;
  position: relative;
}
.final__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #c8cce0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final__sub {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 0 32px;
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
  border-top: 1px solid var(--border);
  background: #07091a;
  padding: 56px 0 32px;
  margin-top: 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 1.2fr 2fr; gap: 64px; }
}
.footer__brand .logo { color: var(--text); margin-bottom: 12px; }
.footer__tagline {
  font-size: 13.5px;
  color: var(--text-muted);
  max-width: 36ch;
  margin: 0;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 4px;
}
.footer__col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 150ms ease;
}
.footer__col a:hover { color: var(--text); }

.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
}
.footer__copy, .footer__meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  margin: 0;
}

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.2, 0, 0, 1),
              transform 600ms cubic-bezier(0.2, 0, 0, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   Reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
