/* VANTA — Control — effects used by edited content on the public site.
   Loaded only on pages that have stored overrides. */

.vanta-glow {
	box-shadow: 0 0 20px 2px var( --vanta-glow, currentColor );
}

@keyframes vanta-pulse {
	0%, 100% { transform: scale( 1 ); }
	50%      { transform: scale( 1.06 ); }
}
.vanta-pulse {
	animation: vanta-pulse 1.6s ease-in-out infinite;
	will-change: transform;
}
