/* ============================================================
   MOTION — PEEPHOLE
   One signature move: the hole. Everything meaningful opens
   as a circle from where you touched it, on --ease-hole.
   Marquees drift linearly, forever, in the underworld only.
   UI micro-feedback stays fast and dry.
   ============================================================ */

:root {
  /* The hole ease — fast attack, soft landing */
  --ease-hole: cubic-bezier(0.6, 0, 0.2, 1);  /* @kind other */
  --dur-hole:  550ms;  /* @kind other */

  /* Dry UI feedback */
  --ease-out: cubic-bezier(0.2, 0.6, 0.2, 1);  /* @kind other */
  --dur-fast: 150ms;  /* @kind other */

  /* Underworld drift (marquee) — slow, 36–64s per loop */
  --dur-drift: 48s;           /* @kind other */

  --press-sink: scale(0.97);  /* @kind other */
}

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