/* Opt-in scroll animation hooks — initial state + GPU hints */

.reveal,
.stagger-children > * {
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  will-change: transform, opacity;
}

.parallax {
  will-change: transform;
  transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .stagger-children > * {
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .parallax {
    transform: none;
    will-change: auto;
  }
}
