@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(48, 26, 88, 0.3);
  }
  50% {
    box-shadow: 0 8px 40px rgba(48, 26, 88, 0.6);
  }
}

.animate-cta-pulse {
  animation: ctaPulse 3s ease-in-out infinite;
}

.animate-cta-pulse:hover {
  animation-play-state: paused;
}

/* Fallback for no-js environments */
.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
}
