/* ===== DESIGN TOKENS ===== */
:root {
  /* Landing page palette */
  --bg-primary: #0a0f0d;
  --bg-secondary: #0f1612;
  --bg-card: #141c18;
  --bg-card-highlight: #1a2b22;
  --fg-primary: #e8ede9;
  --fg-secondary: #8fa396;
  --fg-muted: #5a6e60;
  --accent: #34d399;
  --accent-dim: #1a7a52;
  --accent-glow: rgba(52, 211, 153, 0.15);
  --border: #1e2e25;
  --border-accent: #2a4a36;

  /* App / mission-control palette */
  --app-sidebar-w: 240px;
  --app-bg:        #070b14;
  --app-surface:   #0f172a;
  --app-elevated:  #1a2740;
  --app-glass:     rgba(26, 39, 64, 0.7);
  --app-text-primary:   #e2eaf5;
  --app-text-secondary: #7c92aa;
  --app-text-muted:     #3d5470;
  --app-accent:         #38bdf8;
  --app-accent-dim:     #0c4a6e;
  --app-accent-glow:   rgba(56, 189, 248, 0.08);
  --app-border:         rgba(148, 163, 184, 0.08);
  --app-border-strong:  rgba(148, 163, 184, 0.16);

  /* Semantic */
  --scope1-color: #f87171;
  --scope2-color: #fbbf24;
  --scope3-color: #38bdf8;
  --ok-color:     #4ade80;
  --warn-color:   #fbbf24;
  --err-color:    #f87171;

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-primary);
}
.nav-logo {
  color: var(--accent);
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg-primary); }
.nav-cta-btn {
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: #0a0f0d;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-cta-btn:hover { opacity: 0.88; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-primary);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-glow), transparent),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,211,153,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 920px;
  width: 100%;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 2rem;
  background: rgba(52,211,153,0.05);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-secondary);
  margin-bottom: 2.5rem;
}

/* Pain Scene */
.pain-scene {
  max-width: 640px;
  margin: 0 auto 2rem;
}
.scene-timeline {
  position: relative;
  min-height: 220px;
}
.scene-step {
  display: none;
  animation: sceneFadeIn 0.4s ease;
}
.scene-step.scene-active { display: block; }
@keyframes sceneFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.scene-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
}
.scene-card-panic { border-color: rgba(251, 191, 36, 0.25); }
.scene-card-stakes { border-color: rgba(248, 113, 113, 0.25); background: rgba(248, 113, 113, 0.04); }
.scene-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.scene-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}
.scene-badge-buyer { background: rgba(52,211,153,0.1); color: var(--accent); }
.scene-badge-internal { background: rgba(251,191,36,0.1); color: #fbbf24; }
.scene-badge-danger { background: rgba(248,113,113,0.12); color: #f87171; }
.scene-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.scene-msg {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.scene-msg strong { color: var(--fg-primary); }
.scene-subtext {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-style: italic;
}
.scene-spreadsheet-mock {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem;
  margin-top: 0.75rem;
}
.ss-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.3rem 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ss-row:last-child { border-bottom: none; }
.ss-header { color: var(--fg-muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; }
.ss-unknown { color: #fbbf24; font-weight: 600; }
.ss-more { color: var(--fg-muted); font-size: 0.72rem; grid-column: 1/-1; padding-top: 0.25rem; }
.stakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.stake-item { text-align: center; padding: 1rem; background: rgba(248,113,113,0.06); border: 1px solid rgba(248,113,113,0.15); border-radius: 8px; }
.stake-item-warn { background: rgba(251,191,36,0.06); border-color: rgba(251,191,36,0.15); }
.stake-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #f87171; line-height: 1.1; }
.stake-item-warn .stake-number { color: #fbbf24; }
.stake-label { font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.3rem; line-height: 1.4; }
.scene-final-msg { font-size: 0.88rem; color: var(--fg-secondary); line-height: 1.6; }
.scene-controls {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}
.scene-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.scene-dot-active { background: var(--accent); transform: scale(1.3); }

/* Hero CTA + Stats */
.hero-scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: #0a0f0d;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 3rem;
  transition: opacity 0.15s, transform 0.15s;
}
.hero-scroll-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.cta-arrow { font-size: 1.1rem; }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
  margin-top: 0.3rem;
}
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ===== RISK CALCULATOR ===== */
.calculator-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  position: relative;
}
.calculator-inner {
  max-width: 760px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.calc-header { text-align: center; margin-bottom: 2.5rem; }
.calc-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.6;
}
.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 0 60px rgba(52,211,153,0.05);
}
.calc-field { margin-bottom: 1.5rem; }
.calc-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.calc-select-wrap { position: relative; }
.calc-select {
  width: 100%;
  padding: 0.8rem 2.5rem 0.8rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.calc-select:focus { outline: none; border-color: var(--accent); }
.calc-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg-muted);
  pointer-events: none;
  font-size: 0.9rem;
}
.calc-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: #0a0f0d;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  margin-top: 0.5rem;
}
.calc-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.calc-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

/* Calc Result */
.calc-result { animation: sceneFadeIn 0.4s ease; }
.result-header { text-align: center; padding: 1.5rem 0 2rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.result-risk-label {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.risk-high { background: rgba(248,113,113,0.15); color: #f87171; border: 1px solid rgba(248,113,113,0.3); }
.risk-moderate { background: rgba(251,191,36,0.12); color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.risk-elevated { background: rgba(251,191,36,0.08); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }
.result-headline {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--fg-secondary);
  margin-bottom: 0.5rem;
}
.result-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #f87171;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.result-sublabel { font-size: 0.85rem; color: var(--fg-muted); }
.result-breakdown { margin-bottom: 1.5rem; }
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
}
.result-row:last-child { border-bottom: none; }
.result-row-label { color: var(--fg-secondary); }
.result-row-value { font-family: var(--font-mono); font-weight: 600; color: var(--fg-primary); }
.result-warn { color: #fbbf24; }
.result-row-total { border-top: 1px solid var(--border); padding-top: 1rem; font-weight: 600; }
.result-total { font-size: 1.1rem; color: #f87171; }
.result-insight {
  background: rgba(52,211,153,0.05);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.result-cta { text-align: center; margin-bottom: 1rem; }
.result-cta-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: #0a0f0d;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}
.result-cta-btn:hover { opacity: 0.9; }
.result-cta-sub { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.5rem; }
.result-recalc {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  border-radius: 8px;
  padding: 0.6rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.result-recalc:hover { border-color: var(--border-accent); color: var(--fg-secondary); }
.calc-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.trust-divider { color: var(--border); }

/* ===== FREE REPORT SECTION ===== */
.free-report-section {
  padding: 6rem 2rem;
  background: var(--bg-primary);
  position: relative;
}
.free-report-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 100%, rgba(52,211,153,0.08), transparent 70%);
  pointer-events: none;
}
.free-report-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.free-report-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(52,211,153,0.08);
  border: 1px solid var(--border-accent);
  margin-bottom: 1.5rem;
}
.free-report-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.free-report-sub {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.free-report-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 80px rgba(52,211,153,0.07);
}

/* Lead form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field { text-align: left; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-secondary);
  margin-bottom: 0.4rem;
}
.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: var(--fg-muted); }
.form-input:focus { outline: none; border-color: var(--accent); }
.form-error {
  color: #f87171;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  text-align: left;
}
.lead-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: #0a0f0d;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  margin-top: 0.25rem;
}
.lead-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.lead-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-trust {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
}

/* Lead success state */
.lead-success { text-align: center; padding: 1rem 0; animation: sceneFadeIn 0.4s ease; }
.success-icon {
  width: 52px; height: 52px;
  background: rgba(52,211,153,0.12);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0 auto 1rem;
}
.success-headline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.success-sub { font-size: 0.9rem; color: var(--fg-secondary); line-height: 1.6; margin-bottom: 1.5rem; max-width: 420px; margin-left: auto; margin-right: auto; }
.success-cta-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #0a0f0d;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: opacity 0.15s;
}
.success-cta-btn:hover { opacity: 0.9; }
.success-formats { font-size: 0.78rem; color: var(--fg-muted); }
.success-formats strong { color: var(--fg-secondary); }

/* Format badges */
.format-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.format-badge {
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--fg-secondary);
  background: rgba(255,255,255,0.02);
}

/* ===== PAYWALL GATE ===== */
.paywall-gate {
  position: relative;
  padding: 0 2rem 6rem;
  background: var(--bg-secondary);
  overflow: hidden;
}
.paywall-gate-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Platform preview (blurred) */
.platform-preview {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
  opacity: 0.6;
}
.preview-sidebar {
  width: 200px;
  flex-shrink: 0;
  background: rgba(0,0,0,0.3);
  border-right: 1px solid var(--border);
  padding: 1.5rem 1rem;
}
.ps-logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.ps-nav-item {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 0.25rem;
}
.ps-nav-active { background: rgba(52,211,153,0.1); color: var(--accent); }
.preview-main {
  flex: 1;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-content: start;
}
.preview-widget {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}
.pw-label { font-size: 0.7rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.pw-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.preview-table {
  grid-column: 1 / -1;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
}
.pt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pt-row:last-child { border-bottom: none; }
.pt-header { color: var(--fg-muted); font-size: 0.68rem; text-transform: uppercase; }
.pt-ok { color: var(--accent); }
.pt-pending { color: #fbbf24; }

/* Gate overlay */
.paywall-gate-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,22,18,0.4) 0%, rgba(15,22,18,0.97) 45%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 2rem 3rem;
  text-align: center;
}
.gate-lock-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(52,211,153,0.3));
}
.gate-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.gate-sub {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.gate-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.gate-primary-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--accent);
  color: #0a0f0d;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.gate-primary-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.gate-secondary-btn {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-accent);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.gate-secondary-btn:hover { color: var(--accent); }
.gate-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.gate-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--fg-secondary);
}
.gate-feature-icon { font-size: 1rem; }

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 0.5rem;
}
.footer-logo { color: var(--accent); }
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--fg-primary); }
.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 0.78rem; color: var(--fg-muted); }

/* ===== LEGACY LANDING PARTIALS (problem, how, buyers, closing) ===== */
/* Kept for compatibility if re-enabled */
.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--fg-secondary); max-width: 700px; margin: 0 auto 3rem; line-height: 1.7; }
.problem { padding: 6rem 2rem; background: var(--bg-secondary); }
.problem-inner { max-width: 1000px; margin: 0 auto; }
.problem-label, .how-label, .buyers-label { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 1rem; text-transform: uppercase; }
.problem h2, .how h2, .buyers h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.15; margin-bottom: 3rem; letter-spacing: -0.01em; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.problem-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: border-color 0.2s; }
.problem-card:hover { border-color: var(--border-accent); }
.problem-card.highlight { background: var(--bg-card-highlight); border-color: var(--accent-dim); box-shadow: 0 0 40px rgba(52,211,153,0.08); }
.problem-icon { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--fg-muted); margin-bottom: 1rem; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.03); border-radius: 10px; }
.problem-icon.scope { color: var(--accent); background: var(--accent-glow); }
.problem-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; }
.problem-card p { font-size: 0.92rem; color: var(--fg-secondary); line-height: 1.65; }
.how { padding: 6rem 2rem; background: var(--bg-primary); }
.how-inner { max-width: 800px; margin: 0 auto; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--accent-dim); line-height: 1; flex-shrink: 0; width: 80px; }
.step-content h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.6rem; }
.step-content p { font-size: 0.95rem; color: var(--fg-secondary); line-height: 1.7; }
.buyers { padding: 6rem 2rem; background: var(--bg-secondary); }
.buyers-inner { max-width: 1000px; margin: 0 auto; }
.regulatory-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.reg-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: border-color 0.2s; }
.reg-card:hover { border-color: var(--border-accent); }
.reg-tag { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 4px; font-family: var(--font-display); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; background: rgba(52,211,153,0.1); color: var(--accent); margin-bottom: 1rem; }
.reg-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.6rem; }
.reg-card p { font-size: 0.9rem; color: var(--fg-secondary); line-height: 1.65; }
.closing { padding: 6rem 2rem; background: radial-gradient(ellipse 70% 50% at 50% 100%, var(--accent-glow), transparent), var(--bg-primary); text-align: center; }
.closing-inner { max-width: 750px; margin: 0 auto; }
.closing h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.closing-text { font-size: 1.05rem; color: var(--fg-secondary); line-height: 1.75; margin-bottom: 2.5rem; }
.closing-price { display: inline-flex; flex-direction: column; align-items: center; padding: 1.5rem 3rem; border: 1px solid var(--border-accent); border-radius: 12px; background: var(--bg-card); }
.price-range { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--accent); }
.price-note { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.4rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(10,15,13,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 0.75rem;
    align-items: flex-start;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-cta-btn { width: 100%; text-align: center; }

  .hero { min-height: 80vh; padding: 5rem 1.5rem 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }

  .pain-scene { max-width: 100%; }
  .stakes-grid { grid-template-columns: 1fr; }

  .calculator-section, .free-report-section, .paywall-gate { padding: 4rem 1.5rem; }
  .calc-card { padding: 1.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .platform-preview { height: 240px; }
  .preview-sidebar { display: none; }
  .preview-main { grid-template-columns: 1fr 1fr; }

  .gate-features { gap: 0.75rem; }
  .gate-feature { font-size: 0.8rem; }

  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-links { gap: 1rem; }

  .problem-grid { grid-template-columns: 1fr; }
  .regulatory-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 0.75rem; }
  .step-num { font-size: 2rem; width: auto; }
}

@media (max-width: 480px) {
  .gate-features { flex-direction: column; align-items: center; }
  .preview-main { grid-template-columns: 1fr; }
  .hero-scroll-cta { font-size: 0.9rem; padding: 0.8rem 1.5rem; }
}
