.mobile-menu-toggle {
  display: none;
}

@media (max-width: 860px) {
  .site-top,
  .header {
    z-index: 1000;
  }

  .site-cta,
  .header__cta--center {
    display: none !important;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(29, 29, 31, .18);
    border-radius: 50%;
    color: #1d1d1f;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 10px 28px rgba(18, 25, 31, .08);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    cursor: pointer;
  }

  .mobile-menu-toggle__icon,
  .mobile-menu-toggle__icon::before,
  .mobile-menu-toggle__icon::after {
    width: 17px;
    height: 1.5px;
    display: block;
    border-radius: 99px;
    background: currentColor;
    transition: transform .22s ease, opacity .16s ease;
  }

  .mobile-menu-toggle__icon {
    position: relative;
  }

  .mobile-menu-toggle__icon::before,
  .mobile-menu-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .mobile-menu-toggle__icon::before {
    top: -5px;
  }

  .mobile-menu-toggle__icon::after {
    top: 5px;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__icon {
    background: transparent;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__icon::before {
    transform: translateY(5px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__icon::after {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-top .site-nav,
  .header .header__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 1;
    display: none !important;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 7px;
    border: 1px solid rgba(29, 29, 31, .14);
    border-radius: 14px;
    color: #1d1d1f;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 22px 60px rgba(18, 25, 31, .16);
    backdrop-filter: blur(24px) saturate(135%);
    -webkit-backdrop-filter: blur(24px) saturate(135%);
    transform: translateY(-8px);
    opacity: 0;
  }

  .site-top .site-nav.is-mobile-open,
  .header .header__menu.is-mobile-open {
    display: grid !important;
    animation: mobileMenuIn .22s ease forwards;
  }

  .site-top .site-nav a,
  .header .header__menu a {
    min-height: 52px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-bottom: 1px solid rgba(29, 29, 31, .1);
    color: inherit;
    font-family: "Inter", "Geist", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
  }

  .site-top .site-nav a:last-child,
  .header .header__menu a:last-child {
    border-bottom: 0;
  }

  .site-top .site-nav a::after,
  .header .header__menu a::after {
    content: "\2197";
    color: rgba(29, 29, 31, .42);
    font-size: 15px;
    font-weight: 400;
  }

  .site-top .site-nav a[aria-current="page"],
  .header .header__menu a[aria-current="page"] {
    color: #0877d1;
    background: rgba(8, 119, 209, .08);
    border-radius: 8px;
  }

  .site-top--dark .mobile-menu-toggle,
  .header .mobile-menu-toggle {
    color: #fff;
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 12px 34px rgba(0, 0, 0, .22);
  }

  .site-top--dark .site-nav,
  .header .header__menu {
    color: #fff;
    border-color: rgba(255, 255, 255, .18);
    background: rgba(3, 16, 25, .96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 24px 70px rgba(0, 0, 0, .42);
  }

  .site-top--dark .site-nav a,
  .header .header__menu a {
    border-bottom-color: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .9);
  }

  .site-top--dark .site-nav a::after,
  .header .header__menu a::after {
    color: rgba(255, 255, 255, .42);
  }

  .site-top--dark .site-nav a[aria-current="page"],
  .header .header__menu a[aria-current="page"] {
    color: #77c8ff;
    background: rgba(84, 186, 255, .12);
  }

  .header .mobile-menu-toggle {
    width: calc(42 * var(--u));
    height: calc(42 * var(--u));
    flex-basis: calc(42 * var(--u));
  }

  .header .header__menu {
    top: calc(100% + 12 * var(--u));
  }
}

@keyframes mobileMenuIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-toggle__icon,
  .mobile-menu-toggle__icon::before,
  .mobile-menu-toggle__icon::after {
    transition: none;
  }

  .site-top .site-nav.is-mobile-open,
  .header .header__menu.is-mobile-open {
    animation: none;
    transform: none;
    opacity: 1;
  }
}
