/* Shared mobile site nav — include on neverhold.co pages */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(94, 240, 255, 0.15);
  background: rgba(15, 22, 36, 0.9);
  color: #5ef0ff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

@media (max-width: 960px) {
  header {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  header > a.btn,
  header > button.btn {
    display: none !important;
  }
  header > nav,
  nav#site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    order: 3;
    border: 1px solid rgba(94, 240, 255, 0.15);
    border-radius: 14px;
    background: rgba(15, 22, 36, 0.98);
    overflow: hidden;
  }
  header > nav.is-open,
  nav#site-nav.is-open {
    display: flex !important;
  }
  header > nav a,
  nav#site-nav a {
    font-size: 14px !important;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(94, 240, 255, 0.12);
  }
  header > nav a:last-child,
  nav#site-nav a:last-child {
    border-bottom: none;
  }
  .header-actions .btn {
    display: inline-flex !important;
  }
}
