/* Base */
:root {
  --bg: #f8f7f4;
  --bg-alt: #eeece8;
  --fg: #1a1916;
  --fg-muted: #6b6760;
  --accent: #2a6049;
  --accent-warm: #c45d1a;
  --border: #d8d5cf;
  --card-bg: #ffffff;
  --nav-bg: #1a1916;
  --nav-fg: #f8f7f4;
}

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

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

/* Nav */
.nav {
  background: var(--nav-bg);
  color: var(--nav-fg);
  padding: 16px 40px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--nav-fg);
}
.nav-tagline {
  font-size: 13px;
  color: #9a9690;
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 100px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 12px; color: var(--fg-muted); font-weight: 400; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Sections */
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 520px;
}
.centered { text-align: center; }
.centered.section-sub { margin: 0 auto 16px; }

/* How it Works */
.how {
  background: var(--bg-alt);
  padding: 90px 40px;
}
.how-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { position: relative; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Roles */
.roles {
  padding: 90px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.roles .section-title { margin-bottom: 16px; }
.roles .section-sub { margin-bottom: 56px; }
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.role-card {
  background: var(--card-bg);
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.role-card:nth-child(3n) { border-right: none; }
.role-card:nth-child(n+4) { border-bottom: none; }
.role-icon {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: white;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.role-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.role-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* Vision */
.vision {
  background: var(--fg);
  padding: 100px 40px;
}
.vision-inner {
  max-width: 800px;
  margin: 0 auto;
}
.vision-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 24px;
}
.vision-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #f8f7f4;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.vision-body {
  font-size: 17px;
  color: #9a9690;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

/* Closing */
.closing {
  padding: 100px 40px;
  text-align: center;
  background: var(--bg);
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 24px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 300;
}

/* Footer */
.footer {
  background: var(--fg);
  padding: 40px 40px;
  text-align: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #f8f7f4;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.footer-copy {
  font-size: 14px;
  color: #6b6760;
  margin-bottom: 6px;
}
.footer-tag {
  font-size: 11px;
  color: #3d3a36;
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 56px; }
  .how { padding: 64px 24px; }
  .roles { padding: 64px 24px; }
  .vision { padding: 72px 24px; }
  .closing { padding: 72px 24px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .roles-grid { grid-template-columns: 1fr; }
  .role-card { border-right: none; border-bottom: 1px solid var(--border); }
  .role-card:last-child { border-bottom: none; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
}