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

:root {
  --forest: #1a4a32;
  --forest-dark: #0f2e1e;
  --amber: #d4883a;
  --amber-light: #e8a862;
  --cream: #faf7f2;
  --warm-white: #fffef9;
  --charcoal: #1c1c1c;
  --slate: #5a5a5a;
  --mist: #e8e4dc;
  --success: #2d7a4e;
  --info: #2d6a8f;
  font-family: 'Figtree', system-ui, sans-serif;
}

body {
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--mist);
  background: var(--warm-white);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 13px;
  color: var(--slate);
  border-left: 1px solid var(--mist);
  padding-left: 16px;
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  background: var(--warm-white);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--forest-dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 420px;
  line-height: 1.7;
}
.hero-card {
  background: var(--forest);
  border-radius: 16px;
  padding: 32px;
  color: #fff;
}
.hero-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-card-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.hero-row-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-row-dot.done { background: #4ade80; }
.hero-row-dot.active { background: var(--amber); }
.hero-row-dot.pending { background: rgba(255,255,255,0.3); }

/* STATS */
.stats {
  padding: 48px 40px;
  background: var(--forest);
  color: #fff;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* PILLARS */
.pillars {
  padding: 80px 40px;
  background: var(--cream);
}
.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pillars-heading {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--mist);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--forest);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}
.pillar-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.pillar-body {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
}

/* VISION */
.vision {
  padding: 80px 40px;
  background: var(--warm-white);
  border-top: 1px solid var(--mist);
}
.vision-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vision-quote {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest-dark);
  line-height: 1.5;
  font-style: normal;
  letter-spacing: -0.01em;
  border-left: 3px solid var(--amber);
  padding-left: 28px;
}
.vision-attribution {
  margin-top: 20px;
  padding-left: 28px;
  font-size: 14px;
  color: var(--slate);
}
.vision-heading {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.vision-body {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
}

/* CLOSING */
.closing {
  padding: 80px 40px;
  background: var(--forest);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}

/* FOOTER */
.footer {
  padding: 28px 40px;
  background: var(--forest-dark);
  text-align: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.footer-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 48px 20px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { margin-top: 8px; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-item { flex: 0 0 45%; }
  .stat-divider { display: none; }
  .pillars { padding: 48px 20px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
  .vision { padding: 48px 20px; }
  .vision-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 56px 20px; }
  .footer { padding: 20px; }
}
@media (max-width: 480px) {
  .stat-number { font-size: 32px; }
  .hero-headline { font-size: 32px; }
  .closing-headline { font-size: 28px; }
}