/* Keyframes and animation utilities */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes textReveal {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}

@keyframes heroGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 50% 60%; }
  100% { background-position: 100% 50%; }
}

@keyframes orbFloat {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(14px, -10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.slide-up {
  animation: slideUp 0.8s var(--ease, ease) forwards;
}

.reveal-line {
  display: inline-block;
  transform: translateY(100%);
  animation: textReveal 0.9s ease forwards;
}

.hero-background {
  animation: heroGradientShift 22s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
