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

.site-header .nav {
  pointer-events: auto;
  width: 100%;
  margin: 0 auto;
  background: rgba(82, 99, 128, 0.411);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);

  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow:
    0 14px 30px rgba(28, 87, 167, 0.20),
    0  6px 10px rgba(0,0,0,.08),
    inset 0 -1px 0 rgba(255,255,255,0.08);
}

.site-header .nav::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(120% 120% at 50% 0%,
      rgba(255,255,255,0.14) 0%,
      rgba(255,255,255,0.06) 40%,
      rgba(255,255,255,0.00) 70%) ,
    linear-gradient(to right,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.00) 18%,
      rgba(0,0,0,0.00) 82%,
      rgba(0,0,0,0.25) 100%);
  mix-blend-mode: normal;
  opacity: .9;
}

.site-header .nav::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 120% at 55% 50%,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.00) 70%);
}

.nav__brand {
  width: 20%;
  display: flex;
  justify-content: flex-end;
  padding: 10px 0;
}

.nav__brand img {
  height: 60px;
  object-fit: contain;
  display: block;
}

.nav__links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 46px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  text-decoration: none;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .2px;
  transition: color .2s ease, opacity .2s ease;
}
.nav__links a:hover { color: #c5c5c5; }

.nav__cta {
  width: 20%;
}

.nav__cta a, .nav__cta__mb {
  margin-right: 18px;
  display: inline-block;
  padding: 12px 22px;
  border-radius: 99px;
  background: #0056B8;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: background-color .2s ease;
}
.nav__cta a:hover, .nav__cta__mb:hover {
  background: #004394;
}

.nav__toggle,
.nav__panel,
.nav__cta__mb {
  display: none;
}

@media (max-width: 768px) {
  :root { --nav-h: 100px; }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__brand {
    width: fit-content;
    padding-left: 24px;
  }

  .nav__brand img {
    height: 80px;
  }

  .nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding-right: 24px;
  }

  .nav__panel {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    z-index: 100;
    height: 100vh;
    background: rgba(82, 99, 128, 0.411);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border-top: 1px solid rgba(255,255,255,0.12);
    box-shadow: none;
    overflow: auto;
    overscroll-behavior: contain;
  }

  .nav__panel::before {
    content: "";
    position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(120% 120% at 50% 0%,
        rgba(255,255,255,0.14) 0%,
        rgba(255,255,255,0.06) 40%,
        rgba(255,255,255,0) 70%),
      linear-gradient(to right,
        rgba(0,0,0,0.20) 0%,
        rgba(0,0,0,0) 18%,
        rgba(0,0,0,0) 82%,
        rgba(0,0,0,0.20) 100%);
  }

  .nav__panel.open {
    display: flex;
  }

  .nav__panel ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .nav__panel a {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
  }

  .nav__panel .nav__cta__mb {
    align-self: start;
  }

  .nav__cta__mb {
    display: inline-block;
    color: #FFF !important;
    width: -webkit-fill-available;
    margin: 0;
  }
}