/* Versus design system — derived from Versus/Core/Models/VersusTheme.swift
   Shared across all pages on versus24.net. */

:root {
  /* Backgrounds */
  --bg: #000000;
  --card: #111113;
  --card-elevated: #1c1c1f;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Brand — gold */
  --gold: #D4A843;
  --gold-light: #E8C36A;
  --gold-dark: #1A1400;
  --gold-dim: rgba(212, 168, 67, 0.15);
  --gold-border: rgba(212, 168, 67, 0.35);
  --gold-glow: rgba(212, 168, 67, 0.45);

  /* Accents */
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.15);
  --amber: #FFC107;

  /* Modality colors */
  --combat: #E0463E;
  --combat-dim: rgba(224, 70, 62, 0.13);
  --strength: #E48218;
  --strength-dim: rgba(228, 130, 24, 0.13);
  --endurance: #4FA3F0;
  --endurance-dim: rgba(79, 163, 240, 0.13);
  --mobility: #2BC8DC;
  --mobility-dim: rgba(43, 200, 220, 0.13);
  --sport: #A974C7;
  --sport-dim: rgba(169, 116, 199, 0.13);

  /* Text */
  --text: #FFFFFF;
  --text-subtle: #A8A8AE;
  --text-muted: #8E8E93;
  --text-ghost: #505050;

  /* Status */
  --success: #4CAF50;
  --error: #EF5350;
  --warning: #FFA726;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Spacing — 8px base */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 48px;
  --s-8: 64px;
  --s-10: 80px;
  --s-12: 96px;
  --s-16: 128px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Containers */
  --container: 1200px;
  --container-narrow: 880px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'tnum', 'cv11';
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* Typography */
h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}
h1 { font-size: clamp(40px, 6.5vw, 76px); font-weight: 800; }
h2 { font-size: clamp(32px, 4.8vw, 56px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 22px); }
p { margin: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  display: inline-block;
}
.subhead {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--text-subtle);
  line-height: 1.55;
}
.accent-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-subtle { color: var(--text-subtle); }
.text-center { text-align: center; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-3);
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding: var(--s-12) 0; }
.section-tight { padding: var(--s-6) 0; }
.section-title-block { margin-bottom: var(--s-6); }
.section-title-block h2 { max-width: 22ch; }
.section-title-block .subhead { margin-top: var(--s-2); max-width: 60ch; }
.section-title-block.text-center h2,
.section-title-block.text-center .subhead { margin-left: auto; margin-right: auto; }
@media (max-width: 768px) {
  .section { padding: var(--s-8) 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 180ms ease, border-color 180ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #0a0a0a; }
.btn-primary:hover { background: var(--gold-light); }
.btn-accent { background: var(--accent); color: white; }
.btn-ghost { background: transparent; color: var(--gold); border-color: var(--gold-border); }
.btn-ghost:hover { background: var(--gold-dim); }
.btn-block { width: 100%; padding: 16px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--s-3);
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-subtle);
}
.pill-gold { background: var(--gold-dim); color: var(--gold); border-color: var(--gold-border); }
.pill-list { display: flex; gap: 8px; flex-wrap: wrap; }

/* Navbar */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(0, 0, 0, 0.75); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--s-3);
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo {
  font-weight: 800;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-subtle);
  transition: color 150ms ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-cta { padding: 10px 16px; font-size: 14px; }
.nav-toggle {
  display: none;
  padding: 10px;
  margin-right: -10px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--s-3);
    gap: var(--s-2);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 200ms ease;
  }
  .nav.open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; }
  .nav-link { font-size: 16px; padding: 6px 0; }
  .nav-cta { width: 100%; padding: 14px; font-size: 15px; }
}

/* Hero */
.hero {
  padding: clamp(40px, 8vh, 90px) 0 var(--s-12);
  text-align: center;
}
.hero h1 { margin: 18px auto 22px; max-width: 18ch; }
.hero .subhead { margin: 0 auto var(--s-4); max-width: 56ch; }
.hero-ctas {
  display: flex;
  gap: var(--s-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}
.hero-visual {
  margin: var(--s-4) auto var(--s-5);
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.trust-strip {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: var(--s-4);
}

/* Phone mockup (CSS-only — stand-in for real screenshots) */
.phone {
  width: 280px;
  height: 560px;
  background: #1a1a1c;
  border-radius: 40px;
  padding: 10px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.04) inset;
  flex-shrink: 0;
}
.phone-screen {
  background: var(--bg);
  border-radius: 32px;
  height: 100%;
  padding: 28px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 14px;
}
.phone-screen .eyebrow { font-size: 10px; color: var(--gold); }
.phone-screen h4 { font-size: 18px; }

/* Real screenshot inside the phone bezel */
.phone-screen.has-img { padding: 0; }
.phone-screen.has-img .phone-notch { display: none; }
.phone-shot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Standalone card screenshot — for app components that aren't full-screen */
.card-shot-wrap {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}
.card-shot {
  width: 100%;
  height: auto;
  display: block;
}

/* Apple Watch frame — smaller, square-ish to match watchOS aspect */
.watch-pair {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.watch {
  width: 200px;
  height: 240px;
  background: #1a1a1c;
  border-radius: 44px;
  padding: 8px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
  flex-shrink: 0;
}
.watch-screen {
  background: #000;
  border-radius: 36px;
  height: 100%;
  overflow: hidden;
}
.watch-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Readiness card — matches the app's home-screen UI:
   three concentric rings (Score green, Load orange, ACWR blue) +
   center score + OPTIMAL pill + three stat badges below. */
.readiness-rings {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  margin: 0 auto;
  container-type: inline-size;
}
.readiness-rings svg { width: 100%; height: 100%; display: block; }
.readiness-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5cqw;
}
.readiness-score {
  font-size: 28cqw;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum';
}
.readiness-pill {
  background: rgba(76, 175, 80, 0.18);
  color: #4CAF50;
  font-size: 5cqw;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 1.8cqw 4cqw;
  border-radius: 999px;
  text-transform: uppercase;
  line-height: 1.3;
}
.readiness-desc {
  text-align: center;
  color: var(--text-subtle);
  font-size: 13px;
  line-height: 1.4;
  margin: 14px auto 0;
  max-width: 30ch;
}
.readiness-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.readiness-stat {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  padding: 4px;
}
.readiness-stat-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.readiness-stat-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  font-feature-settings: 'tnum';
}
.readiness-stat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-top: 2px;
}

.bar-row { display: grid; grid-template-columns: 60px 1fr 32px; align-items: center; gap: 8px; font-size: 11px; color: var(--text-subtle); margin-top: 4px; }
.bar-track { height: 4px; background: rgba(255,255,255,0.07); border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 999px; }
.bar-fill.endurance { background: var(--endurance); }
.bar-fill.combat { background: var(--combat); }

/* Audience doorways — 5 cards */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-2);
  margin-top: var(--s-6);
}
@media (max-width: 1024px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--audience-color, var(--gold));
  border-radius: var(--radius-md);
  padding: var(--s-3);
  display: flex; flex-direction: column;
  transition: transform 220ms ease, border-top-color 220ms ease;
}
.audience-card:hover { transform: translateY(-4px); }
.audience-card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--audience-color-dim, var(--gold-dim));
  color: var(--audience-color, var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  margin-bottom: var(--s-2);
  font-family: var(--font-mono);
}
.audience-card h3 {
  font-size: 22px;
  margin: 4px 0 8px;
  color: var(--text);
}
.audience-card p {
  color: var(--text-subtle);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: var(--s-3);
  flex-grow: 1;
}
.audience-card-cta {
  color: var(--audience-color, var(--gold));
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.005em;
}

/* Step grid (3 columns) */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-6);
}
@media (max-width: 768px) { .step-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--s-4);
  position: relative;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: var(--s-2);
}
.step-card h3 { font-size: 22px; margin-bottom: 12px; }
.step-card p { color: var(--text-subtle); font-size: 15px; }

/* Modality cards — 5 wide cards */
.modality-stack > * + * { margin-top: var(--s-3); }
.modality-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--modality-color, var(--gold));
  border-radius: var(--radius-md);
  padding: var(--s-4);
}
.modality-card-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-4);
  align-items: center;
}
@media (max-width: 900px) { .modality-card-grid { grid-template-columns: 1fr; } }
.modality-card .eyebrow { color: var(--modality-color, var(--gold)); margin-bottom: var(--s-1); }
.modality-card h3 { margin-bottom: var(--s-3); }
.modality-card-visual {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: var(--s-3);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.modality-card-visual::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at center, var(--modality-color-dim, var(--gold-dim)), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-subtle);
  font-size: 15px;
  line-height: 1.45;
}
.feature-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}
.feature-list.compact li { padding: 4px 0; font-size: 14px; }

/* Readiness section (big animated card) */
.readiness-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-8) 0;
}
.readiness-hero-card {
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  text-align: center;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 0 100px rgba(212, 168, 67, 0.12);
}
.readiness-hero-card .readiness-rings { max-width: 320px; }
.readiness-hero-card .readiness-desc { font-size: 15px; max-width: 36ch; margin-top: 18px; }
.readiness-hero-card .readiness-stats { max-width: 320px; margin-left: auto; margin-right: auto; gap: 10px; }
.readiness-hero-card .readiness-stat-label { font-size: 10px; }
.readiness-hero-card .readiness-stat-value { font-size: 20px; }
.readiness-hero-card .readiness-stat-dot { width: 6px; height: 6px; }
.readiness-hero-card--img { padding: 0; overflow: hidden; }
.readiness-hero-shot { display: block; width: 100%; height: auto; border-radius: var(--radius-lg); }
.readiness-floating-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
  max-width: 720px;
}

/* Sensei section */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
@media (max-width: 900px) { .two-column { grid-template-columns: 1fr; } }

.chat-mockup {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 360px;
}
.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.4;
}
.chat-msg-user { align-self: flex-end; background: var(--gold); color: #0a0a0a; }
.chat-msg-ai { align-self: flex-start; background: var(--card-elevated); color: var(--text); border: 1px solid var(--border); }
.chat-msg-ai strong { color: var(--gold); }

/* Real Sensei chat screenshot inside the chat-mockup card */
.chat-mockup--img { padding: 0; min-height: 0; overflow: hidden; }
.chat-shot { display: block; width: 100%; height: auto; border-radius: var(--radius-md); }

/* Built-for-real-athletes grid (6 cells) */
.built-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-6);
}
@media (max-width: 900px) { .built-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .built-grid { grid-template-columns: 1fr; } }

.built-cell {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--s-3);
}
.built-cell h4 { font-size: 18px; margin-bottom: 8px; }
.built-cell p { color: var(--text-subtle); font-size: 14px; line-height: 1.5; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-6);
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-featured {
  border-color: var(--gold-border);
  background: linear-gradient(180deg, rgba(212,168,67,0.06) 0%, var(--card) 50%);
  box-shadow: 0 0 60px rgba(212, 168, 67, 0.1);
}
.plan-badge {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0a0a0a;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.plan-name {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; font-weight: 600;
}
.plan-tagline { color: var(--text-subtle); font-size: 14px; margin-bottom: var(--s-3); }
.plan-price { font-size: 60px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.plan-price sup { font-size: 22px; vertical-align: top; color: var(--text-subtle); font-weight: 600; }
.plan-price small { font-size: 14px; font-weight: 500; color: var(--text-subtle); }
.plan-period { color: var(--text-subtle); font-size: 13px; margin: 8px 0 var(--s-3); }
.plan ul { margin: var(--s-3) 0 0; padding: 0; list-style: none; flex-grow: 1; }
.plan li {
  padding: 7px 0;
  color: var(--text-subtle);
  font-size: 14px;
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
.plan li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.plan li.dim { color: var(--text-ghost); }
.plan li.dim::before { color: var(--text-ghost); }
.plan-cta { margin-top: var(--s-3); }

/* Comparison table */
.compare-table-wrap { margin-top: var(--s-6); overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td {
  text-align: center;
  padding: 14px var(--s-2);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.compare-table th { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare-table td { color: var(--text-subtle); }
.compare-check { color: var(--gold); font-weight: 700; }
.compare-dash { color: var(--text-ghost); }
.compare-row-header td { color: var(--gold); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; padding-top: var(--s-3); }

/* FAQ accordion */
.faq-list { max-width: 720px; margin: var(--s-6) auto 0; }
.faq-list details {
  border-top: 1px solid var(--border);
  padding: var(--s-3) 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--border); }
.faq-list summary {
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-2);
  color: var(--text);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 26px;
  color: var(--gold);
  transition: transform 200ms ease;
  line-height: 1;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin-top: 12px; color: var(--text-subtle); line-height: 1.6; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--s-8) 0 var(--s-3);
  margin-top: var(--s-12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-3); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .nav-logo { font-size: 22px; }
.footer-tagline { color: var(--text-muted); font-size: 14px; margin-top: 12px; max-width: 32ch; line-height: 1.55; }
.footer-badge { display: inline-block; margin-top: var(--s-3); }
.footer-badge img { display: block; }
.footer h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s-2);
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 4px 0; }
.footer a { color: var(--text-subtle); font-size: 14px; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: var(--s-6);
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.waitlist-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 16px;
}
.waitlist-form input::placeholder { color: var(--text-muted); }
.waitlist-form input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.waitlist-form button { padding: 16px 24px; }
.waitlist-microcopy { font-size: 12px; color: var(--text-muted); margin-top: 14px; text-align: center; }
.waitlist-success { color: var(--success); font-weight: 500; }

/* Privacy callout */
.privacy-callout {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: var(--s-6) var(--s-4);
  border: 1px solid var(--border);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.privacy-callout h3 { margin-bottom: var(--s-2); }
.privacy-callout > p { color: var(--text-subtle); margin-bottom: var(--s-3); }
.privacy-callout ul {
  display: inline-block;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: var(--s-2) 0 var(--s-3);
}
.privacy-callout li { padding: 6px 0; color: var(--text-subtle); display: flex; gap: 10px; align-items: flex-start; }
.privacy-callout li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* Legal pages (privacy/terms) */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--s-8) var(--s-3);
}
.legal-page h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: var(--s-2); }
.legal-page h2 { font-size: clamp(20px, 2.5vw, 26px); margin-top: var(--s-6); margin-bottom: var(--s-2); color: var(--gold); }
.legal-page h3 { font-size: 18px; margin-top: var(--s-4); margin-bottom: var(--s-1); }
.legal-page p, .legal-page li { color: var(--text-subtle); line-height: 1.65; margin-bottom: 12px; font-size: 16px; }
.legal-page ul, .legal-page ol { padding-left: var(--s-3); }
.legal-page a { color: var(--gold); border-bottom: 1px solid transparent; }
.legal-page a:hover { border-bottom-color: var(--gold); }
.legal-page .effective-date { color: var(--text-muted); font-size: 14px; margin-bottom: var(--s-4); }
.legal-page strong { color: var(--text); }

/* App Store badge placeholder */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-weight: 500;
}
.appstore-badge:hover { background: var(--gold-dim); }
.appstore-badge .small { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.appstore-badge .big { font-size: 16px; font-weight: 700; }

/* Final CTA */
.final-cta {
  text-align: center;
  padding: var(--s-12) 0;
  background: radial-gradient(ellipse at center, rgba(212,168,67,0.05) 0%, transparent 70%);
}
.final-cta h2 { margin: var(--s-2) auto var(--s-2); max-width: 18ch; }
.final-cta p { color: var(--text-subtle); margin: 0 auto var(--s-4); max-width: 52ch; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.shown { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: #0a0a0a;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 200;
}
.skip-link:focus { top: 16px; }

/* Utilities — extracted from repeated inline styles. Defined last so that,
   on the bare elements they're applied to, they win any equal-specificity tie. */
.body-copy { color: var(--text-subtle); font-size: 17px; line-height: 1.7; }
.text-gold { color: var(--gold); }
.text-fine { font-size: 13px; color: var(--text-muted); }
.mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); }

/* Visually hidden but available to screen readers */
.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;
}
