/* ===================================================
   Keyframes + Scroll Animations
   =================================================== */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes comingSoonPulse {
  0%, 100% { box-shadow: 0 0 0 0 hsl(var(--primary) / 0.15); }
  50% { box-shadow: 0 0 0 12px hsl(var(--primary) / 0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.visible:nth-child(1) { transition-delay: 0ms; }
.animate-on-scroll.visible:nth-child(2) { transition-delay: 80ms; }
.animate-on-scroll.visible:nth-child(3) { transition-delay: 160ms; }
.animate-on-scroll.visible:nth-child(4) { transition-delay: 240ms; }
.animate-on-scroll.visible:nth-child(5) { transition-delay: 320ms; }
.animate-on-scroll.visible:nth-child(6) { transition-delay: 400ms; }
