/*
 * anqr-v21-easing.css
 * Single source of truth for all animation easing curves.
 * Referenced as var(--ease-*) in anqr-v21.css and read via
 * getComputedStyle in anqr-v21.js.
 *
 * --ease-std    Material Design standard curve  — screen slides, tab pill, explainer track
 * --ease-spring Expo-out spring                 — activity card expand / collapse
 * --ease-out    Soft ease-out                   — sheets, gen-sub fade, walk-through cards
 * --ease-pop    Overshoot                        — node pop-in on journey map
 */
:root {
  --ease-std:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-pop:    cubic-bezier(0.2, 1.3, 0.4, 1);
}
