/* Subtle Scroll Reveal for Sections (Hero excluded) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 300ms cubic-bezier(0.25, 1, 0.5, 1), transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

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

/* Ensure Hero section is never animated or hidden */
.hero,
.hero-content {
  opacity: 1 !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
