Cursor glow
A soft ambient glow for a hero or dark section that never blocks content or clicks.
[data-sc-effect="cursor-glow"] {
--sc-x: 50%; --sc-y: 50%;
background: radial-gradient(420px circle at var(--sc-x) var(--sc-y), rgba(91, 92, 226, .3), transparent 70%), #111318;
}
document.querySelectorAll('[data-sc-effect="cursor-glow"]').forEach((section) => {
section.addEventListener('pointermove', (event) => {
const box = section.getBoundingClientRect();
section.style.setProperty('--sc-x', `${event.clientX - box.left}px`);
section.style.setProperty('--sc-y', `${event.clientY - box.top}px`);
}, { passive: true });
});