/* Postie · tokens/motion.css — gentle, ease-out, one duration.
   180ms on every transition (the brief's 150–250ms band), one easing, no bounce, no spring.
   Only colour and background move; text never moves after load; figures never animate; no
   spinner you ever notice. Stagger, where a list settles in, is one --postie-duration step per
   row and is suspended with everything else under reduced motion.
   Both tokens (and the reduced-motion suspension) are the working set's, unchanged. */
:root,
[data-theme="dark"] {
  --postie-duration: 180ms;
  --postie-ease: cubic-bezier(0.2, 0, 0, 1);
}

@media (prefers-reduced-motion: reduce) {
  :root { --postie-duration: 0ms; }
}
