@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  50%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-pulse { animation: pulse 3s ease-in-out infinite; }

/* Initial states for GSAP scroll animations */
.slide-from-left {
  opacity: 0;
  transform: translateX(-60px);
}

.slide-from-right {
  opacity: 0;
  transform: translateX(60px);
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

/* Word-level reveal target */
.word {
  display: inline-block;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
