/* ==========================================================================
   MOTION TOKENS — Tendy 田地故事
   One easing pair, three durations, one entrance pattern.
   Signature move: arrow +3px · card lift −4px on hover — the only two
   transforms used everywhere. Everything collapses under reduced-motion.
   ========================================================================== */
:root{
  /* standard — hover, fill, color, press */
  --ease: cubic-bezier(.4,0,.2,1); /* @kind other */
  /* decelerate — entrances, drawers, toasts */
  --ease-out: cubic-bezier(.16,1,.3,1); /* @kind other */
  /* micro-interactions (hover, press, fill) */
  --dur: .18s; /* @kind other */
  /* mid — small position/opacity moves */
  --dur-med: .3s; /* @kind other */
  /* macro transitions; stagger children by .08s */
  --dur-slow: .5s; /* @kind other */
}
