/* ============================================================
   VarthAI — MOTION TOKENS
   Calm, grounded easing. No bounce. Short, warm fades & lifts.
   ============================================================ */
:root {
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1);   /* @kind other */
  --ease-entrance: cubic-bezier(0.16, 0.84, 0.44, 1);   /* @kind other */
  --ease-exit:     cubic-bezier(0.4, 0.0, 1, 1);        /* @kind other */
  --ease-in-out:   cubic-bezier(0.65, 0.05, 0.36, 1);   /* @kind other */

  --dur-instant: 90ms;   /* @kind other */
  --dur-fast:    150ms;  /* @kind other */
  --dur-base:    240ms;  /* @kind other */
  --dur-slow:    380ms;  /* @kind other */
  --dur-slower:  600ms;  /* @kind other */

  --transition-colors: color var(--dur-fast) var(--ease-standard),
                       background-color var(--dur-fast) var(--ease-standard),
                       border-color var(--dur-fast) var(--ease-standard); /* @kind other */
  --transition-transform: transform var(--dur-base) var(--ease-standard); /* @kind other */
}
