/* ============================================================
   OMNIFITT — ANIMATIONS.CSS
   Keyframes only. No component styles.
   ============================================================ */

/* Scroll indicator dot slides down the line */
@keyframes scrollDot {
  0% {
    top: -14px;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 52px;
    opacity: 0;
  }
}

/* Soft pulse — live indicator dots and hero eyebrow dot */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.35);
  }
}

/* Marquee ticker — continuous left scroll (inner moves by 50% = one track width) */
@keyframes marqueeScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
