/* Altered Capital — motion. Calm, confident, no bounce. */
:root{
  --ease-standard:cubic-bezier(0.4,0,0.2,1); /* @kind other */
  --ease-out:cubic-bezier(0.16,1,0.3,1); /* @kind other */   /* long editorial reveals */
  --ease-in:cubic-bezier(0.5,0,0.9,0.3); /* @kind other */

  --duration-instant:80ms; /* @kind other */
  --duration-fast:160ms; /* @kind other */   /* hover, focus */
  --duration-base:240ms; /* @kind other */   /* state change, filter */
  --duration-slow:520ms; /* @kind other */   /* section reveal */
  --duration-reveal:900ms; /* @kind other */ /* hero / scroll-in fade+rise */

  --transition-control:background-color var(--duration-fast) var(--ease-standard),color var(--duration-fast) var(--ease-standard),border-color var(--duration-fast) var(--ease-standard),opacity var(--duration-fast) var(--ease-standard);
  --transition-media:transform var(--duration-slow) var(--ease-out),opacity var(--duration-slow) var(--ease-out);

  --press-scale:0.985; /* @kind other */
  --hover-lift:-2px; /* @kind spacing */
  --reveal-rise:24px; /* @kind spacing */
}
@media (prefers-reduced-motion:reduce){
  :root{--duration-slow:0ms; /* @kind other */ --duration-reveal:0ms; /* @kind other */ --reveal-rise:0px}
}
