/* ContiNovo — Motion Tokens
   Calm, functional movement that explains cause/effect — never decoration.
   Nothing runs past ~300ms. */
:root {
  /* enter */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  /* exit, ~70% of enter duration */
  --ease-in:  cubic-bezier(0.4, 0, 1, 1); /* @kind other */
  --dur-fast: 150ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 250ms; /* @kind other */
}

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