/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 60px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,214,229,0.07);
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}

.nav-logo-icon { width: 36px; height: 36px; }

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
}

.nav-links {
  display: flex; gap: 40px; list-style: none;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--silver-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: flex; align-items: center; gap: 16px;
}
