/* ============================================================
   SITM — MOTION TOKENS
   Sobre, précis. Fades + slides courts, easing net.
   Toute animation décorative (étincelle, ligne de coupe) doit
   respecter prefers-reduced-motion.
   ============================================================ */
:root {
  --dur-fast:   120ms;  /* @kind other */
  --dur-base:   200ms;  /* @kind other */
  --dur-slow:   320ms;  /* @kind other */
  --dur-slower: 600ms;  /* @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-cut:   cubic-bezier(0.2, 0.8, 0.2, 1);  /* @kind other */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
