/* ============================================
   Animations — Scroll reveal, hover effects
   ============================================ */

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 400ms; }

/* Hero title entrance */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__pill { animation: hero-fade-up 600ms 200ms var(--ease) both; }
.hero__title { animation: hero-fade-up 600ms 400ms var(--ease) both; }
.hero__subtitle { animation: hero-fade-up 600ms 600ms var(--ease) both; }
.hero__ctas { animation: hero-fade-up 600ms 800ms var(--ease) both; }
.hero__note { animation: hero-fade-up 600ms 1000ms var(--ease) both; }
