/* Mobile navigation (off-canvas) */
.az-burger{
  display:none;
  appearance:none;
  background: transparent;
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  width: 44px;
  height: 44px;
  padding:0;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.az-burger__lines{
  width: 18px;
  height: 12px;
  position: relative;
  display:block;
}
.az-burger__lines:before,
.az-burger__lines:after,
.az-burger__lines{
  background: transparent;
}
.az-burger__lines:before,
.az-burger__lines:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background: rgba(255,255,255,.80);
  border-radius: 2px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.az-burger__lines:before{ top: 1px; }
.az-burger__lines:after{ top: 9px; }

.az-nav--desktop{ display:block; }

@media (max-width: 920px){
  .az-burger{ display:inline-flex; }
  .az-nav--desktop{ display:none; }
  .az-joinBtn--desktop{ display:none; }
}

.az-mobileNav{
  position: fixed;
  inset: 0;
  z-index: 80;
  display:none;
}
.az-mobileNav.is-open{ display:block; }
.az-mobileNav__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}
.az-mobileNav__panel{
  position:absolute;
  top:0; right:0;
  width: min(360px, 92vw);
  height: 100%;
  background: rgba(10,12,18,.92);
  border-left:1px solid rgba(255,255,255,.10);
  padding: 14px;
  transform: translate3d(12px,0,0);
  animation: azPanelIn .18s ease-out forwards;
}
@keyframes azPanelIn{
  from{ transform: translate3d(12px,0,0); opacity:.8; }
  to{ transform: translate3d(0,0,0); opacity:1; }
}
.az-mobileNav__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 8px 6px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom: 10px;
}
.az-mobileNav__title{ font-weight:800; letter-spacing:.04em; }
.az-mobileNav__close{
  appearance:none;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor:pointer;
  font-size: 22px;
  line-height: 1;
}

.az-nav__menu--mobile{
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin: 10px 0 14px;
}
.az-nav__menu--mobile a{
  width: 100%;
  justify-content: space-between;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}

html.az-noScroll, html.az-noScroll body{ overflow:hidden; }
