:root {
  --acs-page-bg: #ffffff;
  --acs-surface: #ffffff;
  --acs-surface-soft: #e6ebf1;
  --acs-border: #c8d1dc;
  --acs-text: #14202c;
  --acs-text-muted: #516274;
  --acs-page-title-color: #242424;
  --acs-page-body-color: #242424;
  --acs-page-title-size-mobile: 28px;
  --acs-page-title-size-desktop: 46px;
  --acs-page-title-letter-spacing: -0.05em;
  --acs-page-title-line-height: 1.1;
  --acs-page-body-size: 16px;
  --acs-page-body-line-height: 1.65;
  --acs-accent: #165fc2;
  --acs-accent-strong: #0f4ea3;
  --acs-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --acs-radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--acs-text);
  font-family: "Instrument Sans", "Neue Haas Unica", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 24px 72px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.site-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #222326;
  cursor: pointer;
}

.site-mobile-toggle svg,
.site-mobile-close svg {
  display: block;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  display: block;
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-left: 14px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 6px 0 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #222326;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: none;
  transition: color 0.18s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #2074e6;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid #b9c2cf;
  border-radius: 6px;
  background: linear-gradient(180deg, #f8fafc 0%, #e6ebf1 100%);
  color: #1a2430;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(16, 24, 40, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: #1c1d20;
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.site-button:hover {
  background: linear-gradient(180deg, #2e7de0 0%, #165fc2 100%);
  border-color: #165fc2;
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(22, 95, 194, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.site-nav a:focus-visible,
.site-button:focus-visible,
.shared-site-footer input:focus-visible {
  outline: 2px solid #2074e6;
  outline-offset: 2px;
}

.site-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav-item--has-submenu > a {
  z-index: 1;
}

.site-nav-item--has-submenu:hover > a,
.site-nav-item--has-submenu.is-open > a,
.site-nav-item--has-submenu:focus-within > a {
  color: #1c1d20;
}

.site-nav-item--has-submenu:hover > a::after,
.site-nav-item--has-submenu.is-open > a::after,
.site-nav-item--has-submenu:focus-within > a::after {
  transform: scaleX(1);
}

.site-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  min-width: 200px;
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.site-nav-item--has-submenu:hover > .site-submenu,
.site-nav-item--has-submenu.is-open > .site-submenu,
.site-nav-item--has-submenu:focus-within > .site-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-submenu a {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: fit-content;
  padding: 3px 0 8px;
  color: #222326;
  font-family: "Instrument Sans", "Neue Haas Unica", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-submenu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #2074e6;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.site-submenu a:hover,
.site-submenu a.is-current,
.site-submenu a:focus-visible {
  color: #1c1d20;
}

.site-submenu a:hover::after,
.site-submenu a.is-current::after,
.site-submenu a:focus-visible::after {
  transform: scaleX(1);
}

.site-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}

.site-mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.22s ease;
}

.site-mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 32, 0.42);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.site-mobile-drawer__panel {
  position: relative;
  width: min(320px, calc(100vw - 32px));
  max-width: 100%;
  height: 100%;
  background: #ffffff;
  box-shadow: 20px 0 40px rgba(16, 24, 40, 0.18);
  padding: 18px 20px 28px;
  transform: translateX(-100%);
  transition: transform 0.22s ease;
}

.site-mobile-drawer.is-open .site-mobile-drawer__panel {
  transform: translateX(0);
}

.site-mobile-drawer.is-open .site-mobile-drawer__backdrop {
  opacity: 1;
}

.site-mobile-drawer__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.site-mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #222326;
  cursor: pointer;
}

.site-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-mobile-nav a {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: fit-content;
  padding: 8px 0 10px;
  color: #222326;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #2074e6;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.site-mobile-nav a:hover::after,
.site-mobile-nav a.is-current::after,
.site-mobile-nav a:focus-visible::after {
  transform: scaleX(1);
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
}

.page-breadcrumb {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.shared-site-footer {
  margin-top: 18px;
  background: #101820;
  color: #eef3f8;
}

.shared-site-footer a {
  color: inherit;
  text-decoration: none;
}

.shared-site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 22px;
  display: grid;
  grid-template-columns: 220px minmax(240px, 1fr) minmax(180px, 220px) 120px;
  gap: 28px;
  align-items: start;
}

.shared-site-footer__logo img {
  display: block;
  width: 200px;
  height: auto;
}

.shared-site-footer__copy {
  color: rgba(238, 243, 248, 0.86);
  line-height: 1.7;
}

.shared-site-footer__copy-line {
  white-space: nowrap;
}

.shared-site-footer__email {
  margin-top: 16px;
}

.shared-site-footer__email input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 12px 14px;
  font: inherit;
}

.shared-site-footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  line-height: normal;
}

.shared-site-footer__links li {
  margin: 0;
  padding: 0;
}

.shared-site-footer__links a {
  color: rgba(238, 243, 248, 0.88);
}

.shared-site-footer__links a:hover {
  color: #ffffff;
}

.shared-site-footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shared-site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.shared-site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 24px 18px;
  text-align: center;
  color: rgba(238, 243, 248, 0.72);
  font-size: 14px;
}

@media screen and (max-width: 900px) {
  .shared-site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .site-shell {
    padding: 18px 16px 56px;
  }

  .site-header {
    justify-content: space-between !important;
    align-items: center;
  }

  .site-logo {
    margin-right: auto;
  }

  .site-nav {
    display: none;
  }

  .site-mobile-toggle {
    display: inline-flex;
  }

  .site-button {
    min-width: 96px;
    min-height: 34px;
    padding: 0 14px;
    font-size: 11px;
  }

  .site-mobile-nav .site-nav-item {
    display: block;
  }

  .site-mobile-nav .site-submenu {
    position: static;
    min-width: 0;
    margin: 4px 0 0 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-mobile-nav .site-nav-item--has-submenu.is-open > .site-submenu {
    display: flex;
  }

  .site-mobile-nav .site-submenu a {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .shared-site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 768px) {
  .site-mobile-drawer {
    display: none !important;
  }
}
