/* ──────────────────────────────────────────────────────────────────────────
   EquiEdge — Shared Stylesheet
   Matches the iOS app design system (Theme.swift EEColors).
   ────────────────────────────────────────────────────────────────────────── */

:root {
  --bg-primary:       #0A0A0F;
  --bg-secondary:     #12121A;
  --bg-card:          #1A1A26;
  --emerald:          #00DC82;
  --blue:             #4A9EFF;
  --gold:             #FFB800;
  --red:              #FF4757;
  --purple:           #a78bfa;
  --text-primary:     #F0F0F5;
  --text-secondary:   #8A8A9A;
  --text-muted:       #55556A;
  --border-subtle:    rgba(255,255,255,0.06);
  --emerald-dim:      rgba(0,220,130,0.15);
  --emerald-dim-soft: rgba(0,220,130,0.06);
  --gold-dim:         rgba(255,184,0,0.15);
  --gold-dim-soft:    rgba(255,184,0,0.06);
  --red-dim:          rgba(255,71,87,0.15);
  --blue-dim:         rgba(74,158,255,0.12);
  --radius:           16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--emerald); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Launch Banner ── */
.launch-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: linear-gradient(90deg, rgba(0,220,130,0.18), rgba(74,158,255,0.18));
  border-bottom: 1px solid rgba(0,220,130,0.25);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 0.5rem 1rem;
}
.launch-banner span { color: var(--emerald); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-right: 0.4rem; }
.launch-banner a {
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,220,130,0.4);
  padding-bottom: 1px;
  margin-left: 0.4rem;
}
.launch-banner a:hover { color: var(--emerald); border-bottom-color: var(--emerald); text-decoration: none; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 34px;
  width: 100%;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
  -webkit-text-fill-color: initial;
}
.nav-logo span {
  background: linear-gradient(135deg, var(--emerald), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  -webkit-text-fill-color: initial;
}
.nav-links a:hover { color: var(--text-primary); text-decoration: none; }
.nav-links a.active { color: var(--emerald); }
.nav-cta {
  background: linear-gradient(135deg, var(--emerald), var(--blue));
  color: var(--bg-primary) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  -webkit-text-fill-color: initial;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.9; text-decoration: none; }

/* Push content below launch banner + nav */
body { padding-top: 94px; }

/* ── Buttons ── */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--emerald), var(--blue));
  color: var(--bg-primary);
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  -webkit-text-fill-color: initial;
}
.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--bg-primary);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--emerald);
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(0,220,130,0.3);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover { border-color: rgba(0,220,130,0.6); text-decoration: none; color: var(--emerald); }

/* ── Hero ── */
.hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,220,130,0.08) 0%, rgba(74,158,255,0.04) 40%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--emerald-dim);
  border: 1px solid rgba(0,220,130,0.2);
  color: var(--emerald);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--emerald), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,220,130,0.06) 0%, rgba(74,158,255,0.03) 40%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  position: relative;
  letter-spacing: -0.3px;
}
.page-hero h1 span {
  background: linear-gradient(135deg, var(--emerald), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.page-hero .update {
  display: inline-block;
  margin-top: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  position: relative;
}

/* ── Phone Mockup ── */
.phone-section { padding: 0 2rem; margin-top: -1rem; text-align: center; position: relative; z-index: 2; }
.phone-mockup {
  display: inline-block;
  background: #000;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 30px 100px rgba(0,220,130,0.08), 0 0 0 1px rgba(255,255,255,0.08);
  max-width: 310px;
}
.phone-screen {
  background: var(--bg-primary);
  border-radius: 32px;
  padding: 1.5rem 1rem;
  min-height: 480px;
  text-align: left;
}
.phone-notch { width: 120px; height: 28px; background: #000; border-radius: 0 0 16px 16px; margin: -1.5rem auto 1rem; }
.phone-header { font-size: 0.6rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.4rem; }
.phone-race { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.2rem; }
.phone-detail { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 1rem; }
.phone-glass-card {
  background: linear-gradient(135deg, rgba(0,220,130,0.06), rgba(74,158,255,0.04));
  border: 1px solid rgba(0,220,130,0.2);
  border-radius: var(--radius);
  padding: 0.8rem;
  margin-bottom: 0.6rem;
}
.phone-horse { font-weight: 700; font-size: 0.85rem; color: var(--text-primary); }
.phone-conf { display: inline-block; font-size: 0.6rem; font-weight: 800; padding: 2px 8px; border-radius: 6px; margin-left: 0.3rem; }
.phone-conf.emerald { background: var(--emerald-dim); color: var(--emerald); }
.phone-conf.gold    { background: var(--gold-dim); color: var(--gold); }
.phone-reason { font-size: 0.68rem; color: var(--text-secondary); margin-top: 0.3rem; line-height: 1.4; }
.phone-units  { font-size: 0.68rem; color: var(--emerald); font-weight: 600; margin-top: 0.3rem; }
.phone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 0.8rem;
  margin-bottom: 0.6rem;
  text-align: center;
}
.phone-noselect { font-size: 0.72rem; color: var(--text-muted); font-style: italic; }
.phone-label { font-size: 0.65rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin: 0.8rem 0 0.4rem; }

/* ── Section Shared ── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner.narrow { max-width: 850px; }
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 550px;
  line-height: 1.7;
}
.section-subtitle.center { margin: 0 auto; text-align: center; }
.text-center { text-align: center; }

/* ── Steps (Home) ── */
.steps-section { background: var(--bg-secondary); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.step { text-align: center; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--blue));
  color: var(--bg-primary);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.step p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Method Steps (How It Works) ── */
.method-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.method-step:last-child { border-bottom: none; }
.step-number {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-primary);
  font-size: 1.4rem; font-weight: 800;
  flex-shrink: 0;
}
.step-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.step-content p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.step-tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin-top: 0.8rem;
}
.step-tag.emerald { background: var(--emerald-dim); color: var(--emerald); }
.step-tag.gold    { background: var(--gold-dim);    color: var(--gold); }
.step-tag.blue    { background: var(--blue-dim);    color: var(--blue); }

/* ── Confidence Scale ── */
.conf-section { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.confidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.conf-card-simple { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 1.5rem; text-align: center; }
.conf-card-simple .range { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.3rem; font-variant-numeric: tabular-nums; }
.conf-card-simple .label { font-size: 0.8rem; font-weight: 700; margin-bottom: 0.3rem; }
.conf-card-simple .units { font-size: 0.75rem; color: var(--text-muted); }
.conf-marginal .range, .conf-marginal .label { color: var(--gold); }
.conf-solid    .range, .conf-solid    .label { color: var(--emerald); }
.conf-strong   .range, .conf-strong   .label { color: var(--blue); }
.conf-dominant .range, .conf-dominant .label { color: var(--purple); }

/* ── Red Flags ── */
.red-flags { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.red-flag {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}
.red-flag::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 3px; border-radius: 2px; background: var(--red); }
.red-flag h4 { font-size: 0.85rem; font-weight: 700; color: var(--red); margin-bottom: 0.2rem; }
.red-flag p  { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }

/* ── Example Box ── */
.example-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
}
.example-header { font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--emerald); margin-bottom: 0.8rem; }
.example-race   { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.2rem; }
.example-meta   { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.example-analysis {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 1.2rem;
  border-left: 3px solid var(--blue);
}
.example-result {
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(0,220,130,0.06), rgba(74,158,255,0.04));
  border: 1px solid rgba(0,220,130,0.2);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.example-horse { font-weight: 700; font-size: 1rem; color: var(--text-primary); }
.example-sub   { font-size: 0.8rem; color: var(--text-muted); }
.example-badge { background: var(--emerald-dim); color: var(--emerald); padding: 0.35rem 1rem; border-radius: 8px; font-weight: 800; font-size: 0.85rem; white-space: nowrap; }

/* ── Stats Bar (Home) ── */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 2rem;
}
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 1.2rem; text-align: center; }
.stat-value { font-size: 1.8rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.stat-value.emerald { color: var(--emerald); }
.stat-value.blue    { color: var(--blue); }
.stat-value.gold    { color: var(--gold); }
.stat-label { font-size: 0.65rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.3rem; }

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 3rem; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(0,220,130,0.15); }
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  border-radius: 2px;
}
.feature-card:nth-child(1)::before { background: var(--emerald); }
.feature-card:nth-child(2)::before { background: var(--gold); }
.feature-card:nth-child(3)::before { background: var(--red); }
.feature-card:nth-child(4)::before { background: var(--blue); }
.feature-card:nth-child(5)::before { background: var(--emerald); }
.feature-card:nth-child(6)::before { background: var(--gold); }
.feature-icon { font-size: 1.3rem; margin-bottom: 0.8rem; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.feature-card p  { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Pricing ── */
.pricing-section { background: var(--bg-secondary); }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin: 2rem 0; }
.pricing-toggle span { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; transition: color 0.2s; cursor: pointer; }
.pricing-toggle span.active { color: var(--text-primary); font-weight: 700; }
.toggle-track {
  width: 48px; height: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.toggle-track.annual { background: var(--emerald-dim); border-color: rgba(0,220,130,0.3); }
.toggle-thumb {
  width: 20px; height: 20px;
  background: var(--emerald);
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 3px;
  transition: transform 0.3s;
}
.toggle-track.annual .toggle-thumb { transform: translateX(22px); }
.save-pill { background: var(--emerald-dim); color: var(--emerald); font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 6px; }

.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.5rem; max-width: 960px; margin-left: auto; margin-right: auto; }
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.2s;
}
.price-card:hover { border-color: rgba(255,255,255,0.1); }
.price-card.featured {
  background: linear-gradient(135deg, rgba(0,220,130,0.06), rgba(74,158,255,0.04));
  border-color: rgba(0,220,130,0.2);
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--emerald-dim);
  color: var(--emerald);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.25rem 0.8rem;
  border-radius: 6px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.price-tier { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.8rem; }
.price-amount { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.price-amount sub { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.price-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; min-height: 1.2rem; }
.price-divider { height: 1px; background: var(--border-subtle); margin: 1.2rem 0; }
.price-features { list-style: none; text-align: left; }
.price-features li { padding: 0.4rem 0; font-size: 0.82rem; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 0.5rem; }
.price-features li::before { content: '✓'; color: var(--emerald); font-weight: 700; flex-shrink: 0; }
.price-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: all 0.15s;
  text-align: center;
}
.price-btn.gradient { background: linear-gradient(135deg, var(--emerald), var(--blue)); color: var(--bg-primary); }
.price-btn.gradient:hover { opacity: 0.9; text-decoration: none; color: var(--bg-primary); }
.price-btn.outline {
  background: transparent;
  color: var(--emerald);
  border: 1.5px solid rgba(0,220,130,0.3);
}
.price-btn.outline:hover { border-color: rgba(0,220,130,0.6); text-decoration: none; color: var(--emerald); }

/* ── Comparison Table ── */
.compare-section { margin-top: 4rem; }
.compare-title { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); margin-bottom: 1.5rem; text-align: center; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
th {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1rem;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-subtle);
}
th:first-child { text-align: left; }
td {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-muted);
}
td:first-child { text-align: left; font-weight: 600; color: var(--text-secondary); }
tr:last-child td { border-bottom: none; }
.yes { color: var(--emerald); font-weight: 700; }

/* ── Value Comparison ── */
.value-section {
  margin-top: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.value-title { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 1.5rem; }
.value-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; max-width: 650px; margin: 0 auto; }
.value-amount { font-size: 2rem; font-weight: 800; }
.value-label  { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }
.value-vs     { font-size: 1.3rem; font-weight: 800; color: var(--text-muted); }

.guarantee { max-width: 550px; margin: 3rem auto 0; text-align: center; }
.guarantee h3 { font-size: 1rem; font-weight: 700; color: var(--emerald); margin-bottom: 0.5rem; }
.guarantee p  { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Waitlist Form ── */
.waitlist-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.waitlist-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,220,130,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.waitlist-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.waitlist-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.waitlist-inner h2 span {
  background: linear-gradient(135deg, var(--emerald), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.waitlist-inner > p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.6; }
.waitlist-form {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.waitlist-form input[type="email"]::placeholder { color: var(--text-muted); }
.waitlist-form input[type="email"]:focus { outline: none; border-color: rgba(0,220,130,0.5); }
.waitlist-form button {
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald), var(--blue));
  color: var(--bg-primary);
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.waitlist-form button:hover { opacity: 0.9; }
.waitlist-form button:disabled { opacity: 0.5; cursor: not-allowed; }
/* Honeypot: visually hidden without display:none (bots skip display:none). */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.waitlist-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }
.waitlist-success {
  display: none;
  background: linear-gradient(135deg, rgba(0,220,130,0.1), rgba(74,158,255,0.06));
  border: 1px solid rgba(0,220,130,0.3);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin: 0 auto;
  max-width: 480px;
}
.waitlist-success.visible { display: block; }
.waitlist-success strong { color: var(--emerald); display: block; margin-bottom: 0.3rem; font-weight: 800; }
.waitlist-error {
  display: none;
  background: rgba(255,71,87,0.08);
  border: 1px solid rgba(255,71,87,0.3);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  color: var(--red);
  font-size: 0.85rem;
  margin: 1rem auto 0;
  max-width: 480px;
}
.waitlist-error.visible { display: block; }

/* ── FAQ ── */
.faq-list { max-width: 680px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border-subtle); padding: 1.2rem 0; }
.faq-q {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--emerald); font-weight: 300; flex-shrink: 0; }
.faq-a { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; margin-top: 0.8rem; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q::after { content: '−'; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--bg-secondary);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,220,130,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.8rem; position: relative; }
.cta-banner p  { font-size: 1rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }

.responsible {
  background: var(--gold-dim-soft);
  border: 1px solid rgba(255,184,0,0.15);
  padding: 0.8rem 1.2rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 2rem auto 0;
  border-radius: 12px;
  max-width: 560px;
  position: relative;
}
.responsible a { color: var(--gold); }

/* ── Empty State (Results) ── */
.empty-state {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 720px;
  margin: 2rem auto 0;
  position: relative;
  overflow: hidden;
}
.empty-state::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,220,130,0.05), transparent 60%);
  pointer-events: none;
}
.empty-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--emerald-dim), var(--blue-dim));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  position: relative;
}
.empty-state h3 { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.6rem; position: relative; }
.empty-state p  { font-size: 0.92rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto 1.5rem; line-height: 1.7; position: relative; }

/* ── Preview Panel (Results) ── */
.preview-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-top: 3rem;
  position: relative;
}
.preview-label {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.preview-title { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.preview-sub   { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.4rem; }

/* ── Legal pages ── */
.legal-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  color: var(--text-secondary);
}
.legal-wrapper h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}
.legal-wrapper .effective {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.legal-wrapper h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 2.2rem 0 0.8rem;
  letter-spacing: 0.2px;
}
.legal-wrapper h2::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 0.95rem;
  background: var(--emerald);
  border-radius: 2px;
  margin-right: 0.7rem;
  vertical-align: -1px;
}
.legal-wrapper p { font-size: 0.92rem; line-height: 1.75; margin-bottom: 0.9rem; }
.legal-wrapper ul { padding-left: 1.3rem; margin-bottom: 0.9rem; }
.legal-wrapper ul li { font-size: 0.92rem; line-height: 1.75; margin-bottom: 0.4rem; }
.legal-wrapper strong { color: var(--text-primary); font-weight: 700; }
.legal-wrapper .callout {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--emerald);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
  font-size: 0.88rem;
  line-height: 1.7;
}
.legal-wrapper .callout.warn { border-left-color: var(--gold); }
.legal-wrapper a { color: var(--emerald); font-weight: 600; }

/* ── Footer ── */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-col h4 {
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-secondary); text-decoration: none; }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  text-align: center;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); margin: 0 0.3rem; }
.footer-bottom a:hover { color: var(--text-secondary); }

/* ── Mobile ── */
@media (max-width: 768px) {
  body { padding-top: 88px; }
  nav { top: 32px; }
  .launch-banner { font-size: 0.72rem; padding: 0.4rem 0.8rem; }
  .launch-banner span { display: block; margin-right: 0; margin-bottom: 0.1rem; }
  .launch-banner a { margin-left: 0; }
  .hero { padding: 3rem 1.2rem 3rem; }
  .hero h1 { font-size: 2.3rem; }
  .hero p { font-size: 1rem; }
  .page-hero { padding: 3rem 1.2rem 2.5rem; }
  .page-hero h1 { font-size: 2rem; }
  section { padding: 3.5rem 1.2rem; }
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 360px; }
  .price-card.featured { transform: none; }
  .confidence-grid { grid-template-columns: repeat(2, 1fr); }
  .red-flags { grid-template-columns: 1fr; }
  .method-step { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
  .footer-inner { flex-direction: column; }
  .value-grid { grid-template-columns: 1fr; gap: 1rem; }
  .value-vs { display: none; }
  table { font-size: 0.75rem; }
  th, td { padding: 0.6rem 0.5rem; }
  .example-result { flex-direction: column; align-items: flex-start; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form button { width: 100%; }
  .legal-wrapper { padding: 2rem 1.2rem 3rem; }
  .legal-wrapper h1 { font-size: 1.8rem; }
}
