/* ============================================================================
   SYCOMP AI PATCH CENTER · MOTION TOKENS
   The source sheet is deliberately quiet: no keyframes, no entrance animation.
   State changes are instant colour swaps; only `scroll-behavior: smooth` and
   these short, flat transitions are sanctioned.
   ========================================================================== */
:root {
--dur-instant: 0ms; /* @kind other */
--dur-fast:    120ms; /* @kind other */   /* hover / press colour swaps                  */
--dur-base:    180ms; /* @kind other */   /* panel + popover open                        */
--dur-slow:    240ms; /* @kind other */   /* row expand, drawer                          */
--ease-standard: cubic-bezier(.2, 0, .2, 1); /* @kind other */
--ease-out:      cubic-bezier(0, 0, .2, 1); /* @kind other */
--transition-color: 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 */
}
@media (prefers-reduced-motion: reduce) { :root { --dur-fast: 0ms; /* @kind other */ --dur-base: 0ms; /* @kind other */ --dur-slow: 0ms; /* @kind other */ } }
