/* ============================================================
   MOTION — Pirone Entertainment
   Elegant + alive: confident fades and gentle lifts.
   No bounces, no rave flicker. Warm, unhurried easing.
   ============================================================ */
:root {
  --dur-fast:   140ms; /* @kind other */
  --dur-base:   220ms; /* @kind other */
  --dur-slow:   380ms; /* @kind other */
  --dur-slower: 640ms; /* @kind other */

  /* Easings */
  --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-soft:   cubic-bezier(0.33, 0, 0, 1);       /* @kind other */

  /* Standard interactive transition */
  --transition-base:  all var(--dur-base) var(--ease-out); /* @kind other */
  --transition-color: color var(--dur-fast) var(--ease-out),
                      background-color var(--dur-fast) var(--ease-out),
                      border-color var(--dur-fast) var(--ease-out); /* @kind other */

  /* Hover lift */
  --lift-hover:  translateY(-3px); /* @kind other */
  --press-scale: scale(0.985); /* @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 */
    --lift-hover: none; /* @kind other */
    --press-scale: none; /* @kind other */
  }
}
