/* ============================================================
   navigation.css — fixed nav bar
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  background: rgba(8, 8, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 34px;
  width: auto;
  display: block;
}

/* Center links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

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

/* Desktop CTA button */
.nav-cta {
  display: inline-block;
  background: var(--indigo);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--indigo-hover);
}

/* Mobile CTA — hidden by default, shown at ≤900px via responsive.css */
.nav-mobile-cta {
  display: none;
  background: var(--indigo);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.nav-mobile-cta:hover {
  background: var(--indigo-hover);
}
