/* Studio 95 — Motion
   Calm and considered. Gentle fades and short slides; no bounce, no overshoot. Movement
   should feel like a slow shutter, not a spring. */
:root{
  --duration-fast:120ms;   /* @kind other */
  --duration:200ms;        /* @kind other */
  --duration-slow:320ms;   /* @kind other */
  --duration-slower:520ms; /* @kind other */

  --ease-standard:cubic-bezier(0.2,0.6,0.2,1);   /* @kind other */
  --ease-out:cubic-bezier(0.16,0.84,0.44,1);     /* @kind other */
  --ease-in:cubic-bezier(0.5,0,0.75,0);          /* @kind other */
  --ease-in-out:cubic-bezier(0.65,0.05,0.36,1);  /* @kind other */

  --transition-color:color var(--duration) var(--ease-standard), background-color var(--duration) var(--ease-standard), border-color var(--duration) var(--ease-standard);
  --transition-transform:transform var(--duration) var(--ease-out);
  --transition-all:all var(--duration) var(--ease-standard);
}
