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

:root {
  --bg: #080c14;
  --surface: #0f1623;
  --surface-2: #162033;
  --border: #1e2d45;
  --accent: #f5b731;
  --accent-dim: rgba(245, 183, 49, 0.12);
  --text: #e8eaf0;
  --text-muted: #8896ad;
  --text-dim: #4d607a;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  padding: 28px 48px;
  display: flex;
  align-items: center;
}
.wordmark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* HERO */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 100px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(245,183,49,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(245,183,49,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 860px;
  position: relative;
}
.overline {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
h1 {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 36px;
}
.lede {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* CONVICTION */
.conviction {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.conviction-inner {
  max-width: 760px;
}
blockquote {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.02em;
}
blockquote::before { content: '\201C'; color: var(--accent); }
blockquote::after { content: '\201D'; color: var(--accent); }

/* OUTCOMES */
.outcomes {
  padding: 100px 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.outcome {
  padding: 48px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.outcome-number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 28px;
}
h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.outcome p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* SHIFT */
.shift {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.shift-inner {
  max-width: 800px;
}
.shift h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 32px;
}
.shift p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 120px 48px 140px;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
}

/* FOOTER */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
footer p {
  font-size: 13px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav, .hero, .conviction, .outcomes, .shift, .closing, footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 44px;
  }
  .hero {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .conviction, .outcomes, .shift, .closing {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}