:root {
  --bg: #FDFAF5;
  --bg-alt: #F5F0E8;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #F4A261;
  --accent-dark: #D4823A;
  --green: #2D6A4F;
  --green-light: #40916C;
  --border: #E5DDD0;
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 64px 120px;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 50% 50%, rgba(244,162,97,0.22) 0%, rgba(45,106,79,0.10) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 720px;
}
.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -2px;
  margin-bottom: 32px;
}
.hero-lede {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stat-row {
  display: flex;
  gap: 48px;
}
.hero-stat {}
.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -1px;
}
.hero-stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* How it Works */
.howitworks {
  padding: 100px 64px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header { margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
  max-width: 600px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(45,106,79,0.18);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Features */
.features {
  padding: 100px 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2px;
}
.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
}
.feature-card--large {
  grid-column: span 2;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Manifesto */
.manifesto {
  background: var(--green);
  color: #fff;
  padding: 100px 64px;
}
.manifesto-inner { max-width: 720px; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
  color: rgba(255,255,255,0.9);
}
.manifesto-body {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.manifesto-body--accent {
  color: #fff;
  font-weight: 500;
}

/* Closing */
.closing {
  padding: 100px 64px 120px;
}
.closing-inner { max-width: 640px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 19px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-vision {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.closing-vision p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--fg);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 80px; }
  .hero-headline { font-size: 48px; letter-spacing: -1px; }
  .hero-lede { font-size: 17px; }
  .hero-stat-row { gap: 28px; flex-wrap: wrap; }
  .hero-stat-value { font-size: 24px; }
  .howitworks { padding: 64px 24px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .manifesto { padding: 64px 24px; }
  .closing { padding: 64px 24px 80px; }
  .footer { padding: 32px 24px; flex-direction: column; gap: 8px; align-items: flex-start; }
}