:root {
  --bg: #FAF7F0;
  --surface: #FFFFFF;
  --primary: #1B4332;
  --accent: #C9A227;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: #E2DDD4;
  --green-light: #D8F3DC;
}

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

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

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--text-muted);
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px 64px;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--primary);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* STATS */
.stats {
  background: var(--primary);
  padding: 48px;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* HOW */
.how {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  border-top: 1px solid var(--border);
}
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.how-headline {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.5px;
  position: sticky;
  top: 96px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 2px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* DEAL TYPES */
.deal-types {
  background: var(--surface);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.deal-types-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.deal-types-headline {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.deal-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}
.deal-card {
  background: var(--surface);
  padding: 32px 28px;
}
.deal-card-icon {
  color: var(--primary);
  margin-bottom: 16px;
}
.deal-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.deal-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 48px;
  background: var(--primary);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
}
.manifesto-body {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 600px;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
}
.footer-mission {
  font-size: 14px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 48px; }
  .stats { padding: 32px 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-divider { display: none; }
  .how { padding: 64px 24px; grid-template-columns: 1fr; gap: 40px; }
  .how-headline { position: static; }
  .deal-types { padding: 64px 24px; }
  .deal-grid { grid-template-columns: 1fr 1fr; }
  .manifesto { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .deal-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 48px; }
  .stat-number { font-size: 32px; }
}