:root {
  --bg: #0c0c0e;
  --bg-alt: #131317;
  --surface: #1c1c22;
  --fg: #f0ede8;
  --fg-muted: #8a8782;
  --accent: #e8820c;
  --accent-dim: rgba(232, 130, 12, 0.15);
  --border: rgba(255, 255, 255, 0.07);
  --radius: 6px;
}

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

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

/* NAV */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--fg);
}
.nav-logo .accent { color: var(--accent); }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 100px 0 80px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  font-weight: 300;
}

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 40px 0;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-val {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 32px;
}

/* SECTION LABEL */
.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

/* PROBLEM */
.problem {
  padding: 96px 0;
  background: var(--bg);
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.problem-icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent);
}
.problem-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW */
.how {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
}
.step-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-body p {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 600px;
}

/* OUTCOMES */
.outcomes {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.outcome {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.outcome-metric {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
}
.outcome-text {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 360px;
}

/* CLOSING */
.closing {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-statement {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  max-width: 800px;
  letter-spacing: 0.01em;
}

/* FOOTER */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.footer-logo .accent { color: var(--accent); }
.footer-sub {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 64px 0 56px; }
  .hero-sub { font-size: 17px; }
  .stats-grid { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .stat-item { border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .stat-item:last-child { border-bottom: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 12px; }
  .step-num { width: auto; font-size: 28px; }
  .closing { padding: 64px 0; }
}