@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stat-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.25);
  }
  50% {
    box-shadow: 0 0 0 0.5rem rgba(249, 115, 22, 0.08);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.7s ease-out forwards;
}

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

.stat-number {
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-in-up,
  .stat-card--pulse {
    animation: none;
  }
}
