:root{
  /* §4.5 — page entry fades up 12px over 320ms, staggered, once only.
     Layer explorer 180ms cross-fade. Table rows 120ms hover.
     prefers-reduced-motion fully respected with no loss of information. */
  --motion-enter-duration:320ms; /* @kind other */
  --motion-enter-offset:12px;
  --motion-enter-stagger:60ms; /* @kind other */
  --motion-crossfade:180ms; /* @kind other */
  --motion-hover:120ms; /* @kind other */
  --ease-standard:cubic-bezier(0.2,0,0.2,1); /* @kind other */
  --ease-out:cubic-bezier(0,0,0.2,1); /* @kind other */
}
@media (prefers-reduced-motion:reduce){
  :root{
    --motion-enter-duration:1ms; /* @kind other */
    --motion-enter-offset:0px;
    --motion-enter-stagger:0ms; /* @kind other */
    --motion-crossfade:1ms; /* @kind other */
    --motion-hover:1ms; /* @kind other */
  }
}
