.site-header,
.site-header * {
  box-sizing: border-box;
}
.site-header {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 0 clamp(24px, 4vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 11, 20, 0.96);
  box-shadow: none;
  backdrop-filter: blur(18px);
}
.site-header nav { min-width: 0; display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 32px); overflow-x: auto; }
.site-header a {
  min-height: 34px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #afbfd3 !important;
  border: 1px solid transparent !important;
  border-radius: 7px;
  text-decoration: none !important;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}
.site-header .site-brand {
  gap: 10px;
  padding: 0;
  color: #eef6ff !important;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.site-header .site-brand img {
  display: none;
}
.site-header .site-brand::after {
  content: none;
}
.site-header a:hover {
  color: #eef6ff !important;
  border-color: transparent !important;
  background: transparent;
}
.site-header a[aria-current="page"] {
  color: #d7ae55 !important;
  border-color: transparent !important;
  background: transparent;
}
.site-header .version-pill { min-height: 36px; display:inline-flex;align-items:center;justify-self:end;padding:0 12px;color:#7bc0ff;border:1px solid rgba(74,168,255,.32);border-radius:8px;font-size:.78rem;font-weight:800;white-space:nowrap; }
@media (max-width: 760px) {
  .site-header { display:flex;align-items:flex-start;flex-direction:column;gap:8px;padding-top:12px;padding-bottom:10px; }
  .site-header nav { width:100%;justify-content:flex-start;gap:20px;overflow-x:auto; }
  .site-header .version-pill { display:none; }
}
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 16px;
  color: #71849a;
  text-align: center;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
}
