/* ═══════════ SCROLL ANIM ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.shown { opacity: 1; transform: none; }

