.disclosure-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 7px 24px;
  text-align: center;
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.5;
}
.disclosure-bar a {
  color: var(--accent);
  text-decoration: underline;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 56px;
}
.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 32px;
}
.nav-logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.4px;
  white-space: nowrap;
  text-decoration: none;
}
.nav-logo .and { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  flex: 1;
}
.nav-links li a {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-links li a:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  background: #1a1a1a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 7px;
  white-space: nowrap;
  transition: background 0.2s;
  text-decoration: none;
}
.nav-cta:hover { background: #333; }

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