/* Shared, opt-in scroll depth for the public marketing pages. */
[data-site-parallax] {
  --site-parallax-y: 0px;
  translate: 0 var(--site-parallax-y);
}

[data-site-parallax].is-site-parallax-active {
  will-change: translate;
}

@media (max-width: 760px), (prefers-reduced-motion: reduce) {
  [data-site-parallax] {
    translate: none !important;
    will-change: auto !important;
  }
}
