/* Animations and transitions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll--delay-1 { transition-delay: 0.1s; }
.animate-on-scroll--delay-2 { transition-delay: 0.2s; }
.animate-on-scroll--delay-3 { transition-delay: 0.3s; }
.animate-on-scroll--delay-4 { transition-delay: 0.4s; }

.hero .hero-badge {
  animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}

.hero .hero-title {
  animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}

.hero .hero-lead {
  animation: fadeInUp 0.6s var(--ease-out) 0.45s both;
}

.hero .hero-actions {
  animation: fadeInUp 0.6s var(--ease-out) 0.6s both;
}
