/* ─── NAV ──────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(8,8,16,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.nav-brand img           { height: 37px; width: auto; }
.nav-brand img.nav-wordmark { height: 26px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover  { color: var(--text); }
.nav-links a.active { color: var(--text); }

.nav-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.nav-cta {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent-dim) !important; }

/* ─── MOBILE ───────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-brand img.nav-wordmark { display: none; }
  .nav-links { gap: 20px; }
  .nav-home  { display: none; }
}
