:root {
  --site-nav-height: 80px;
  --site-nav-bg: rgba(0, 0, 0, .9);
  --site-nav-text: #aeb0b7;
  --site-nav-white: #fff;
  --site-nav-ink: #171719;
  --site-nav-line: rgba(255, 255, 255, .12);
  --site-nav-yellow: #fffac0;
  --site-nav-peach: #ffdfd8;
  --site-nav-gradient: linear-gradient(100deg, var(--site-nav-yellow), var(--site-nav-peach));
  --site-nav-page: min(100% - 40px, 1440px);
  overflow-x: clip;
}

.navbar.w-nav,
.site-header {
  display: none !important;
}

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

.global-site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  height: var(--site-nav-height);
  border-bottom: 1px solid var(--site-nav-line);
  background: var(--site-nav-bg);
  color: var(--site-nav-white);
  font-family: Manrope, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  backdrop-filter: blur(14px);
}

.global-nav-spacer {
  height: var(--site-nav-height);
}

body.menu-open {
  overflow: hidden;
}

.global-nav-shell {
  width: var(--site-nav-page);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.global-nav-brand img {
  display: block;
  width: 92px;
  height: auto;
}

.global-nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.global-nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav-item {
  position: relative;
}

.global-nav-item > a,
.global-nav-item summary,
.global-product-menu-trigger {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--site-nav-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.global-nav-item > a:hover,
.global-nav-item summary:hover,
.global-nav-item details[open] summary,
.global-product-menu-trigger:hover,
.global-product-menu:focus-within .global-product-menu-trigger {
  color: var(--site-nav-white);
}

.global-product-menu-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
}

.global-product-menu-trigger::after {
  width: 6px;
  height: 6px;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transition: transform 160ms ease;
}

.global-product-menu:hover .global-product-menu-trigger::after,
.global-product-menu:focus-within .global-product-menu-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.global-product-menu-panel {
  position: fixed;
  z-index: 910;
  top: var(--site-nav-height);
  right: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid var(--site-nav-line);
  border-bottom: 1px solid var(--site-nav-line);
  background: #090a0d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .46);
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: opacity 220ms ease, transform 220ms ease, clip-path 280ms ease, visibility 0s linear;
  transition-delay: 240ms, 240ms, 240ms, 660ms;
}

.global-product-menu:hover .global-product-menu-panel,
.global-product-menu:focus-within .global-product-menu-panel {
  opacity: 1;
  transform: none;
  visibility: visible;
  clip-path: inset(0);
  transition-delay: 0s;
}

.global-product-menu-panel-inner {
  width: var(--site-nav-page);
  max-height: calc(100svh - var(--site-nav-height));
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 42px;
  overflow-y: auto;
  margin: 0 auto;
  padding: 30px 0 36px;
}

.global-product-menu-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--site-nav-line);
  color: #8f9198;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.global-product-menu-heading a {
  color: var(--site-nav-yellow);
  text-decoration: none;
}

.global-product-menu-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 67px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--site-nav-line);
  color: var(--site-nav-white);
  text-decoration: none;
}

.global-product-menu-number,
.global-product-menu-arrow {
  color: #b8b6e8;
  font-size: 12px;
}

.global-product-menu-copy {
  display: grid;
  grid-template-columns: minmax(145px, .45fr) 1fr;
  gap: 18px;
  align-items: baseline;
}

.global-product-menu-copy strong {
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 500;
}

.global-product-menu-copy small {
  color: #92949b;
  font-size: 12px;
}

.global-product-menu-link:hover .global-product-menu-arrow,
.global-product-menu-link:focus-visible .global-product-menu-arrow {
  transform: translate(3px, -3px);
}

.global-product-menu-link:nth-child(2) .global-product-menu-number,
.global-product-menu-link:nth-child(2) .global-product-menu-arrow {
  color: #b8d790;
}

.global-product-menu-link:nth-child(3) .global-product-menu-number,
.global-product-menu-link:nth-child(3) .global-product-menu-arrow {
  color: #f2cf88;
}

.global-product-menu-link:nth-child(4) .global-product-menu-number,
.global-product-menu-link:nth-child(4) .global-product-menu-arrow {
  color: #91d9d2;
}

.global-product-menu-link:nth-child(5) .global-product-menu-number,
.global-product-menu-link:nth-child(5) .global-product-menu-arrow {
  color: #dda7c2;
}

.global-product-menu-story {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 3px;
  background: #121318;
  color: var(--site-nav-white);
  text-decoration: none;
}

.global-product-menu-story--solutions {
  background: radial-gradient(circle at 75% 22%, rgba(184, 215, 144, .3), transparent 32%), linear-gradient(135deg, #1c2018, #0b0c10 72%);
}

.global-product-menu-story--services {
  background: radial-gradient(circle at 78% 24%, rgba(242, 207, 136, .28), transparent 34%), linear-gradient(135deg, #211e17, #0b0c10 72%);
}

.global-product-menu-story--knowledge {
  background: radial-gradient(circle at 76% 22%, rgba(145, 217, 210, .28), transparent 34%), linear-gradient(135deg, #14201f, #0b0c10 72%);
}

.global-product-menu-story::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(6, 7, 10, .04) 30%, rgba(6, 7, 10, .92));
}

.global-product-menu-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform 360ms ease, opacity 360ms ease;
}

.global-product-menu-story:hover img {
  transform: scale(1.025);
  opacity: .9;
}

.global-product-menu-story-copy {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  gap: 10px;
}

.global-product-menu-story-copy small,
.global-product-menu-story-copy > span {
  color: #c1c2c7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.global-product-menu-story-copy strong {
  font-size: clamp(25px, 2.35vw, 38px);
  font-weight: 400;
  line-height: 1.05;
}

.global-product-menu-mobile {
  display: none;
}

.global-nav-item summary {
  list-style: none;
}

.global-nav-item summary::-webkit-details-marker {
  display: none;
}

.global-nav-item summary::after {
  width: 6px;
  height: 6px;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transition: transform 160ms ease;
}

.global-nav-item details[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.global-nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  min-width: 260px;
  padding: 10px;
  border: 1px solid var(--site-nav-line);
  border-radius: 14px;
  background: #101115;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .42);
}

.global-nav-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: #d6d7dc;
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
}

.global-nav-dropdown a:hover,
.global-nav-dropdown a:focus-visible {
  background: rgba(255, 255, 255, .08);
  color: var(--site-nav-white);
}

.global-nav-dropdown a:first-child {
  color: var(--site-nav-yellow);
}

.global-nav-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--site-nav-gradient);
  color: var(--site-nav-ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, filter 180ms ease;
}

.global-nav-locale {
  color: var(--site-nav-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

.global-nav-locale:hover,
.global-nav-locale:focus-visible {
  color: var(--site-nav-white);
}

.global-nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.global-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid #4b4d54;
  border-radius: 8px;
  background: transparent;
  color: var(--site-nav-white);
  cursor: pointer;
}

.global-nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.global-site-header :focus-visible {
  outline: 3px solid var(--site-nav-yellow);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  :root {
    --site-nav-page: min(100% - 28px, 1180px);
  }

  .global-nav-toggle {
    display: block;
  }

  .global-nav-menu {
    position: fixed;
    top: var(--site-nav-height);
    right: 0;
    left: 0;
    height: calc(100svh - var(--site-nav-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    overflow-y: auto;
    margin: 0;
    padding: 18px 14px 32px;
    transform: translateX(100%);
    background: #000;
    visibility: hidden;
    transition: transform 240ms ease, visibility 240ms;
  }

  .global-nav-menu.is-open {
    transform: none;
    visibility: visible;
  }

  .global-nav-list {
    display: block;
  }

  .global-product-menu {
    display: none;
  }

  .global-product-menu-mobile {
    display: block;
  }

  .global-nav-item {
    border-bottom: 1px solid var(--site-nav-line);
  }

  .global-nav-item > a,
  .global-nav-item summary {
    min-height: 58px;
    justify-content: space-between;
    font-size: 21px;
  }

  .global-nav-dropdown {
    position: static;
    min-width: 0;
    margin: 0 0 12px;
    padding: 4px 0 8px 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .global-nav-dropdown a {
    padding: 10px 0;
    color: #aeb0b7;
  }

  .global-nav-dropdown a:hover,
  .global-nav-dropdown a:focus-visible {
    background: transparent;
  }

  .global-nav-cta {
    width: 100%;
  }

  .global-nav-locale {
    padding: 8px 0;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-nav-menu,
  .global-nav-item summary::after,
  .global-product-menu-panel,
  .global-product-menu-story img,
  .global-product-menu-trigger::after,
  .global-nav-cta {
    transition-duration: .01ms;
  }
}
