:root {
  --bg: #FAFAF5;
  --fg: #1A1A1A;
  --accent: #D97706;
  --accent-warm: #92400E;
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --muted: #6B7280;
  --border: #E5E7EB;
  --surface: #FFFFFF;
}

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

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

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

/* NAV */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 6rem 2rem 4rem;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--green-deep);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 620px;
}
.hero-stat {
  background: var(--surface);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

/* PROOF */
.proof {
  padding: 3rem 2rem;
  background: var(--green-deep);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.proof-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* HOW */
.how {
  padding: 5rem 2rem;
  background: var(--bg);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.how-step {}
.step-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}
.step-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 2.25rem;
}
.feature-icon {
  width: 32px;
  height: 32px;
  background: var(--green-deep);
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 6rem 2rem;
  background: var(--green-deep);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-quote {
  margin-bottom: 2rem;
}
.manifesto-quote blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 780px;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 6rem 2rem;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

/* FOOTER */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-deep);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .manifesto { padding: 4rem 1.5rem; }
}