/* ── Page Transition Overlay ── */

/* Ensure the page is black before JS runs - prevents any flash */
html {
  background: #000;
}

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

.pt-circle {
  position: absolute;
  border-radius: 50%;
  background: #000;
  will-change: transform;
  /* No width/height/top/left here - all set by JS to exact pixel values */
}
