/* Subtle hover feedback for marketing nav links.
   The Webflow export shipped no hover state on the nav links, so hovering felt
   dead (Products, Blog, Affiliate, Docs, Refer & earn, Help, the Products
   dropdown, etc.). A short opacity fade reads on every nav treatment - dark links
   on the light bars, white links on the cards purple bar, dropdown items on the
   white panel - without hardcoding per-nav colours. Buttons and the
   Personal/Business toggle keep their own styling and are intentionally excluded. */
.w-nav-link,
.rl_navbar1_link,
.hero2_navbar_link,
.rl_navbar1_dropdown-toggle-2,
.rl_navbar1_dropdown-link {
  transition: opacity 0.2s ease;
}

.w-nav-link:hover,
.rl_navbar1_link:hover,
.hero2_navbar_link:hover,
.rl_navbar1_dropdown-toggle-2:hover,
.rl_navbar1_dropdown-link:hover {
  opacity: 0.6;
}
