/*
 * Scroll Text Animate — CSS
 * Elements start slightly below with 0 opacity, then slide up and fade in.
 */
.sta-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

.sta-animate.sta-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sta-animate {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
