/* Variables */
:root {
  --bg: #F5F0E8;
  --fg: #1A1A18;
  --accent: #C9A84C;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --muted: #7A756E;
  --border: #E0DBD1;
  --white: #FDFCF9;
}

/* Reset */
*, *::before, *::after { 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;
}

/* Typography */
h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* Nav */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(42px, 5vw, 64px);
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
}

/* Flow graphic */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-graphic {
  width: 100%;
  max-width: 400px;
}
.flow-stream {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flow-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.flow-blocks {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.flow-block {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}
.flow-block svg {
  color: var(--green);
  flex-shrink: 0;
}
.flow-merge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 8px;
}
.flow-merge-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, var(--border), var(--accent));
}
.flow-merge-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.flow-stream--ops .flow-blocks {
  border-left: 3px solid var(--green-light);
  padding-left: 12px;
}
.flow-stream--clients .flow-blocks {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

/* What section */
.what {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.what-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.what-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.what-headline {
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--green);
  margin-bottom: 20px;
  max-width: 500px;
}
.what-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 60px;
  line-height: 1.7;
}
.what-pillars {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: start;
}
.pillar-divider {
  background: var(--border);
  width: 1px;
  align-self: stretch;
  margin: 0 60px;
}
.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--bg);
}
.pillar-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--green);
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Manifesto */
.manifesto {
  background: var(--green);
  padding: 100px 0;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.manifesto-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.manifesto-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--bg);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 36px;
}
.manifesto-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.manifesto-line {
  width: 60px;
  height: 1px;
  background: var(--accent);
}
.manifesto-signature span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* How section */
.how {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.how-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: start;
  gap: 0;
}
.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--border);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--green);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}
.step-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* Outcomes */
.outcomes {
  background: var(--white);
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.outcomes-headline {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--green);
  text-align: center;
  margin-bottom: 60px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.outcome {
  background: var(--bg);
  padding: 40px 32px;
  text-align: center;
}
.outcome-stat {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.outcome-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Closing */
.closing {
  padding: 100px 0;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-headline {
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--green);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.closing-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--green);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-copy {
  font-size: 12px;
  color: var(--border);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { order: -1; }
  .flow-graphic { max-width: 100%; }
  .what-pillars {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pillar-divider { display: none; }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .step-connector { display: none; }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 60px 0 80px; }
  .what, .how, .closing, .manifesto { padding: 80px 0; }
  .outcomes { padding: 80px 0; }
}