/* Shared marquee animation for the header ticker on the marketing/auth pages
   (index.html, check-inbox.html, auth-callback.html). Loaded via <link> —
   ui-email/ has no build step, but plain static assets already work here
   the same way analytics.js/email-app.js do. */
@keyframes teel-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-track {
  animation: teel-ticker-scroll 28s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
