:root {
  --bg: #0B0F19;
  --bg-2: #0F1520;
  --bg-3: #131927;
  --fg: #E8EAF0;
  --fg-muted: #8A8FA3;
  --accent: #E8A838;
  --accent-2: #C48A20;
  --accent-glow: rgba(232, 168, 56, 0.12);
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav { border-bottom: 1px solid var(--border); background: rgba(11,15,25,0.8); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; color: var(--fg); }
.nav-tagline { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* Section label */
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 12px; }

/* Hero */
.hero { padding: 80px 32px 100px; max-width: 1200px; margin: 0 auto; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 20px; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-headline { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 20px; }
.hero-lede { font-size: 17px; color: var(--fg-muted); line-height: 1.7; max-width: 480px; margin-bottom: 40px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-value { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--fg); }
.stat-label { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 32px; background: var(--border); }
.hero-image-wrap { position: relative; }
.hero-img { width: 100%; border-radius: 16px; display: block; aspect-ratio: 16/10; object-fit: cover; }
.hero-img-glow { position: absolute; inset: 0; border-radius: 16px; background: linear-gradient(135deg, rgba(232,168,56,0.08) 0%, transparent 60%); pointer-events: none; }

/* Signal */
.signal { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 32px; }
.signal-inner { max-width: 1200px; margin: 0 auto; }
.signal-header { margin-bottom: 60px; }
.signal-header h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -0.025em; color: var(--fg); }
.signal-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 0; margin-bottom: 60px; }
.step { padding: 32px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); position: relative; }
.step-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--accent-glow); border: 1px solid rgba(232,168,56,0.2); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 16px; }
.step-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--fg); margin-bottom: 8px; }
.step-body p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-connector { width: 40px; height: 1px; background: linear-gradient(90deg, var(--border), var(--accent), var(--border)); flex-shrink: 0; }
.signal-visual { margin-top: 20px; text-align: center; }
.signal-img { max-width: 560px; width: 100%; border-radius: 12px; display: inline-block; aspect-ratio: 1; object-fit: cover; }

/* Outcomes */
.outcomes { padding: 80px 32px; max-width: 1200px; margin: 0 auto; }
.outcomes-inner { max-width: 100%; }
.outcomes h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -0.025em; color: var(--fg); margin-bottom: 48px; }
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.outcome { padding: 40px; background: var(--bg-2); border: 1px solid var(--border); }
.outcome-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--accent); opacity: 0.15; margin-bottom: 12px; line-height: 1; }
.outcome h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--fg); margin-bottom: 10px; }
.outcome p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* Philosophy */
.philosophy { padding: 80px 32px; background: var(--bg-3); border-top: 1px solid var(--border); }
.philosophy-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.philosophy-quote blockquote { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; line-height: 1.5; color: var(--fg); letter-spacing: -0.02em; margin-bottom: 20px; font-style: normal; }
.philosophy-quote cite { font-size: 13px; color: var(--fg-muted); font-style: normal; }

/* Closing */
.closing { padding: 100px 32px; max-width: 1200px; margin: 0 auto; text-align: center; }
.closing h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 20px; }
.closing p { font-size: 17px; color: var(--fg-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--fg); margin-bottom: 4px; }
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-copy { font-size: 12px; color: var(--fg-muted); opacity: 0.5; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-img { aspect-ratio: 16/9; }
  .signal-steps { grid-template-columns: 1fr; }
  .step-connector { width: 1px; height: 24px; margin: 0 auto; }
  .outcomes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px 80px; }
  .signal, .outcomes, .philosophy, .closing { padding: 60px 20px; }
  .nav-inner { padding: 14px 20px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .outcome { padding: 28px 24px; }
  .outcome-number { font-size: 36px; }
}