.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

.navbar-shell {
  width: min(94vw, 1260px);
  margin: auto;
  pointer-events: auto;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 64px;
  padding: 9px 12px 9px 18px;
  border: 1px solid rgba(192, 169, 255, .14);
  border-radius: 18px;
  background: rgba(7, 5, 14, .66);
  box-shadow: 0 12px 42px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.site-header.is-scrolled .navbar {
  background: rgba(7, 5, 14, .9);
  border-color: rgba(192, 169, 255, .25);
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 124px;
  flex-shrink: 0;
}

.logo-lockup-full {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  min-width: 0;
}

.header-logo-full {
  display: block;
  width: 205px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.logo-icon {
  width: 29px;
  height: 29px;
  filter: drop-shadow(0 0 13px rgba(162, 118, 255, .4));
}

.logo-divider {
  width: 1px;
  height: 24px;
  background: rgba(186, 157, 255, .3);
}

.logo-word {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: .19em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: #b7aecf;
  font-size: .84rem;
  font-weight: 700;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  border-radius: 3px;
  background: var(--gradient-brand);
  transition: right .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
}

.nav-menu-toggle:hover {
  background: rgba(255, 255, 255, .04);
}

@media (max-width: 620px) {
  .header-logo-full {
    width: 155px;
    max-height: 46px;
  }
}