:root{
  --ease-standard:cubic-bezier(.4,0,.2,1); /* @kind other */
  --ease-out-soft:cubic-bezier(.16,.84,.44,1); /* @kind other */
  --duration-fast:140ms; /* @kind other */
  --duration-base:240ms; /* @kind other */
  --duration-slow:420ms; /* @kind other */
  --duration-reveal:700ms; /* @kind other */
  --transition-base:all var(--duration-base) var(--ease-standard); /* @kind other */
  --reveal-offset:16px; /* @kind spacing */   /* scroll-reveal: fade + short rise. No bounce, no scale-in. */
  --hover-lift:-2px; /* @kind spacing */      /* cards rise 2px; buttons do not move */
  --press-scale:.985; /* @kind other */
}
@media (prefers-reduced-motion:reduce){
  :root{
    --duration-fast:0ms; /* @kind other */
    --duration-base:0ms; /* @kind other */
    --duration-slow:0ms; /* @kind other */
    --duration-reveal:0ms; /* @kind other */
    --reveal-offset:0px; /* @kind spacing */
    --hover-lift:0px; /* @kind spacing */
    --press-scale:1; /* @kind other */
  }
}
