/* Link-click burst: a tiny particle explosion at the point where the user
   clicks any hyperlink. Motion is driven from link-burst.js via the Web
   Animations API; this file only sets base layout. Palette matches the brand
   (see home.css :root). */

.nm-link-particle {
	position: fixed;
	z-index: 2147483000;
	pointer-events: none;
	will-change: transform, opacity;
	border-radius: 50%;
	line-height: 0;
}

@media (prefers-reduced-motion: reduce) {
	.nm-link-particle {
		display: none;
	}
}
