/* =============================================
   ENVISION — Scroll Animations
   Intersection Observer based. Respects reduced motion.
   ============================================= */

/* Only animate for users who haven't opted out */
@media (prefers-reduced-motion: no-preference) {

  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered delays for grouped elements */
  .animate-delay-1 { transition-delay: 0.1s; }
  .animate-delay-2 { transition-delay: 0.2s; }
  .animate-delay-3 { transition-delay: 0.3s; }
  .animate-delay-4 { transition-delay: 0.4s; }
  .animate-delay-5 { transition-delay: 0.5s; }

}
