/* ──────────────────────────────────────────
   MANIFESTO SECTION
   Wrapper for both the manifesto text and the video block.
─────────────────────────────────────────── */
.manifesto-section {
  position: relative;
  background: var(--dark);
  z-index: 50;
}

/* Manifesto text — scroll-fill effect, words go from dim to full opacity */
.manifesto {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px 60px;
}
.manifesto-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: var(--light);
  text-align: center;
  max-width: 980px;
  margin: 0;
}
.manifesto-text .word {
  display: inline-block;
  opacity: 0.14;
  transition: opacity 0.5s var(--ease-out-quint);
  margin-right: 0.22em;
}
