:root {
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body.itmsft-theme {
  background: var(--theme-bg);
  color: var(--theme-text);
  font-size: var(--theme-body);
}

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

.menu-toggle {
  position: relative;
}

.menu-toggle > span {
  position: absolute;
  left: 50%;
  width: 17px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--white, #fff);
  transform-origin: center;
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle > span:first-child {
  transform: translate(-50%, -3px);
}

.menu-toggle > span:last-child {
  transform: translate(-50%, 3px);
}

.menu-toggle[aria-expanded="true"] > span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.site-header.is-glass {
  border-bottom-color: var(--header-border-color, rgba(255, 255, 255, 0.07));
  background: linear-gradient(
    180deg,
    var(--header-bg-top, rgba(2, 4, 10, 0.86)),
    var(--header-bg-bottom, rgba(2, 4, 10, 0.28)) 76%,
    transparent
  );
  backdrop-filter: blur(var(--header-blur, 12px)) saturate(var(--header-saturation, 115%));
  -webkit-backdrop-filter: blur(var(--header-blur, 12px)) saturate(var(--header-saturation, 115%));
}

.site-header:not(.is-glass) {
  background: rgba(2, 4, 10, 0.98);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 220ms ease;
}

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

.desktop-nav .nav-submenu {
  position: absolute;
  z-index: 30;
  top: 100%;
  left: 50%;
  width: max-content;
  max-width: min(300px, calc(100vw - 28px));
  padding-top: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 180ms ease;
}

.desktop-nav .nav-submenu__panel {
  display: grid;
  min-width: 242px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 78% 0%, rgba(153,178,245,.14), transparent 48%),
    rgba(7,10,19,.76);
  box-shadow: 0 28px 80px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.055);
  transform: translateY(7px) scale(.985);
  transform-origin: top center;
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  backdrop-filter: blur(28px) saturate(150%);
  transition: transform 180ms ease;
}

.desktop-nav .nav-submenu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: rgba(226,230,241,.68);
  font-size: 13px;
  font-weight: 520;
  line-height: 1.25;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.desktop-nav .nav-submenu a::after {
  display: none;
}

.desktop-nav .nav-submenu a:hover,
.desktop-nav .nav-submenu a:focus-visible,
.desktop-nav .nav-submenu a.is-active {
  border-color: rgba(255,255,255,.08);
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(153,178,245,.12), transparent 58%),
    rgba(255,255,255,.055);
  outline: none;
}

.desktop-nav .nav-submenu a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav .has-submenu:hover .nav-submenu,
.desktop-nav .has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
}

.desktop-nav .has-submenu:hover .nav-submenu__panel,
.desktop-nav .has-submenu:focus-within .nav-submenu__panel {
  transform: translateY(0) scale(1);
}

.desktop-nav .has-submenu:hover > a,
.desktop-nav .has-submenu:focus-within > a {
  color: var(--white);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(.25);
  transition: opacity 220ms ease, transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.glass-button {
  text-decoration: none;
}

.locale-switch a {
  border: 0;
  color: var(--muted-dim);
  background: transparent;
  font: inherit;
  font-size: .7rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.locale-switch a.is-active {
  color: var(--white);
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  background: transparent;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.mobile-menu .mobile-submenu {
  display: grid;
  padding: 4px 0 12px 32px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .mobile-submenu a {
  display: block;
  padding: 9px 0;
  border: 0;
  color: var(--muted);
  font-size: .9rem;
}

.mobile-menu nav a i {
  font-style: normal;
}

.hero-directions > a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(18px, 1fr) auto;
  align-items: start;
  gap: 6px 14px;
  min-height: 116px;
  padding: 16px 17px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  color: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,.072), rgba(255,255,255,.018));
  text-decoration: none;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.hero-directions > a::before {
  display: none;
  content: none;
}

.hero-directions > a:hover {
  border-color: rgba(184, 204, 255, .42);
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.028));
  transform: translateY(-3px);
}

.hero-directions a strong,
.hero-directions a small {
  position: relative;
  z-index: 1;
}

.hero-directions a strong {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  overflow: hidden;
  color: var(--white);
  font-size: .98rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-directions a small {
  grid-column: 1 / -1;
  grid-row: 3;
  overflow: hidden;
  color: rgba(255,255,255,.42);
  font-size: .72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-stage__footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.partner-logo {
  text-decoration: none;
}

.finale-contact-row > i {
  color: inherit;
  font-style: normal;
  font-weight: 400;
}

.finale-footer.site-footer {
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(130px, .75fr)) auto;
}

.content-screen {
  min-height: 100vh;
  padding: 150px clamp(24px, 4vw, 76px) 90px;
  background:
    radial-gradient(circle at 72% 16%, rgba(105, 128, 190, .12), transparent 35%),
    var(--theme-bg);
}

.content-shell {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.wa-page {
  color: var(--theme-text);
}

.wa-page h1 {
  max-width: 980px;
  margin: 22px 0 54px;
  font-size: var(--theme-h2);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.wa-page h2,
.wa-page h3 {
  margin: 1.8em 0 .65em;
  color: var(--theme-text);
  font-weight: 450;
}

.wa-page p,
.wa-page li,
.wa-page .wa-form {
  color: var(--theme-muted);
  line-height: 1.7;
}

.wa-page a:not(.glass-button) {
  color: var(--theme-text);
}

.content-kicker,
.breadcrumbs,
.subpage-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.content-kicker {
  color: var(--theme-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.breadcrumbs {
  margin-bottom: 48px;
  color: var(--theme-muted);
  font-size: .8rem;
}

.subpage-nav {
  margin-bottom: 46px;
}

.wa-page__content img {
  max-width: 100%;
  height: auto;
}

.wa-auth-page {
  width: min(640px, 100%);
}

.wa-auth-page input,
.wa-page input,
.wa-page textarea,
.wa-page select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--theme-line);
  border-radius: 14px;
  color: var(--theme-text);
  background: rgba(255,255,255,.04);
}

.wa-auth-page input[type="submit"],
.wa-page input[type="submit"],
.wa-page input[type="button"] {
  width: auto;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .finale-footer.site-footer {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .hero-directions {
    grid-auto-columns: min(82vw, 286px);
    grid-auto-flow: column;
    grid-template-columns: none;
    scroll-padding-inline: 0 var(--page-pad);
  }

  .hero-directions > a {
    width: 100%;
    min-width: 0;
    min-height: 96px;
    padding: 14px 15px;
    scroll-snap-align: start;
  }

  .hero-directions a small {
    display: block;
  }

  .finale-footer.site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .content-screen {
    padding: 120px 20px 70px;
  }
}

@media (max-width: 480px) {
  .finale-footer.site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 30px;
  }

  .finale-footer .footer-links {
    min-width: 0;
  }

  .finale-footer .footer-brand,
  .finale-footer .footer-back,
  .finale-footer .footer-rights {
    grid-column: 1 / -1;
  }
}
