/* ── SECTION 1 — THE QUESTION ────────────────────────── */
/* Pure black screen. One question. Nothing else.         */

.s1 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.s1-inner {
  text-align: center;
  max-width: 680px;
  width: 100%;
}

.s1-question {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  min-height: 2em; /* prevent layout shift during word materialise */
}

/* Words start invisible — GSAP animates them in after splash.
   Opacity set here (not by GSAP) so the element is never visible
   before the animation intentionally begins. */
.s1-word {
  opacity: 0;
  transform: translateY(12px);
}
