:root {
  --bg: #0d0d12;
  --surface: #13131a;
  --surface-2: #1a1a24;
  --fg: #f0ede6;
  --fg-muted: #8a8a9a;
  --accent: #e8a020;
  --accent-dim: rgba(232, 160, 32, 0.12);
  --border: rgba(255, 255, 255, 0.07);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(13, 13, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-badge {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 160, 32, 0.25);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 160, 32, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 160, 32, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, rgba(0,0,0,0.8) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, rgba(0,0,0,0.8) 0%, transparent 70%);
  animation: gridShift 18s ease-in-out infinite alternate;
}
@keyframes gridShift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-12px, -8px) scale(1.04); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}
.hero-stat-row {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.hero-stat {}
.stat-value {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 2.25rem;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 150px;
}

/* ── Problem ── */
.problem {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.problem-header {}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.75rem;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 4px;
}
.problem h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
}
.problem-text {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.problem-stats { display: flex; flex-direction: column; gap: 2rem; }
.problem-stat {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.pstat-num {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 2.25rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.pstat-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── How ── */
.how {
  padding: 7rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin: 1rem 0 4rem;
  max-width: 500px;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.step {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0;
  position: relative;
}
.step:nth-child(even) { border-left: none; }
.step:nth-child(3), .step:nth-child(4) { border-top: none; }
.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  color: rgba(232, 160, 32, 0.2);
  margin-bottom: 1rem;
  line-height: 1;
}
.step h3 {
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Outcomes ── */
.outcomes { padding: 7rem 2rem; }
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin: 1rem 0 3.5rem;
  max-width: 500px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.outcome {
  padding: 2.5rem;
  background: var(--bg);
}
.outcome-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.outcome h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.01em;
}
.outcome p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Closing ── */
.closing {
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-statement {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--fg);
  line-height: 1.4;
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .problem-inner { grid-template-columns: 1fr; gap: 3rem; }
  .how-steps { grid-template-columns: 1fr; }
  .step:nth-child(even) { border-left: 1px solid var(--border); border-top: none; }
  .step:nth-child(3), .step:nth-child(4) { border-top: 1px solid var(--border); }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; }
  .hero-stat-row { gap: 2rem; }
  .stat-label { max-width: 180px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .step { padding: 1.75rem; }
}