:root {
  --navy: #02253d;
  --ink: #02253d;
  --top-gradient: linear-gradient(
    90deg,
    #02bcdd 0%,
    #06d1e5 21%,
    #64eda8 48%,
    #d0f88d 70%,
    #64eda8 84%,
    #06d1e5 94%,
    #02bcdd 100%
  );
}

/* Primary UI font */
@font-face {
  font-family: "Galano";
  src: url("/-global-assets/fonts/GalanoGrotesque-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Top animated gradient bar */
.gradient-background {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 10px;
  background: var(--top-gradient);
  background-size: 200% 100%;
  animation: gradient-flow 7s linear infinite;
}

@keyframes gradient-flow {
  from {
    background-position: -200% 50%;
  }

  to {
    background-position: 0% 50%;
  }
}

/* Desktop header */
.site-header {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 1000;
  display: flex;
  width: 100%;
  height: 70px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.site-logo {
  display: inline-flex;
  pointer-events: auto;
}

.site-logo img {
  display: block;
  width: 250px;
  height: auto;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

/* Tablet and mobile */
@media (max-width: 1024px) {
  body.menu-open {
    overflow: hidden;
  }

  .gradient-background {
    display: none;
  }

  .site-header {
    position: fixed;
    top: 0;
    height: 80px;
    justify-content: space-between;
    padding: 0 22px;
    background: var(--navy);
    box-shadow: 0 5px 14px rgb(0 0 0 / 35%);
    pointer-events: auto;
  }

  .site-logo img {
    width: 195px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1003;
    display: flex;
    width: 30px;
    height: 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 10px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 56px 0 0;
    z-index: 900;
    display: block;
    visibility: hidden;
    overflow-y: auto;
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  body.menu-open .mobile-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu__content {
    display: flex;
    min-height: calc(100vh - 56px);
    flex-direction: column;
    align-items: center;
    padding: 130px 24px 46px;
    color: #fff;
    font-family: Galano, sans-serif;
  }

  .mobile-menu__nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin: 0 0 78px;
  }

  .mobile-menu__nav-link {
    color: #fff;
    font-family: Galano, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .mobile-menu__eyebrow {
    margin: 0 0 28px;
    color: #fff;
    font-family: Galano, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
  }

  .mobile-menu__divider {
    display: block;
    width: min(100vw, 480px);
    height: 1px;
    margin: 0 0 28px;
    background-image: url("/-global-assets/navigation/social-header/images/divider-line.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 1px;
  }

.mobile-menu__socials {
  display: flex;
  width: min(100%, 330px);
  align-items: center;
  justify-content: center;
  gap: 28px;
}

  .mobile-menu__social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .mobile-menu__social-link i {
    color: #fff;
    font-size: 28px;
    line-height: 1;
    transition: color 0.2s ease;
  }

  .mobile-menu__nav-link:hover,
  .mobile-menu__nav-link:focus-visible,
  .mobile-menu__nav-link:active {
    background: var(--top-gradient);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .mobile-menu__social-link:hover i,
  .mobile-menu__social-link:focus-visible i,
  .mobile-menu__social-link:active i {
    background: var(--top-gradient);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/* Small mobile */
@media (max-width: 640px) {
  .site-logo img {
    width: 154px;
  }

  .mobile-menu__content {
    padding-top: 130px;
  }

  .mobile-menu__nav {
    gap: 28px;
    margin-bottom: 78px;
  }

  .mobile-menu__nav-link {
    font-size: 28px;
  }

  .mobile-menu__eyebrow {
    margin-bottom: 28px;
    font-size: 22px;
  }

  .mobile-menu__divider {
    width: 100vw;
    margin-bottom: 28px;
  }

.mobile-menu__socials {
  width: min(100%, 330px);
  justify-content: center;
  gap: 28px;
}

  .mobile-menu__social-link {
    width: 44px;
    height: 44px;
  }

  .mobile-menu__social-link i {
    font-size: 28px;
  }
}

/* Smaller mobile */
@media (max-width: 480px) {
  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .site-logo img {
    width: 150px;
  }

  .mobile-menu {
    inset: 56px 0 0;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .site-logo img {
    width: 138px;
  }

  .mobile-menu__content {
    padding-top: 92px;
  }

  .mobile-menu__nav {
    gap: 22px;
    margin-bottom: 54px;
  }

  .mobile-menu__nav-link {
    font-size: 22px;
  }

  .mobile-menu__eyebrow {
    margin-bottom: 24px;
    font-size: 20px;
  }

  .mobile-menu__divider {
    margin-bottom: 24px;
  }

  .mobile-menu__socials {
    gap: 12px;
  }

  .mobile-menu__social-link i {
    font-size: 28px;
  }
}