/**
 * FP-0002 V9-06E57 / PROD-P13 FIX02 — global decorative lifebuoy
 *
 * P12: contain + transform on the fixed root froze iOS compositor updates.
 * FIX02: root is a plain fixed layer. iOS uses top/left on the mover.
 */

.fp02-lifebuoy-parallax {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
  contain: none;
  isolation: auto;
  transform: none;
  -webkit-transform: none;
}

.fp02-lifebuoy-parallax__mover {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transform-origin: center center;
  -webkit-transform-origin: center center;
}

.fp02-lifebuoy-parallax:not(.is-ios-fallback) .fp02-lifebuoy-parallax__mover {
  will-change: transform;
}

.fp02-lifebuoy-parallax.is-ios-fallback .fp02-lifebuoy-parallax__mover {
  will-change: top, left, transform;
}

.fp02-lifebuoy-parallax__img {
  display: block;
  width: min(88vw, 806px);
  max-width: none;
  height: auto;
  opacity: 0.2;
  user-select: none;
  -webkit-user-drag: none;
  transform: none;
  -webkit-transform: none;
}

.site-page-shell {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .fp02-lifebuoy-parallax__img {
    width: min(100vw, 676px);
  }
}

@media (max-width: 767px) {
  .fp02-lifebuoy-parallax__img {
    width: min(100vw, 546px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fp02-lifebuoy-parallax__mover {
    will-change: auto;
  }
}
