/* Lab Effects — motion. Subtle and functional: fades and gentle slides, no bounce, no loops. */
:root {
  --animation-speed: 200ms;  /* @kind other */
  --animation-speed-slow: 400ms;  /* @kind other */
  --animation-easing: cubic-bezier(0.4, 0, 0.2, 1);  /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);  /* @kind other */
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
