:root {
  --bg: #FAFAF5;
  --bg-alt: #F0EDE4;
  --fg: #111810;
  --fg-muted: #4a5c48;
  --accent: #1B4332;
  --accent-light: #2D6A4F;
  --gold: #D4A843;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

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;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* Manifesto */
.manifesto {
  position: relative;
  padding: 160px 40px 120px;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.manifesto-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(27,67,50,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(212,168,67,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.manifesto-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.manifesto-headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  line-height: 1.05;
}
.manifesto-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

/* Section label */
.section-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

/* Product */
.product {
  background: var(--accent);
  padding: 100px 40px;
}
.product-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.product .section-label { color: rgba(212,168,67,0.7); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.product-card {
  background: var(--accent-light);
  padding: 44px 40px;
}
.product-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}
.product-card h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.product-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-weight: 300;
}

/* Outcomes */
.outcomes {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.outcome {
  padding: 48px 40px;
  border-left: 1px solid rgba(27,67,50,0.1);
}
.outcome:first-child { border-left: none; }
.outcome-stat {
  display: block;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.outcome-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* Closing */
.closing {
  padding: 100px 40px 120px;
  background: var(--bg);
}
.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.closing-statement {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(27,67,50,0.1);
  padding: 40px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .manifesto { padding: 120px 24px 80px; }
  .product { padding: 80px 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 80px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome { border-left: none; border-top: 1px solid rgba(27,67,50,0.1); padding: 32px 0; }
  .outcome:first-child { border-top: none; padding-top: 0; }
  .closing { padding: 80px 24px; }
  .manifesto-headline { font-size: 44px; }
  .manifesto-sub { font-size: 17px; }
}