/* ── Page Transition Overlay ─────────────────────────────────────────────── */
#pt {
  position: fixed;
  inset: 0;
  background: #05101e;
  z-index: 10000;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#pt.pt-out {
  opacity: 0;
}
