/* ============================================================================
   Animations - functional only. No scroll reveals, no floats, no shimmer.
   The page renders complete on load; motion is reserved for interaction.
   ============================================================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Legacy data-reveal hooks: render visible immediately, no animation */
[data-reveal] {
  opacity: 1;
  transform: none;
}

/* ========================================================================
 * 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;
  }
}
