/* Мягкое свечение; сетка и пульсирующие точки — в bg.js */
body::after {
  content: '';
  position: fixed;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  top: -12%;
  right: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 16, 9, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#bg-canvas {
  opacity: 0.12;
}

@media (prefers-reduced-motion: reduce) {
  #bg-canvas {
    opacity: 0.1;
  }
}
