@keyframes hero-bg-pan {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-1%, -0.5%);
  }
  100% {
    transform: scale(1.05) translate(0, 0);
  }
}

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

@keyframes stat-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(236, 72, 153, 0);
  }
}

.hero-bg-animate {
  animation: hero-bg-pan 28s ease-in-out infinite;
}

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

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

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

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translate(12px, -8px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.toast-visible {
  animation: toast-in 0.35s ease-out both;
}

@media (prefers-reduced-motion: reduce) {
  .toast-visible {
    animation: none;
  }
}
