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

@keyframes site-pulse-soft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 138, 61, 0.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 138, 61, 0);
  }
}

.site-animate-fade-up {
  animation: site-fade-up 0.65s ease-out both;
}

.site-stat-card--pulse {
  animation: site-pulse-soft 2.4s ease-in-out infinite;
}

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