/* Motion is slow, eased, and confident — long expo curves, no bounce, no spring. */
:root{
  --ease-expo:cubic-bezier(.165,.84,.44,1); /* @kind other */   /* the workhorse */
  --ease-sanfran:cubic-bezier(.83,0,.17,1); /* @kind other */   /* clip-path / hero reveals */
  --ease-in-out:cubic-bezier(.24,.15,.02,1); /* @kind other */
  --ease-custom:cubic-bezier(.285,.23,0,1); /* @kind other */
  --ease-sexy:cubic-bezier(.16,.8,.2,1); /* @kind other */
  --ease-exp:cubic-bezier(.16,0,.33,1); /* @kind other */
  --ease-ce:cubic-bezier(0,.76,.395,1); /* @kind other */

  --dur-fast:.3s; /* @kind other */
  --dur-med:.4s; /* @kind other */
  --dur-slow:.7s; /* @kind other */
  --dur-reveal:1s; /* @kind other */

  --stagger:.1s; /* @kind other */   /* between siblings in a revealed group */
}
