@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stat-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.2);
  }
  50% {
    box-shadow: 0 0 24px 2px rgba(34, 211, 238, 0.15);
  }
}

@keyframes stat-number-pop {
  from {
    transform: scale(0.96);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-animate {
  animation: hero-fade-in 0.85s ease-out forwards;
}

.stat-card--active {
  animation: stat-glow 3s ease-in-out infinite;
}

.stat-counter--animate {
  animation: stat-number-pop 0.5s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-animate,
  .stat-card--active,
  .stat-counter--animate {
    animation: none;
  }
}
