/* Restrained, cinematic motion. Long durations, no overshoot. */
:root{
  --ease-standard:cubic-bezier(0.4,0,0.2,1); /* @kind other */
  --ease-cinematic:cubic-bezier(0.16,1,0.3,1); /* @kind other */
  --ease-media:cubic-bezier(0.25,0.1,0.25,1); /* @kind other */
  --duration-hover:180ms; /* @kind other */
  --duration-ui:320ms; /* @kind other */
  --duration-reveal:640ms; /* @kind other */
  --duration-media:1200ms; /* @kind other */
  --duration-page:900ms; /* @kind other */
  --transform-media-drift:scale(1.04); /* @kind other */
}
@media (prefers-reduced-motion:reduce){
  :root{
    --duration-hover:0ms; /* @kind other */
    --duration-ui:0ms; /* @kind other */
    --duration-reveal:0ms; /* @kind other */
    --duration-media:0ms; /* @kind other */
    --duration-page:0ms; /* @kind other */
    --transform-media-drift:none; /* @kind other */
  }
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
}
