use this CSS selector to visually dim everything except your
primary cta when a user hovers over it. it helps direct focus toward the conversion path without needing heavy javascript.
button:hover ~ .overlay { opacity: 0.5; }it works best with a fixed-position overlay sibling. โก