/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(9, 9, 14, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border2);
  padding: 0 52px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  line-height: 0;
}
.nav-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--t2);
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition:
    color 150ms,
    background 150ms;
}
.nav-link:hover {
  color: var(--purple-l);
  background: var(--pxs);
}
.nav-cta {
  background: var(--purple);
  color: #fff;
  border: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 150ms,
    transform 100ms,
    box-shadow 150ms;
  margin-left: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover {
  background: var(--purple-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(123, 108, 240, 0.35);
}
