/* ===== KEYFRAME ANIMATIONS ===== */

/* Fade Up entrance */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating widget Y-axis translate */
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Progress bar fill-up animation */
@keyframes barFill {
  from {
    width: 0;
  }
}

/* Operational status dot pulse */
@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 8px #4ade80;
  }
  50% {
    opacity: 0.6;
    transform: scale(1.25);
    box-shadow: 0 0 16px #4ade80, 0 0 4px #4ade80;
  }
}

/* Scroll indicator vertical animation */
@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }
  35% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  65% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* Infinite marquee scroll loop */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
