/* ==========================================================================
   Keyframes — MuscularFit
   Shipped globally so components (Pill dot, floats, reveals) animate
   consistently. Motion is subtle: a slow pulse, a gentle float-up entrance.
   ========================================================================== */
@keyframes mf-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes mf-float-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
