/* Shared header component owns the active header, nav, and mega-menu stack. */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
}

.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    transform 200ms ease;
  transform: translateY(0);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-nav-open {
  transform: translateY(0);
}

.site-header.is-nav-open,
.site-header.is-menu-active,
.site-header.is-focus-active,
.site-header.is-solid {
  background: #ffffff;
  border-bottom-color: rgba(16, 24, 40, 0.06);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
  backdrop-filter: none;
}

.site-header.is-nav-open .brand-logo {
  color: var(--brand);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 14px 0;
}

.header-left {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
  gap: 16px;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
  justify-content: flex-end;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  font-size: var(--header-brand-size);
  line-height: 1;
  letter-spacing: 0.01em;
  color: #0054e1;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.brand:focus,
.brand:focus-visible,
.brand:active {
  outline: none;
  background: transparent;
}

.brand-logo::before {
  display: block;
}

.site-header.is-nav-open .brand-logo,
.site-header.is-menu-active .brand-logo,
.site-header.is-focus-active .brand-logo,
.site-header.is-solid .brand-logo {
  color: #0054e1;
}

body
  .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active)
  .brand-logo {
  color: #ffffff;
}

body
  .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active)
  .site-nav,
body
  .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active)
  .nav-link,
body
  .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active)
  .nav-text {
  color: #ffffff;
}

body
  .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active)
  .site-nav
  > .nav-item:hover
  > .nav-link,
body
  .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active)
  .site-nav
  > .nav-item:focus-within
  > .nav-link {
  color: var(--header-solid-fg);
  font-weight: inherit;
}

body
  .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active)
  .nav-item.is-current
  > .nav-link,
body
  .site-header:not(.is-solid):not(.is-menu-active):not(.is-nav-open):not(.is-focus-active)
  .nav-link.is-current {
  color: rgba(var(--brand-rgb), 0.96);
}

.site-nav a {
  position: relative;
  padding: 10px 6px;
  border-radius: 0;
}

.nav-link {
  position: relative;
  padding: 10px 6px;
  min-height: 38px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  font-weight: inherit;
}

.nav-link:last-child {
  padding-right: 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  display: none;
}

.nav-text {
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.nav-text::after {
  display: none;
  content: none;
}

.site-nav a:hover .nav-text::after,
.nav-link:hover .nav-text::after,
.nav-link:focus-visible .nav-text::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 12px;
}

.nav-item.is-open > .nav-link .nav-text::after {
  transform: scaleX(1);
}

.site-header.is-nav-open .site-nav,
.site-header.is-menu-active .site-nav,
.site-header.is-focus-active .site-nav,
.site-header.is-solid .site-nav {
  color: var(--header-solid-fg);
}

.site-header.is-nav-open .nav-item.is-current > .nav-link,
.site-header.is-menu-active .nav-item.is-current > .nav-link,
.site-header.is-focus-active .nav-item.is-current > .nav-link,
.site-header.is-solid .nav-item.is-current > .nav-link,
.site-header.is-nav-open .nav-link.is-current,
.site-header.is-menu-active .nav-link.is-current,
.site-header.is-focus-active .nav-link.is-current,
.site-header.is-solid .nav-link.is-current {
  color: rgba(var(--brand-rgb), 0.96);
}

.site-header.is-nav-open .site-nav a:hover,
.site-header.is-nav-open .site-nav .nav-link:hover,
.site-header.is-menu-active .site-nav a:hover,
.site-header.is-menu-active .site-nav .nav-link:hover,
.site-header.is-focus-active .site-nav a:hover,
.site-header.is-focus-active .site-nav .nav-link:hover,
.site-header.is-solid .site-nav a:hover,
.site-header.is-solid .site-nav .nav-link:hover {
  background: transparent;
}

.site-header.is-nav-open .site-nav a::after,
.site-header.is-menu-active .site-nav a::after,
.site-header.is-focus-active .site-nav a::after,
.site-header.is-solid .site-nav a::after {
  background: rgba(var(--brand-rgb), 0.85);
}

.site-header.is-nav-open .nav-text::after,
.site-header.is-menu-active .nav-text::after,
.site-header.is-focus-active .nav-text::after,
.site-header.is-solid .nav-text::after {
  background: rgba(var(--brand-rgb), 0.85);
}

.nav-dropdown {
  position: fixed;
  top: calc(64px - 1px);
  left: 50%;
  min-width: 156px;
  padding: 6px 0;
  border-radius: 0;
  border-top: 0;
  background: #ffffff;
  border: 0;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.06);
  display: none;
  transform: translateX(-50%);
  z-index: 1200;
}

.nav-dropdown--mega {
  position: fixed;
  top: calc(64px - 1px);
  margin-top: 0;
  left: 50%;
  right: auto;
  width: min(800px, calc(100vw - 40px));
  transform: translateX(-50%);
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 1);
  border: 0;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.06);
  z-index: 1200;
  max-height: calc(100vh - 76px);
  overflow: auto;
}

.nav-dropdown--mega.nav-dropdown--tech {
  border-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.site-header.is-menu-active .nav-dropdown--mega,
.site-header.is-solid .nav-dropdown--mega {
  top: calc(64px - 1px);
}

.mega {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 16px 22px 18px;
  width: calc(100% - 44px);
  max-width: 840px;
  margin: 0 auto;
  box-sizing: border-box;
}

.mega--tech {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  justify-content: center;
  padding: 16px 22px 18px;
}

.mega-tech-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mega-tech-col-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 8px;
  margin-bottom: 8px;
}

.mega-tech-col-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brand, #0054e1);
}

.mega-tech-col-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mega-tech-col-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(16, 24, 40, 0.9);
  letter-spacing: 0;
  margin: 0;
  line-height: 1.25;
  flex: 0 0 auto;
}

.mega-tech-col-title-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 2px 2px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.mega-tech-col-title-link--disabled {
  cursor: default;
}

.mega-tech-col-title-link--disabled::after {
  transform: scaleX(0);
}

.mega-tech-col-title-link::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -3px;
  height: 2px;
  background: rgba(var(--brand-rgb), 0.85);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  border-radius: 999px;
}

.mega-tech-col-head:hover .mega-tech-col-title-link,
.mega-tech-col-title-link:hover {
  color: rgba(var(--brand-rgb), 0.96);
  background: transparent;
}

.mega-tech-col-head:hover .mega-tech-col-title-link::after,
.mega-tech-col-title-link:hover::after {
  transform: scaleX(1);
}

.mega-tech-col-head:hover .mega-tech-col-title-link--disabled,
.mega-tech-col-title-link--disabled:hover {
  color: inherit;
  background: transparent;
}

.mega-tech-col-head:hover .mega-tech-col-title-link--disabled::after,
.mega-tech-col-title-link--disabled:hover::after {
  transform: scaleX(0);
}

.mega-tech-col-title-link:focus-visible {
  color: rgba(var(--brand-rgb), 0.96);
  background: rgba(var(--brand-rgb), 0.1);
  box-shadow:
    0 0 0 3px rgba(var(--brand-rgb), 0.18),
    0 10px 24px rgba(16, 24, 40, 0.1);
}

.mega-tech-col-title-link:focus-visible::after {
  transform: scaleX(1);
}

.mega-tech-col-underline {
  order: 10;
  flex-basis: 100%;
  width: 100%;
  height: 1px;
  background: rgba(16, 24, 40, 0.1);
  margin-top: 4px;
}

.mega-tech-col-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mega-tech-item {
  display: block;
  padding: 6px 8px;
  color: rgba(16, 24, 40, 0.72);
  font-size: 0.86rem;
  line-height: 1.5;
  font-weight: 450;
  letter-spacing: 0;
  background: none;
  border: none;
  border-radius: 8px;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.mega-tech-item:hover {
  color: rgba(var(--brand-rgb), 0.96);
  font-weight: 450;
  background: rgba(var(--brand-rgb), 0.06);
  transform: translateX(2px);
}

.mega-tech-item[aria-current] {
  color: rgba(var(--brand-rgb), 0.96);
}

.mega-tech-item:focus-visible {
  outline: none;
  color: rgba(var(--brand-rgb), 0.96);
  background: rgba(var(--brand-rgb), 0.1);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.18);
}

.mega-tech-item:active {
  background: rgba(var(--brand-rgb), 0.12);
  transform: translateX(0);
}

.nav-item.is-open .nav-dropdown {
  display: grid;
  gap: 2px;
}

.nav-item.is-open .nav-dropdown--mega {
  display: block;
}

.nav-dropdown:not(.nav-dropdown--mega) a {
  color: rgba(16, 24, 40, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 0;
  font-size: var(--header-dropdown-size);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: center;
}

.nav-dropdown:not(.nav-dropdown--mega) a:hover {
  background: rgba(16, 24, 40, 0.06);
  color: rgba(var(--brand-rgb), 0.96);
  font-weight: 500;
}

.nav-dropdown:not(.nav-dropdown--mega) a[aria-current] {
  color: rgba(var(--brand-rgb), 0.96);
}

.nav-toggle {
  display: none;
}

.nav-toggle-btn {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.site-header.is-nav-open .nav-toggle-btn,
.site-header.is-menu-active .nav-toggle-btn,
.site-header.is-focus-active .nav-toggle-btn,
.site-header.is-solid .nav-toggle-btn {
  border-color: rgba(16, 24, 40, 0.14);
  background: rgba(16, 24, 40, 0.03);
}

.site-header.is-nav-open .nav-toggle-icon,
.site-header.is-menu-active .nav-toggle-icon,
.site-header.is-focus-active .nav-toggle-icon,
.site-header.is-solid .nav-toggle-icon {
  color: rgba(16, 24, 40, 0.82);
}

.header-left .site-nav {
  flex: 1;
}

@media (min-width: 721px) {
  .header-inner {
    min-height: 64px;
    align-items: stretch;
    padding: 0;
  }

  .header-left {
    width: auto;
    align-self: stretch;
    align-items: stretch;
  }

  .header-left > .brand {
    align-self: stretch;
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    align-self: stretch;
    align-items: stretch;
    gap: 0;
  }

  .site-nav > .nav-item {
    display: flex;
    align-items: stretch;
    flex: 0 0 auto;
  }

  .site-nav > .nav-item::after {
    left: 0;
    right: 0;
    height: 24px;
  }

  .site-nav > .nav-item > .nav-link {
    height: 100%;
    min-height: 64px;
    padding: 0 13px;
    white-space: nowrap;
  }

  .site-nav > .nav-item.nav-item--single:last-child > .nav-link {
    padding-right: 0;
  }
}

@media (max-width: 980px) {
  .mega--tech {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mega-tech-col-list .mega-tech-item {
    min-height: 40px;
    display: flex;
    align-items: center;
  }
}

.nav-toggle-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  color: inherit;
  margin: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2.5px;
  border-radius: inherit;
  background: currentColor;
}

.nav-toggle-icon::before {
  top: -7px;
}

.nav-toggle-icon::after {
  top: 7px;
}

.nav-toggle-svg {
  display: none;
}

.nav-toggle-svg__line {
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

@media (max-width: 720px) {
  .site-header:not(.is-solid):not(.is-nav-open):not(.is-menu-active):not(.is-focus-active) {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header .container.header-inner {
    position: relative;
    min-height: 60px;
  }

  .header-inner {
    padding: 10px 0;
    gap: 12px;
  }

  .header-left {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
    min-width: 0;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 52px);
  }

  .site-nav {
    margin-left: 0;
    justify-content: flex-start;
    align-items: stretch;
  }

  .page-home .site-header .container.header-inner {
    isolation: isolate;
  }

  .page-home .hero-bg,
  .page-home .hero-bg::before,
  .page-home .hero-bg::after,
  .page-home .hero-video {
    pointer-events: none;
  }

  .nav-toggle-btn {
    display: inline-flex;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-sm);
    background: rgba(8, 15, 31, 0.76);
    box-shadow: var(--shadow-sm);
    color: rgba(255, 255, 255, 0.98);
    visibility: visible;
    opacity: 1;
    z-index: 1302;
  }

  .nav-toggle-btn:focus-visible {
    outline: 2px solid rgba(193, 219, 255, 0.82);
    outline-offset: 2px;
  }

  .nav-toggle-icon {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
  }

  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    display: none;
  }

  .nav-toggle-svg {
    display: block;
    width: 20px;
    height: 20px;
    overflow: visible;
    pointer-events: none;
  }

  .nav-toggle-svg__line {
    transform-box: fill-box;
    transform-origin: center;
    transition:
      transform 160ms ease,
      opacity 160ms ease,
      stroke 160ms ease;
  }

  .nav-toggle:checked + .nav-toggle-btn .nav-toggle-svg__line--mid {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-btn .nav-toggle-svg__line--top {
    transform: translateY(4.25px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-btn .nav-toggle-svg__line--bottom {
    transform: translateY(-4.25px) rotate(-45deg);
  }

  .site-header.is-menu-active .nav-toggle-btn,
  .site-header.is-focus-active .nav-toggle-btn,
  .site-header.is-solid .nav-toggle-btn,
  .site-header.is-nav-open .nav-toggle-btn {
    border-color: rgba(16, 24, 40, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-panel);
    color: rgba(16, 24, 40, 0.9);
  }

  .brand-logo {
    font-size: 18px;
  }

  .site-header {
    --mobile-header-height: 60px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-item::after {
    display: none;
  }

  .site-header.is-nav-open,
  .site-header.is-nav-open:hover {
    background: #ffffff;
    border-bottom-color: rgba(16, 24, 40, 0.08);
    box-shadow: none;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--mobile-header-height) - 1px);
    height: calc(100vh - var(--mobile-header-height) + 1px);
    max-height: calc(100vh - var(--mobile-header-height) + 1px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0 14px 28px;
    border-radius: 0;
    background: #ffffff;
    border: 0;
    border-top: 1px solid rgba(16, 24, 40, 0.06);
    box-shadow: none;
    margin-left: 0;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1200;
    transition:
      opacity 150ms ease,
      transform 150ms ease;
    color: rgba(16, 24, 40, 0.86);
    font-size: 15px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    -webkit-tap-highlight-color: transparent;
  }

  @supports (height: 100dvh) {
    .site-nav {
      height: calc(100dvh - var(--mobile-header-height) + 1px);
      max-height: calc(100dvh - var(--mobile-header-height) + 1px);
    }
  }

  .site-nav a:hover,
  .site-nav .nav-link:hover {
    background: transparent;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
    background: #ffffff;
    transition:
      background-color 160ms ease,
      color 160ms ease;
  }

  .nav-item.is-open {
    background: transparent;
  }

  .nav-item > .nav-link {
    width: 100%;
    min-height: 56px;
    justify-content: space-between;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(16, 24, 40, 0.92);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
  }

  .nav-item--single > .nav-link {
    justify-content: flex-start;
  }

  .nav-item > .nav-link .nav-text::after {
    display: none;
  }

  .nav-item > .nav-link:focus,
  .nav-item > .nav-link:focus-visible,
  .nav-item > .nav-link:active {
    outline: none;
    background: transparent;
  }

  .nav-item > .nav-link::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 12px;
    border-right: 1.5px solid rgba(16, 24, 40, 0.58);
    border-bottom: 1.5px solid rgba(16, 24, 40, 0.58);
    transform: rotate(45deg);
    transition:
      transform 160ms ease,
      border-color 160ms ease;
  }

  .nav-item--single > .nav-link::after {
    display: none;
  }

  .nav-item.is-open > .nav-link {
    color: var(--brand);
  }

  .nav-item.is-open > .nav-link::after {
    border-color: var(--brand);
    transform: rotate(-135deg) translateY(-1px);
  }

  .nav-dropdown {
    display: none;
    position: static;
    min-width: 0;
    padding: 0 0 12px;
    border: 0;
    box-shadow: none;
    background: transparent;
    margin-left: 0;
    transform: none;
    max-height: none;
    overflow: visible;
  }

  .nav-item.is-open > .nav-dropdown {
    display: grid;
  }

  .nav-item.is-opening > .nav-dropdown a {
    pointer-events: none;
  }

  .nav-dropdown:not(.nav-dropdown--mega) a {
    justify-content: flex-start;
    min-height: 40px;
    padding: 0 0 0 28px;
    border-radius: 0;
    border-top: 1px solid rgba(16, 24, 40, 0.08);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: rgba(16, 24, 40, 0.72);
    -webkit-tap-highlight-color: transparent;
  }

  .nav-dropdown:not(.nav-dropdown--mega) a:first-child {
    border-top: 0;
  }

  .nav-dropdown:not(.nav-dropdown--mega) a:hover {
    color: rgba(16, 24, 40, 0.72);
    background: transparent;
  }

  .nav-dropdown:not(.nav-dropdown--mega) a:active {
    color: var(--brand);
    background: transparent;
  }

  .nav-dropdown--mega {
    left: auto;
    transform: none;
    padding: 6px 0 0;
    margin-top: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
  }

  .mega {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .mega--tech {
    gap: 10px;
    padding: 6px 0;
  }

  .mega-tech-col {
    padding: 8px 0;
    border-radius: 0;
    border: 0;
    background: transparent;
  }

  .mega-tech-col + .mega-tech-col {
    margin-top: 4px;
  }

  .mega-tech-col-head {
    margin-bottom: 8px;
  }

  .mega-tech-col-icon {
    width: 22px;
    height: 22px;
  }

  .mega-tech-col-title {
    font-size: 0.98rem;
  }

  .mega-tech-col-underline {
    margin-top: 6px;
    background: rgba(16, 24, 40, 0.1);
  }

  .mega-tech-col-list {
    gap: 2px;
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid rgba(16, 24, 40, 0.08);
  }

  .mega-tech-item {
    padding: 10px 0 10px 4px;
    border-radius: 0;
    line-height: 1.35;
    font-size: 0.92rem;
    color: rgba(16, 24, 40, 0.78);
  }

  .mega-tech-item:hover {
    background: transparent;
    color: rgba(16, 24, 40, 0.78);
  }

  .mega-tech-item:active {
    background: transparent;
    color: var(--brand);
  }

  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav .nav-link {
    padding: 0;
  }
}

@media (min-width: 981px) {
  .site-header {
    height: 68px;
  }

  .site-header .container.header-inner {
    width: min(var(--chrome-container), calc(100% - 40px));
    height: 68px;
    padding: 0;
  }
}
