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

@keyframes cc-pulse-soft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.25);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
  }
}

.cc-animate-in {
  animation: cc-fade-in 0.45s ease-out both;
}

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

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

.stat-animate {
  animation: stat-rise 0.7s ease-out both;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .cc-animate-in,
  .cc-accent-pulse,
  .stat-animate,
  .hero-bg-motion {
    animation: none !important;
  }
}
