nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 6, 8, 0.6);
  backdrop-filter: blur(30px);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-wordmark {
  position: relative;
  overflow: hidden;
}

.nav-logo-star {
  height: 20px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.25s;
}

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

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--bg);
  background: var(--text);
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

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