:root {
  --forest: #0a2918;
  --forest-mid: #0e3a20;
  --amber: #d4920a;
  --amber-dim: rgba(212, 146, 10, 0.15);
  --bg: #f5f3ee;
  --bg-warm: #ede9e0;
  --ink: #0a1f14;
  --ink-mid: #1a3d29;
  --muted: #6b8c72;
  --rule: rgba(10, 41, 24, 0.12);
}

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 16px 40px;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--forest);
}
.nav-tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* HERO */
.hero {
  padding: 80px 40px 72px;
  background: var(--forest);
  color: #fff;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 480px;
}
.hero-stat-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.hero-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.hero-grid-art { width: 100%; max-width: 320px; }
.hero-grid-art svg { width: 100%; height: auto; display: block; }

/* MISSION */
.mission {
  padding: 80px 40px;
  background: var(--bg);
}
.mission-inner {
  max-width: 760px;
  margin: 0 auto;
}
.mission-tag {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.mission-statement {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--forest);
  margin-bottom: 32px;
}
.mission-body p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.mission-body p:last-child {
  color: var(--forest);
  font-weight: 500;
}

/* SCOPE */
.scope {
  padding: 80px 40px;
  background: var(--bg-warm);
}
.scope-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.scope-header { margin-bottom: 48px; }
.section-tag {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.scope-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--forest);
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.scope-card {
  background: var(--bg);
  padding: 32px 28px;
}
.scope-icon { margin-bottom: 16px; }
.scope-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}
.scope-card p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* GOVERNANCE */
.governance {
  padding: 80px 40px;
  background: var(--bg);
}
.governance-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.governance-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 20px;
}
.governance-body {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}
.governance-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.pillar-label {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.pillar-list {
  list-style: none;
}
.pillar-list li {
  font-size: 13px;
  color: var(--ink-mid);
  padding: 5px 0;
  border-bottom: 1px solid var(--rule);
}
.pillar-list li:last-child { border-bottom: none; }
.governance-drawing { width: 100%; max-width: 280px; }
.governance-drawing svg { width: 100%; height: auto; display: block; }

/* OPERATING MODEL */
.opmodel {
  padding: 80px 40px;
  background: var(--forest);
  color: #fff;
}
.opmodel-inner { max-width: 1200px; margin: 0 auto; }
.opmodel-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.opmodel-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 640px;
}
.opmodel-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 40px;
}
.stack-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.stack-item {
  background: rgba(255,255,255,0.06);
  padding: 20px 24px;
}
.stack-primary { background: rgba(212, 146, 10, 0.15); }
.stack-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.stack-desc {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.lifecycle-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.lifecycle-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 4px;
}
.lifecycle-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  padding: 10px 20px;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
}
.step-name {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.lifecycle-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
}

/* CLOSING */
.closing {
  padding: 96px 40px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 16px;
  color: var(--muted);
}

/* FOOTER */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--forest);
  display: block;
  margin-bottom: 6px;
}
.footer-reg {
  font-size: 11px;
  color: var(--muted);
}
.footer-info {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner,
  .governance-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stack-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-info { text-align: center; }
}

@media (max-width: 600px) {
  .hero, .mission, .scope, .governance, .opmodel, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .scope-grid {
    grid-template-columns: 1fr;
  }
  .governance-pillars {
    grid-template-columns: 1fr;
  }
  .lifecycle-steps {
    gap: 8px;
  }
  .nav { padding: 14px 24px; }
}