/* =========================
   NAV ACTIVE + HOVER (NEUTRAL)
========================= */

.nav__link {
  position: relative;
  padding-bottom: 4px;
}

/* underline base */
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: rgba(255,255,255,0.35);
  transition: 0.35s ease;
  opacity: 0.7;
}

/* hover effect */
.nav__link:hover::after {
  width: 100%;
}

/* active section */
.nav__link--active {
  color: var(--text);
}

.nav__link--active::after {
  width: 100%;
  opacity: 1;
  box-shadow: 0 0 10px rgba(255,255,255,0.14);
}

/* CTA link: slightly stronger but still neutral */
.nav__link--cta {
  color: rgba(230,237,243,0.92);
}

.nav__link--cta:hover {
  color: var(--text);
}