/* ============================================================
   Junturi — Motion
   Signature easing: a soft over-eased ease-out. Interactions are
   quiet — a 4px lift, a 5px arrow nudge, a border brightening.
   No bounce, no spin. Everything respects reduced-motion.
   ============================================================ */
:root {
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);   /* @kind other */
  --ease-in-out: cubic-bezier(0.5, 0, 0.2, 1);  /* @kind other */

  --dur-fast: 0.18s;  /* @kind other */
  --dur: 0.28s;       /* @kind other */
  --dur-slow: 0.5s;   /* @kind other */

  --lift: -4px;        /* card hover translateY */
  --nudge: 5px;        /* arrow hover translateX */
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 0.001s; /* @kind other */
    --dur: 0.001s;      /* @kind other */
    --dur-slow: 0.001s; /* @kind other */
    --lift: 0px;
    --nudge: 0px;
  }
}
