/* ============================================
   CHAAT.CA — Animations
   ============================================ */

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes routeDotPulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.6; }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body::after {
    display: none;
  }

  .hero__accent-line,
  .hero__tagline,
  .hero__mega,
  .hero__subtitle,
  .hero__ctas,
  .hero__scroll-hint,
  .timeline__item,
  .names__item,
  .menu__card,
  .proof__num,
  .proof__tile,
  .founder__left,
  .founder__right {
    opacity: 1 !important;
    transform: none !important;
  }
}
