/* Override Webflow IX2 initial states. Webflow's interaction runtime sets opacity:0
   on .page-wrapper expecting to fade it in via the page-load animation, but in our
   static port that animation doesn't fire reliably, so force visible. */
.page-wrapper {
  opacity: 1 !important;
}
/* Same issue on individual elements with scroll-trigger animations that never fire
   in our environment because Webflow's IX2 runtime sets initial opacity:0 + transform
   but its visibility-trigger sometimes doesn't run after our script load order. */
[data-w-id] {
  opacity: 1 !important;
  transform: none !important;
}
