/* No decorative motion. No parallax, no autoplay, no scroll animation.
   Motion is limited to state feedback on interactive elements. */
:root{
  --duration-instant:0ms; /* @kind other */
  --duration-fast:120ms; /* @kind other */
  --duration-base:180ms; /* @kind other */
  --ease-standard:cubic-bezier(0.2,0,0.2,1); /* @kind other */
}
@media (prefers-reduced-motion:reduce){
  :root{
    --duration-fast:0ms; /* @kind other */
    --duration-base:0ms; /* @kind other */
  }
}
