/* ============================================================
   Compuhelp — Motion tokens
   Calm, confident, professional. Short durations, gentle easing.
   No bounce, no playful overshoot — this is enterprise IT.
   ============================================================ */
:root {
  --dur-fast: 120ms;   /* @kind other */
  --dur-base: 200ms;   /* @kind other */
  --dur-slow: 320ms;   /* @kind other */
  --dur-slower: 520ms; /* @kind other */

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

  --transition-base: all var(--dur-base) var(--ease-standard);
  --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),
                       box-shadow var(--dur-fast) var(--ease-standard);
}
