*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  background: var(--bg-primary);
  color: var(--text-paper);
  font-family: var(--font-serif);
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  background: var(--bg-primary);
}

#webgl-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#cursor-aura {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

#scroll-container {
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.brush-text {
  fill: none;
  stroke: var(--text-paper);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 700;
  paint-order: stroke;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
