@media only screen and (max-width: 1080px) {
  html.menu-locked,
  body.menu-locked {
    height: 100%;
    overflow: hidden;
  }

  .desktop-navigation,
  .header-actions {
    display: none;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .site-shell {
    padding-top: 70px;
  }

  .site-header-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: max(0.5vw, 8px);
    padding-right: max(1vw, 12px);
    gap: 0;
  }

  .brand img {
    width: clamp(132px, 30vw, 164px);
  }

  .menu-button {
    position: relative;
    z-index: 110;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    flex: 0 0 42px;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 30px;
    height: 2px;
    margin-left: auto;
    background: #f2f4ff;
    transition: 0.2s;
  }

  .menu-button.change .bar1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-button.change .bar2 {
    opacity: 0;
  }

  .menu-button.change .bar3 {
    transform: rotate(45deg) translate(-4px, -6px);
  }

  .mobile-menu {
    position: fixed;
    z-index: 105;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: block;
    overflow-x: clip;
    overflow-y: hidden;
    overscroll-behavior-x: none;
    background: #060b17;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, visibility 0.35s ease;
  }

  .mobile-menu.nav-opened {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mm-conts {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow-x: clip;
  }

  .mm-main {
    position: absolute;
    inset: 0;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 18px 18px 32px;
    background: #060b17;
    overscroll-behavior-x: none;
    touch-action: pan-y;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .mm-subs {
    position: absolute;
    inset: 0;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 18px 18px 32px;
    background: #060b17;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    overscroll-behavior-x: none;
    touch-action: pan-y;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .mobile-menu.submenu-open .mm-main {
    transform: translateX(-10%);
    opacity: 0.18;
  }

  .mobile-menu.submenu-open .mm-subs {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mm-main > a,
  .mm-sub a {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
    padding: 16px 18px;
    color: var(--text);
  }

  .mm-main > a {
    position: relative;
    min-height: 58px;
    padding: 0 8px 0 18px;
    margin-bottom: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    overflow: hidden;
  }

  .mm-main > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: calc(100% - 18px);
    border-radius: 999px;
    background: linear-gradient(180deg, #50d7ff 0%, #6a7dff 48%, #9e72ff 100%);
    transform: translateY(-50%) scaleY(1);
    transform-origin: top;
    opacity: 0.82;
    transition: opacity 0.26s ease, filter 0.26s ease;
  }

  .mm-main > a:hover::before,
  .mm-main > a:focus-visible::before,
  .mm-main > a:active::before {
    opacity: 1;
    filter: brightness(1.08);
  }

  .mm-sub a {
    align-items: center;
    gap: 14px;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
  }

  .opensub {
    justify-content: space-between;
    gap: 16px;
  }

  .opensub::after {
    content: '';
    flex: 0 0 auto;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #7780ff;
  }

  .mm-main > a:last-child,
  .mm-sub a:last-child {
    margin-bottom: 0;
  }

  .mm-sub {
    display: none;
    flex-direction: column;
  }

  .mm-sub.active {
    display: flex;
  }

  .mm-back-to-main {
    position: sticky;
    top: -18px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    margin-bottom: 18px;
    padding: 18px 4px 14px;
    color: var(--text);
    background: #060b17;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mm-back-to-main mark {
    background: none;
    color: transparent;
    font-size: 0;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 7px solid #52d7ff;
  }

  .mm-language-row {
    display: flex;
    justify-content: center;
    padding: 18px 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-language-trigger {
    justify-content: center;
    gap: 10px;
    width: auto;
    min-height: 40px;
    padding: 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 15.6px;
  }

  .mobile-language-trigger::after {
    width: 1px;
  }

  .mobile-language-trigger .language-trigger-icon {
    width: 16.8px;
    height: 16.8px;
  }

  .mm-action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
  }

  .mm-action-row .support-button,
  .mm-action-row .primary-button {
    width: 100%;
    min-height: 52px;
  }

  .mm-sub-card img {
    display: block;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .mm-corporate .mm-sub-card img,
  .mm-solutions .mm-sub-card img {
    filter: brightness(0) saturate(100%) invert(49%) sepia(15%) saturate(1103%) hue-rotate(221deg) brightness(85%) contrast(88%);
    opacity: 0.96;
  }

  .mm-sub-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .mm-corporate .mm-sub-card span,
  .mm-products strong,
  .mm-solutions strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #bbb;
  }

  .mm-corporate .mm-sub-card span {
    margin-bottom: 0;
  }

  .mm-products span,
  .mm-solutions span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
  }

  .mm-corporate-legal {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 8px;
  }

  .mm-corporate-legal-link {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 2px;
    color: #a8b1ce;
    font-size: 14.4px;
    letter-spacing: 0.02em;
    text-transform: none;
    border: 0;
    background: transparent;
  }

  .mm-corporate-legal-link span {
    position: relative;
  }

  .mm-corporate-legal-link span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: rgba(159, 126, 255, 0.7);
    transition: width 0.24s ease;
  }

  .mm-corporate-legal-link:hover span::after,
  .mm-corporate-legal-link:focus-visible span::after,
  .mm-corporate-legal-link:active span::after {
    width: 100%;
  }
}

@media only screen and (max-width: 760px) {
  .hero,
  .strip,
  .journey,
  .products,
  .references,
  .library,
  .final-cta,
  .site-footer,
  .not-found,
  .placeholder-page {
    width: min(100% - 28px, 1240px);
  }
}
