:root {
  --bg: #FAF9F6;
  --fg: #1A1A1A;
  --fg-muted: #6B7280;
  --accent: #0EA5E9;
  --accent-dark: #0369A1;
  --green: #1A3A2F;
  --green-light: #2D5A45;
  --cream: #F5F3EE;
  --border: #E2DDD6;
}

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

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

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* HEADER */
.site-header {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--green);
  text-decoration: none;
}
nav {
  display: flex;
  gap: 32px;
}
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover { color: var(--fg); }

/* SECTION INNER */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* HERO */
.hero {
  padding: 96px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.hero-content h1 {
  font-size: 56px;
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}
.stat-card {
  background: var(--green);
  color: white;
  border-radius: 16px;
  padding: 36px 32px;
  text-align: left;
}
.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  line-height: 1;
  color: white;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  line-height: 1.4;
}
.stat-note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--cream);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-it-works h2 {
  font-size: 42px;
  color: var(--green);
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step h3 {
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 96px 0;
}
.features h2 {
  font-size: 42px;
  color: var(--green);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.feature-card h3 {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes {
  background: var(--green);
  padding: 80px 0;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.outcome-item {
  text-align: center;
}
.outcome-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: white;
  margin-bottom: 8px;
}
.outcome-desc {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 96px 0;
}
.closing h2 {
  font-size: 40px;
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-inner .wordmark {
  color: var(--green);
}
.footer-inner p {
  font-size: 13px;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .site-header { padding: 20px 24px; }
  nav { display: none; }
  .hero { padding: 64px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1 { font-size: 38px; }
  .stat-card { padding: 28px 24px; }
  .stat-number { font-size: 48px; }
  .section-inner { padding: 0 24px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .how-it-works { padding: 64px 0; }
  .how-it-works h2 { font-size: 32px; margin-bottom: 40px; }
  .features { padding: 64px 0; }
  .features h2 { font-size: 32px; margin-bottom: 40px; }
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .outcomes { padding: 56px 0; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 32px; }
  .outcome-number { font-size: 40px; }
  .closing { padding: 64px 0; }
  .closing h2 { font-size: 30px; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 32px; }
  .lede { font-size: 16px; }
}