/* ===========================================================================
   MightyMax — Motion
   Calm and confident. Short fades + a gentle lift on interactive elements.
   One playful spring reserved for the primary CTA. No bounce elsewhere.
   =========================================================================== */
:root {
  --dur-fast:   120ms; /* @kind other */
  --dur-base:   180ms; /* @kind other */
  --dur-slow:   280ms; /* @kind other */
  --dur-slower: 480ms; /* @kind other */

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */

  --lift: translateY(-2px); /* @kind other */
  --press: scale(0.98); /* @kind other */
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 0ms; /* @kind other */
    --dur-base: 0ms; /* @kind other */
    --dur-slow: 0ms; /* @kind other */
    --dur-slower: 0ms; /* @kind other */
  }
}
