body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  cursor: none;
  overflow-x: hidden;
}

@media (hover: none) {
  body { cursor: auto; }
}

::selection {
  background: var(--white);
  color: var(--black);
}

.section-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Scroll progress bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--white);
  z-index: 9999;
  will-change: width;
  pointer-events: none;
  transform-origin: left;
}

/* Page transition overlay */
#page-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 8888;
  pointer-events: none;
  transform: translateX(100%);
}

/* Noise texture SVG filter */
#noise-filter {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
