/* ==========================================================================
   CFMOTO / Motorider — MOTION
   ⚠️ Greitis = konversija. Animacija TIK funkcijai, ne dekoracijai.
   prefers-reduced-motion VISADA gerbiamas.
   ========================================================================== */

:root {
  --motion-fast: 150ms; /* @kind other */
  --motion-base: 250ms; /* @kind other */
  --motion-slow: 400ms; /* @kind other */

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);   /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
}

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