.global-nav {
  position: sticky;
  top: 0;
  z-index: 70;
  height: 82px;
  width: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 7, 15, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
}
.global-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.global-nav-links a {
  color: #9aa5bd;
  text-decoration: none;
  font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  padding: 11px 10px;
  border-radius: 10px;
  transition: color .16s ease, background .16s ease;
}
.global-nav-links a:hover,
.global-nav-links a:focus-visible {
  color: #fff;
  background: rgba(96, 165, 250, .1);
  outline: none;
}
.global-nav-actions {
  position: absolute;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.global-nav-action {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 11px;
  color: #e8eefc;
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
  font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
  font-size: .85rem;
  font-weight: 800;
  white-space: nowrap;
}
.global-nav-action.primary {
  border-color: rgba(96, 165, 250, .42);
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
}
.global-nav-mobile {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
.global-nav + .topnav { top: 82px; }
@media (max-width: 1240px) {
  .global-nav { justify-content: flex-start; padding: 0 22px; }
  .global-nav-mobile { display: grid; place-items: center; }
  .global-nav-links {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: rgba(5, 9, 20, .98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  }
  .global-nav-links.active { display: flex; }
  .global-nav-links a { padding: 13px 14px; }
}
@media (max-width: 620px) {
  .global-nav { height: 72px; padding: 0 16px; }
  .global-nav-actions { right: 16px; }
  .global-nav-action:not(.primary) { display: none; }
  .global-nav-action.primary { min-height: 40px; padding: 0 12px; font-size: .78rem; }
  .global-nav + .topnav { top: 72px; }
}
