:root {
  --navy: #0B1F3A;
  --teal: #14B8A6;
  --teal-light: #99F6E4;
  --off-white: #F7F4EF;
  --warm-gray: #C4B8A8;
  --text-dark: #1C1917;
  --text-mid: #57534E;
  --text-light: #A8A29E;
  --font-display: 'Crimson Pro', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 184, 168, 0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Hero */
.hero {
  padding: 80px 32px 72px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  background: rgba(20, 184, 166, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 28px;
  max-width: 16ch;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--warm-gray);
  padding-top: 40px;
}
.stat {
  padding: 0 48px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  max-width: 14ch;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--warm-gray);
  margin-right: 48px;
  flex-shrink: 0;
}

/* Problem */
.problem {
  background: var(--navy);
  color: var(--off-white);
  padding: 80px 32px;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: start;
}
.problem-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  padding-top: 6px;
}
.problem-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(247, 244, 239, 0.75);
  margin-bottom: 20px;
}
.problem-body p:last-child { margin-bottom: 0; }

/* How */
.how {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.how-header {
  margin-bottom: 64px;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  max-width: 22ch;
  line-height: 1.2;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--warm-gray);
  border: 1px solid var(--warm-gray);
}
.how-card {
  background: var(--off-white);
  padding: 40px 36px;
  position: relative;
}
.how-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(20, 184, 166, 0.15);
  line-height: 1;
  margin-bottom: 20px;
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.how-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Outcomes */
.outcomes {
  background: var(--navy);
  padding: 80px 32px;
}
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-header { margin-bottom: 56px; }
.outcomes .section-label { color: var(--teal-light); }
.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--off-white);
  max-width: 24ch;
  line-height: 1.2;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.outcome {}
.outcome-value {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 12px;
}
.outcome-text {
  font-size: 0.88rem;
  color: rgba(247, 244, 239, 0.6);
  line-height: 1.4;
}

/* Closing */
.closing {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-icon {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 46ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(247, 244, 239, 0.4);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--off-white);
}
.footer-tagline {
  display: block;
  font-size: 0.8rem;
  margin-top: 4px;
}
.footer-meta {
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 56px 20px 48px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .problem-inner { grid-template-columns: 1fr; gap: 20px; }
  .how-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .closing { padding: 56px 20px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 1.9rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 2rem; }
}