/* Scroll reveal tagline */
.reveal-section { position:relative; min-height:300vh; padding:0 24px; }
.reveal-sticky {
  position:sticky; top:0; height:100vh;
  display:flex; align-items:center; justify-content:center;
  perspective:1200px;
}
.reveal-sticky h2 {
  font-size:clamp(32px,6vw,80px); font-weight:700;
  letter-spacing:-0.03em; line-height:1.15; text-align:center;
  max-width:1100px; display:flex; flex-wrap:wrap; justify-content:center;
}
.reveal-sticky .word {
  display:inline-block; margin-right:0.3em;
  opacity:0; transform:translateY(50px) scale(.8) rotateX(30deg);
  filter:blur(10px);
  transition:opacity .5s ease, transform .5s ease, filter .5s ease;
}
.reveal-sticky .word.show {
  opacity:1; transform:translateY(0) scale(1) rotateX(0);
  filter:blur(0);
}
