:root {
  --bg: #111116;
  --surface: #18181f;
  --border: #2a2a35;
  --fg: #f0ede6;
  --muted: #8a8799;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --phase1: #f59e0b;
  --phase2: #10b981;
  --phase3: #a78bfa;
}

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

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

/* Navigation */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}

.wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}

.lede {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}

.hero-metrics {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 20px;
  border-left: 1px solid var(--border);
  padding-left: 40px;
}

.metric-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.metric-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

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

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--fg);
}

/* Phases */
.phases {
  background: var(--surface);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.phases .section-label { text-align: center; }
.phases h2 { text-align: center; margin-bottom: 60px; }

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.phase-card {
  padding: 40px 36px;
  background: var(--bg);
}

.phase-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.phase-1 .phase-num { color: var(--phase1); }
.phase-2 .phase-num { color: var(--phase2); }
.phase-3 .phase-num { color: var(--phase3); }

.phase-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.phase-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Features */
.features {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.features h2 { margin-bottom: 48px; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:first-child { border-top: 1px solid var(--border); }

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-body h4 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.feature-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Outcomes */
.outcomes {
  background: var(--surface);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.outcomes-headline {
  margin-bottom: 60px;
}

.outcomes-headline h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.outcome {
  background: var(--bg);
  padding: 40px 32px;
  text-align: center;
}

.outcome-stat {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.outcome-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Closing */
.closing {
  padding: 100px 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.closing-badge {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.closing h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 24px;
}

.closing p {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .wordmark {
  font-size: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.footer-meta {
  font-size: 12px;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
  .topbar { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-metrics { flex-direction: row; border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; }
  .metric { flex: 1; }
  .phase-grid { grid-template-columns: 1fr; }
  .phases { padding: 60px 24px; }
  .features { padding: 60px 24px; }
  .outcomes { padding: 60px 24px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .closing { padding: 60px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}