/* Sticky nav */
.nav {
  position: fixed;
  top: 16px;
  left: 0; right: 0;
  z-index: 50;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px !important;
  border-radius: 999px;
  background: rgba(15, 8, 32, 0.5);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 1180px;
  margin: 0 auto;
  transition: all 0.4s;
}
.nav-scrolled .nav-inner {
  background: rgba(10, 5, 24, 0.78);
  border-color: rgba(212, 168, 75, 0.18);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo img { width: 24px; height: 24px; }
.nav-logo span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 18px !important;
  font-size: 13px !important;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
}
