.global-menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}
.global-menu-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.global-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(3,11,22,.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.global-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 81;
  width: min(430px, 100vw);
  height: 100vh;
  overflow-y: auto;
  background: #f8fafc;
  color: #172334;
  border-left: 1px solid #d8e1ea;
  padding: 22px;
  transform: translateX(102%);
  transition: transform .24s ease;
}
body.global-menu-open { overflow: hidden; }
body.global-menu-open .global-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}
body.global-menu-open .global-menu-drawer { transform: translateX(0); box-shadow: -30px 0 90px rgba(0,0,0,.28); }
.global-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d8e1ea;
}
.global-drawer-logo {
  width: 144px;
  height: 42px;
  background: url("/images/predict-logo-20260427-grey-orange.png") left center/contain no-repeat;
  text-indent: -9999px;
  overflow: hidden;
}
.global-drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid #d8e1ea;
  border-radius: 999px;
  background: #fff;
  color: #172334;
  font-size: 22px;
  line-height: 1;
}
.global-drawer-intro {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.035em;
  margin: 22px 0;
  max-width: 360px;
}
.global-drawer-grid {
  display: grid;
  gap: 10px;
}
.global-drawer-group {
  background: #fff;
  border: 1px solid #d8e1ea;
  border-radius: 8px;
  padding: 15px 16px;
  box-shadow: 0 10px 32px rgba(17,32,51,.05);
}
.global-drawer-group h3 {
  margin: 0 0 8px;
  color: #173669;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 10px;
}
.global-drawer-group a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #32445c;
  font-weight: 650;
  font-size: 13px;
  line-height: 1.35;
  padding: 7px 0;
  border-top: 1px solid #eef2f6;
}
.global-drawer-group a:first-of-type { border-top: 0; }
.global-drawer-group a::after {
  content: ">";
  color: #9aa7b8;
}
.global-drawer-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.global-drawer-cta a {
  border: 1px solid #173669;
  border-radius: 8px;
  padding: 12px 14px;
  text-align: center;
  color: #173669;
  font-weight: 850;
  font-size: 13px;
}
.global-drawer-cta a:first-child {
  background: #173669;
  color: #fff;
}
@media (max-width: 900px) {
  .has-global-menu nav {
    min-height: 66px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .has-global-menu nav .logo {
    width: 124px;
    height: 36px;
  }
  .has-global-menu nav a:not(.logo) { display: none; }
  .has-global-menu .global-menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
  }
}
@media (min-width: 901px) {
  .has-global-menu .global-menu-toggle { margin-left: 8px; }
}
