:root {
  --shell-navy: #171c60;
  --shell-navy-deep: #0b103d;
  --shell-coral: #ef6068;
  --shell-white: #fff;
  --shell-wrap: 1460px;
  --site-content-max: 1460px;
  --wrap: var(--site-content-max);
  --max-width: var(--site-content-max);
}

body.global-menu-open { overflow: hidden; }

.global-site-header,
.global-site-header *,
.global-site-footer,
.global-site-footer * { box-sizing: border-box; }

.global-site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  color: var(--shell-white);
  background: var(--shell-navy-deep);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.global-header-inner {
  display: flex;
  width: min(calc(100% - 48px), var(--shell-wrap));
  height: 88px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.global-logo-panel {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 7px 11px;
  border-radius: 12px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 8px 28px rgba(0,0,0,.13);
}

.global-logo-panel img {
  display: block;
  width: 214px;
  max-width: 100%;
  height: auto;
}

.global-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 19px;
}

.global-nav-item { position: relative; flex: 0 0 auto; }

.global-nav-row { display: flex; align-items: center; }

.global-nav a {
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}

.global-nav a:hover,
.global-nav a.current { color: var(--shell-white); }

.global-nav-link.current { box-shadow: inset 0 -2px #ff9ca2; }

.global-submenu-toggle {
  display: grid;
  width: 22px;
  height: 28px;
  margin-left: 2px;
  padding: 0;
  place-items: center;
  border: 0;
  color: rgba(255,255,255,.68);
  background: transparent;
  cursor: pointer;
}

.global-submenu-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}

.global-nav-item.submenu-open .global-submenu-chevron,
.global-nav-item:focus-within .global-submenu-chevron {
  transform: translateY(2px) rotate(225deg);
}

.global-submenu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  width: max-content;
  min-width: 245px;
  max-width: 330px;
  padding: 10px;
  visibility: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 17px;
  background: #11174f;
  box-shadow: 0 24px 60px rgba(0,0,0,.34);
  opacity: 0;
  transform: translate(-50%, -7px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  pointer-events: none;
}

.global-submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
  content: "";
}

.global-nav-item:hover > .global-submenu,
.global-nav-item:focus-within > .global-submenu,
.global-nav-item.submenu-open > .global-submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.global-nav .global-submenu-link {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.3;
  white-space: normal;
}

.global-nav .global-submenu-link:hover,
.global-nav .global-submenu-link.current {
  color: var(--shell-white);
  background: rgba(255,255,255,.08);
}

.global-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.global-nav .global-nav-product {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  color: var(--shell-white);
  box-shadow: none;
}

.global-nav .global-nav-product:hover {
  border-color: var(--shell-white);
  background: rgba(255,255,255,.08);
}

.global-menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: var(--shell-white);
  background: transparent;
  font: 500 20px/1 Inter, sans-serif;
  cursor: pointer;
}

.global-subnav {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #dde1e8;
  background: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.global-subnav-inner {
  display: flex;
  width: min(calc(100% - 48px), var(--shell-wrap));
  min-height: 58px;
  margin-inline: auto;
  align-items: center;
  gap: 10px;
}

.global-subnav strong {
  margin-right: 8px;
  color: var(--shell-navy);
  font-size: 12px;
}

.global-subnav a {
  padding: 7px 11px;
  border-radius: 999px;
  color: #606777;
  font-size: 11px;
  font-weight: 650;
  text-decoration: none;
}

.global-subnav a:hover { color: var(--shell-navy); background: #f1f5f0; }

.global-site-footer {
  width: 100%;
  padding: 72px 0 28px;
  color: rgba(255,255,255,.7);
  background: var(--shell-navy-deep);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.global-footer-inner {
  width: min(calc(100% - 48px), var(--shell-wrap));
  margin-inline: auto;
}

.global-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .7fr .95fr;
  gap: 70px;
  padding-bottom: 52px;
}

.global-footer-brand img {
  display: block;
  width: 220px;
  height: auto;
  margin-bottom: 20px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--shell-white);
}

.global-footer-brand p {
  max-width: 390px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.6;
}

.global-footer-column {
  display: flex;
  gap: 10px;
  flex-direction: column;
  font-size: 13px;
}

.global-footer-column strong {
  margin-bottom: 6px;
  color: var(--shell-white);
}

.global-footer-column a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
}

.global-footer-column a:hover { color: var(--shell-white); }

.global-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  font-size: 11px;
  line-height: 1.55;
}

.global-footer-disclosure {
  max-width: 760px;
  text-align: right;
}

.global-footer-legal { display: flex; flex-wrap: wrap; gap: 14px; white-space: nowrap; }
.global-footer-legal a { color: rgba(255,255,255,.7); text-decoration: none; }
.global-footer-legal a:hover { color: #fff; }

@media (max-width: 1280px) {
  .global-header-inner { height: 76px; }
  .global-logo-panel img { width: 190px; }
  .global-menu-toggle { display: block; }
  .global-nav { display: none; }
  .global-nav.is-open {
    display: flex;
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    padding: 18px max(24px, calc((100vw - 760px) / 2)) 42px;
    overflow-y: auto;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,.12);
    background: var(--shell-navy-deep);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
  }
  .global-nav-item { border-bottom: 1px solid rgba(255,255,255,.11); }
  .global-nav-row { min-height: 58px; }
  .global-nav.is-open .global-nav-link {
    display: flex;
    min-height: 58px;
    padding: 13px 4px;
    align-items: center;
    flex: 1;
    box-shadow: none;
    color: rgba(255,255,255,.82);
    font-size: 15px;
  }
  .global-nav.is-open .global-nav-link.current { color: var(--shell-white); }
  .global-submenu-toggle { width: 48px; height: 48px; color: rgba(255,255,255,.76); }
  .global-submenu-chevron { width: 9px; height: 9px; }
  .global-submenu {
    display: none;
    position: static;
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 0 0 13px 16px;
    visibility: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: none;
    pointer-events: auto;
  }
  .global-submenu::before { display: none; }
  .global-nav-item:hover > .global-submenu,
  .global-nav-item:focus-within > .global-submenu { display: none; transform: none; }
  .global-nav-item.submenu-open > .global-submenu { display: block; transform: none; }
  .global-nav .global-submenu-link {
    padding: 10px 12px;
    color: rgba(255,255,255,.64);
    font-size: 13px;
  }
  .global-nav .global-submenu-link.current { color: var(--shell-white); background: rgba(255,255,255,.07); }
  .global-nav.is-open .global-nav-product {
    display: block;
    margin-top: 24px;
    padding: 14px 17px;
    text-align: center;
    font-size: 13px;
  }
  .global-subnav-inner {
    overflow-x: auto;
    padding: 10px 0;
    white-space: nowrap;
    scrollbar-width: thin;
  }
}

@media (max-width: 720px) {
  .global-header-inner,
  .global-footer-inner,
  .global-subnav-inner { width: min(calc(100% - 32px), var(--shell-wrap)); }
  .global-logo-panel img { width: 178px; }
  .global-nav.is-open { top: 76px; padding-right: 16px; padding-left: 16px; }
  .global-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .global-footer-bottom { flex-direction: column; }
  .global-footer-disclosure { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .global-site-header *,
  .global-site-footer * { transition-duration: .01ms !important; }
}
