/* ============================================================
   SoSocial — page-transition overlay (V2 comparison build only).
   Paired with page-transitions.js. Kept out of site.css so the
   original homepage and shared styles remain untouched.
   ============================================================ */

#pt-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, #F43F5E 0%, #818CF8 100%);
  transition: opacity 500ms ease;
}

#pt-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  #pt-overlay {
    transition: none;
  }
}
