:root {
  --bg: #F8F7F4;
  --bg-alt: #EEECE8;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #1B4332;
  --accent-light: #2D6A4F;
  --amber: #D97706;
  --amber-light: #F59E0B;
  --border: #D9D7D0;
  --white: #FFFFFF;
}

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

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

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.site-header nav { display: flex; gap: 32px; }
.site-header nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--fg); }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; }
.hero-bg-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(27, 67, 50, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.hero-overline {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  min-width: 200px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ── Social Proof ── */
.social-proof {
  background: var(--accent);
  padding: 28px 24px;
}
.social-proof-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.proof-stats { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.proof-item { display: flex; flex-direction: column; }
.proof-item strong {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.proof-item span { font-size: 12px; color: rgba(255,255,255,0.55); }
.proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* ── Section Overline ── */
.section-overline {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 12px;
}

/* ── Features ── */
.features { padding: 100px 24px; background: var(--white); }
.features-inner { max-width: 1120px; margin: 0 auto; }
.features h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.15;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--white); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Process ── */
.process { padding: 100px 24px; background: var(--bg); }
.process-inner { max-width: 1120px; margin: 0 auto; }
.process h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 480px;
  margin-bottom: 64px;
  line-height: 1.15;
}
.process-steps { display: flex; align-items: center; gap: 0; }
.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--amber);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }
.step-connector {
  width: 48px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Outcomes ── */
.outcomes { padding: 100px 24px; background: var(--white); }
.outcomes-inner { max-width: 1120px; margin: 0 auto; }
.outcomes h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.15;
}
.outcomes-grid { display: flex; flex-direction: column; gap: 48px; }
.outcome {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.outcome-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 12px;
}
.outcome-before p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.outcome-after p { font-size: 15px; color: var(--fg); line-height: 1.65; font-weight: 500; }
.outcome-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.outcome-arrow::after {
  content: '';
  display: block;
  border: solid white;
  border-width: 0 2px 2px 0;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  margin-left: -2px;
}
.outcome-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.outcome-stat {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.outcome-stat strong {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.outcome-stat span { font-size: 13px; color: var(--fg-muted); line-height: 1.4; }

/* ── Manifesto ── */
.manifesto { padding: 100px 24px; background: var(--accent); }
.manifesto-inner { max-width: 720px; margin: 0 auto; }
.manifesto .section-overline { color: rgba(255,255,255,0.5); }
.manifesto blockquote {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  color: white;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 16px 0 40px;
}
.manifesto p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 20px;
}
.manifesto p:last-child { margin-bottom: 0; }

/* ── Closing ── */
.closing { padding: 100px 24px; background: var(--bg); }
.closing-inner { max-width: 1120px; margin: 0 auto; }
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
}

/* ── Footer ── */
.site-footer { background: var(--fg); color: white; }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}
.footer-brand .logo { color: white; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 8px; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; min-width: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-connector { width: 40px; height: 1px; }
  .outcome { grid-template-columns: 1fr; gap: 16px; }
  .outcome-arrow { display: none; }
  .outcome-stat-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .social-proof-inner { flex-direction: column; gap: 20px; }
  .proof-stats { gap: 20px; }
  .site-header nav { display: none; }
}