/* ── Page Transition Overlay ── */

/* Cover page black immediately before JS runs — prevents flash */
html {
  background: #000;
}

.pt-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
  background: transparent;
}

.pt-circle {
  position: absolute;
  width: 300vmax;
  height: 300vmax;
  border-radius: 50%;
  background: #000;
  will-change: transform;
}
