:root {
  --bg: #f5f0e6;
  --surface: #ffffff;
  --brand: #1a3c2a;
  --brand-mid: #2d5a3d;
  --brand-light: #3a7a52;
  --accent: #4ade80;
  --accent-dark: #22c55e;
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-muted: #9a9a9a;
  --border: #e0dbd0;
  --shadow: 0 4px 24px rgba(26, 60, 42, 0.08);
}

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

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

/* — Navigation — */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--brand);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* — Hero — */
.hero {
  padding: 80px 48px 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-light);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--brand);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-cta-text {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.yard-frame {
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 420px;
}
.yard-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.yard-placeholder {
  border-radius: 10px;
  overflow: hidden;
}
.yard-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 48px auto 0;
  background: var(--brand);
  border-radius: 16px;
  padding: 32px 48px;
}
.stat {
  flex: 1;
  text-align: center;
}
.stat-value {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* — Shared section — */
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-light);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--brand);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

/* — How It Works — */
.howitworks {
  padding: 80px 48px;
  background: var(--surface);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.step { padding: 0; }
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  margin-bottom: 20px;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* — Features — */
.features {
  padding: 80px 48px;
  background: var(--bg);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* — Outcomes — */
.outcomes {
  padding: 80px 48px;
  background: var(--brand);
  color: white;
}
.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes .section-eyebrow { color: var(--accent); }
.outcomes .section-title { color: white; }
.outcome-text > p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}
.outcome-metrics {
  display: flex;
  gap: 36px;
}
.metric {}
.metric-value {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 4px;
}
.metric-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.comparison {
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
}
.comparison-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 16px;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comparison-cell {}
.comparison-cell svg { width: 100%; height: auto; display: block; border-radius: 8px; }
.cell-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-top: 8px;
}

/* — Manifesto — */
.manifesto {
  padding: 80px 48px;
  background: var(--surface);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--brand);
  line-height: 1.4;
  margin-bottom: 32px;
  font-style: italic;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* — Footer — */
.footer {
  padding: 48px;
  background: var(--brand);
  color: white;
}
.footer-brand { margin-bottom: 32px; }
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: white;
  display: block;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* — Responsive — */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-direction: column; gap: 24px; padding: 28px 32px; }
  .stat-divider { width: 60px; height: 1px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .howitworks, .features, .outcomes, .manifesto { padding: 60px 24px; }
  .manifesto-inner { margin: 0; }
  .outcome-metrics { flex-direction: column; gap: 20px; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 32px; }
  .section-title { font-size: 28px; }
  .hero-stats { border-radius: 12px; }
}