: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,
.desktop-nav .nav-section-trigger {
  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-section-trigger {
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  cursor: default;
  transition: color 220ms ease;
}

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

.desktop-nav .nav-submenu__panel {
  display: grid;
  gap: 4px;
  width: 100%;
  max-height: calc(100svh - var(--header-height) - 22px);
  overflow: visible;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 0%, rgba(153,178,245,.13), transparent 44%),
    rgba(7,10,19,.96);
  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(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  transition: transform 180ms ease;
}

.desktop-nav .nav-submenu__group {
  position: relative;
  min-width: 0;
}

.desktop-nav .nav-submenu__group-link,
.desktop-nav .nav-submenu__group-label,
.desktop-nav .nav-submenu__nested-link {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  width: 100%;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: rgba(230,233,243,.68);
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 540;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.desktop-nav .nav-submenu__group-label {
  cursor: pointer;
}

.desktop-nav .nav-submenu__group-link::after,
.desktop-nav .nav-submenu__group-label::after,
.desktop-nav .nav-submenu__nested-link::after {
  display: none;
}

.desktop-nav .nav-submenu__group-link:hover,
.desktop-nav .nav-submenu__group-link:focus-visible,
.desktop-nav .nav-submenu__group-link.is-active,
.desktop-nav .nav-submenu__group-label:hover,
.desktop-nav .nav-submenu__group-label:focus-visible,
.desktop-nav .nav-submenu__nested-link:hover,
.desktop-nav .nav-submenu__nested-link:focus-visible,
.desktop-nav .nav-submenu__nested-link.is-active {
  border-color: rgba(255,255,255,.08);
  color: #fff;
  background: linear-gradient(90deg, rgba(161,184,255,.12), rgba(255,255,255,.035));
  outline: none;
}

.desktop-nav .nav-submenu__marker {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(201,214,255,.55);
  border-radius: 50%;
  opacity: .35;
  transition: opacity 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.desktop-nav :is(.nav-submenu__group-link, .nav-submenu__group-label, .nav-submenu__nested-link):is(:hover, :focus-visible, .is-active) .nav-submenu__marker {
  border-color: var(--theme-accent, #a9bfff);
  background: var(--theme-accent, #a9bfff);
  box-shadow: 0 0 11px rgba(169,191,255,.45);
  opacity: 1;
}

.desktop-nav .nav-submenu__label {
  min-width: 0;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav .nav-submenu__children {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 100%;
  width: 326px;
  padding-left: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%) scale(.985);
  transform-origin: left center;
  transition: opacity 170ms ease, transform 170ms ease;
}

.desktop-nav .nav-submenu__children::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  content: "";
}

.desktop-nav .nav-submenu__children-panel {
  display: grid;
  gap: 4px;
  max-height: calc(100svh - var(--header-height) - 22px);
  overflow-y: auto;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 0%, rgba(153,178,245,.13), transparent 44%),
    rgba(7,10,19,.96);
  box-shadow: 0 28px 80px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.055);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
}

.desktop-nav .nav-submenu__nested-link {
  grid-template-columns: 12px minmax(0, 1fr);
}

.desktop-nav .nav-submenu__chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  opacity: .5;
  transition: transform 170ms ease, opacity 170ms ease;
}

.desktop-nav .nav-submenu__group.has-children:hover > .nav-submenu__children,
.desktop-nav .nav-submenu__group.has-children:focus-within > .nav-submenu__children {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%) scale(1);
}

.desktop-nav .nav-submenu__group.has-children:hover > :is(.nav-submenu__group-link, .nav-submenu__group-label) .nav-submenu__chevron,
.desktop-nav .nav-submenu__group.has-children:focus-within > :is(.nav-submenu__group-link, .nav-submenu__group-label) .nav-submenu__chevron {
  opacity: .9;
  transform: translateX(2px);
}

@media (min-width: 901px) and (max-width: 1100px) {
  .desktop-nav .nav-submenu--cascade {
    transform: translateX(-62%);
  }
}

.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 > :is(a, .nav-section-trigger),
.desktop-nav .has-submenu:focus-within > :is(a, .nav-section-trigger) {
  color: var(--white);
}

.desktop-nav > .nav-item > :is(a, .nav-section-trigger)::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 > .nav-item > :is(a, .nav-section-trigger):hover,
.desktop-nav > .nav-item > :is(a, .nav-section-trigger).is-active {
  color: var(--white);
}

.desktop-nav > .nav-item > :is(a, .nav-section-trigger):hover::after,
.desktop-nav > .nav-item > :is(a, .nav-section-trigger).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-nav-label {
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  color: rgba(242,244,250,.84);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.3;
}

.mobile-menu-fallback__link--label {
  cursor: default;
}

.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;
}

body.itmsft-theme .mobile-menu .mobile-submenu__group {
  display: grid;
  min-width: 0;
}

body.itmsft-theme .mobile-menu .mobile-submenu__group.has-children {
  gap: 2px;
  margin: 6px 0 8px 14px;
  padding: 5px 8px 8px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}

body.itmsft-theme .mobile-menu .mobile-submenu__group.has-children > .mobile-submenu__link,
body.itmsft-theme .mobile-menu .mobile-submenu__label {
  display: flex;
  min-height: 40px;
  align-items: center;
  margin: 0;
  padding: 6px 8px;
  border: 0;
  color: rgba(242,244,250,.86);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
}

body.itmsft-theme .mobile-menu .mobile-submenu__label {
  cursor: default;
}

body.itmsft-theme .mobile-menu .mobile-submenu__children {
  display: grid;
  min-width: 0;
  padding-left: 8px;
}

body.itmsft-theme .mobile-menu .mobile-submenu__children .mobile-submenu__link--nested {
  min-height: 38px;
  margin: 0;
  padding: 7px 8px 7px 12px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.1);
  color: rgba(221,226,239,.58);
  font-size: 12.5px;
  font-weight: 500;
}

body.itmsft-theme .mobile-menu-fallback__item {
  display: grid;
  min-width: 0;
}

body.itmsft-theme .mobile-menu-fallback__item.has-children {
  margin: 5px 0 9px;
  padding: 5px 8px 8px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}

body.itmsft-theme .mobile-menu-fallback__item.has-children > .mobile-menu-fallback__child-link,
body.itmsft-theme .mobile-menu-fallback__label {
  display: flex;
  min-height: 40px;
  align-items: center;
  padding: 6px 8px;
  border: 0;
  color: rgba(242,244,250,.86);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
}

body.itmsft-theme .mobile-menu-fallback__nested {
  display: grid;
  padding-left: 8px;
}

body.itmsft-theme .mobile-menu-fallback__nested a {
  min-height: 38px;
  padding: 7px 8px 7px 12px;
  border-left: 1px solid rgba(255,255,255,.1);
  color: rgba(221,226,239,.58);
  font-size: 12.5px;
}

.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);
}

/* CMS info pages use the same header light field and vignette as Helpdesk. */
.content-screen:has(> .content-shell > .wa-page:not(.wa-auth-page):not(.wa-error)) {
  isolation: isolate;
  background: var(--theme-bg);
}

.site-info-rays,
.site-info-shade {
  position: absolute;
  inset: 0 0 auto;
  display: none;
  width: 100%;
  pointer-events: none;
}

.content-screen:has(> .content-shell > .wa-page:not(.wa-auth-page):not(.wa-error)) > :is(.site-info-rays, .site-info-shade) {
  display: block;
}

.site-info-rays {
  z-index: -3;
  height: min(940px, 100vh);
  opacity: .58;
}

.site-info-rays[data-fallback="true"] {
  background: radial-gradient(ellipse 52% 78% at 50% -8%, rgba(197, 210, 242, .28), transparent 74%);
}

.site-info-shade {
  z-index: -2;
  height: min(980px, 108vh);
  background:
    linear-gradient(180deg, rgba(3, 5, 12, .06) 0%, rgba(3, 5, 12, .34) 52%, var(--theme-bg, #03050c) 100%),
    linear-gradient(90deg, rgba(3, 5, 12, .68) 0%, transparent 54%, rgba(3, 5, 12, .3) 100%);
}

.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;
}

/* Reusable content blocks for pages edited in the Site app. */
.wa-info-lead {
  max-width: 720px;
  margin: -28px 0 38px;
  color: var(--theme-muted);
}

.wa-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wa-info-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--theme-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .025);
}

.wa-info-card__label {
  display: block;
  margin-bottom: 13px;
  color: var(--theme-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.wa-page .wa-info-card h2,
.wa-page .wa-info-card h3 {
  margin: 0 0 14px;
}

.wa-page .wa-info-card p {
  margin: 0;
}

.wa-page .wa-info-card p + p {
  margin-top: 10px;
}

.wa-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.wa-reviews-actions {
  margin: -14px 0 34px;
}

.wa-reviews-actions .glass-button {
  min-height: 50px;
  padding-inline: 22px;
}

/* Site CMS pages: live service status and support regulations. */
.content-shell:has(.wa-service-status),
.content-shell:has(.wa-support-regulations) {
  width: min(1240px, 100%);
}

.wa-service-status,
.wa-support-regulations {
  min-width: 0;
  margin-top: -28px;
}

.wa-service-status,
.wa-service-status *,
.wa-support-regulations,
.wa-support-regulations * {
  box-sizing: border-box;
}

.wa-service-status__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}

.wa-page .wa-service-status__refresh {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: var(--theme-text);
  background: rgba(255, 255, 255, .045);
  font: inherit;
  font-size: .86rem;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, opacity .2s ease;
}

.wa-page .wa-service-status__refresh:hover,
.wa-page .wa-service-status__refresh:focus-visible {
  border-color: rgba(169, 191, 255, .58);
  background: rgba(139, 167, 255, .12);
  outline: none;
}

.wa-page .wa-service-status__refresh:disabled {
  cursor: wait;
  opacity: .48;
}

.wa-service-status__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: 18px;
}

.wa-status-card {
  min-width: 0;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid var(--theme-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(139, 167, 255, .08), transparent 35%),
    rgba(10, 13, 23, .7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 20px 58px rgba(0, 0, 0, .14);
}

.wa-status-card--notice {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 90% 0%, rgba(80, 215, 155, .105), transparent 37%),
    rgba(10, 13, 23, .72);
}

.wa-status-card__label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  color: var(--theme-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.wa-status-card__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #59d9a0;
  box-shadow: 0 0 0 5px rgba(89, 217, 160, .1), 0 0 18px rgba(89, 217, 160, .58);
}

.wa-status-card[data-status-severity="warning"] .wa-status-card__pulse {
  background: #f0c66d;
  box-shadow: 0 0 0 5px rgba(240, 198, 109, .1), 0 0 18px rgba(240, 198, 109, .55);
}

.wa-status-card[data-status-severity="critical"] .wa-status-card__pulse {
  background: #ff7184;
  box-shadow: 0 0 0 5px rgba(255, 113, 132, .1), 0 0 18px rgba(255, 113, 132, .55);
}

.wa-status-feed {
  min-height: 88px;
  color: var(--theme-text);
  transition: opacity .2s ease;
}

.wa-status-feed.is-loading {
  color: var(--theme-muted);
  opacity: .72;
}

.wa-status-feed.is-error {
  color: #ffbdc6;
}

.wa-page .wa-status-feed--notice p {
  margin: 0;
  color: var(--theme-text);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.35;
}

.wa-status-news-list {
  display: grid;
}

.wa-status-news-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.wa-status-news-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.wa-status-news-item time {
  color: rgba(169, 191, 255, .88);
  font-size: .8rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .035em;
}

.wa-page .wa-status-news-item p {
  margin: 0;
  color: var(--theme-text);
  line-height: 1.48;
}

.wa-status-services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wa-page .wa-status-services-list li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: var(--theme-text);
  font-size: .9rem;
  line-height: 1.35;
}

.wa-status-service__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #89909f;
  box-shadow: 0 0 12px rgba(137, 144, 159, .32);
}

.wa-status-service__dot.is-operational {
  background: #59d9a0;
  box-shadow: 0 0 12px rgba(89, 217, 160, .45);
}

.wa-status-service__dot.is-warning {
  background: #f0c66d;
  box-shadow: 0 0 12px rgba(240, 198, 109, .45);
}

.wa-status-service__dot.is-critical {
  background: #ff7184;
  box-shadow: 0 0 12px rgba(255, 113, 132, .45);
}

.wa-service-status__source,
.wa-service-status__noscript {
  margin: 16px 2px 0;
  color: var(--theme-muted);
  font-size: .76rem;
}

.wa-support-regulations__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 22px;
  margin-bottom: 18px;
  padding: 17px 20px;
  border: 1px solid rgba(169, 191, 255, .18);
  border-radius: 18px;
  background: rgba(139, 167, 255, .07);
}

.wa-support-regulations__revision {
  color: var(--theme-text);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.wa-page .wa-support-regulations__summary p {
  margin: 0;
  font-size: .9rem;
}

.wa-support-regulations__table-shell {
  overflow: hidden;
  border: 1px solid var(--theme-line);
  border-radius: 24px;
  background: rgba(10, 13, 23, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 20px 58px rgba(0, 0, 0, .14);
}

.wa-support-regulations__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  color: var(--theme-muted);
  table-layout: fixed;
}

.wa-support-regulations__table th,
.wa-support-regulations__table td {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .085);
  text-align: left;
  vertical-align: top;
}

.wa-support-regulations__table th:nth-child(1),
.wa-support-regulations__table td:nth-child(1) {
  width: 21%;
}

.wa-support-regulations__table th:nth-child(2),
.wa-support-regulations__table td:nth-child(2) {
  width: 25%;
}

.wa-support-regulations__table th {
  color: var(--theme-text);
  background: rgba(255, 255, 255, .025);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.wa-support-regulations__table td {
  font-size: .91rem;
  line-height: 1.58;
}

.wa-support-regulations__table tbody tr:last-child td {
  border-bottom: 0;
}

.wa-support-regulations__table strong {
  color: var(--theme-text);
  font-weight: 620;
}

.wa-support-regulations__table em {
  display: inline-block;
  margin-top: 6px;
  color: #e2bd84;
}

.wa-support-regulations sup {
  color: rgba(169, 191, 255, .9);
  font-size: .68em;
}

.wa-support-regulations__notes {
  margin-top: 18px;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid var(--theme-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .025);
}

.wa-page .wa-support-regulations__notes h2 {
  margin: 0 0 20px;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.wa-page .wa-support-regulations__notes p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.62;
}

.wa-page .wa-support-regulations__notes p + p {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

@media (max-width: 780px) {
  .wa-service-status,
  .wa-support-regulations {
    margin-top: -18px;
  }

  .wa-service-status__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wa-status-card--notice {
    grid-column: auto;
  }

  .wa-status-services-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .wa-status-news-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .wa-support-regulations__table-shell {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .wa-support-regulations__table,
  .wa-support-regulations__table tbody,
  .wa-support-regulations__table tr,
  .wa-support-regulations__table td {
    display: block;
    width: 100%;
  }

  .wa-support-regulations__table {
    table-layout: auto;
  }

  .wa-support-regulations__table thead {
    display: none;
  }

  .wa-support-regulations__table tr {
    margin-bottom: 14px;
    padding: 8px 18px 16px;
    border: 1px solid var(--theme-line);
    border-radius: 20px;
    background: rgba(10, 13, 23, .72);
  }

  .wa-support-regulations__table th:nth-child(n),
  .wa-support-regulations__table td:nth-child(n) {
    width: 100%;
  }

  .wa-support-regulations__table td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .075);
  }

  .wa-support-regulations__table td::before {
    display: block;
    margin-bottom: 7px;
    color: var(--theme-muted);
    content: attr(data-label);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .wa-support-regulations__table tr td:last-child {
    border-bottom: 0;
  }
}

/* Contact route: content remains editable in Site -> Pages. */
.content-shell:has(.wa-contact-page--directory) {
  width: min(1320px, 100%);
}

.wa-contact-page--directory {
  display: grid;
  min-width: 0;
  gap: clamp(16px, 2vw, 24px);
  margin-top: -28px;
}

.wa-contact-page--directory,
.wa-contact-page--directory * {
  box-sizing: border-box;
}

.wa-contact-block {
  min-width: 0;
  padding: clamp(20px, 2.3vw, 30px);
  border: 1px solid var(--theme-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 94% 0%, rgba(139, 167, 255, .075), transparent 34%),
    rgba(10, 13, 23, .68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 20px 56px rgba(0, 0, 0, .13);
}

.wa-page .wa-contact-section-heading {
  margin: 0 0 16px;
  color: var(--theme-text);
  font-size: clamp(1.14rem, 1.35vw, 1.38rem);
  font-weight: 600;
  letter-spacing: -.018em;
  line-height: 1.2;
}

.wa-contact-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.wa-page .wa-contact-action {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 15px;
  color: var(--theme-text);
  background: rgba(255, 255, 255, .035);
  font-size: .86rem;
  font-weight: 650;
  line-height: 1.25;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.wa-page .wa-contact-action:hover,
.wa-page .wa-contact-action:focus-visible {
  border-color: rgba(139, 167, 255, .48);
  background: rgba(139, 167, 255, .09);
  transform: translateY(-1px);
}

.wa-page .wa-contact-action:focus-visible,
.wa-page .wa-contact-channel:focus-visible,
.wa-contact-hotspot summary:focus-visible {
  outline: 2px solid var(--theme-accent);
  outline-offset: 3px;
}

.wa-contact-action__icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: var(--theme-accent);
  font-size: 1.05rem;
  line-height: 1;
}

.wa-contact-action__icon :is(svg, img) {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.wa-contact-action > .wa-contact-action__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.wa-contact-directory-grid,
.wa-contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.wa-contact-facts {
  display: grid;
  margin: 0;
  padding: 0;
}

.wa-contact-fact {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 3px;
  margin: 0;
  padding: 14px 0;
  list-style: none;
}

.wa-contact-fact:has(> .wa-contact-fact__icon) {
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 12px;
}

.wa-contact-fact:has(> .wa-contact-fact__icon) > .wa-contact-fact__icon {
  grid-row: 1 / span 2;
}

.wa-contact-fact:first-child {
  padding-top: 0;
}

.wa-contact-fact:last-child {
  padding-bottom: 0;
}

.wa-contact-fact + .wa-contact-fact {
  border-top: 1px solid rgba(255, 255, 255, .075);
}

.wa-contact-fact__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 11px;
  color: var(--theme-accent);
  background: rgba(255, 255, 255, .025);
  font-size: .96rem;
  line-height: 1;
}

.wa-contact-fact__icon :is(svg, img) {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.wa-contact-fact :is(dt, .wa-contact-fact__label) {
  margin: 0 0 3px;
  color: var(--theme-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.wa-page .wa-contact-fact :is(dd, p, .wa-contact-fact__value) {
  margin: 0;
  color: var(--theme-text);
  font-size: .93rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.wa-page .wa-contact-fact dd small {
  display: block;
  margin-top: 3px;
  color: var(--theme-muted);
  font-size: .78rem;
  line-height: 1.45;
}

.wa-page .wa-contact-fact dd strong {
  display: block;
}

.wa-page .wa-contact-fact a {
  color: var(--theme-text);
  text-decoration-color: rgba(246, 247, 251, .3);
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

.wa-contact-channel-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
}

.wa-page .wa-contact-channel {
  display: flex;
  min-width: 0;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 13px;
  color: var(--theme-text);
  background: rgba(255, 255, 255, .025);
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.wa-page .wa-contact-channel:hover,
.wa-page .wa-contact-channel:focus-visible {
  border-color: rgba(139, 167, 255, .4);
  background: rgba(139, 167, 255, .075);
}

.wa-contact-channel :is(svg, img) {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
}

.wa-contact-channel .wa-contact-action__icon svg {
  fill: currentColor;
  stroke: none;
}

.wa-contact-channel .wa-contact-action__icon svg rect,
.wa-contact-channel .wa-contact-action__icon svg circle:not(.is-filled) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.wa-contact-channel .wa-contact-action__icon .is-filled {
  fill: currentColor;
  stroke: none;
}

.wa-contact-channel .wa-contact-action__icon .is-cutout {
  fill: #0d101a;
  stroke: none;
}

.wa-contact-location__grid {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.85fr) minmax(250px, .65fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.wa-contact-location__map {
  min-width: 0;
}

.wa-contact-map-frame {
  display: block;
  width: 100%;
  min-height: clamp(320px, 30vw, 420px);
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
}

.wa-contact-directions-menu {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 167, 255, .1), transparent 48%),
    rgba(255, 255, 255, .022);
}

.wa-contact-guide-actions {
  display: grid;
  flex: 1 1 auto;
  grid-template-rows: repeat(3, minmax(60px, 72px));
  align-content: center;
  gap: 10px;
  margin-top: 10px;
}

.wa-page .wa-contact-guide-trigger {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
  color: var(--theme-text);
  background: rgba(255, 255, 255, .032);
  font: inherit;
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.wa-contact-guide-trigger > span:last-child {
  color: var(--theme-accent);
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.wa-page .wa-contact-guide-trigger:hover,
.wa-page .wa-contact-guide-trigger:focus-visible {
  border-color: rgba(139, 167, 255, .48);
  background: rgba(139, 167, 255, .085);
  outline: none;
  transform: translateY(-1px);
}

.wa-contact-guide-trigger:hover > span:last-child,
.wa-contact-guide-trigger:focus-visible > span:last-child {
  transform: translateX(3px);
}

.wa-contact-guide-dialog {
  width: min(1120px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  color: var(--theme-text);
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 167, 255, .13), transparent 40%),
    #090c15;
  box-shadow: 0 34px 120px rgba(0, 0, 0, .68), inset 0 1px 0 rgba(255, 255, 255, .055);
}

.wa-contact-guide-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.wa-contact-guide-dialog::backdrop {
  background: rgba(1, 3, 8, .84);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.wa-contact-guide-dialog__header {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(9, 12, 21, .9);
}

.wa-page .wa-contact-guide-dialog__header h2 {
  margin: 0;
  color: var(--theme-text);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 550;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.wa-contact-guide-dialog__close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  place-items: center;
  color: var(--theme-text);
  background: rgba(255, 255, 255, .035);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.wa-contact-guide-dialog__close:hover,
.wa-contact-guide-dialog__close:focus-visible {
  border-color: rgba(139, 167, 255, .5);
  background: rgba(139, 167, 255, .09);
  outline: 2px solid var(--theme-accent);
  outline-offset: 2px;
}

.wa-contact-guide-dialog__body {
  min-height: 0;
  padding: clamp(14px, 2vw, 22px);
  overflow: auto;
  overscroll-behavior: contain;
}

.wa-contact-guide-dialog [data-contact-guide][hidden] {
  display: none !important;
}

body.contact-guide-dialog-open {
  overflow: hidden;
}

.wa-contact-guide {
  min-width: 0;
  margin: 0;
}

.wa-contact-guide + .wa-contact-guide {
  margin-top: 2px;
}

.wa-contact-guide figcaption {
  margin: 0 0 10px;
  color: var(--theme-muted);
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: .02em;
  line-height: 1.4;
}

.wa-contact-guide__canvas {
  position: relative;
  width: 100%;
  max-width: 1053px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  background: rgba(255, 255, 255, .025);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.wa-page .wa-contact-guide__canvas > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 19px;
}

.wa-contact-hotspot {
  position: absolute;
  z-index: 3;
  top: var(--y);
  left: var(--x);
  margin: 0;
  transform: translate(-50%, -50%);
}

.wa-contact-hotspot[open] {
  z-index: 30;
}

.wa-contact-hotspot summary {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  place-items: center;
  color: transparent;
  background: #e95050;
  box-shadow: 0 0 0 4px rgba(5, 7, 13, .46), 0 8px 24px rgba(0, 0, 0, .34);
  font-size: 0;
  list-style: none;
  cursor: pointer;
  user-select: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.wa-contact-hotspot summary::-webkit-details-marker {
  display: none;
}

.wa-contact-hotspot summary::marker {
  content: "";
}

.wa-contact-hotspot summary::before {
  color: #fff;
  content: "+";
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 160ms ease;
}

.wa-contact-hotspot summary:hover {
  background: #f05a5a;
  transform: scale(1.06);
}

.wa-contact-hotspot[open] summary::before {
  transform: rotate(45deg);
}

.wa-contact-hotspot__panel {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(100% + 12px);
  width: min(280px, calc(100vw - 64px));
  max-height: min(360px, calc(100dvh - 96px));
  padding: 14px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 15px;
  color: var(--theme-text);
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 167, 255, .15), transparent 45%),
    rgba(7, 10, 18, .94);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .46), inset 0 1px 0 rgba(255, 255, 255, .055);
  transform: translate(var(--contact-panel-shift, 0px), -50%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.wa-contact-hotspot--right .wa-contact-hotspot__panel {
  right: calc(100% + 12px);
  left: auto;
}

.wa-contact-hotspot--above .wa-contact-hotspot__panel {
  top: auto;
  bottom: calc(100% + 12px);
  transform: translateX(var(--contact-panel-shift, 0px));
}

.wa-page .wa-contact-hotspot__panel :is(h3, strong) {
  display: block;
  margin: 0 0 6px;
  color: var(--theme-text);
  font-size: .92rem;
  font-weight: 650;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.wa-page .wa-contact-hotspot__panel p {
  margin: 0;
  color: rgba(226, 230, 241, .75);
  font-size: .8rem;
  line-height: 1.48;
}

.wa-contact-hotspot__detail-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 10px;
  border-radius: 10px;
}

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

[data-contact-feedback-i18n] {
  display: none !important;
}

/* EasyFeedback inherits the same dark visual language when opened from Contacts. */
body.itmsft-theme .easyfeedback-modal .easyfeedback-modal__overlay {
  padding: 16px;
  background: rgba(1, 3, 8, .82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

body.itmsft-theme .easyfeedback-modal .easyfeedback-modal__container {
  width: min(520px, 100%);
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  color: var(--theme-text);
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 167, 255, .14), transparent 40%),
    #0b0e18;
  box-shadow: 0 32px 110px rgba(0, 0, 0, .62), inset 0 1px 0 rgba(255, 255, 255, .055);
}

body.itmsft-theme .easyfeedback-modal .easyfeedback-modal__header {
  gap: 18px;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback-modal__title {
  margin: 0;
  color: var(--theme-text);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 550;
  letter-spacing: -.025em;
  line-height: 1.15;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback-modal__description {
  display: none;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback-modal__close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  place-items: center;
  color: var(--theme-text);
  background: rgba(255, 255, 255, .035);
}

body.itmsft-theme .easyfeedback-modal .easyfeedback-modal__close:hover,
body.itmsft-theme .easyfeedback-modal .easyfeedback-modal__close:focus-visible {
  border-color: rgba(139, 167, 255, .48);
  background: rgba(139, 167, 255, .09);
  outline: none;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback-modal__content {
  margin-top: 18px;
  color: var(--theme-muted);
}

body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__field {
  margin-bottom: 14px;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__field-name,
body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__checkbox-text {
  margin-bottom: 6px;
  color: rgba(226, 230, 241, .72);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.4;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__field--require .easyfeedback__field-name::after {
  color: #ff8585;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__input,
body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__select,
body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__textarea,
body.itmsft-theme .easyfeedback-modal .easyfeedback .wa-captcha-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: var(--theme-text);
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
  font: inherit;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__textarea {
  min-height: 112px;
  resize: vertical;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__input::placeholder,
body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__textarea::placeholder {
  color: rgba(146, 151, 165, .76);
  opacity: 1;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__input:hover,
body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__input:focus,
body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__select:hover,
body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__select:focus,
body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__textarea:hover,
body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__textarea:focus,
body.itmsft-theme .easyfeedback-modal .easyfeedback .wa-captcha-input:hover,
body.itmsft-theme .easyfeedback-modal .easyfeedback .wa-captcha-input:focus {
  border-color: rgba(139, 167, 255, .72);
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 167, 255, .1);
}

body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__submit {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(180, 199, 255, .38);
  border-radius: 14px;
  color: #07101f;
  background: linear-gradient(135deg, #b8c9ff, var(--theme-accent));
  font: inherit;
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__submit:hover,
body.itmsft-theme .easyfeedback-modal .easyfeedback .easyfeedback__submit:focus-visible {
  filter: brightness(1.07);
  outline: 2px solid rgba(184, 201, 255, .72);
  outline-offset: 3px;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback .wa-captcha-refresh {
  color: var(--theme-accent);
}

body.itmsft-theme .easyfeedback-modal .easyfeedback .js-easyfeedback__field-error {
  display: block;
  margin-top: 5px;
  color: #ff9898;
  font-size: .74rem;
  line-height: 1.35;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback .is-error :is(.easyfeedback__input, .easyfeedback__textarea, .easyfeedback__select, .wa-captcha-input) {
  border-color: rgba(255, 133, 133, .78);
}

body.itmsft-theme .easyfeedback-modal .easyfeedback__success-text {
  color: var(--theme-text);
  line-height: 1.55;
}

body.itmsft-theme .easyfeedback-modal .easyfeedback-default-color,
body.itmsft-theme .easyfeedback-modal .easyfeedback-alternative-color {
  color: var(--theme-accent);
}

/* DEBUG: .wa-contact-page--directory * { outline: 1px solid rgba(255, 0, 255, .2); } */
/* DEBUG: console localization state is available in setupContactPage(). */

@media (max-width: 1100px) {
  .wa-contact-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .wa-contact-location__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wa-contact-guide-actions {
    flex: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
    align-content: normal;
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .wa-contact-page--directory {
    gap: 14px;
    margin-top: -18px;
  }

  .wa-contact-block {
    padding: 18px;
    border-radius: 20px;
  }

  .wa-contact-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wa-contact-directory-grid,
  .wa-contact-channels-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wa-contact-map-frame {
    min-height: 300px;
    border-radius: 15px;
  }

  .wa-contact-guide-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .wa-page .wa-contact-guide-trigger {
    min-height: 62px;
    padding: 13px 14px;
  }

  .wa-contact-guide-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 18px;
  }

  .wa-contact-guide-dialog__header {
    padding: 14px;
  }

  .wa-contact-guide-dialog__body {
    padding: 10px;
  }

  .wa-contact-guide__canvas {
    border-radius: 16px;
  }

  .wa-page .wa-contact-guide__canvas > img {
    border-radius: 15px;
  }

  .wa-contact-hotspot summary {
    width: 38px;
    height: 38px;
  }

  .wa-contact-hotspot summary::before {
    font-size: 1.45rem;
  }

  /* Keep the original desktop coordinates while separating overlapping touch targets. */
  .wa-contact-hotspot--mobile-entrance {
    transform: translate(-88%, -88%);
  }

  .wa-contact-hotspot--mobile-stairs {
    transform: translate(-12%, -12%);
  }

  .wa-contact-hotspot--mobile-shop {
    transform: translate(-50%, -76%);
  }

  .wa-contact-hotspot--mobile-drive-2 {
    transform: translate(-50%, -24%);
  }

  .wa-contact-hotspot__panel {
    top: calc(100% + 9px);
    left: -10px;
    width: min(236px, calc(100vw - 64px));
    max-height: min(320px, calc(100dvh - 80px));
    padding: 12px;
    transform: translateX(var(--contact-panel-shift, 0px));
  }

  .wa-contact-hotspot--right .wa-contact-hotspot__panel {
    right: -10px;
    left: auto;
  }

  .wa-contact-hotspot--above .wa-contact-hotspot__panel {
    top: auto;
    bottom: calc(100% + 9px);
  }

  body.itmsft-theme .easyfeedback-modal .easyfeedback-modal__overlay {
    padding: 10px;
  }

  body.itmsft-theme .easyfeedback-modal .easyfeedback-modal__container {
    max-height: calc(100dvh - 20px);
    padding: 20px;
    border-radius: 20px;
  }
}

@media (max-width: 420px) {
  .wa-contact-block {
    padding: 16px;
  }

  .wa-page .wa-contact-action {
    min-height: 50px;
    padding: 10px 11px;
    font-size: .8rem;
  }

  .wa-contact-action__icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .wa-contact-fact {
    grid-template-columns: minmax(0, 1fr);
  }

  .wa-contact-fact:has(> .wa-contact-fact__icon) {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 10px;
  }

  .wa-contact-fact__icon {
    width: 32px;
    height: 32px;
  }

  .wa-contact-map-frame {
    min-height: 270px;
  }

  .wa-contact-guide-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .wa-page .wa-contact-guide-trigger {
    min-height: 58px;
  }

  .wa-contact-hotspot__panel {
    width: min(222px, calc(100vw - 52px));
  }
}

.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) {
  .wa-info-lead {
    margin-top: -18px;
  }

  .wa-info-grid {
    grid-template-columns: 1fr;
  }

  .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;
  }
}

/* Unified carousel navigation: previous | progress | next. */
.itmsft-slider-nav {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-inline: auto;
}

.itmsft-slider-nav > .itmsft-slider-nav__button {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(230, 237, 255, .25);
  border-radius: 50%;
  color: #f7f9ff;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .15), transparent 44%),
    linear-gradient(145deg, rgba(99, 116, 158, .24), rgba(8, 12, 23, .7));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    inset 0 -12px 24px rgba(3, 6, 14, .22),
    0 12px 30px rgba(0, 0, 0, .28);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
  cursor: pointer;
  transform: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.itmsft-slider-nav > .itmsft-slider-nav__button > img {
  display: block;
  width: 20px;
  height: 20px;
  opacity: .92;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.itmsft-slider-nav > .itmsft-slider-nav__button:hover:not(:disabled) {
  border-color: rgba(238, 244, 255, .52);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .22), transparent 46%),
    linear-gradient(145deg, rgba(119, 140, 192, .34), rgba(13, 19, 34, .78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 0 24px rgba(150, 180, 255, .14),
    0 14px 34px rgba(0, 0, 0, .34);
  transform: translateY(-2px);
}

.itmsft-slider-nav > .itmsft-slider-nav__button:active:not(:disabled) {
  transform: scale(.94);
}

.itmsft-slider-nav > .itmsft-slider-nav__button:focus-visible,
.itmsft-slider-nav__dot:focus-visible {
  outline: 3px solid rgba(181, 204, 255, .72);
  outline-offset: 3px;
}

.itmsft-slider-nav > .itmsft-slider-nav__button:disabled,
.itmsft-slider-nav > .itmsft-slider-nav__button[aria-disabled="true"] {
  opacity: .32;
  cursor: default;
}

.itmsft-slider-nav .itmsft-slider-nav__progress {
  display: flex;
  flex: 0 1 auto;
  width: auto;
  min-width: 0;
  max-width: min(64vw, 390px);
  min-height: 44px;
  padding: 9px 12px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  overflow-x: auto;
  border: 1px solid rgba(226, 235, 255, .16);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(35, 43, 62, .46), rgba(5, 9, 18, .68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 12px 30px rgba(0, 0, 0, .2);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
  scrollbar-width: none;
}

.itmsft-slider-nav .itmsft-slider-nav__progress::-webkit-scrollbar {
  display: none;
}

.itmsft-slider-nav .itmsft-slider-nav__dot {
  position: relative;
  display: block;
  flex: 0 0 34px;
  width: 34px;
  min-width: 34px;
  height: 24px;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: width 220ms ease, flex-basis 220ms ease;
}

.itmsft-slider-nav .itmsft-slider-nav__dot::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: rgba(217, 226, 247, .34);
  content: "";
  transform: translateY(-50%);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.itmsft-slider-nav .itmsft-slider-nav__dot.is-active,
.itmsft-slider-nav .itmsft-slider-nav__dot[aria-current="true"] {
  flex-basis: 58px;
  width: 58px;
  min-width: 58px;
  background: transparent;
}

/* Keep the Hero highlight on the line itself, without a glow around the
   full 58 x 24 px button hit area inherited from hero-light-rays.css. */
.hero-screen .hero-slider__dots .itmsft-slider-nav__dot.is-active,
.hero-screen .hero-slider__dots .itmsft-slider-nav__dot[aria-current="true"] {
  box-shadow: none;
}

.itmsft-slider-nav .itmsft-slider-nav__dot.is-active::before,
.itmsft-slider-nav .itmsft-slider-nav__dot[aria-current="true"]::before {
  background: rgba(235, 241, 255, .94);
  box-shadow: 0 0 14px rgba(167, 194, 255, .5);
}

.hero-slider__controls.itmsft-slider-nav,
.blog-slider__footer.itmsft-slider-nav {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}

.blog-slider__footer.itmsft-slider-nav {
  margin-top: clamp(18px, 2.3vh, 28px);
}

@media (max-width: 640px) {
  .itmsft-slider-nav {
    gap: 8px;
  }

  .hero-slider__controls.itmsft-slider-nav,
  .blog-slider__footer.itmsft-slider-nav {
    justify-content: center;
  }

  .hero-slider__controls.itmsft-slider-nav {
    margin-bottom: 16px;
    transform: translateY(var(--itmsft-hero-nav-offset, 0px));
  }

  .itmsft-slider-nav .itmsft-slider-nav__progress {
    max-width: calc(100vw - 132px);
    padding-right: 10px;
    padding-left: 10px;
    gap: 5px;
  }

  .itmsft-slider-nav .itmsft-slider-nav__dot {
    flex-basis: 22px;
    width: 22px;
    min-width: 22px;
  }

  .itmsft-slider-nav .itmsft-slider-nav__dot.is-active,
  .itmsft-slider-nav .itmsft-slider-nav__dot[aria-current="true"] {
    flex-basis: 36px;
    width: 36px;
    min-width: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__controls.itmsft-slider-nav,
  .itmsft-slider-nav > .itmsft-slider-nav__button,
  .itmsft-slider-nav .itmsft-slider-nav__dot,
  .itmsft-slider-nav .itmsft-slider-nav__dot::before {
    transition: none;
  }
}

/* Site-only minimal carousel navigation. Shop keeps its glass controls in
   the child theme and is intentionally excluded by the app-site scope. */
body.app-site.is-home .hero-slider__controls.itmsft-slider-nav--minimal,
body.app-site.is-home .blog-slider__footer.itmsft-slider-nav--minimal {
  position: relative;
  z-index: 3;
  gap: clamp(10px, 1.2vw, 14px);
  touch-action: manipulation;
}

body.app-site.is-home .itmsft-slider-nav--minimal > .itmsft-slider-nav__button {
  position: relative;
  display: grid;
  overflow: visible;
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: rgba(225, 233, 252, .72);
  background: none;
  box-shadow: none;
  opacity: 1;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: color 180ms ease, opacity 180ms ease;
}

body.app-site.is-home .itmsft-slider-nav--minimal > .itmsft-slider-nav__button::after {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1px;
  border-radius: 999px;
  content: "";
  opacity: .48;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

body.app-site.is-home .itmsft-slider-nav--minimal > [data-slider-prev]::after {
  left: 22px;
  background: linear-gradient(90deg, currentColor, transparent);
  transform: translateY(-50%) scaleX(.76);
  transform-origin: left center;
}

body.app-site.is-home .itmsft-slider-nav--minimal > [data-slider-next]::after {
  right: 22px;
  background: linear-gradient(90deg, transparent, currentColor);
  transform: translateY(-50%) scaleX(.76);
  transform-origin: right center;
}

body.app-site.is-home .itmsft-slider-nav--minimal > .itmsft-slider-nav__button > img {
  width: 18px;
  height: 18px;
  opacity: .82;
  filter: brightness(0) invert(1) opacity(.78) drop-shadow(0 0 5px rgba(177, 199, 255, .28));
  transform: translateX(0);
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

body.app-site.is-home .itmsft-slider-nav--minimal > .itmsft-slider-nav__button:hover:not(:disabled) {
  border-color: transparent;
  color: #fff;
  background: none;
  box-shadow: none;
  transform: none;
}

body.app-site.is-home .itmsft-slider-nav--minimal > .itmsft-slider-nav__button:hover:not(:disabled)::after {
  opacity: .92;
  transform: translateY(-50%) scaleX(1);
}

body.app-site.is-home .itmsft-slider-nav--minimal > [data-slider-prev]:hover:not(:disabled) > img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(190, 208, 255, .58));
  transform: translateX(-2px);
}

body.app-site.is-home .itmsft-slider-nav--minimal > [data-slider-next]:hover:not(:disabled) > img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(190, 208, 255, .58));
  transform: translateX(2px);
}

body.app-site.is-home .itmsft-slider-nav--minimal > .itmsft-slider-nav__button:active:not(:disabled) {
  background: none;
  box-shadow: none;
  transform: none;
}

body.app-site.is-home .itmsft-slider-nav--minimal > .itmsft-slider-nav__button:focus-visible {
  border-radius: 5px;
  outline: 1px solid rgba(181, 204, 255, .72);
  outline-offset: -3px;
}

body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__progress {
  width: auto;
  min-width: 0;
  min-height: 24px;
  padding: 0 2px;
  gap: 8px;
  overflow-x: auto;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__dot {
  flex-basis: 32px;
  width: 32px;
  min-width: 32px;
  height: 20px;
  min-height: 20px;
  border-radius: 0;
  background: none;
  box-shadow: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__dot::before {
  height: 2px;
  border-radius: 999px;
  background: rgba(184, 198, 229, .3);
  box-shadow: none;
  transition: background 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}

body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__dot:hover::before {
  background: rgba(222, 231, 251, .58);
}

body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__dot.is-active,
body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__dot[aria-current="true"] {
  flex-basis: 48px;
  width: 48px;
  min-width: 48px;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__dot.is-active::before,
body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__dot[aria-current="true"]::before {
  background: linear-gradient(90deg, rgba(197, 211, 250, .8), #f7f9ff 52%, rgba(174, 195, 255, .82));
  box-shadow: 0 0 6px rgba(177, 198, 255, .72), 0 0 16px rgba(132, 164, 255, .28);
}

body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__dot:focus-visible {
  border-radius: 3px;
  outline: 1px solid rgba(181, 204, 255, .7);
  outline-offset: 0;
}

@media (max-width: 640px) {
  body.app-site.is-home .hero-slider__controls.itmsft-slider-nav--minimal,
  body.app-site.is-home .blog-slider__footer.itmsft-slider-nav--minimal {
    gap: 10px;
  }

  body.app-site.is-home .hero-slider__controls.itmsft-slider-nav--minimal {
    transform: none;
  }

  body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__progress {
    max-width: calc(100vw - 112px);
    padding: 0;
    gap: 6px;
  }

  body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__dot {
    flex-basis: 26px;
    width: 26px;
    min-width: 26px;
  }

  body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__dot.is-active,
  body.app-site.is-home .itmsft-slider-nav--minimal .itmsft-slider-nav__dot[aria-current="true"] {
    flex-basis: 42px;
    width: 42px;
    min-width: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.app-site.is-home .itmsft-slider-nav--minimal > .itmsft-slider-nav__button::after,
  body.app-site.is-home .itmsft-slider-nav--minimal > .itmsft-slider-nav__button > img {
    transition: none;
  }
}

/* Site CMS service landings: shared layout without page-specific hardcoding. */
.content-shell:has(.wa-landing) {
  width: min(1240px, 100%);
}

.wa-landing,
.wa-landing * {
  box-sizing: border-box;
}

.wa-landing {
  min-width: 0;
  margin-top: -28px;
}

.wa-landing__lead {
  max-width: 760px;
  margin: 0;
  color: var(--theme-muted);
}

.wa-landing__hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.wa-landing-slider {
  position: relative;
  min-width: 0;
  margin-top: clamp(42px, 5vw, 66px);
  overflow: hidden;
  border: 1px solid rgba(169, 191, 255, .25);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 16%, rgba(111, 140, 235, .2), transparent 38%),
    radial-gradient(circle at 16% 100%, rgba(100, 71, 184, .1), transparent 40%),
    rgba(8, 11, 20, .86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 28px 78px rgba(0, 0, 0, .24);
  isolation: isolate;
}

.wa-landing-slider::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, .035), transparent 36%, rgba(139, 167, 255, .035));
  content: "";
  pointer-events: none;
}

.wa-landing-slider__viewport {
  position: relative;
  min-height: clamp(410px, 40vw, 530px);
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.wa-landing-slide {
  position: absolute;
  display: grid;
  visibility: hidden;
  width: 100%;
  min-height: 100%;
  grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(20px, 4vw, 58px);
  padding: clamp(30px, 5vw, 62px);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(.2, .8, .2, 1), visibility 0s linear 520ms;
}

.wa-landing-slide.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.wa-landing-slide__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.wa-page .wa-landing-slide__copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: var(--info-card-title-size);
  font-weight: 420;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.wa-page .wa-landing-slide__copy p {
  max-width: 620px;
  margin: 18px 0 0;
}

.wa-landing-slide__visual {
  display: grid;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  place-items: center;
}

.wa-landing-slide__visual img {
  display: block;
  width: 100%;
  max-height: clamp(330px, 34vw, 465px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, .36));
}

.wa-landing-slider__controls.itmsft-slider-nav {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 3vw, 38px);
  bottom: clamp(18px, 2.4vw, 30px);
  margin: 0;
}

.wa-landing-slider__controls .itmsft-slider-nav__button {
  flex-basis: 38px;
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  font-size: 17px;
}

.wa-landing-slider__controls .itmsft-slider-nav__progress {
  min-height: 38px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.wa-landing-slider__toggle span {
  font-size: 12px;
  letter-spacing: -.12em;
}

.wa-landing__section {
  min-width: 0;
  margin-top: clamp(54px, 7vw, 86px);
  scroll-margin-top: 96px;
}

.wa-landing__section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  align-items: end;
  gap: 24px 48px;
  margin-bottom: 26px;
}

.wa-landing__section-head > h2 {
  grid-column: 1;
  grid-row: 1;
}

.wa-landing__section-head > .wa-info-card__label {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: end;
  margin: 0;
  text-align: right;
}

.wa-landing__section-head > p {
  grid-column: 1;
  grid-row: 2;
}

.wa-page .wa-landing__section-head h2,
.wa-page .wa-landing__section-head h3 {
  margin: 0;
}

.wa-page .wa-landing__section-head p {
  max-width: 640px;
  margin: 0;
}

.wa-landing__eyebrow,
.wa-landing__card-label,
.wa-landing__plan-label {
  display: block;
  margin-bottom: 12px;
  color: var(--theme-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.wa-landing__grid {
  display: grid;
  gap: 18px;
}

.wa-landing__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wa-landing__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wa-landing__grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wa-landing__grid--one,
.wa-landing__grid--1 {
  grid-template-columns: minmax(0, 1fr);
}

.wa-landing__card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(22px, 2.6vw, 32px);
  overflow: hidden;
  border: 1px solid var(--theme-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 94% 0%, rgba(139, 167, 255, .075), transparent 38%),
    rgba(10, 13, 23, .7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 20px 58px rgba(0, 0, 0, .14);
}

.wa-page .wa-landing__card h2,
.wa-page .wa-landing__card h3 {
  margin: 0 0 13px;
}

.wa-page .wa-landing__card p {
  margin: 0;
}

.wa-page .wa-landing__card p + p {
  margin-top: 10px;
}

.wa-landing-card__list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.wa-landing-card__list .wa-landing-list__item {
  position: relative;
  padding: 9px 0 9px 20px;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
}

.wa-landing-card__list .wa-landing-list__item + .wa-landing-list__item {
  border-top: 1px solid rgba(255, 255, 255, .07);
}

@media (min-width: 761px) {
  .wa-landing--solutions #solution-status .wa-landing-card__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(24px, 4vw, 56px);
  }

  .wa-landing--solutions #solution-status .wa-landing-card__list .wa-landing-list__item:nth-child(2) {
    border-top: 0;
  }
}

/* Debug layout helper (disabled): .wa-landing--solutions #solution-status { outline: 1px solid #ff4d4d; } */

.wa-landing-card__list .wa-landing-list__item::before {
  position: absolute;
  top: 1.03em;
  left: 1px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(169, 191, 255, .58);
  border-radius: 50%;
  background: rgba(169, 191, 255, .16);
  content: "";
}

.wa-landing-card__list .wa-landing-list__item--available::before {
  border-color: rgba(86, 215, 154, .78);
  background: #49ca8d;
  box-shadow: 0 0 12px rgba(73, 202, 141, .42);
}

.wa-landing-card__list .wa-landing-list__item--soon::before {
  border-color: rgba(244, 190, 73, .82);
  background: #e9b547;
  box-shadow: 0 0 12px rgba(233, 181, 71, .36);
}

.wa-landing-card__list .wa-landing-list__item--extra::before {
  border-color: rgba(164, 134, 255, .82);
  background: #9678ee;
  box-shadow: 0 0 12px rgba(150, 120, 238, .36);
}

.wa-landing__feature-list {
  display: grid;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.wa-landing__feature-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
}

.wa-landing__feature-list li + li {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.wa-landing__feature-list li > :last-child:not(:first-child) {
  color: var(--theme-text);
  text-align: right;
}

.wa-landing__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.wa-landing__step {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--theme-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .025);
}

.wa-landing__step-index {
  display: block;
  margin-bottom: 30px;
  color: var(--theme-accent, #a9bfff);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.wa-page .wa-landing__step h3 {
  margin: 0 0 10px;
}

.wa-page .wa-landing__step p {
  margin: 0;
}

.wa-landing__pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.wa-landing__plan {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(24px, 2.8vw, 34px);
  border: 1px solid var(--theme-line);
  border-radius: 26px;
  background: rgba(10, 13, 23, .76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 22px 64px rgba(0, 0, 0, .16);
}

.wa-landing__plan--featured {
  border-color: rgba(169, 191, 255, .5);
  background:
    radial-gradient(circle at 80% 0%, rgba(139, 167, 255, .17), transparent 42%),
    rgba(13, 17, 30, .9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .075), 0 24px 72px rgba(0, 0, 0, .22), 0 0 30px rgba(112, 145, 235, .075);
}

.wa-page .wa-landing__plan h2,
.wa-page .wa-landing__plan h3 {
  margin: 0;
}

.wa-landing__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin: 22px 0 6px;
  color: var(--theme-text);
}

.wa-landing__price strong {
  font-size: var(--info-card-title-size);
  font-weight: 440;
  letter-spacing: -.035em;
  line-height: 1.14;
}

.wa-landing__price span {
  color: var(--theme-muted);
  font-size: 13px;
  line-height: 1.4;
}

.wa-landing-plan__group {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.wa-page .wa-landing-plan__group h4 {
  margin: 0 0 10px;
  color: var(--theme-text);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.wa-landing-plan__metrics {
  padding: 0;
  margin: 0;
}

.wa-landing-plan__metrics > div {
  display: grid;
  grid-template-columns: minmax(92px, .7fr) minmax(0, 1.3fr);
  align-items: baseline;
  gap: 14px;
  padding: 8px 0;
}

.wa-landing-plan__metrics > div + div {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.wa-landing-plan__metrics dt,
.wa-landing-plan__metrics dd {
  min-width: 0;
  margin: 0;
  color: var(--theme-muted);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.wa-landing-plan__metrics dd {
  color: var(--theme-text);
  font-weight: 600;
  text-align: right;
}

.wa-landing-plan__list {
  margin-top: 4px;
}

.wa-page .wa-landing-plan__note {
  margin: 12px 0 0;
  font-size: 14px;
}

.wa-landing-plan__button {
  align-self: stretch;
  justify-content: center;
  margin-top: auto;
}

.wa-landing__compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.wa-landing__card > .wa-landing__compact-links:last-child,
.wa-landing__plan > .wa-landing__compact-links:last-child {
  padding-top: 8px;
  margin-top: auto;
}

.wa-page .wa-landing__compact-links a:not(.glass-button) {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  color: var(--theme-text);
  background: rgba(255, 255, 255, .035);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.wa-page .wa-landing__compact-links a:not(.glass-button):hover,
.wa-page .wa-landing__compact-links a:not(.glass-button):focus-visible {
  border-color: rgba(169, 191, 255, .5);
  color: #fff;
  background: rgba(139, 167, 255, .1);
  outline: none;
}

.wa-landing__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: clamp(54px, 7vw, 86px);
  padding: clamp(26px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(169, 191, 255, .28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(139, 167, 255, .15), transparent 40%),
    rgba(10, 13, 23, .78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), 0 26px 76px rgba(0, 0, 0, .2);
}

.wa-page .wa-landing__cta h2,
.wa-page .wa-landing__cta h3,
.wa-page .wa-landing__cta p {
  margin: 0;
}

.wa-page .wa-landing__cta p {
  max-width: 680px;
  margin-top: 12px;
}

.wa-landing__cta .wa-landing__hero-actions {
  justify-content: flex-end;
  margin-top: 0;
}

/* DEBUG: enable locally to inspect CMS block boundaries: .wa-landing * { outline: 1px solid rgba(255, 90, 90, .24); } */

@media (max-width: 980px) {
  .wa-landing__grid--3,
  .wa-landing__grid--4,
  .wa-landing__pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wa-landing__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wa-landing-slide {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr);
  }
}

@media (max-width: 760px) {
  .wa-landing {
    margin-top: -18px;
  }

  .wa-landing__hero-actions,
  .wa-landing__compact-links {
    align-items: stretch;
    flex-direction: column;
  }

  .wa-landing__hero-actions .glass-button,
  .wa-page .wa-landing__compact-links a:not(.glass-button) {
    width: 100%;
  }

  .wa-landing-slider {
    margin-top: 40px;
    border-radius: 24px;
  }

  .wa-landing-slider__viewport {
    min-height: 0;
  }

  .wa-landing-slide {
    position: absolute;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 14px;
    padding: 28px 22px 76px;
  }

  .wa-landing-slide.is-active {
    position: relative;
  }

  .wa-landing-slide__visual {
    min-height: 230px;
    align-self: auto;
  }

  .wa-landing-slide__visual img {
    width: min(100%, 430px);
    max-height: 300px;
  }

  .wa-landing-slider__controls.itmsft-slider-nav {
    right: 50%;
    bottom: 20px;
    transform: translateX(50%);
  }

  .wa-landing__section {
    margin-top: 54px;
  }

  .wa-landing__section-head,
  .wa-landing__grid--2,
  .wa-landing__grid--3,
  .wa-landing__grid--4,
  .wa-landing__steps,
  .wa-landing__pricing,
  .wa-landing__cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .wa-landing__section-head {
    align-items: start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .wa-landing__section-head > .wa-info-card__label {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    text-align: left;
  }

  .wa-landing__section-head > h2 {
    grid-column: 1;
    grid-row: 2;
  }

  .wa-landing__section-head > p {
    grid-column: 1;
    grid-row: 3;
  }

  .wa-landing__card,
  .wa-landing__plan {
    padding: 22px;
    border-radius: 22px;
  }

  .wa-landing__step {
    padding: 20px;
  }

  .wa-landing__step-index {
    margin-bottom: 22px;
  }

  .wa-landing__feature-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .wa-landing-plan__metrics > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
  }

  .wa-landing-plan__metrics dd {
    text-align: left;
  }

  .wa-landing__feature-list li > :last-child:not(:first-child) {
    text-align: left;
  }

  .wa-landing__cta {
    align-items: start;
    padding: 24px;
    border-radius: 24px;
  }

  .wa-landing__cta .wa-landing__hero-actions {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .wa-landing-slider__controls .wa-landing-slider__toggle {
    display: none;
  }

  .wa-landing-slider__controls .itmsft-slider-nav__progress {
    max-width: calc(100vw - 176px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-landing-slide {
    transition: none;
  }
}
