:root {
  --bg: #F4F0E8;
  --surface: #FFFFFF;
  --fg: #1C1B18;
  --fg-2: #6B6860;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --border: #E2DED6;
  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--fg);
}
.nav__tagline {
  font-size: 13px;
  color: var(--fg-2);
  letter-spacing: 0.01em;
}

/* SECTIONS */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 12px;
}

/* HERO */
.hero {
  padding: 80px 24px 72px;
  background: var(--fg);
  color: #F4F0E8;
}
.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #F4F0E8;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: #A09B91;
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.65;
}
.hero__stat-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(244,240,232,0.12);
  padding-top: 40px;
  flex-wrap: wrap;
}
.hero__stat {
  flex: 1;
  min-width: 160px;
  padding: 0 40px 0 0;
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-label {
  display: block;
  font-size: 12px;
  color: #6B6860;
  line-height: 1.4;
}
.hero__stat-div {
  width: 1px;
  background: rgba(244,240,232,0.12);
  align-self: stretch;
  margin-right: 40px;
}

/* PROBLEM */
.problem {
  padding: 80px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.problem__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem__header {
  margin-bottom: 48px;
}
.problem__header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--fg);
  max-width: 500px;
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.problem__item {
  background: var(--bg);
  padding: 32px 28px;
}
.problem__icon {
  width: 40px;
  height: 40px;
  background: var(--fg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.problem__item p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* HOW */
.how {
  padding: 80px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.how__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--fg);
  max-width: 600px;
  margin-bottom: 56px;
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.how__step {
  background: var(--surface);
  padding: 32px 24px;
}
.how__step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.how__step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.how__step p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes {
  padding: 80px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.outcomes__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.outcomes__left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.outcomes__left p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
}
.outcomes__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.outcome {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.outcome:last-child { border-bottom: none; }
.outcome__metric {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.outcome__label {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 80px 24px;
  background: var(--fg);
  color: #F4F0E8;
}
.closing__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #F4F0E8;
  margin-bottom: 20px;
}
.closing p {
  font-size: 17px;
  font-weight: 300;
  color: #A09B91;
  max-width: 520px;
  line-height: 1.65;
}

/* FOOTER */
.footer {
  padding: 28px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--fg);
}
.footer__tagline {
  font-size: 12px;
  color: var(--fg-2);
  margin-left: 12px;
}
.footer__meta {
  font-size: 12px;
  color: var(--fg-2);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 56px 20px 56px; }
  .hero__stat-row { flex-direction: column; gap: 24px; }
  .hero__stat-div { display: none; }
  .hero__stat { padding: 0; }
  .problem__grid { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .outcomes__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .nav__tagline { display: none; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero__headline { font-size: 52px; }
}
