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

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

@keyframes stat-fill {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

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

.animate-pulse-soft {
  animation: pulse-soft 2.4s ease-in-out infinite;
}

.stat-bar__fill {
  animation: stat-fill 1.1s ease-out both;
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up,
  .animate-pulse-soft,
  .stat-bar__fill {
    animation: none !important;
  }
}
