/* ============================================================
   UPOLT — Motion
   Natural, fast, purposeful. No bounce, no flash.
   ============================================================ */
:root {
  --motion-fast: 150ms; /* @kind other */
  --motion-base: 250ms; /* @kind other */
  --motion-slow: 350ms; /* @kind other */

  /* Easing — calm, natural. No overshoot. */
  --ease-standard: cubic-bezier(0.4, 0.0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1); /* @kind other */
  --ease-in: cubic-bezier(0.4, 0.0, 1, 1); /* @kind other */

  --transition-base: all var(--motion-base) var(--ease-standard);
  --transition-fast: all var(--motion-fast) var(--ease-standard);
}
