/* ============================================================
   MOTION — slow, weighted, no bounce. Banking moves with poise.
   ============================================================ */

:root {
  --ease-standard: cubic-bezier(.22, 1, .36, 1); /* @kind other */
  --ease-emphasized: cubic-bezier(.16, 1, .3, 1); /* @kind other */
  --ease-in-out: cubic-bezier(.65, 0, .35, 1); /* @kind other */
  --ease-spring: cubic-bezier(.34, 1.28, .44, 1); /* @kind other */  /* gentle overshoot — toggles, chips, dialogs */
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1); /* @kind other */

  --duration-fast:160ms; /* @kind other */
  --duration:280ms; /* @kind other */
  --duration-slow:520ms; /* @kind other */
  --duration-slower:820ms; /* @kind other */
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast:0ms; /* @kind other */
    --duration:0ms; /* @kind other */
    --duration-slow:0ms; /* @kind other */
    --duration-slower:0ms; /* @kind other */
  }
}
