/* ── Soft background wash (kept subtle; Phosphor relies on texture + hard shadows) ── */

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-cyan {
  background: var(--color-amber);
  opacity: 0.06;
}

.bg-glow-magenta {
  background: var(--color-primary);
  opacity: 0.04;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
