/* Damos en el Blanco — motion
   Confident and quick, with a hint of cheek. Snappy standard easing for UI;
   a small overshoot ("nudge") for playful moments — never bouncy-cute. */
:root {
  --dur-instant: 80ms; /* @kind other */
  --dur-fast: 130ms; /* @kind other */
  --dur: 200ms; /* @kind other */
  --dur-slow: 340ms; /* @kind other */
  --dur-slower: 560ms; /* @kind other */

  --ease-standard: cubic-bezier(.2, .8, .2, 1); /* @kind other */
  --ease-out: cubic-bezier(.16, 1, .3, 1); /* @kind other */
  --ease-in: cubic-bezier(.5, 0, .9, .3); /* @kind other */
  --ease-in-out: cubic-bezier(.65, 0, .35, 1); /* @kind other */
  --ease-nudge: cubic-bezier(.34, 1.4, .5, 1); /* @kind other */
}
