.section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
}

/* Systems section overrides contain so the pin spacer works */
.systems { contain: none; }
.section__header {
  max-width: var(--container);
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding-inline: var(--gutter);
  text-align: left;
}
.section__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal) !important;
}
.section__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 0.08em;
}
.section__desc {
  font-size: calc(var(--fs-body) * 1.1);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.55;
}

/* ============== Manifesto ============== */
.manifesto {
  position: relative;
  background: var(--bg);
  padding: 0;
}
.manifesto__pin {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 14vw, 160px) 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(20,224,213,0.06), transparent 60%);
}
.manifesto__inner {
  max-width: 1100px;
  text-align: center;
}
.manifesto__eyebrow {
  color: var(--teal) !important;
  margin-bottom: 32px;
}
.manifesto__statement {
  font-family: var(--font-sans);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
}
.manifesto__statement .word {
  display: inline-block;
  opacity: 0.15;
  transition: opacity 0.4s ease;
  margin-right: 0.18em;
}
@media (prefers-reduced-motion: reduce) {
  .manifesto__statement .word { opacity: 1; }
}

/* ============== Metrics strip ============== */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding: 64px var(--gutter);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-top: clamp(40px, 6vw, 80px);
}
.metric { text-align: center; }
.metric__value {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.metric__label {
  color: var(--text-dim) !important;
  font-size: 0.6875rem;
}
@media (max-width: 840px) {
  .metrics { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .metrics { grid-template-columns: 1fr; }
}
