/* Header shared styles used by standalone pages. */
  .xmdsite-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    min-height: 72px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 31, 58, 0.94);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
    transform: translateZ(0);
  }

  .xmdsite-header,
  .xmdsite-header * {
    box-sizing: border-box;
  }

  .xmdsite-header a {
    color: inherit;
    text-decoration: none;
  }

  .xmdsite-header-inner {
    width: min(1300px, 100%);
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2.4vw, 36px);
    padding: 0 18px;
  }

  .xmdsite-brand {
    display: inline-flex;
    align-items: center;
    align-self: center;
    flex: 0 0 330px;
    min-width: 0;
    padding: 0;
    color: #ffffff;
    font-size: 0;
    line-height: 1;
  }

  .xmdsite-brand-logo {
    display: block;
    width: auto;
    max-width: min(288px, 23vw);
    max-height: 50px;
    object-fit: contain;
  }

  .xmdsite-brand-name {
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    position: absolute;
    white-space: nowrap;
  }

  .xmdsite-brand-text {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .xmdsite-nav-toggle {
    display: none;
    place-items: center;
    align-self: center;
    width: 42px;
    height: 42px;
    margin-right: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
  }

  .xmdsite-nav-toggle:hover,
  .xmdsite-nav-toggle:focus-visible {
    border-color: rgba(37, 99, 235, 0.86);
    background: rgba(37, 99, 235, 0.18);
    color: #2563eb;
    outline: none;
  }

  .xmdsite-nav-toggle-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 12px;
  }

  .xmdsite-nav-toggle-icon::before,
  .xmdsite-nav-toggle-icon::after,
  .xmdsite-nav-toggle-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .xmdsite-nav-toggle-icon::before {
    top: 0;
  }

  .xmdsite-nav-toggle-line {
    top: 5px;
  }

  .xmdsite-nav-toggle-icon::after {
    bottom: 0;
  }

  .xmdsite-header.is-nav-open .xmdsite-nav-toggle-icon::before {
    transform: translateY(5px) rotate(45deg);
  }

  .xmdsite-header.is-nav-open .xmdsite-nav-toggle-line {
    opacity: 0;
  }

  .xmdsite-header.is-nav-open .xmdsite-nav-toggle-icon::after {
    transform: translateY(-5px) rotate(-45deg);
  }

  .xmdsite-nav {
    align-self: stretch;
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
  }

  .xmdsite-nav-list,
  .xmdsite-nav-sublist {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .xmdsite-nav-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-end;
    gap: 0;
    width: 100%;
    min-height: 72px;
  }

  .xmdsite-nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
    flex: 0 1 auto;
  }

  .xmdsite-nav-item-has-sub {
    min-width: 0;
  }

  .xmdsite-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 72px;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    white-space: nowrap;
    transition: background-color 180ms ease, color 180ms ease;
  }

  .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link::after {
    position: absolute;
    right: 12px;
    bottom: 18px;
    left: 12px;
    height: 2px;
    border-radius: 999px;
    background: #2563eb;
    content: "";
    opacity: 0;
    transform: scaleX(0.32);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .xmdsite-nav-link:hover,
  .xmdsite-nav-link:focus-visible,
  .xmdsite-nav-item.is-active > .xmdsite-nav-link,
  .xmdsite-nav-item.is-subnav-open > .xmdsite-nav-link {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    outline: none;
  }

  .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link:hover::after,
  .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link:focus-visible::after,
  .xmdsite-nav-list > .xmdsite-nav-item.is-active > .xmdsite-nav-link::after,
  .xmdsite-nav-list > .xmdsite-nav-item.is-subnav-open > .xmdsite-nav-link::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .xmdsite-nav-sublist {
    position: absolute;
    top: 100%;
    left: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    width: max-content;
    min-width: max(100%, 128px);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(26, 24, 22, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .xmdsite-nav-item:hover .xmdsite-nav-sublist,
  .xmdsite-nav-item:focus-within .xmdsite-nav-sublist,
  .xmdsite-nav-item.is-subnav-open .xmdsite-nav-sublist {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .xmdsite-nav-sublist .xmdsite-nav-link {
    min-height: 38px;
    padding: 0 18px;
    border-radius: 6px;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .xmdsite-nav-sublist .xmdsite-nav-link::after {
    display: none;
  }

  .xmdsite-nav-sublist .xmdsite-nav-link::before {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 7px;
    width: 3px;
    border-radius: 999px;
    background: #2563eb;
    content: "";
    opacity: 0;
    transform: scaleY(0.35);
    transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
  }

  .xmdsite-nav-sublist .xmdsite-nav-link:hover,
  .xmdsite-nav-sublist .xmdsite-nav-link:focus-visible {
    background: rgba(37, 99, 235, 0.16);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.28);
    transform: translateX(2px);
  }

  .xmdsite-nav-sublist .xmdsite-nav-link:hover::before,
  .xmdsite-nav-sublist .xmdsite-nav-link:focus-visible::before {
    opacity: 1;
    transform: scaleY(1);
  }

  .xmdsite-nav-subitem.is-active > .xmdsite-nav-link,
  .xmdsite-nav-sublist .xmdsite-nav-link[aria-current="page"] {
    background: linear-gradient(90deg, #2563eb 0%, #2563eb 100%);
    color: #0f172a;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.28);
    transform: translateX(0);
  }

  .xmdsite-nav-subitem.is-active > .xmdsite-nav-link::before,
  .xmdsite-nav-sublist .xmdsite-nav-link[aria-current="page"]::before {
    background: rgba(11, 31, 58, 0.82);
    opacity: 1;
    transform: scaleY(1);
  }

  @media (max-width: 1180px) {
    .xmdsite-header-inner {
      width: 100%;
      gap: 18px;
    }

    .xmdsite-brand {
      flex-basis: 300px;
    }

    .xmdsite-brand-logo {
      max-width: min(280px, 28vw);
    }

    .xmdsite-nav-item {
      flex-basis: auto;
    }

    .xmdsite-nav-link {
      padding-left: 10px;
      padding-right: 10px;
      font-size: 14px;
    }
  }

  @media (max-width: 920px) {
    .xmdsite-header-inner {
      min-height: 72px;
      align-items: center;
    }

    .xmdsite-brand {
      flex: 1 1 auto;
      min-height: 72px;
      padding: 0 18px;
    }

    .xmdsite-brand-logo {
      max-width: 260px;
      max-height: 48px;
    }

    .xmdsite-nav-toggle {
      display: grid;
    }

    .xmdsite-nav {
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      display: block;
      max-height: calc(100vh - 68px);
      overflow-y: auto;
      background: rgba(11, 31, 58, 0.96);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
    }

    .xmdsite-header.is-nav-open .xmdsite-nav {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .xmdsite-nav-list {
      display: grid;
      min-height: 0;
      width: 100%;
    }

    .xmdsite-nav-item {
      display: block;
      flex: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .xmdsite-nav-link {
      justify-content: flex-start;
      min-height: 48px;
      padding: 0 22px;
    }

    .xmdsite-nav-sublist {
      position: static;
      width: 100%;
      min-width: 0;
      opacity: 1;
      visibility: visible;
      background: rgba(0, 0, 0, 0.18);
    }

    .xmdsite-nav-sublist .xmdsite-nav-link {
      justify-content: flex-start;
      min-height: 42px;
      padding-left: 38px;
      text-align: left;
    }
  }

  @media (max-width: 520px) {
    .xmdsite-brand-logo {
      max-width: 220px;
    }

    .xmdsite-brand-text {
      font-size: 18px;
    }
  }
/* Home page styles moved from home.html. */
    :root {
      --xmdsite-accent: #2563eb;
      --xmdsite-accent-hover: #2563eb;
      --xmdsite-accent-soft: #eff6ff;
      --xmdsite-bg: #ffffff;
      --xmdsite-border: rgba(17, 24, 39, 0.1);
      --xmdsite-border-strong: rgba(17, 24, 39, 0.16);
      --xmdsite-ink: #111827;
      --xmdsite-muted: rgba(17, 24, 39, 0.68);
      --xmdsite-soft: rgba(17, 24, 39, 0.5);
      --xmdsite-surface: #ffffff;
      --xmdsite-surface-soft: #f2f4f7;
      --xmdsite-footer: #101319;
      --xmdsite-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
      --xmdsite-shadow-hover: 0 20px 44px rgba(17, 24, 39, 0.12);
      --xmdsite-radius: 8px;
      color-scheme: light;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scrollbar-gutter: stable;
    }

    body {
      margin: 0;
      background:
        linear-gradient(180deg, #ffffff 0%, var(--xmdsite-bg) 48%, #ffffff 100%);
      color: var(--xmdsite-ink);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    video {
      display: block;
      max-width: 100%;
    }

    .xmdsite-container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .xmdsite-header {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(11, 31, 58, 0.94);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      backdrop-filter: blur(14px);
      transform: translateZ(0);
    }

    .xmdsite-header::before {
      display: none;
    }

    .xmdsite-header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(22px, 3vw, 46px);
      min-height: 72px;
      padding: 0 24px;
    }

    .xmdsite-brand {
      display: inline-flex;
      align-items: center;
      align-self: center;
      flex: 0 1 340px;
      min-width: 0;
      padding: 0;
      font-size: 0;
      line-height: 1;
      color: #ffffff;
    }

    .xmdsite-brand-logo {
      width: auto;
      max-width: min(320px, 28vw);
      max-height: 50px;
      object-fit: contain;
    }

    .xmdsite-brand-name {
      overflow: hidden;
      width: 1px;
      height: 1px;
      clip: rect(0 0 0 0);
      clip-path: inset(50%);
      position: absolute;
      white-space: nowrap;
    }

    .xmdsite-nav-toggle {
      display: none;
      place-items: center;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 2px;
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      cursor: pointer;
      transition:
        border-color 180ms ease,
        color 180ms ease,
        background-color 180ms ease;
    }

    .xmdsite-nav-toggle:hover,
    .xmdsite-nav-toggle:focus-visible {
      border-color: rgba(37, 99, 235, 0.86);
      background: rgba(37, 99, 235, 0.18);
      color: #2563eb;
      outline: none;
    }

    .xmdsite-nav-toggle-icon {
      position: relative;
      display: block;
      width: 18px;
      height: 12px;
    }

    .xmdsite-nav-toggle-icon::before,
    .xmdsite-nav-toggle-icon::after,
    .xmdsite-nav-toggle-line {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      content: "";
      transition:
        opacity 180ms ease,
        transform 180ms ease;
    }

    .xmdsite-nav-toggle-icon::before {
      top: 0;
    }

    .xmdsite-nav-toggle-line {
      top: 5px;
    }

    .xmdsite-nav-toggle-icon::after {
      bottom: 0;
    }

    .xmdsite-header.is-nav-open .xmdsite-nav-toggle-icon::before {
      transform: translateY(5px) rotate(45deg);
    }

    .xmdsite-header.is-nav-open .xmdsite-nav-toggle-line {
      opacity: 0;
    }

    .xmdsite-header.is-nav-open .xmdsite-nav-toggle-icon::after {
      transform: translateY(-5px) rotate(-45deg);
    }

    .xmdsite-nav-list,
    .xmdsite-nav-sublist,
    .xmdsite-footer-list,
    .xmdsite-footer-sublist,
    .xmdsite-item-grid {
      margin: 0;
      padding: 0;
      list-style: none;
    }


    .xmdsite-header .xmdsite-container {
      width: min(1280px, 100%);
    }

    .xmdsite-nav {
      align-self: stretch;
      flex: 1 1 auto;
      display: flex;
      justify-content: flex-end;
    }

    .xmdsite-nav-list {
      display: flex;
      flex-wrap: nowrap;
      align-items: stretch;
      justify-content: flex-end;
      gap: 6px;
      width: 100%;
      min-height: 72px;
    }

    .xmdsite-nav-item {
      position: relative;
      display: flex;
      align-items: stretch;
      flex: 0 1 auto;
    }

    .xmdsite-nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 72px;
      border-radius: 0;
      padding: 0 clamp(10px, 1.35vw, 18px);
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0;
      white-space: nowrap;
      transition:
        background-color 180ms ease,
        color 180ms ease;
    }

    .xmdsite-nav-link::after {
      position: absolute;
      right: 14px;
      bottom: 18px;
      left: 14px;
      height: 2px;
      border-radius: 999px;
      background: var(--xmdsite-accent);
      content: "";
      opacity: 0;
      transform: scaleX(0.32);
      transition:
        opacity 180ms ease,
        transform 180ms ease;
    }

    .xmdsite-nav-link:hover,
    .xmdsite-nav-link:focus-visible,
    .xmdsite-nav-item.is-subnav-open > .xmdsite-nav-link {
      background: rgba(255, 255, 255, 0.06);
      color: #ffffff;
      outline: none;
    }

    .xmdsite-nav-link:hover::after,
    .xmdsite-nav-link:focus-visible::after,
    .xmdsite-nav-item.is-subnav-open > .xmdsite-nav-link::after {
      opacity: 1;
      transform: scaleX(1);
    }

    .xmdsite-nav-item:first-child > .xmdsite-nav-link {
      background: transparent;
      color: #ffffff;
    }

    .xmdsite-nav-sublist {
      position: absolute;
      top: 100%;
      left: 0;
      right: auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      align-content: start;
      width: max-content;
      min-width: 148px;
      padding: 8px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      background: rgba(26, 24, 22, 0.96);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition:
        opacity 160ms ease,
        transform 160ms ease,
        visibility 160ms ease;
    }

    .xmdsite-nav-item:hover .xmdsite-nav-sublist,
    .xmdsite-nav-item:focus-within .xmdsite-nav-sublist,
    .xmdsite-nav-item.is-subnav-open .xmdsite-nav-sublist {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .xmdsite-nav-sublist .xmdsite-nav-link {
      justify-content: center;
      width: 100%;
      max-width: 100%;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 6px;
      background: transparent;
      color: rgba(255, 255, 255, 0.96);
      font-size: 13px;
      font-weight: 500;
      text-align: center;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .xmdsite-nav-sublist .xmdsite-nav-link:hover,
    .xmdsite-nav-sublist .xmdsite-nav-link:focus-visible {
      background: rgba(0, 0, 0, 0.26);
      color: #ffffff;
    }

    .xmdsite-nav-subitem-all .xmdsite-nav-link {
      color: rgba(255, 255, 255, 0.96);
    }

    .xmdsite-hero {
      position: relative;
      margin-top: 72px;
      min-height: 0;
      overflow: hidden;
      border-bottom: 0;
      background: #ffffff;
    }

    .xmdsite-hero-has-media {
      min-height: 0;
      background: #ffffff;
    }

    .xmdsite-hero-has-media .xmdsite-hero-media {
      margin-top: -72px;
    }

    .xmdsite-hero-media {
      position: relative;
      z-index: 0;
      overflow: hidden;
      background: #111827;
    }

    .xmdsite-hero-image-list,
    .xmdsite-hero-image-item,
    .xmdsite-hero-image-link {
      display: block;
      width: 100%;
    }

    .xmdsite-hero-image-list {
      --swiper-pagination-bottom: 18px;
      --swiper-pagination-bullet-horizontal-gap: 8px;
      --swiper-pagination-bullet-border-radius: 50%;
      --swiper-pagination-bullet-height: 12px;
      --swiper-pagination-bullet-inactive-color: rgba(17, 24, 39, 0.48);
      --swiper-pagination-bullet-inactive-opacity: 1;
      --swiper-pagination-bullet-size: 12px;
      --swiper-pagination-bullet-width: 12px;
      --swiper-pagination-color: var(--xmdsite-accent);
      cursor: grab;
    }

    .xmdsite-hero-image-list:not(:defined) {
      overflow: hidden;
    }

    .xmdsite-hero-image-list:not(:defined) .xmdsite-hero-slide:not(:first-child) {
      display: none;
    }

    .xmdsite-hero-image-list:active {
      cursor: grabbing;
    }

    .xmdsite-hero-slide {
      display: block;
      height: auto;
      overflow: hidden;
    }

    .xmdsite-hero-media-content {
      display: block;
      width: 100%;
      height: auto;
      user-select: none;
      -webkit-user-drag: none;
    }

    .xmdsite-hero-image-link {
      user-select: none;
      -webkit-user-drag: none;
    }

    .xmdsite-hero-file {
      display: grid;
      place-items: center;
      min-height: 240px;
      padding: 32px;
      background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
      color: var(--xmdsite-ink);
      font-weight: 700;
      text-align: center;
    }

    .xmdsite-hero-content {
      position: relative;
      z-index: 1;
      display: grid;
      align-content: end;
      min-height: inherit;
      padding: 92px 0 76px;
      animation: xmdsite-fade-up 560ms ease both;
    }

    .xmdsite-hero-has-media .xmdsite-hero-content {
      align-content: start;
      min-height: 0;
      padding: 44px 0 56px;
    }

    .xmdsite-intro-section {
      position: relative;
      padding: 58px 0 46px;
      background: #ffffff;
      overflow: hidden;
      animation: xmdsite-fade-up 560ms ease both;
    }

    .xmdsite-intro-section::before {
      content: "";
      position: absolute;
      left: max(16px, calc((100% - 1180px) / 2));
      top: 86px;
      width: 360px;
      height: 360px;
      border: 20px solid rgba(17, 24, 39, 0.06);
      border-radius: 50%;
      transform: translateX(-28%) rotate(-18deg);
      pointer-events: none;
    }

    .xmdsite-intro-heading {
      position: relative;
      z-index: 1;
      margin-bottom: 22px;
      text-align: center;
    }

    .xmdsite-intro-title {
      margin: 0;
      color: #252932;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      line-height: 1.18;
    }

    .xmdsite-intro-line {
      width: 28px;
      height: 1px;
      margin: 8px auto 7px;
      background: #111827;
    }

    .xmdsite-intro-subtitle {
      margin: 0;
      color: rgba(17, 24, 39, 0.45);
      font-size: 14px;
      line-height: 1.35;
    }

    .xmdsite-hero-copy {
      width: 100%;
      max-width: none;
    }

    .xmdsite-hero-search-stack {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.25fr);
      align-items: center;
      column-gap: 48px;
      row-gap: 18px;
      width: 100%;
    }

    .xmdsite-hero-search-stack .xmdsite-section-description {
      max-width: 100%;
    }

    .xmdsite-smart-home-cover,
    .xmdsite-hero-search-stack .xmdsite-section-description figure {
      grid-column: 2;
      grid-row: 1 / span 8;
      align-self: center;
      margin: 0;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
    }

    .xmdsite-smart-home-cover img,
    .xmdsite-hero-search-stack .xmdsite-section-description figure img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 430px;
      object-fit: cover;
    }

    .xmdsite-page-title {
      margin: 0;
      max-width: 880px;
      font-size: 54px;
      font-weight: 800;
      line-height: 1.04;
    }

    .xmdsite-section-description {
      margin: 20px 0 0;
      max-width: 100%;
      color: var(--xmdsite-muted);
      font-size: 17px;
      line-height: 1.9;
    }

    .xmdsite-hero-copy .xmdsite-section-description {
      display: contents;
      margin-top: 0;
      color: #000000;
      font-size: 16px;
      line-height: 1.75;
    }

    .xmdsite-hero-copy .xmdsite-section-description > :not(figure) {
      grid-column: 1;
      margin-right: 18px;
      margin-left: 18px;
    }

    .xmdsite-hero-copy .xmdsite-section-description > figure {
      grid-column: 2;
      grid-row: 1 / span 8;
      align-self: center;
    }

    .xmdsite-hero-search-stack-has-cover .xmdsite-section-description > figure {
      display: none;
    }

    .xmdsite-hero-copy .xmdsite-section-description strong {
      font-weight: inherit;
    }

    .xmdsite-hero-copy .xmdsite-section-description p:first-child strong {
      display: none;
    }

    .xmdsite-hero-copy .xmdsite-section-description > h1:first-child,
    .xmdsite-hero-copy .xmdsite-section-description > h2:first-child,
    .xmdsite-hero-copy .xmdsite-section-description > h3:first-child {
      display: none;
    }

    .xmdsite-hero-copy .xmdsite-section-description br {
      display: none;
    }

    .xmdsite-section-description > :first-child {
      margin-top: 0;
    }

    .xmdsite-section-description > :last-child {
      margin-bottom: 0;
    }

    .xmdsite-section-description p {
      margin: 0 0 0.7em;
    }

    .xmdsite-section-description a {
      color: var(--xmdsite-accent);
      font-weight: 700;
    }

    .xmdsite-function-section {
      position: relative;
      overflow: hidden;
      padding: 62px 0 70px;
      background: #ffffff;
      isolation: isolate;
    }

    .xmdsite-function-section::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(rgba(17, 24, 39, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px),
        #ffffff;
      background-position: center;
      background-size: 42px 42px, 42px 42px, auto;
    }

    .xmdsite-function-section::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: rgba(255, 255, 255, 0.78);
      pointer-events: none;
    }

    .xmdsite-function-heading {
      margin-bottom: 34px;
      text-align: center;
    }

    .xmdsite-function-title {
      margin: 0;
      color: #20242c;
      font-size: clamp(28px, 3.2vw, 42px);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: 0.02em;
    }

    .xmdsite-function-line {
      display: block;
      width: 30px;
      height: 1px;
      margin: 8px auto 7px;
      background: rgba(17, 24, 39, 0.58);
    }

    .xmdsite-function-subtitle {
      margin: 0;
      color: rgba(17, 24, 39, 0.52);
      font-size: 14px;
      line-height: 1.35;
    }

    .xmdsite-function-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .xmdsite-function-card {
      display: flex;
      min-height: 258px;
      align-items: center;
      justify-content: center;
      padding: 30px 18px;
      border: 1px solid rgba(17, 24, 39, 0.13);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.42);
      color: rgba(17, 24, 39, 0.76);
      text-align: center;
      backdrop-filter: blur(2px);
      transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
    }

    .xmdsite-function-card:hover {
      transform: translateY(-6px);
      border-color: rgba(37, 99, 235, 0.38);
      background: rgba(255, 255, 255, 0.66);
      box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
    }

    .xmdsite-function-card-inner {
      display: grid;
      justify-items: center;
      gap: 20px;
    }

    .xmdsite-function-icon {
      display: grid;
      width: 58px;
      height: 58px;
      place-items: center;
      color: rgba(17, 24, 39, 0.52);
    }

    .xmdsite-function-icon svg {
      display: block;
      width: 58px;
      height: 58px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .xmdsite-function-name {
      margin: 0;
      color: rgba(30, 41, 59, 0.78);
      font-size: 22px;
      font-weight: 500;
      line-height: 1.32;
      letter-spacing: 0.01em;
    }

    .xmdsite-sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
    }

    .xmdsite-search-form {
      display: flex;
      flex-wrap: nowrap;
      gap: 0;
      width: 100%;
    }

    .xmdsite-home-search-form {
      justify-self: center;
      width: min(460px, 100%);
    }

    .xmdsite-search-field {
      flex: 1 1 auto;
      min-width: 0;
    }

    .xmdsite-search-input {
      width: 100%;
      min-height: 40px;
      border: 1px solid var(--xmdsite-border);
      border-right: 0;
      border-radius: var(--xmdsite-radius) 0 0 var(--xmdsite-radius);
      background: var(--xmdsite-surface);
      color: var(--xmdsite-ink);
      font: inherit;
      padding: 0 12px;
      transition:
        border-color 180ms ease,
        box-shadow 180ms ease;
    }

    .xmdsite-search-input:focus {
      border-color: rgba(37, 99, 235, 0.42);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
      outline: none;
    }

    .xmdsite-search-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      border: 0;
      border-radius: 0 var(--xmdsite-radius) var(--xmdsite-radius) 0;
      background: var(--xmdsite-accent);
      color: #ffffff;
      cursor: pointer;
      font: inherit;
      font-weight: 700;
      padding: 0 15px;
      transition:
        background-color 180ms ease;
    }

    .xmdsite-search-submit:hover,
    .xmdsite-search-submit:focus-visible {
      background: var(--xmdsite-accent-hover);
      outline: none;
    }

    .xmdsite-main {
      display: grid;
      gap: 56px;
      padding: 64px 0 88px;
    }

    .xmdsite-main-after-intro {
      padding-top: 34px;
    }

    .xmdsite-function-section + .xmdsite-main-after-intro {
      padding-top: 62px;
    }

    .xmdsite-section {
      animation: xmdsite-fade-up 560ms ease both;
      animation-delay: 80ms;
    }

    .xmdsite-section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 22px;
      border-bottom: 1px solid var(--xmdsite-border);
      padding-bottom: 18px;
    }

    .xmdsite-section-title {
      margin: 0;
      font-size: 26px;
      line-height: 1.25;
    }

    .xmdsite-product-heading {
      position: relative;
      align-items: center;
      justify-content: center;
      margin-bottom: 34px;
      border-bottom: 0;
      padding-bottom: 0;
      text-align: center;
    }

    .xmdsite-product-heading > div {
      width: 100%;
    }

    .xmdsite-product-title-block {
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
    }

    .xmdsite-product-section-title {
      color: #202633;
      font-size: clamp(32px, 4vw, 42px);
      font-weight: 800;
      letter-spacing: 0.02em;
      line-height: 1.16;
    }

    .xmdsite-product-title-line {
      display: block;
      width: 34px;
      height: 1px;
      margin: 10px 0 7px;
      background: #202633;
      opacity: 0.72;
    }

    .xmdsite-product-title-en {
      color: #8d939f;
      font-size: 14px;
      line-height: 1;
    }

    .xmdsite-section-link {
      flex: 0 0 auto;
      color: var(--xmdsite-accent);
      font-size: 14px;
      font-weight: 700;
      transition:
        color 180ms ease,
        transform 180ms ease;
    }

    .xmdsite-section-link:hover,
    .xmdsite-section-link:focus-visible {
      color: var(--xmdsite-accent-hover);
      outline: none;
      transform: translateX(2px);
    }

    .xmdsite-item-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .xmdsite-section-product {
      max-width: 100%;
      overflow: hidden;
      background: var(--xmdsite-bg);
      box-shadow: 0 0 0 100vmax var(--xmdsite-bg);
      clip-path: inset(0 -100vmax -56px -100vmax);
    }

    .xmdsite-product-carousel {
      display: block;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      --swiper-theme-color: var(--xmdsite-accent);
    }

    .xmdsite-product-carousel swiper-slide {
      height: auto;
      min-width: 0;
    }

    .xmdsite-product-carousel:not(:defined) {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .xmdsite-product-carousel:not(:defined) swiper-slide {
      display: block;
      min-width: 0;
    }

    .xmdsite-product-carousel:not(:defined) swiper-slide:nth-child(n + 3) {
      display: none;
    }

    .xmdsite-product-carousel .xmdsite-item-card,
    .xmdsite-product-carousel .xmdsite-item-card-link {
      min-width: 0;
    }

    .xmdsite-item-card {
      height: 100%;
    }

    .xmdsite-item-card-link {
      display: grid;
      height: 100%;
      overflow: hidden;
      border: 1px solid var(--xmdsite-border);
      border-radius: var(--xmdsite-radius);
      background: var(--xmdsite-surface);
      box-shadow: var(--xmdsite-shadow);
      transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
    }

    .xmdsite-item-card-link:hover,
    .xmdsite-item-card-link:focus-visible {
      border-color: rgba(37, 99, 235, 0.28);
      box-shadow: var(--xmdsite-shadow-hover);
      outline: none;
      transform: translateY(-4px);
    }

    .xmdsite-card-media {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--xmdsite-surface-soft);
    }

    .xmdsite-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 520ms ease;
    }

    .xmdsite-item-card-link:hover .xmdsite-card-media img,
    .xmdsite-item-card-link:focus-visible .xmdsite-card-media img {
      transform: scale(1.035);
    }

    .xmdsite-card-placeholder {
      display: grid;
      place-items: center;
      height: 100%;
      padding: 24px;
      background:
        linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
      color: var(--xmdsite-soft);
      font-size: 13px;
      font-weight: 700;
    }

    .xmdsite-card-body {
      display: grid;
      align-content: start;
      gap: 10px;
      padding: 18px;
    }

    .xmdsite-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      color: var(--xmdsite-soft);
      font-size: 13px;
    }

    .xmdsite-card-title {
      margin: 0;
      font-size: 19px;
      line-height: 1.42;
    }

    .xmdsite-card-summary {
      display: -webkit-box;
      overflow: hidden;
      margin: 0;
      color: var(--xmdsite-muted);
      font-size: 14px;
      line-height: 1.8;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .xmdsite-model-section {
      position: relative;
    }

    .xmdsite-model-section:not(.xmdsite-section-product) {
      overflow: hidden;
      border-radius: 30px;
    }

    .xmdsite-section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      color: var(--xmdsite-accent);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .xmdsite-section-kicker::before,
    .xmdsite-section-kicker::after {
      content: "";
      width: 18px;
      height: 1px;
      background: currentColor;
      opacity: 0.55;
    }

    .xmdsite-section-intro {
      max-width: 620px;
      margin: 10px auto 0;
      color: var(--xmdsite-muted);
      font-size: 15px;
      line-height: 1.8;
    }

    .xmdsite-card-date {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.1);
      color: #2563eb;
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
      padding: 7px 10px;
    }

    .xmdsite-card-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      margin-top: 4px;
      color: var(--xmdsite-accent-hover);
      font-size: 13px;
      font-weight: 800;
    }

    .xmdsite-card-more::after {
      content: "→";
      transition: transform 180ms ease;
    }

    .xmdsite-item-card-link:hover .xmdsite-card-more::after,
    .xmdsite-item-card-link:focus-visible .xmdsite-card-more::after {
      transform: translateX(3px);
    }

    .xmdsite-section-news {
      padding: 34px;
      background:
        radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
      box-shadow: 0 22px 60px rgba(30, 64, 175, 0.08);
    }

    .xmdsite-section-news .xmdsite-product-heading,
    .xmdsite-section-about .xmdsite-product-heading {
      justify-content: flex-start;
      margin-bottom: 26px;
      text-align: left;
    }

    .xmdsite-section-news .xmdsite-product-title-block,
    .xmdsite-section-about .xmdsite-product-title-block {
      align-items: flex-start;
    }

    .xmdsite-section-news .xmdsite-section-intro,
    .xmdsite-section-about .xmdsite-section-intro {
      margin-right: 0;
      margin-left: 0;
    }

    .xmdsite-section-news .xmdsite-section-kicker::before,
    .xmdsite-section-about .xmdsite-section-kicker::before {
      display: none;
    }

    .xmdsite-grid-news {
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 16px;
    }

    .xmdsite-card-news.is-featured {
      grid-row: span 2;
    }

    .xmdsite-card-news .xmdsite-item-card-link {
      grid-template-columns: 176px minmax(0, 1fr);
      border-color: rgba(37, 99, 235, 0.16);
      border-radius: 22px;
      box-shadow: 0 12px 34px rgba(30, 64, 175, 0.08);
    }

    .xmdsite-card-news.is-featured .xmdsite-item-card-link {
      grid-template-columns: 1fr;
    }

    .xmdsite-card-news .xmdsite-card-media {
      aspect-ratio: auto;
      min-height: 100%;
    }

    .xmdsite-card-news.is-featured .xmdsite-card-media {
      aspect-ratio: 16 / 10;
      min-height: 0;
    }

    .xmdsite-card-news .xmdsite-card-body {
      gap: 12px;
      padding: 20px;
    }

    .xmdsite-section-case {
      padding: 42px;
      background:
        radial-gradient(circle at 86% 10%, rgba(37, 99, 235, 0.28), transparent 24%),
        linear-gradient(135deg, #1f2937 0%, #111827 100%);
      box-shadow: 0 26px 70px rgba(17, 24, 39, 0.18);
    }

    .xmdsite-section-case .xmdsite-product-section-title,
    .xmdsite-section-case .xmdsite-section-intro,
    .xmdsite-section-case .xmdsite-product-title-en {
      color: #ffffff;
    }

    .xmdsite-section-case .xmdsite-section-intro,
    .xmdsite-section-case .xmdsite-product-title-en {
      opacity: 0.72;
    }

    .xmdsite-section-case .xmdsite-product-title-line {
      background: var(--xmdsite-accent);
      opacity: 1;
    }

    .xmdsite-grid-case {
      grid-template-columns: 1.15fr 0.85fr;
      gap: 18px;
    }

    .xmdsite-card-case.is-featured {
      grid-row: span 2;
    }

    .xmdsite-card-case .xmdsite-item-card-link {
      position: relative;
      min-height: 250px;
      border: 0;
      border-radius: 26px;
      background: #111827;
      box-shadow: none;
    }

    .xmdsite-card-case.is-featured .xmdsite-item-card-link {
      min-height: 520px;
    }

    .xmdsite-card-case .xmdsite-card-media {
      position: absolute;
      inset: 0;
      aspect-ratio: auto;
      background: #111827;
    }

    .xmdsite-card-case .xmdsite-card-media::after,
    .xmdsite-card-document .xmdsite-card-media::after {
      position: absolute;
      inset: 0;
      content: "";
      background:
        linear-gradient(0deg, rgba(17, 24, 39, 0.2), rgba(17, 24, 39, 0.2)),
        linear-gradient(180deg, rgba(17, 24, 39, 0.05) 0%, rgba(17, 24, 39, 0.34) 48%, rgba(17, 24, 39, 0.78) 100%);
    }

    .xmdsite-card-case .xmdsite-card-body {
      position: relative;
      z-index: 1;
      align-self: end;
      padding: 26px;
    }

    .xmdsite-card-case .xmdsite-card-date {
      background: rgba(255, 255, 255, 0.16);
      color: #ffffff;
    }

    .xmdsite-card-case .xmdsite-card-title,
    .xmdsite-card-case .xmdsite-card-summary,
    .xmdsite-card-case .xmdsite-card-more {
      color: #ffffff;
    }

    .xmdsite-card-case .xmdsite-card-summary {
      opacity: 0.78;
      -webkit-line-clamp: 3;
    }

    .xmdsite-section-event {
      padding: 38px 32px 50px;
      background:
        linear-gradient(90deg, rgba(255, 247, 237, 0.92), rgba(255, 255, 255, 0.92)),
        repeating-linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0 1px, transparent 1px 18px);
    }

    .xmdsite-grid-event {
      align-items: stretch;
      gap: 24px;
    }

    .xmdsite-card-event:nth-child(2) {
      transform: translateY(24px);
    }

    .xmdsite-card-event:nth-child(3) {
      transform: translateY(8px);
    }

    .xmdsite-card-event .xmdsite-item-card-link {
      border: 0;
      border-radius: 28px;
      box-shadow: 0 18px 44px rgba(30, 64, 175, 0.12);
    }

    .xmdsite-card-event .xmdsite-card-media {
      aspect-ratio: 1 / 0.86;
    }

    .xmdsite-card-event .xmdsite-card-body {
      position: relative;
      padding: 22px;
    }

    .xmdsite-card-event .xmdsite-card-body::before {
      content: "精选推荐";
      position: absolute;
      top: -18px;
      left: 22px;
      border-radius: 999px;
      background: var(--xmdsite-accent);
      color: #ffffff;
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
      padding: 9px 12px;
      box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
    }

    .xmdsite-section-service {
      padding: 36px 30px;
      border: 1px solid rgba(17, 24, 39, 0.08);
      background: #ffffff;
      box-shadow: 0 20px 54px rgba(17, 24, 39, 0.07);
    }

    .xmdsite-grid-service {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .xmdsite-card-service .xmdsite-item-card-link {
      place-items: center;
      min-height: 270px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 50% 0, rgba(37, 99, 235, 0.14), transparent 44%),
        #fbfbfc;
      text-align: center;
    }

    .xmdsite-card-service .xmdsite-card-media {
      width: 118px;
      height: 118px;
      margin-top: 26px;
      border: 8px solid #ffffff;
      border-radius: 50%;
      aspect-ratio: 1;
      box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
    }

    .xmdsite-card-service .xmdsite-card-media img,
    .xmdsite-card-service .xmdsite-card-placeholder {
      border-radius: 50%;
    }

    .xmdsite-card-service .xmdsite-card-body {
      justify-items: center;
      padding: 18px 22px 24px;
    }

    .xmdsite-section-document {
      padding: 36px 30px;
      background:
        radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.14), transparent 28%),
        #f8fafc;
    }

    .xmdsite-grid-document {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      grid-auto-rows: 166px;
      gap: 16px;
      align-items: stretch;
    }

    .xmdsite-card-document:first-child {
      grid-column: span 2;
      grid-row: span 3;
    }

    .xmdsite-card-document:nth-child(n+2) {
      grid-column: span 1;
      grid-row: span 1;
    }

    .xmdsite-card-document:nth-child(n+8) {
      display: none;
    }

    .xmdsite-card-document .xmdsite-item-card-link {
      position: relative;
      border: 0;
      border-radius: 24px;
      background: #111827;
      box-shadow: none;
    }

    .xmdsite-card-document .xmdsite-card-media {
      position: absolute;
      inset: 0;
      aspect-ratio: auto;
    }

    .xmdsite-card-document .xmdsite-card-body {
      position: relative;
      z-index: 1;
      align-self: end;
      padding: 18px 20px;
    }

    .xmdsite-card-document:first-child .xmdsite-card-body {
      padding: 26px 28px;
    }

    .xmdsite-card-document .xmdsite-card-title,
    .xmdsite-card-document .xmdsite-card-summary,
    .xmdsite-card-document .xmdsite-card-more {
      color: #ffffff;
    }

    .xmdsite-card-document .xmdsite-card-title {
      font-size: 18px;
      line-height: 1.35;
    }

    .xmdsite-card-document:first-child .xmdsite-card-title {
      font-size: 22px;
    }

    .xmdsite-card-document .xmdsite-card-summary {
      max-width: 92%;
      opacity: 0.82;
    }

    .xmdsite-card-document:not(:first-child) .xmdsite-card-summary {
      display: none;
    }

    .xmdsite-card-document .xmdsite-card-more {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      margin-top: 2px;
      font-size: 14px;
      font-weight: 800;
    }

    .xmdsite-section-about {
      padding: 40px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.78)),
        radial-gradient(circle at 100% 0, rgba(37, 99, 235, 0.16), transparent 34%);
      box-shadow: 0 20px 58px rgba(17, 24, 39, 0.08);
    }

    .xmdsite-grid-about {
      grid-template-columns: 1.1fr 0.9fr;
      gap: 18px;
    }

    .xmdsite-card-about.is-featured {
      grid-row: span 2;
    }

    .xmdsite-card-about .xmdsite-item-card-link {
      border: 0;
      border-radius: 28px;
      box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
    }

    .xmdsite-card-about.is-featured .xmdsite-card-media {
      aspect-ratio: 16 / 9;
    }

    .xmdsite-card-about:not(.is-featured) .xmdsite-item-card-link {
      grid-template-columns: 156px minmax(0, 1fr);
    }

    .xmdsite-card-about:not(.is-featured) .xmdsite-card-media {
      aspect-ratio: auto;
      min-height: 100%;
    }


    /* Requested homepage refinements */
    .xmdsite-section-product {
      padding: clamp(32px, 3.4vw, 46px) clamp(20px, 3vw, 34px) clamp(34px, 3.6vw, 50px);
      overflow: hidden;
      border: 1px solid rgba(17, 24, 39, 0.06);
      border-radius: 32px;
      background: #ffffff;
      box-shadow: none;
      clip-path: none;
    }

    .xmdsite-section-product .xmdsite-product-heading,
    .xmdsite-section-product .xmdsite-product-carousel {
      position: relative;
      z-index: 1;
    }

    .xmdsite-section-product .xmdsite-product-heading {
      margin-bottom: clamp(20px, 2.3vw, 30px);
      padding-inline: 16px;
    }

    .xmdsite-section-product .xmdsite-product-section-title {
      color: #151923;
      letter-spacing: 0.045em;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.86);
    }

    .xmdsite-section-product .xmdsite-product-title-line {
      width: 64px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(17, 24, 39, 0.18), var(--xmdsite-accent), rgba(17, 24, 39, 0.12));
      opacity: 1;
    }

    .xmdsite-section-product .xmdsite-section-intro {
      max-width: 720px;
      margin-top: 13px;
      color: #606775;
      line-height: 1.95;
    }

    .xmdsite-section-product .xmdsite-product-carousel {
      max-width: min(1180px, 100%);
      margin-inline: auto;
      padding: 4px 6px 12px;
    }

    .xmdsite-section-product .xmdsite-item-card-link {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 26px;
      background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(17, 24, 39, 0.08), rgba(37, 99, 235, 0.14)) border-box;
      box-shadow: none;
      transform-origin: center bottom;
    }

    .xmdsite-section-product .xmdsite-item-card-link::before {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      content: "";
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 38%),
        linear-gradient(180deg, transparent 52%, rgba(17, 24, 39, 0.035));
      opacity: 0.68;
      transition: opacity 220ms ease;
    }

    .xmdsite-section-product .xmdsite-item-card-link::after {
      position: absolute;
      right: 18px;
      bottom: 18px;
      z-index: 3;
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--xmdsite-accent);
      color: #ffffff;
      content: "→";
      font-size: 18px;
      font-weight: 800;
      box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
      opacity: 0;
      transform: translate(8px, 8px) scale(0.86);
      transition:
        opacity 220ms ease,
        transform 220ms ease,
        background-color 220ms ease;
    }

    .xmdsite-section-product .xmdsite-card-media {
      aspect-ratio: 16 / 10;
      border-radius: 24px 24px 0 0;
      background: #f2f3f7;
    }

    .xmdsite-section-product .xmdsite-card-body {
      position: relative;
      z-index: 2;
      padding: 21px 62px 24px 22px;
      background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
      transition: transform 220ms ease;
    }

    .xmdsite-section-product .xmdsite-card-title {
      font-size: 20px;
      letter-spacing: 0.012em;
      transition: color 180ms ease;
    }

    .xmdsite-section-product .xmdsite-card-summary {
      color: rgba(17, 24, 39, 0.64);
    }

    .xmdsite-section-product .xmdsite-item-card-link:hover,
    .xmdsite-section-product .xmdsite-item-card-link:focus-visible,
    .xmdsite-section-product .xmdsite-item-card-link:active {
      border-color: rgba(37, 99, 235, 0.46);
      box-shadow: none;
      transform: translateY(-7px);
    }

    .xmdsite-section-product .xmdsite-item-card-link:hover::before,
    .xmdsite-section-product .xmdsite-item-card-link:focus-visible::before,
    .xmdsite-section-product .xmdsite-item-card-link:active::before {
      opacity: 1;
    }

    .xmdsite-section-product .xmdsite-item-card-link:hover::after,
    .xmdsite-section-product .xmdsite-item-card-link:focus-visible::after,
    .xmdsite-section-product .xmdsite-item-card-link:active::after {
      opacity: 1;
      transform: translate(0, 0) scale(1);
    }

    .xmdsite-section-product .xmdsite-item-card-link:hover .xmdsite-card-body,
    .xmdsite-section-product .xmdsite-item-card-link:focus-visible .xmdsite-card-body,
    .xmdsite-section-product .xmdsite-item-card-link:active .xmdsite-card-body {
      transform: translateY(-2px);
    }

    .xmdsite-section-product .xmdsite-item-card-link:hover .xmdsite-card-title,
    .xmdsite-section-product .xmdsite-item-card-link:focus-visible .xmdsite-card-title,
    .xmdsite-section-product .xmdsite-item-card-link:active .xmdsite-card-title {
      color: var(--xmdsite-accent-hover);
    }


    .xmdsite-section-news .xmdsite-product-heading {
      justify-content: center;
      text-align: center;
    }

    .xmdsite-section-news .xmdsite-product-title-block {
      align-items: center;
    }

    .xmdsite-section-news .xmdsite-section-intro {
      margin-right: auto;
      margin-left: auto;
    }

    .xmdsite-section-news .xmdsite-section-kicker::before {
      display: block;
    }

    .xmdsite-grid-news {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .xmdsite-card-news.is-featured {
      grid-row: auto;
    }

    .xmdsite-card-news .xmdsite-item-card-link,
    .xmdsite-card-news.is-featured .xmdsite-item-card-link {
      grid-template-columns: 1fr;
      border-radius: 24px;
    }

    .xmdsite-card-news .xmdsite-card-media,
    .xmdsite-card-news.is-featured .xmdsite-card-media {
      aspect-ratio: 16 / 10;
      min-height: 0;
    }

    .xmdsite-card-news .xmdsite-card-body {
      padding: 18px;
    }

    .xmdsite-section-event {
      padding: 44px 34px 48px;
      background:
        radial-gradient(circle at 10% 0, rgba(37, 99, 235, 0.18), transparent 28%),
        radial-gradient(circle at 90% 16%, rgba(37, 99, 235, 0.12), transparent 30%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 56%, #eff6ff 100%);
      box-shadow: 0 22px 58px rgba(30, 64, 175, 0.09);
    }

    .xmdsite-grid-event {
      grid-template-columns: 1.18fr 0.91fr 0.91fr;
      gap: 22px;
      align-items: stretch;
    }

    .xmdsite-card-event:nth-child(2),
    .xmdsite-card-event:nth-child(3) {
      transform: none;
    }

    .xmdsite-card-event .xmdsite-item-card-link {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(37, 99, 235, 0.12);
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 18px 44px rgba(30, 64, 175, 0.1);
    }

    .xmdsite-card-event.is-featured .xmdsite-item-card-link {
      grid-template-rows: 1fr auto;
      min-height: 100%;
      background: #111827;
    }

    .xmdsite-card-event .xmdsite-card-media {
      aspect-ratio: 4 / 3;
    }

    .xmdsite-card-event.is-featured .xmdsite-card-media {
      aspect-ratio: 16 / 11;
    }

    .xmdsite-card-event .xmdsite-card-body {
      padding: 24px;
    }

    .xmdsite-card-event.is-featured .xmdsite-card-body {
      padding: 28px;
      background:
        radial-gradient(circle at 100% 0, rgba(37, 99, 235, 0.22), transparent 40%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.96), #111827);
    }

    .xmdsite-card-event.is-featured .xmdsite-card-title,
    .xmdsite-card-event.is-featured .xmdsite-card-summary,
    .xmdsite-card-event.is-featured .xmdsite-card-more {
      color: #ffffff;
    }

    .xmdsite-card-event.is-featured .xmdsite-card-summary {
      opacity: 0.76;
      -webkit-line-clamp: 3;
    }

    .xmdsite-card-event .xmdsite-card-body::before {
      top: -17px;
      left: 24px;
      content: "精品单品";
    }

    .xmdsite-card-event.is-featured .xmdsite-card-body::before {
      background: #ffffff;
      color: #2563eb;
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    }

    .xmdsite-grid-service {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      grid-template-rows: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .xmdsite-card-service .xmdsite-item-card-link {
      display: grid;
      place-items: center;
      position: relative;
      width: 100%;
      min-height: 132px;
      appearance: none;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 20px;
      background: #ffffff;
      box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
      color: inherit;
      cursor: pointer;
      font: inherit;
      text-align: center;
    }

    .xmdsite-card-service .xmdsite-card-media {
      width: min(72%, 148px);
      height: 76px;
      margin: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      aspect-ratio: auto;
    }

    .xmdsite-card-service .xmdsite-card-media img {
      width: 100%;
      height: 100%;
      border-radius: 0;
      object-fit: contain;
      filter: saturate(0.9);
    }

    .xmdsite-card-service .xmdsite-card-placeholder {
      width: 100%;
      height: 100%;
      border-radius: 12px;
      background: #f8fafc;
    }

    .xmdsite-card-service .xmdsite-card-body {
      display: none;
    }

    .xmdsite-card-service .xmdsite-item-card-link:hover,
    .xmdsite-card-service .xmdsite-item-card-link:focus-visible {
      border-color: rgba(37, 99, 235, 0.34);
      box-shadow: 0 18px 38px rgba(30, 64, 175, 0.11);
    }

    .xmdsite-card-service .xmdsite-item-card-link:active {
      box-shadow: 0 8px 18px rgba(30, 64, 175, 0.12);
      transform: translateY(1px) scale(0.98);
    }

    .xmdsite-card-service .xmdsite-item-card-link:hover .xmdsite-card-media img,
    .xmdsite-card-service .xmdsite-item-card-link:focus-visible .xmdsite-card-media img {
      transform: scale(1.045);
      filter: saturate(1.06);
    }

    .xmdsite-section-about {
      padding: 46px;
      background:
        radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.16), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
      box-shadow: 0 24px 64px rgba(17, 24, 39, 0.09);
    }

    .xmdsite-section-about .xmdsite-product-heading {
      justify-content: center;
      margin-bottom: 30px;
      text-align: center;
    }

    .xmdsite-section-about .xmdsite-product-title-block {
      align-items: center;
    }

    .xmdsite-section-about .xmdsite-section-intro {
      margin-right: auto;
      margin-left: auto;
    }

    .xmdsite-section-about .xmdsite-section-kicker::before {
      display: block;
    }

    .xmdsite-grid-about {
      grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
      gap: 24px;
      align-items: stretch;
    }

    .xmdsite-card-about.is-featured .xmdsite-item-card-link {
      position: relative;
      min-height: 440px;
      border-radius: 32px;
      background: #111827;
    }

    .xmdsite-card-about.is-featured .xmdsite-card-media {
      position: absolute;
      inset: 0;
      aspect-ratio: auto;
    }

    .xmdsite-card-about.is-featured .xmdsite-card-media::after {
      position: absolute;
      inset: 0;
      content: "";
      background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.28)),
        linear-gradient(180deg, transparent 35%, rgba(17, 24, 39, 0.76));
    }

    .xmdsite-card-about.is-featured .xmdsite-card-body {
      position: relative;
      z-index: 1;
      align-self: end;
      max-width: 620px;
      padding: 36px;
    }

    .xmdsite-card-about.is-featured .xmdsite-card-title {
      color: #ffffff;
      font-size: clamp(24px, 3vw, 34px);
    }

    .xmdsite-card-about.is-featured .xmdsite-card-summary,
    .xmdsite-card-about.is-featured .xmdsite-card-more {
      color: #ffffff;
    }

    .xmdsite-card-about.is-featured .xmdsite-card-summary {
      opacity: 0.78;
      -webkit-line-clamp: 4;
    }

    .xmdsite-card-about:not(.is-featured) .xmdsite-item-card-link {
      grid-template-columns: 132px minmax(0, 1fr);
      border-radius: 24px;
      box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
    }

    .xmdsite-card-about:not(.is-featured) .xmdsite-card-media {
      aspect-ratio: auto;
      min-height: 100%;
    }

    .xmdsite-card-about:not(.is-featured) .xmdsite-card-body {
      padding: 20px 22px;
    }

    /* Homepage polish: refined recommendation cards, partner matrix, about split-card and entrance animations */
    .xmdsite-page {
      scroll-behavior: smooth;
    }

    .xmdsite-header,
    .xmdsite-hero-content,
    .xmdsite-intro-section,
    .xmdsite-function-section,
    .xmdsite-model-section,
    .xmdsite-footer {
      animation: xmdsite-fade-up-soft 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .xmdsite-header { animation-delay: 20ms; }
    .xmdsite-hero-content { animation-delay: 120ms; }
    .xmdsite-intro-section { animation-delay: 180ms; }
    .xmdsite-function-section { animation-delay: 220ms; }
    .xmdsite-model-section { animation-delay: 260ms; }
    .xmdsite-model-section:nth-of-type(2) { animation-delay: 320ms; }
    .xmdsite-model-section:nth-of-type(3) { animation-delay: 380ms; }
    .xmdsite-model-section:nth-of-type(4) { animation-delay: 440ms; }
    .xmdsite-model-section:nth-of-type(5) { animation-delay: 500ms; }
    .xmdsite-model-section:nth-of-type(6) { animation-delay: 560ms; }
    .xmdsite-model-section:nth-of-type(7) { animation-delay: 620ms; }

    .xmdsite-item-card,
    .xmdsite-function-card {
      animation: xmdsite-card-rise 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .xmdsite-item-card:nth-child(2) { animation-delay: 80ms; }
    .xmdsite-item-card:nth-child(3) { animation-delay: 140ms; }
    .xmdsite-item-card:nth-child(4) { animation-delay: 200ms; }
    .xmdsite-item-card:nth-child(5) { animation-delay: 260ms; }
    .xmdsite-item-card:nth-child(6) { animation-delay: 320ms; }
    .xmdsite-item-card:nth-child(7) { animation-delay: 380ms; }
    .xmdsite-item-card:nth-child(8) { animation-delay: 440ms; }
    .xmdsite-item-card:nth-child(9) { animation-delay: 500ms; }
    .xmdsite-item-card:nth-child(10) { animation-delay: 560ms; }

    .xmdsite-section-event {
      isolation: isolate;
      overflow: visible;
      padding: 42px 34px 52px;
      border: 1px solid rgba(37, 99, 235, 0.13);
      background:
        radial-gradient(circle at 7% 10%, rgba(37, 99, 235, 0.16), transparent 28%),
        radial-gradient(circle at 92% 0%, rgba(37, 99, 235, 0.1), transparent 30%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #eff6ff 100%);
    }

    .xmdsite-section-event::before {
      position: absolute;
      top: 22px;
      right: 34px;
      z-index: 0;
      width: 156px;
      height: 156px;
      border: 18px solid rgba(37, 99, 235, 0.09);
      border-radius: 50%;
      content: "";
      pointer-events: none;
    }

    .xmdsite-section-event .xmdsite-product-heading,
    .xmdsite-section-event .xmdsite-item-grid,
    .xmdsite-section-event .xmdsite-recommend-showcase {
      position: relative;
      z-index: 1;
    }

    .xmdsite-recommend-showcase {
      display: grid;
      gap: 24px;
    }

    .xmdsite-recommend-stage {
      position: relative;
      display: block;
      min-height: 342px;
      overflow: hidden;
      border-radius: 28px;
      background: #111827;
      box-shadow: 0 24px 62px rgba(30, 64, 175, 0.13);
      text-decoration: none;
      transform: translateZ(0);
    }

    .xmdsite-recommend-stage::after {
      position: absolute;
      inset: 0;
      content: "";
      background:
        linear-gradient(0deg, rgba(17, 24, 39, 0.16), rgba(17, 24, 39, 0.16)),
        linear-gradient(90deg, rgba(17, 24, 39, 0.5) 0%, rgba(17, 24, 39, 0.2) 42%, rgba(17, 24, 39, 0.06) 72%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.05) 0%, rgba(17, 24, 39, 0.62) 100%);
      pointer-events: none;
    }

    .xmdsite-recommend-stage-media,
    .xmdsite-recommend-stage-media img,
    .xmdsite-recommend-stage-media .xmdsite-card-placeholder {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 342px;
    }

    .xmdsite-recommend-stage-media img {
      object-fit: cover;
      transition: transform 700ms ease;
    }

    .xmdsite-recommend-stage:hover .xmdsite-recommend-stage-media img,
    .xmdsite-recommend-stage:focus-visible .xmdsite-recommend-stage-media img {
      transform: scale(1.035);
    }

    .xmdsite-recommend-stage-copy {
      position: absolute;
      left: clamp(22px, 4.6vw, 54px);
      bottom: clamp(24px, 4.4vw, 46px);
      z-index: 2;
      display: grid;
      max-width: min(500px, 58%);
      gap: 12px;
      color: #ffffff;
    }

    .xmdsite-recommend-stage-copy strong {
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.15;
      letter-spacing: -0.04em;
      text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    }

    .xmdsite-recommend-stage-copy em {
      display: -webkit-box;
      overflow: hidden;
      color: rgba(255, 255, 255, 0.86);
      font-size: 15px;
      font-style: normal;
      line-height: 1.8;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .xmdsite-recommend-badge {
      justify-self: start;
      border-radius: 999px;
      background: #ffffff;
      color: #2563eb;
      font-size: 12px;
      font-weight: 900;
      line-height: 1;
      padding: 9px 14px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    }

    .xmdsite-recommend-stage:focus-visible,
    .xmdsite-recommend-tabs a:focus-visible,
    .xmdsite-recommend-thumb a:focus-visible {
      outline: 3px solid rgba(37, 99, 235, 0.28);
      outline-offset: 3px;
    }

    .xmdsite-recommend-tabs {
      position: relative;
      z-index: 4;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0;
      width: fit-content;
      max-width: calc(100% - 80px);
      margin: -38px auto 0;
      padding: 0 18px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 16px 40px rgba(17, 24, 39, 0.11);
      backdrop-filter: blur(12px);
      list-style: none;
    }

    .xmdsite-recommend-tabs li {
      position: relative;
    }

    .xmdsite-recommend-tabs li + li::before {
      position: absolute;
      top: 50%;
      left: 0;
      width: 1px;
      height: 16px;
      background: rgba(17, 24, 39, 0.1);
      content: "";
      transform: translateY(-50%);
    }

    .xmdsite-recommend-tabs a {
      position: relative;
      display: block;
      padding: 13px 22px;
      color: #4b5563;
      font-size: 13px;
      font-weight: 800;
      text-decoration: none;
      white-space: nowrap;
      transition: color 180ms ease;
    }

    .xmdsite-recommend-tabs li:first-child a {
      color: #111827;
    }

    .xmdsite-recommend-tabs li:first-child a::after,
    .xmdsite-recommend-tabs a:hover::after,
    .xmdsite-recommend-tabs a:focus-visible::after {
      position: absolute;
      top: 8px;
      right: 11px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #ef4444;
      content: "";
      box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
    }

    .xmdsite-recommend-tabs a:hover,
    .xmdsite-recommend-tabs a:focus-visible {
      color: #2563eb;
    }

    .xmdsite-recommend-gallery {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .xmdsite-recommend-thumb a {
      display: grid;
      overflow: hidden;
      border: 1px solid rgba(17, 24, 39, 0.06);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 16px 34px rgba(30, 64, 175, 0.08);
      color: #111827;
      text-align: center;
      text-decoration: none;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .xmdsite-recommend-thumb a:hover,
    .xmdsite-recommend-thumb a:focus-visible {
      border-color: rgba(37, 99, 235, 0.26);
      box-shadow: 0 22px 48px rgba(30, 64, 175, 0.13);
      transform: translateY(-4px);
    }

    .xmdsite-recommend-thumb-media {
      position: relative;
      display: block;
      aspect-ratio: 1 / 1.18;
      overflow: hidden;
      background: #f8fafc;
    }

    .xmdsite-recommend-thumb-media::after {
      position: absolute;
      inset: 0;
      content: "";
      background: rgba(17, 24, 39, 0.12);
      pointer-events: none;
    }

    .xmdsite-recommend-thumb-media img,
    .xmdsite-recommend-thumb-media .xmdsite-card-placeholder {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 520ms ease;
    }

    .xmdsite-recommend-thumb a:hover img,
    .xmdsite-recommend-thumb a:focus-visible img {
      transform: scale(1.035);
    }

    .xmdsite-recommend-thumb-name {
      display: block;
      padding: 13px 12px 4px;
      font-size: 15px;
      font-weight: 900;
      line-height: 1.45;
    }

    .xmdsite-recommend-thumb-desc {
      display: -webkit-box;
      min-height: 38px;
      overflow: hidden;
      padding: 0 14px 14px;
      color: #6b7280;
      font-size: 12px;
      line-height: 1.6;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .xmdsite-section-service {
      padding: 42px 34px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96)),
        radial-gradient(circle at 12% 0, rgba(37, 99, 235, 0.12), transparent 28%);
    }

    .xmdsite-grid-service {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      grid-template-rows: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .xmdsite-card-service .xmdsite-item-card-link {
      min-height: 0;
      padding: 24px 28px;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 22px;
      background: #ffffff;
      box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
    }

    .xmdsite-card-service .xmdsite-item-card-link::before {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      border: 1px solid rgba(37, 99, 235, 0.24);
      border-radius: inherit;
      content: "";
      opacity: 0;
      transition: opacity 220ms ease;
    }

    .xmdsite-card-service .xmdsite-item-card-link:hover::before,
    .xmdsite-card-service .xmdsite-item-card-link:focus-visible::before {
      opacity: 1;
    }

    .xmdsite-card-service .xmdsite-item-card-link:active {
      box-shadow: 0 8px 18px rgba(30, 64, 175, 0.12);
      transform: translateY(1px) scale(0.98);
    }

    .xmdsite-card-service .xmdsite-card-media {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 7;
      margin: 0;
      filter: none;
    }

    .xmdsite-card-service .xmdsite-card-media img,
    .xmdsite-card-service .xmdsite-card-placeholder {
      width: 100%;
      height: 100%;
      border-radius: inherit;
    }

    .xmdsite-card-service .xmdsite-card-media img {
      display: block;
      object-fit: contain;
    }


    .xmdsite-section-about {
      padding: 44px;
      background:
        radial-gradient(circle at 10% 0, rgba(37, 99, 235, 0.14), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    }

    .xmdsite-grid-about {
      grid-template-columns: 1fr;
    }

    .xmdsite-card-about.is-featured .xmdsite-item-card-link,
    .xmdsite-card-about .xmdsite-item-card-link {
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
      min-height: 0;
      overflow: hidden;
      border: 1px solid rgba(37, 99, 235, 0.14);
      border-radius: 34px;
      background: #ffffff;
      box-shadow: 0 24px 64px rgba(17, 24, 39, 0.1);
    }

    .xmdsite-card-about.is-featured .xmdsite-card-media,
    .xmdsite-card-about .xmdsite-card-media {
      position: relative;
      inset: auto;
      aspect-ratio: 4 / 3;
      min-height: 360px;
    }

    .xmdsite-card-about.is-featured .xmdsite-card-media::after {
      background:
        linear-gradient(90deg, transparent 62%, rgba(255, 255, 255, 0.74)),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 24%);
    }

    .xmdsite-card-about.is-featured .xmdsite-card-body,
    .xmdsite-card-about .xmdsite-card-body {
      position: relative;
      z-index: 1;
      align-self: center;
      max-width: none;
      padding: clamp(28px, 4vw, 54px);
      background:
        radial-gradient(circle at 100% 0, rgba(37, 99, 235, 0.14), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    }

    .xmdsite-card-about.is-featured .xmdsite-card-body::before {
      content: none;
      display: none;
    }

    .xmdsite-card-about.is-featured .xmdsite-card-title,
    .xmdsite-card-about .xmdsite-card-title {
      color: var(--xmdsite-text);
      font-size: clamp(26px, 3.2vw, 38px);
    }

    .xmdsite-card-about.is-featured .xmdsite-card-summary,
    .xmdsite-card-about.is-featured .xmdsite-card-more,
    .xmdsite-card-about .xmdsite-card-summary,
    .xmdsite-card-about .xmdsite-card-more {
      color: var(--xmdsite-muted);
    }

    .xmdsite-card-about.is-featured .xmdsite-card-summary,
    .xmdsite-card-about .xmdsite-card-summary {
      opacity: 1;
      font-size: 15px;
      line-height: 1.9;
      -webkit-line-clamp: 5;
    }

    .xmdsite-card-about.is-featured .xmdsite-card-more,
    .xmdsite-card-about .xmdsite-card-more {
      color: var(--xmdsite-accent-hover);
    }

    @keyframes xmdsite-fade-up-soft {
      from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(6px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    @keyframes xmdsite-card-rise {
      from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }



    .xmdsite-empty-state {
      border: 1px dashed var(--xmdsite-border-strong);
      border-radius: var(--xmdsite-radius);
      background: rgba(255, 255, 255, 0.74);
      padding: 44px 24px;
      text-align: center;
    }

    .xmdsite-empty-state h2 {
      margin: 0;
      font-size: 24px;
    }

    .xmdsite-empty-state p {
      margin: 12px auto 0;
      max-width: 620px;
      color: var(--xmdsite-muted);
    }

    .xmdsite-footer {
      background: var(--xmdsite-footer);
      color: rgba(255, 255, 255, 0.82);
    }

    .xmdsite-footer-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 280px;
      gap: 48px;
      padding: 48px 0;
    }

    .xmdsite-footer-brand {
      margin: 0 0 22px;
      color: #ffffff;
      font-size: 20px;
      font-weight: 800;
    }

    .xmdsite-footer-list {
      display: flex;
      flex-wrap: wrap;
      gap: 28px 48px;
    }

    .xmdsite-footer-item {
      min-width: 120px;
    }

    .xmdsite-footer-link {
      color: rgba(255, 255, 255, 0.84);
      font-size: 14px;
      font-weight: 700;
      transition: color 180ms ease;
    }

    .xmdsite-footer-link:hover,
    .xmdsite-footer-link:focus-visible {
      color: #ffffff;
      outline: none;
    }

    .xmdsite-footer-sublist {
      display: grid;
      gap: 8px;
      margin-top: 12px;
    }

    .xmdsite-footer-sublist .xmdsite-footer-link {
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
    }

    .xmdsite-footer-aside {
      display: grid;
      align-content: start;
      gap: 14px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 14px;
      line-height: 1.8;
    }

    .xmdsite-footer-qrcode {
      width: 96px;
      height: 96px;
      border-radius: var(--xmdsite-radius);
      object-fit: cover;
    }

    .xmdsite-footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 18px 0;
      color: rgba(255, 255, 255, 0.5);
      font-size: 13px;
    }

    .xmdsite-footer-bottom-inner {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 20px;
      justify-content: center;
    }

    .xmdsite-footer-icp {
      color: inherit;
      text-decoration: none;
      transition: color 180ms ease;
    }

    .xmdsite-footer-icp:hover,
    .xmdsite-footer-icp:focus-visible {
      color: rgba(255, 255, 255, 0.82);
      outline: none;
    }

    @keyframes xmdsite-fade-up {
      from {
        opacity: 0;
        transform: translateY(14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 960px) {
      .xmdsite-container.xmdsite-header-inner {
        position: relative;
        align-items: center;
        gap: 12px;
        min-height: 64px;
        width: min(100% - 32px, 1180px);
      }

      .xmdsite-hero {
        margin-top: 64px;
      }

      .xmdsite-hero-has-media .xmdsite-hero-media {
        margin-top: -64px;
      }


      .xmdsite-brand {
        align-self: center;
        flex: 1 1 auto;
        padding: 0;
      }

      .xmdsite-brand-logo {
        max-width: min(300px, calc(100vw - 92px));
        max-height: 52px;
      }

      .xmdsite-nav-toggle {
        display: grid;
      }

      .xmdsite-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        align-self: auto;
        display: block;
        width: fit-content;
        min-width: 150px;
        max-width: calc(100vw - 32px);
        max-height: calc(100vh - 88px);
        overflow-y: auto;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 0;
        background: rgba(11, 31, 58, 0.94);
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition:
          opacity 180ms ease,
          transform 180ms ease,
          visibility 180ms ease;
      }

      .xmdsite-header.is-nav-open .xmdsite-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .xmdsite-nav-list {
        display: grid;
        align-items: center;
        justify-items: center;
        gap: 0;
        width: max-content;
        max-width: 100%;
        min-height: 0;
        padding: 8px;
      }

      .xmdsite-nav-link {
        justify-content: center;
        width: max-content;
        min-width: 118px;
        max-width: calc(100vw - 64px);
        min-height: 42px;
        padding: 0 18px;
        line-height: 1.45;
        overflow-wrap: anywhere;
        text-align: center;
        white-space: normal;
      }

      .xmdsite-nav-link::after {
        right: 18px;
        left: 18px;
      }

      .xmdsite-nav-sublist {
        position: static;
        display: none;
        justify-items: stretch;
        min-width: 0;
        padding: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.16);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
      }

      .xmdsite-nav-item.is-subnav-open .xmdsite-nav-sublist {
        display: grid;
      }

      .xmdsite-nav-sublist .xmdsite-nav-link {
        min-height: 38px;
        padding: 0 16px;
        font-size: 13px;
      }


      .xmdsite-intro-section {
        padding: 48px 0 38px;
      }

      .xmdsite-hero-search-stack {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .xmdsite-hero-copy .xmdsite-section-description > :not(figure),
      .xmdsite-hero-copy .xmdsite-section-description > figure,
      .xmdsite-smart-home-cover {
        grid-column: 1;
        grid-row: auto;
      }

      .xmdsite-hero-copy .xmdsite-section-description > :not(figure) {
        margin-right: 0;
        margin-left: 0;
      }

      .xmdsite-smart-home-cover,
      .xmdsite-hero-search-stack .xmdsite-section-description figure {
        border-radius: 20px;
      }

      .xmdsite-smart-home-cover img,
      .xmdsite-hero-search-stack .xmdsite-section-description figure img {
        max-height: none;
      }

      .xmdsite-page-title {
        font-size: 42px;
      }

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

      .xmdsite-section-news,
      .xmdsite-section-case,
      .xmdsite-section-event,
      .xmdsite-section-service,
      .xmdsite-section-document,
      .xmdsite-section-about {
        padding: 28px 22px;
        border-radius: 24px;
      }

      .xmdsite-grid-news,
      .xmdsite-grid-case,
      .xmdsite-grid-about {
        grid-template-columns: 1fr;
      }

      .xmdsite-card-news.is-featured,
      .xmdsite-card-case.is-featured,
      .xmdsite-card-about.is-featured {
        grid-row: auto;
      }

      .xmdsite-card-case.is-featured .xmdsite-item-card-link {
        min-height: 420px;
      }

      .xmdsite-grid-document {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 210px;
      }

      .xmdsite-card-document:first-child,
      .xmdsite-card-document:nth-child(n+2) {
        grid-column: span 1;
        grid-row: span 1;
      }

      .xmdsite-card-document:first-child .xmdsite-card-body {
        padding: 20px 22px;
      }

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

      .xmdsite-grid-event,
      .xmdsite-grid-about {
        grid-template-columns: 1fr;
      }

      .xmdsite-recommend-stage {
        min-height: 300px;
        border-radius: 24px;
      }

      .xmdsite-recommend-stage-media,
      .xmdsite-recommend-stage-media img,
      .xmdsite-recommend-stage-media .xmdsite-card-placeholder {
        min-height: 300px;
      }

      .xmdsite-recommend-stage-copy {
        max-width: min(520px, calc(100% - 56px));
      }

      .xmdsite-recommend-tabs {
        max-width: calc(100% - 32px);
        overflow-x: auto;
        justify-content: flex-start;
      }

      .xmdsite-recommend-tabs a {
        padding: 12px 18px;
      }

      .xmdsite-recommend-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .xmdsite-card-event.is-featured .xmdsite-item-card-link,
      .xmdsite-card-about.is-featured .xmdsite-item-card-link {
        min-height: 420px;
      }

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

      .xmdsite-card-event:not(.is-featured) .xmdsite-item-card-link,
      .xmdsite-card-about.is-featured .xmdsite-item-card-link,
      .xmdsite-card-about .xmdsite-item-card-link {
        grid-template-columns: 1fr;
      }

      .xmdsite-card-event:not(.is-featured) .xmdsite-card-media,
      .xmdsite-card-about.is-featured .xmdsite-card-media,
      .xmdsite-card-about .xmdsite-card-media {
        aspect-ratio: 16 / 10;
        min-height: 0;
      }





      .xmdsite-function-section {
        padding: 52px 0 58px;
      }

      .xmdsite-function-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }

      .xmdsite-function-card {
        min-height: 220px;
      }

      .xmdsite-footer-inner {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .xmdsite-container {
        width: min(100% - 24px, 1180px);
      }

      .xmdsite-header-inner {
        min-height: 62px;
      }

      .xmdsite-brand-logo {
        max-width: min(248px, calc(100vw - 84px));
        max-height: 46px;
      }

      .xmdsite-hero {
        margin-top: 62px;
      }

      .xmdsite-hero-has-media .xmdsite-hero-media {
        margin-top: -62px;
      }



      .xmdsite-hero {
        min-height: 0;
      }

      .xmdsite-hero-has-media {
        min-height: 0;
      }

      .xmdsite-hero-content {
        padding: 68px 0 54px;
      }

      .xmdsite-hero-has-media .xmdsite-hero-content {
        padding: 30px 0 42px;
      }

      .xmdsite-intro-section {
        padding: 36px 0 32px;
      }

      .xmdsite-intro-section::before {
        top: 122px;
        width: 260px;
        height: 260px;
        border-width: 16px;
        opacity: 0.75;
      }

      .xmdsite-intro-heading {
        margin-bottom: 18px;
      }

      .xmdsite-hero-copy .xmdsite-section-description {
        line-height: 1.9;
      }

      .xmdsite-function-section {
        padding: 42px 0 46px;
      }

      .xmdsite-function-heading {
        margin-bottom: 24px;
      }

      .xmdsite-function-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .xmdsite-function-card {
        min-height: 158px;
        padding: 24px 16px;
      }

      .xmdsite-function-card-inner {
        gap: 14px;
      }

      .xmdsite-function-name {
        font-size: 20px;
      }



      .xmdsite-page-title {
        font-size: 34px;
      }

      .xmdsite-section-description {
        font-size: 15px;
      }

      .xmdsite-main {
        gap: 42px;
        padding: 46px 0 64px;
      }

      .xmdsite-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
      }

      .xmdsite-product-heading {
        align-items: center;
        gap: 0;
        margin-bottom: 28px;
      }

      .xmdsite-product-section-title {
        font-size: 34px;
      }

      .xmdsite-home-search-form {
        width: 100%;
      }

      .xmdsite-search-submit {
        flex: 0 0 auto;
      }

      .xmdsite-item-grid {
        grid-template-columns: 1fr;
      }

      .xmdsite-section-product {
        padding: 24px 10px 28px;
        border-radius: 24px;
      }

      .xmdsite-section-product .xmdsite-product-heading {
        margin-bottom: 20px;
        padding-inline: 4px;
      }

      .xmdsite-section-product .xmdsite-product-carousel {
        padding: 0 0 8px;
      }

      .xmdsite-section-product .xmdsite-product-carousel:not(:defined) {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .xmdsite-section-product .xmdsite-product-carousel:not(:defined) swiper-slide:nth-child(n + 2) {
        display: none;
      }

      .xmdsite-section-product .xmdsite-item-card-link {
        border-radius: 20px;
      }

      .xmdsite-section-product .xmdsite-card-media {
        aspect-ratio: 4 / 3;
        border-radius: 20px 20px 0 0;
      }

      .xmdsite-section-product .xmdsite-card-body {
        gap: 8px;
        padding: 16px 18px 18px;
      }

      .xmdsite-section-product .xmdsite-card-title {
        font-size: 18px;
        line-height: 1.4;
      }

      .xmdsite-section-product .xmdsite-card-summary {
        font-size: 13px;
        line-height: 1.7;
        -webkit-line-clamp: 2;
      }

      .xmdsite-section-product .xmdsite-item-card-link::after {
        display: none;
      }


      .xmdsite-section-news,
      .xmdsite-section-case,
      .xmdsite-section-event,
      .xmdsite-section-service,
      .xmdsite-section-document,
      .xmdsite-section-about {
        padding: 22px 14px;
        border-radius: 20px;
      }

      .xmdsite-section-news .xmdsite-product-heading,
      .xmdsite-section-about .xmdsite-product-heading {
        text-align: center;
      }

      .xmdsite-section-news .xmdsite-product-title-block,
      .xmdsite-section-about .xmdsite-product-title-block {
        align-items: center;
      }

      .xmdsite-section-intro {
        font-size: 14px;
      }

      .xmdsite-card-news .xmdsite-item-card-link,
      .xmdsite-card-about:not(.is-featured) .xmdsite-item-card-link {
        grid-template-columns: 1fr;
      }

      .xmdsite-card-news .xmdsite-card-media,
      .xmdsite-card-about:not(.is-featured) .xmdsite-card-media {
        aspect-ratio: 16 / 10;
        min-height: 0;
      }

      .xmdsite-card-case .xmdsite-item-card-link,
      .xmdsite-card-case.is-featured .xmdsite-item-card-link {
        min-height: 360px;
      }

      .xmdsite-card-event:nth-child(2),
      .xmdsite-card-event:nth-child(3) {
        transform: none;
      }

      .xmdsite-card-event.is-featured .xmdsite-item-card-link,
      .xmdsite-card-about.is-featured .xmdsite-item-card-link {
        min-height: 360px;
      }

      .xmdsite-recommend-showcase {
        gap: 18px;
      }

      .xmdsite-recommend-stage {
        min-height: 248px;
        border-radius: 20px;
      }

      .xmdsite-recommend-stage-media,
      .xmdsite-recommend-stage-media img,
      .xmdsite-recommend-stage-media .xmdsite-card-placeholder {
        min-height: 248px;
      }

      .xmdsite-recommend-stage::after {
        background:
          linear-gradient(0deg, rgba(17, 24, 39, 0.16), rgba(17, 24, 39, 0.16)),
          linear-gradient(180deg, rgba(17, 24, 39, 0.06) 0%, rgba(17, 24, 39, 0.64) 100%);
      }

      .xmdsite-recommend-stage-copy {
        left: 18px;
        right: 18px;
        bottom: 20px;
        max-width: none;
        gap: 8px;
      }

      .xmdsite-recommend-stage-copy strong {
        font-size: 24px;
      }

      .xmdsite-recommend-stage-copy em {
        font-size: 13px;
        line-height: 1.65;
      }

      .xmdsite-recommend-tabs {
        width: 100%;
        max-width: 100%;
        margin-top: -28px;
        padding: 0 10px;
        border-radius: 16px;
      }

      .xmdsite-recommend-tabs a {
        padding: 11px 14px;
        font-size: 12px;
      }

      .xmdsite-recommend-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .xmdsite-recommend-thumb a {
        grid-template-columns: 128px minmax(0, 1fr);
        align-items: center;
        text-align: left;
      }

      .xmdsite-recommend-thumb-media {
        aspect-ratio: 1 / 1;
        height: 100%;
      }

      .xmdsite-recommend-thumb-name {
        padding: 12px 14px 2px;
      }

      .xmdsite-recommend-thumb-desc {
        padding: 0 14px 12px;
      }

      .xmdsite-grid-service {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .xmdsite-card-service .xmdsite-item-card-link {
        min-height: 0;
        padding: 18px 20px;
      }

      .xmdsite-card-service .xmdsite-card-media {
        height: auto;
        aspect-ratio: 16 / 7;
      }

      .xmdsite-card-event:not(.is-featured) .xmdsite-item-card-link,
      .xmdsite-card-about.is-featured .xmdsite-item-card-link,
      .xmdsite-card-about .xmdsite-item-card-link {
        grid-template-columns: 1fr;
      }

      .xmdsite-card-event:not(.is-featured) .xmdsite-card-media,
      .xmdsite-card-about.is-featured .xmdsite-card-media,
      .xmdsite-card-about .xmdsite-card-media {
        aspect-ratio: 16 / 10;
        min-height: 0;
      }

      .xmdsite-card-event:not(.is-featured) .xmdsite-card-body {
        padding: 22px;
      }



      .xmdsite-grid-document {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
      }

      .xmdsite-card-document:first-child,
      .xmdsite-card-document:nth-child(n+2) {
        grid-column: span 1;
        grid-row: span 1;
      }

      .xmdsite-card-document .xmdsite-card-body,
      .xmdsite-card-document:first-child .xmdsite-card-body {
        padding: 18px;
      }

      .xmdsite-card-document .xmdsite-card-title,
      .xmdsite-card-document:first-child .xmdsite-card-title {
        font-size: 18px;
      }


      .xmdsite-footer-list {
        display: grid;
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
      }
    }

/* Final shared header override. Keep this at the end so page-local legacy
   header rules do not drift away from the requested dark navigation bar. */
body.xmdsite-page {
  padding-top: 72px;
  background: #ffffff;
}

body.xmdsite-page .xmdsite-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  min-height: 72px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 31, 58, 0.96);
  color: #ffffff;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: translateZ(0);
}

body.xmdsite-page .xmdsite-header,
body.xmdsite-page .xmdsite-header * {
  box-sizing: border-box;
}

body.xmdsite-page .xmdsite-header a {
  color: inherit;
  text-decoration: none;
}

body.xmdsite-page .xmdsite-container.xmdsite-header-inner,
body.xmdsite-page .xmdsite-header-inner {
  width: min(1230px, 100%);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 14px;
}

body.xmdsite-page .xmdsite-brand {
  flex: 0 0 365px;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 72px;
  padding: 0;
  color: #ffffff;
  font-size: 0;
  line-height: 1;
}

body.xmdsite-page .xmdsite-brand-logo {
  display: block;
  width: auto;
  max-width: min(330px, 26vw);
  max-height: 54px;
  object-fit: contain;
}

body.xmdsite-page .xmdsite-brand-name {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

body.xmdsite-page .xmdsite-brand-text {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

body.xmdsite-page .xmdsite-nav {
  position: static;
  align-self: stretch;
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  width: auto;
  min-width: 0;
  max-width: none;
  max-height: none;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}

body.xmdsite-page .xmdsite-nav-list,
body.xmdsite-page .xmdsite-nav-sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.xmdsite-page .xmdsite-nav-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0;
  width: 100%;
  min-height: 72px;
}

body.xmdsite-page .xmdsite-nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  border: 0;
}

body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 82px;
  min-height: 72px;
  padding: 0 15px;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link::after {
  position: absolute;
  right: 15px;
  bottom: 18px;
  left: 15px;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #2563eb;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link:hover,
body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link:focus-visible,
body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item.is-active > .xmdsite-nav-link,
body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item.is-subnav-open > .xmdsite-nav-link {
  background: transparent;
  color: #ffffff;
  outline: none;
}

body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link:hover::after,
body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link:focus-visible::after,
body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item.is-active > .xmdsite-nav-link::after,
body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item.is-subnav-open > .xmdsite-nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}

body.xmdsite-page .xmdsite-nav-sublist {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  width: max-content;
  min-width: 148px;
  padding: 8px;
  border: 0;
  border-radius: 4px;
  background: rgba(26, 24, 22, 0.98);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

body.xmdsite-page .xmdsite-nav-item:hover .xmdsite-nav-sublist,
body.xmdsite-page .xmdsite-nav-item:focus-within .xmdsite-nav-sublist,
body.xmdsite-page .xmdsite-nav-item.is-subnav-open .xmdsite-nav-sublist {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: 100%;
  padding: 0 16px;
  border-radius: 4px;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link::after {
  display: none;
}

body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 7px;
  width: 3px;
  border-radius: 999px;
  background: #2563eb;
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link:hover,
body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link:focus-visible,
body.xmdsite-page .xmdsite-nav-subitem.is-active > .xmdsite-nav-link,
body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link[aria-current="page"] {
  background: rgba(37, 99, 235, 0.12);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.32);
  outline: none;
}

body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link:hover::before,
body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link:focus-visible::before,
body.xmdsite-page .xmdsite-nav-subitem.is-active > .xmdsite-nav-link::before,
body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link[aria-current="page"]::before {
  opacity: 1;
  transform: scaleY(1);
}

body.xmdsite-page .xmdsite-nav-toggle {
  display: none;
  place-items: center;
  align-self: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin: 0 16px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}

body.xmdsite-page .xmdsite-nav-toggle:hover,
body.xmdsite-page .xmdsite-nav-toggle:focus-visible {
  border-color: rgba(37, 99, 235, 0.86);
  background: rgba(37, 99, 235, 0.18);
  color: #2563eb;
  outline: none;
}

@media (max-width: 1240px) {
  body.xmdsite-page .xmdsite-container.xmdsite-header-inner,
  body.xmdsite-page .xmdsite-header-inner {
    width: 100%;
    padding-right: 12px;
    padding-left: 18px;
    gap: 8px;
  }

  body.xmdsite-page .xmdsite-brand {
    flex-basis: 335px;
  }

  body.xmdsite-page .xmdsite-brand-logo {
    max-width: min(305px, 25vw);
  }

  body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link {
    min-width: 74px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }
}

/* FINAL: keep homepage service team as coverflow. */
body.xmdsite-design-home .design-team {
  padding: 0 0 86px;
  background: #000000;
  overflow: hidden;
}

body.xmdsite-design-home .design-team .design-section-head {
  padding-bottom: 18px;
}

body.xmdsite-design-home .design-team-slider {
  width: min(1240px, calc(100% - 80px));
  height: 405px;
  margin: 0 auto;
  overflow: visible;
}

body.xmdsite-design-home .design-team-slider swiper-slide {
  width: 235px;
  height: 342px;
}

body.xmdsite-design-home .design-team-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

body.xmdsite-design-home .design-team-card::after {
  position: absolute;
  inset: 0 0 30px;
  display: block;
  background: rgba(0, 0, 0, 0.22);
  content: "";
  pointer-events: none;
}

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder {
  width: 100%;
  height: 306px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.03);
  opacity: 0.42;
  transform: scale(0.9);
  transform-origin: center bottom;
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

body.xmdsite-design-home .design-team-card:hover img,
body.xmdsite-design-home .design-team-card:focus-visible img,
body.xmdsite-design-home .design-team-card:hover .design-placeholder,
body.xmdsite-design-home .design-team-card:focus-visible .design-placeholder {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-6px);
}

body.xmdsite-design-home .design-team-card strong,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card strong {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card .design-placeholder {
  filter: grayscale(1);
  opacity: 0.72;
  transform: none;
}

body.xmdsite-design-home .design-team-slider::part(button-prev),
body.xmdsite-design-home .design-team-slider::part(button-next) {
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, 0.7);
}

body.xmdsite-design-home .design-team-slider::part(button-prev) {
  left: 8px;
}

body.xmdsite-design-home .design-team-slider::part(button-next) {
  right: 8px;
}

@media (max-width: 920px) {
  body.xmdsite-design-home .design-team-slider {
    width: min(760px, calc(100% - 32px));
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 180px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 240px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-design-home .design-team {
    padding-bottom: 58px;
  }

  body.xmdsite-design-home .design-team-slider {
    width: min(440px, calc(100% - 24px));
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 150px;
  }

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 210px;
  }
}

/* FINAL: keep homepage service team as coverflow. */
body.xmdsite-design-home .design-team {
  padding: 0 0 86px;
  background: #000000;
  overflow: hidden;
}

body.xmdsite-design-home .design-team .design-section-head {
  padding-bottom: 18px;
}

body.xmdsite-design-home .design-team-slider {
  width: min(1240px, calc(100% - 80px));
  height: 405px;
  margin: 0 auto;
  overflow: visible;
}

body.xmdsite-design-home .design-team-slider swiper-slide {
  width: 235px;
  height: 342px;
}

body.xmdsite-design-home .design-team-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

body.xmdsite-design-home .design-team-card::after {
  position: absolute;
  inset: 0 0 30px;
  display: block;
  background: rgba(0, 0, 0, 0.22);
  content: "";
  pointer-events: none;
}

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder {
  width: 100%;
  height: 306px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.03);
  opacity: 0.42;
  transform: scale(0.9);
  transform-origin: center bottom;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active {
  z-index: 5;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
  filter: grayscale(0) contrast(1.04);
  opacity: 1;
  transform: scale(1.1);
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card::after {
  opacity: 0;
}

body.xmdsite-design-home .design-team-card strong,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card .design-placeholder {
  opacity: 0.72;
  transform: scale(1);
}

body.xmdsite-design-home .design-team-slider::part(button-prev),
body.xmdsite-design-home .design-team-slider::part(button-next) {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.56);
}

body.xmdsite-design-home .design-team-slider::part(button-prev) {
  left: 0;
}

body.xmdsite-design-home .design-team-slider::part(button-next) {
  right: 0;
}

@media (max-width: 920px) {
  body.xmdsite-design-home .design-team-slider {
    width: min(760px, calc(100% - 40px));
    height: 330px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 170px;
    height: 280px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 250px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-design-home .design-team {
    padding-bottom: 62px;
  }

  body.xmdsite-design-home .design-team-slider {
    width: min(460px, calc(100% - 28px));
    height: 300px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 148px;
    height: 250px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 220px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
    transform: scale(1.08);
  }
}

/* FINAL: smoother homepage team carousel interaction. */
body.xmdsite-design-home .design-team-slider {
  touch-action: pan-y;
}

body.xmdsite-design-home .design-team-card {
  outline: none;
}

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-card strong,
body.xmdsite-design-home .design-team-card::after {
  transition:
    opacity 240ms ease,
    filter 240ms ease,
    transform 240ms ease,
    color 240ms ease;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next {
  z-index: 4;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active {
  z-index: 6;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card .design-placeholder {
  filter: grayscale(0.18) contrast(1.05);
  opacity: 0.9;
  transform: scale(1.03);
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card::after,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card::after {
  opacity: 0.16;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card strong,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card strong {
  color: #ffffff;
  font-size: 16px;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-card:hover img,
body.xmdsite-design-home .design-team-card:focus-visible img,
body.xmdsite-design-home .design-team-card:hover .design-placeholder,
body.xmdsite-design-home .design-team-card:focus-visible .design-placeholder {
  filter: grayscale(0) contrast(1.07);
  opacity: 1;
  transform: scale(1.1);
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card::after,
body.xmdsite-design-home .design-team-card:hover::after,
body.xmdsite-design-home .design-team-card:focus-visible::after {
  opacity: 0;
}

body.xmdsite-design-home .design-team-card:hover strong,
body.xmdsite-design-home .design-team-card:focus-visible strong {
  color: #ffffff;
  transform: translateY(-2px);
}

body.xmdsite-design-home .design-team-slider swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) .design-team-card .design-placeholder {
  filter: grayscale(1) contrast(1.03);
  opacity: 0.42;
  transform: scale(0.9);
}

/* FINAL: enlarge homepage about section. */
body.xmdsite-design-home .design-about {
  margin-top: -196px;
  padding: 0 32px 86px;
}

body.xmdsite-design-home .design-about-panel {
  width: min(1240px, 100%);
  min-height: 360px;
  grid-template-columns: minmax(480px, 47%) minmax(0, 1fr);
}

body.xmdsite-design-home .design-about-media {
  min-height: 390px;
  transform: translate(28px, -40px);
}

body.xmdsite-design-home .design-about-media img,
body.xmdsite-design-home .design-about-media .design-placeholder {
  min-height: 390px;
}

body.xmdsite-design-home .design-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 70px 82px 62px 110px;
}

body.xmdsite-design-home .design-about-text {
  max-height: 132px;
  font-size: 14px;
  line-height: 2;
}

body.xmdsite-design-home .design-about-copy h2 {
  font-size: 26px;
}

body.xmdsite-design-home .design-arrow-link {
  width: 112px;
  height: 36px;
  margin-top: 28px;
}

@media (max-width: 1100px) {
  body.xmdsite-design-home .design-about-panel {
    grid-template-columns: minmax(360px, 46%) minmax(0, 1fr);
  }

  body.xmdsite-design-home .design-about-copy {
    padding: 58px 54px 52px 84px;
  }
}

@media (max-width: 820px) {
  body.xmdsite-design-home .design-about {
    margin-top: -132px;
    padding: 0 20px 64px;
  }

  body.xmdsite-design-home .design-about-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.xmdsite-design-home .design-about-media {
    min-height: 320px;
    transform: translate(0, -30px);
  }

  body.xmdsite-design-home .design-about-media img,
  body.xmdsite-design-home .design-about-media .design-placeholder {
    min-height: 320px;
  }

body.xmdsite-design-home .design-about-copy {
    min-height: 0;
    padding: 0 28px 42px;
  }
}

/* FINAL: increase homepage business black band height. */
body.xmdsite-design-home .design-more-band {
  min-height: 430px;
  padding-top: 72px;
}

body.xmdsite-design-home .design-about {
  margin-top: -226px;
}

@media (max-width: 820px) {
  body.xmdsite-design-home .design-more-band {
    min-height: 320px;
    padding-top: 56px;
  }

  body.xmdsite-design-home .design-about {
    margin-top: -142px;
  }
}

/* FINAL: smoother team carousel interaction. */
body.xmdsite-design-home .design-team-slider {
  touch-action: pan-y;
}

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-card strong,
body.xmdsite-design-home .design-team-card::after {
  transition: opacity 240ms ease, filter 240ms ease, transform 240ms ease, color 240ms ease;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next {
  z-index: 4;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active {
  z-index: 6;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card .design-placeholder {
  filter: grayscale(0.35) contrast(1.04);
  opacity: 0.86;
  transform: scale(1.02);
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card::after,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card::after {
  opacity: 0.22;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card strong,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card strong {
  color: #ffffff;
  font-size: 16px;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-card:hover img,
body.xmdsite-design-home .design-team-card:focus-visible img,
body.xmdsite-design-home .design-team-card:hover .design-placeholder,
body.xmdsite-design-home .design-team-card:focus-visible .design-placeholder {
  filter: grayscale(0) contrast(1.06);
  opacity: 1;
  transform: scale(1.1);
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card::after,
body.xmdsite-design-home .design-team-card:hover::after,
body.xmdsite-design-home .design-team-card:focus-visible::after {
  opacity: 0;
}

body.xmdsite-design-home .design-team-card:hover strong,
body.xmdsite-design-home .design-team-card:focus-visible strong {
  color: #ffffff;
  transform: translateY(-2px);
}

/* Final restore: homepage team keeps coverflow; service list uses row scroll. */
body.xmdsite-design-home .design-team {
  padding: 0 0 86px;
  background: #000000;
  overflow: hidden;
}

body.xmdsite-design-home .design-team .design-section-head {
  padding-bottom: 18px;
}

body.xmdsite-design-home .design-team-slider {
  width: min(1240px, calc(100% - 80px));
  height: 405px;
  margin: 0 auto;
  overflow: visible;
}

body.xmdsite-design-home .design-team-slider swiper-slide {
  width: 235px;
  height: 342px;
}

body.xmdsite-design-home .design-team-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

body.xmdsite-design-home .design-team-card::after {
  position: absolute;
  inset: 0 0 30px;
  display: block;
  background: rgba(0, 0, 0, 0.22);
  content: "";
  pointer-events: none;
  transition: opacity 260ms ease;
}

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder {
  width: 100%;
  height: 306px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.03);
  opacity: 0.42;
  transform: scale(0.9);
  transform-origin: center bottom;
  transition: opacity 260ms ease, filter 260ms ease, transform 260ms ease;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active {
  z-index: 5;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
  filter: grayscale(0) contrast(1.04);
  opacity: 1;
  transform: scale(1.1);
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card::after {
  opacity: 0;
}

body.xmdsite-design-home .design-team-card strong,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card .design-placeholder {
  opacity: 0.72;
  transform: scale(1);
}

body.xmdsite-design-home .design-team-slider::part(button-prev),
body.xmdsite-design-home .design-team-slider::part(button-next) {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.56);
}

body.xmdsite-design-home .design-team-slider::part(button-prev) {
  left: 0;
}

body.xmdsite-design-home .design-team-slider::part(button-next) {
  right: 0;
}

body.xmdsite-service-list-page .xmdsite-partner-showcase {
  padding: 54px 0 72px;
}

body.xmdsite-service-list-page .xmdsite-partner-section-head {
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}

body.xmdsite-service-list-page .xmdsite-partner-title {
  margin: 0;
  color: #111111;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

body.xmdsite-service-list-page .xmdsite-partner-subtitle {
  margin: 14px auto 0;
  max-width: 720px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 15px;
  line-height: 1.8;
}

body.xmdsite-service-list-page .xmdsite-service-scroll {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: #111111 rgba(0, 0, 0, 0.08);
}

body.xmdsite-service-list-page .xmdsite-service-scroll-track {
  display: flex;
  gap: 24px;
  min-width: max-content;
  margin: 0;
  padding: 6px 4px 24px;
  list-style: none;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-item {
  flex: 0 0 280px;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-card {
  display: grid;
  grid-template-rows: 340px minmax(120px, auto);
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-card:hover,
body.xmdsite-service-list-page .xmdsite-service-scroll-card:focus-visible {
  border-color: #111111;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
  outline: none;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-media {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: #1f1f1f;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-media img,
body.xmdsite-service-list-page .xmdsite-service-scroll-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  color: #ffffff;
  font-weight: 700;
  transition: transform 260ms ease, filter 260ms ease;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-card:hover img,
body.xmdsite-service-list-page .xmdsite-service-scroll-card:focus-visible img {
  filter: grayscale(1) contrast(1.04);
  transform: scale(1.045);
}

body.xmdsite-service-list-page .xmdsite-service-scroll-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-body strong {
  color: #111111;
  font-size: 18px;
  line-height: 1.35;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-body span {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(17, 17, 17, 0.64);
  font-size: 13px;
  line-height: 1.75;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

body.xmdsite-service-list-page .xmdsite-partner-pagination {
  margin-top: 28px;
}

@media (max-width: 920px) {
  body.xmdsite-design-home .design-team-slider {
    width: min(760px, calc(100% - 40px));
    height: 330px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 170px;
    height: 280px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 250px;
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll-item {
    flex-basis: 230px;
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll-card {
    grid-template-rows: 280px minmax(108px, auto);
  }
}

@media (max-width: 640px) {
  body.xmdsite-design-home .design-team {
    padding-bottom: 62px;
  }

  body.xmdsite-design-home .design-team-slider {
    width: min(460px, calc(100% - 28px));
    height: 300px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 148px;
    height: 250px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 220px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
    transform: scale(1.08);
  }

  body.xmdsite-service-list-page .xmdsite-partner-showcase {
    padding-top: 38px;
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll {
    width: min(100vw - 20px, 440px);
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll-track {
    gap: 16px;
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll-item {
    flex-basis: 205px;
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll-card {
    grid-template-rows: 240px minmax(104px, auto);
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll-body {
    padding: 18px;
  }
}

/* Restore home service team coverflow. */
body.xmdsite-design-home .design-team {
  padding: 0 0 86px;
  background: #000000;
  overflow: hidden;
}

body.xmdsite-design-home .design-team .design-section-head {
  padding-bottom: 18px;
}

body.xmdsite-design-home .design-team-slider {
  width: min(1240px, calc(100% - 80px));
  height: 405px;
  margin: 0 auto;
  overflow: visible;
}

body.xmdsite-design-home .design-team-slider swiper-slide {
  width: 235px;
  height: 342px;
}

body.xmdsite-design-home .design-team-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

body.xmdsite-design-home .design-team-card::after {
  position: absolute;
  inset: 0 0 30px;
  display: block;
  background: rgba(0, 0, 0, 0.22);
  content: "";
  pointer-events: none;
  transition: opacity 260ms ease;
}

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder {
  width: 100%;
  height: 306px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.03);
  opacity: 0.42;
  transform: scale(0.9);
  transform-origin: center bottom;
  transition: opacity 260ms ease, filter 260ms ease, transform 260ms ease;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active {
  z-index: 5;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
  filter: grayscale(0) contrast(1.04);
  opacity: 1;
  transform: scale(1.1);
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card::after {
  opacity: 0;
}

body.xmdsite-design-home .design-team-card strong,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card .design-placeholder {
  opacity: 0.72;
  transform: scale(1);
}

body.xmdsite-design-home .design-team-slider::part(button-prev),
body.xmdsite-design-home .design-team-slider::part(button-next) {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.56);
}

body.xmdsite-design-home .design-team-slider::part(button-prev) {
  left: 0;
}

body.xmdsite-design-home .design-team-slider::part(button-next) {
  right: 0;
}

/* Service list page: horizontal scrolling team layout. */
body.xmdsite-service-list-page .xmdsite-partner-showcase {
  padding: 54px 0 72px;
}

body.xmdsite-service-list-page .xmdsite-partner-section-head {
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}

body.xmdsite-service-list-page .xmdsite-partner-title {
  margin: 0;
  color: #111111;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

body.xmdsite-service-list-page .xmdsite-partner-subtitle {
  margin: 14px auto 0;
  max-width: 720px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 15px;
  line-height: 1.8;
}

body.xmdsite-service-list-page .xmdsite-service-scroll {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: #111111 rgba(0, 0, 0, 0.08);
}

body.xmdsite-service-list-page .xmdsite-service-scroll-track {
  display: flex;
  gap: 24px;
  min-width: max-content;
  margin: 0;
  padding: 6px 4px 24px;
  list-style: none;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-item {
  flex: 0 0 280px;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-card {
  display: grid;
  grid-template-rows: 340px minmax(120px, auto);
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-card:hover,
body.xmdsite-service-list-page .xmdsite-service-scroll-card:focus-visible {
  border-color: #111111;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
  outline: none;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-media {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: #1f1f1f;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-media img,
body.xmdsite-service-list-page .xmdsite-service-scroll-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  color: #ffffff;
  font-weight: 700;
  transition: transform 260ms ease, filter 260ms ease;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-card:hover img,
body.xmdsite-service-list-page .xmdsite-service-scroll-card:focus-visible img {
  filter: grayscale(1) contrast(1.04);
  transform: scale(1.045);
}

body.xmdsite-service-list-page .xmdsite-service-scroll-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-body strong {
  color: #111111;
  font-size: 18px;
  line-height: 1.35;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-body span {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(17, 17, 17, 0.64);
  font-size: 13px;
  line-height: 1.75;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

body.xmdsite-service-list-page .xmdsite-partner-pagination {
  margin-top: 28px;
}

@media (max-width: 920px) {
  body.xmdsite-design-home .design-team-slider {
    width: min(760px, calc(100% - 40px));
    height: 330px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 170px;
    height: 280px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 250px;
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll-item {
    flex-basis: 230px;
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll-card {
    grid-template-rows: 280px minmax(108px, auto);
  }
}

@media (max-width: 640px) {
  body.xmdsite-design-home .design-team {
    padding-bottom: 62px;
  }

  body.xmdsite-design-home .design-team-slider {
    width: min(460px, calc(100% - 28px));
    height: 300px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 148px;
    height: 250px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 220px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
    transform: scale(1.08);
  }

  body.xmdsite-service-list-page .xmdsite-partner-showcase {
    padding-top: 38px;
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll {
    width: min(100vw - 20px, 440px);
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll-track {
    gap: 16px;
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll-item {
    flex-basis: 205px;
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll-card {
    grid-template-rows: 240px minmax(104px, auto);
  }

  body.xmdsite-service-list-page .xmdsite-service-scroll-body {
    padding: 18px;
  }
}

/* Home service team: full-row sliding cards. */
body.xmdsite-design-home .design-team {
  padding: 0 0 82px;
  background: #000000;
  overflow: hidden;
}

body.xmdsite-design-home .design-team .design-section-head {
  padding-bottom: 28px;
}

body.xmdsite-design-home .design-team-slider {
  width: min(1240px, calc(100% - 56px));
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}

body.xmdsite-design-home .design-team-slider swiper-slide {
  width: 220px;
  height: auto;
}

body.xmdsite-design-home .design-team-card {
  display: block;
  width: 100%;
  height: auto;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

body.xmdsite-design-home .design-team-card::after {
  display: none;
}

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
  opacity: 0.72;
  transform: none;
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

body.xmdsite-design-home .design-team-card:hover img,
body.xmdsite-design-home .design-team-card:focus-visible img,
body.xmdsite-design-home .design-team-card:hover .design-placeholder,
body.xmdsite-design-home .design-team-card:focus-visible .design-placeholder {
  filter: grayscale(0) contrast(1.04);
  opacity: 1;
  transform: scale(1.1);
}

body.xmdsite-design-home .design-team-card strong,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
  filter: grayscale(0) contrast(1.04);
  opacity: 1;
  transform: scale(1.1);
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card::after {
  opacity: 0;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card .design-placeholder {
  opacity: 0.72;
  transform: scale(1);
}

body.xmdsite-design-home .design-team-slider::part(button-prev),
body.xmdsite-design-home .design-team-slider::part(button-next) {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.56);
}

body.xmdsite-design-home .design-team-slider::part(button-prev) {
  left: 0;
}

body.xmdsite-design-home .design-team-slider::part(button-next) {
  right: 0;
}

@media (max-width: 920px) {
  body.xmdsite-design-home .design-team-slider {
    width: min(760px, calc(100% - 40px));
    height: 330px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 170px;
    height: 280px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 250px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-design-home .design-team {
    padding-bottom: 62px;
  }

  body.xmdsite-design-home .design-team-slider {
    width: min(460px, calc(100% - 28px));
    height: 300px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 148px;
    height: 250px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 220px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
    transform: scale(1.08);
  }
}

@media (max-width: 920px) {
  body.xmdsite-page {
    padding-top: 72px;
  }

  body.xmdsite-page .xmdsite-header {
    min-height: 72px;
  }

  body.xmdsite-page .xmdsite-container.xmdsite-header-inner,
  body.xmdsite-page .xmdsite-header-inner {
    min-height: 72px;
    align-items: center;
    padding-right: 0;
  }

  body.xmdsite-page .xmdsite-brand {
    flex: 1 1 auto;
    min-height: 72px;
    padding-right: 14px;
  }

  body.xmdsite-page .xmdsite-brand-logo {
    max-width: min(270px, calc(100vw - 104px));
    max-height: 50px;
  }

  body.xmdsite-page .xmdsite-nav-toggle {
    display: grid;
  }

  body.xmdsite-page .xmdsite-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    width: auto;
    min-width: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 31, 58, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  body.xmdsite-page .xmdsite-header.is-nav-open .xmdsite-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.xmdsite-page .xmdsite-nav-list {
    display: grid;
    min-height: 0;
    width: 100%;
  }

  body.xmdsite-page .xmdsite-nav-item {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link {
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 22px;
    text-align: left;
  }

  body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link::after {
    right: 22px;
    bottom: 0;
    left: 22px;
  }

  body.xmdsite-page .xmdsite-nav-sublist {
    position: static;
    left: auto;
    width: 100%;
    min-width: 0;
    padding: 6px 0 8px;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  body.xmdsite-page .xmdsite-nav-item:hover .xmdsite-nav-sublist,
  body.xmdsite-page .xmdsite-nav-item:focus-within .xmdsite-nav-sublist,
  body.xmdsite-page .xmdsite-nav-item.is-subnav-open .xmdsite-nav-sublist {
    transform: none;
  }

  body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 22px 0 38px;
    text-align: left;
  }
}

@media (max-width: 520px) {
  body.xmdsite-page .xmdsite-container.xmdsite-header-inner,
  body.xmdsite-page .xmdsite-header-inner {
    padding-left: 14px;
  }

  body.xmdsite-page .xmdsite-brand-logo {
    max-width: min(224px, calc(100vw - 96px));
  }

  body.xmdsite-page .xmdsite-brand-text {
    font-size: 18px;
  }
}

body.xmdsite-page > .xmdsite-hero:first-of-type {
  margin-top: 0;
}

body.xmdsite-page > .xmdsite-hero-has-media:first-of-type .xmdsite-hero-media {
  margin-top: 0;
}

/* Responsive safety layer for H5 and narrow screens. */
html,
body.xmdsite-page {
  max-width: 100%;
  overflow-x: hidden;
}

body.xmdsite-page img,
body.xmdsite-page video,
body.xmdsite-page iframe,
body.xmdsite-page canvas,
body.xmdsite-page svg {
  max-width: 100%;
}

body.xmdsite-page table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}

body.xmdsite-page :where(.xmdsite-section-description, .xmdsite-detail-body, .xmdsite-richtext, .xmdsite-content, .xmdsite-card-summary) {
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.xmdsite-page :where(.xmdsite-section-description, .xmdsite-detail-body, .xmdsite-richtext, .xmdsite-content) :where(table, pre) {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
}

@media (max-width: 920px) {
  body.xmdsite-page {
    padding-top: 64px !important;
  }

  body.xmdsite-page .xmdsite-header {
    min-height: 64px !important;
  }

  body.xmdsite-page .xmdsite-container,
  body.xmdsite-page main.xmdsite-container,
  body.xmdsite-page section .xmdsite-container {
    width: min(100% - 24px, 1180px) !important;
    max-width: calc(100vw - 24px) !important;
  }

  body.xmdsite-page .xmdsite-container.xmdsite-header-inner,
  body.xmdsite-page .xmdsite-header-inner {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 64px !important;
    padding: 0 12px 0 14px !important;
    gap: 8px !important;
  }

  body.xmdsite-page .xmdsite-brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    min-height: 64px !important;
    padding: 0 !important;
  }

  body.xmdsite-page .xmdsite-brand-logo {
    max-width: min(230px, calc(100vw - 88px)) !important;
    max-height: 44px !important;
  }

  body.xmdsite-page .xmdsite-brand-text {
    max-width: calc(100vw - 96px);
    overflow: hidden;
    font-size: 18px !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.xmdsite-page .xmdsite-nav-toggle {
    display: grid !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
  }

  body.xmdsite-page .xmdsite-nav {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: 0 !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: calc(100dvh - 64px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(11, 31, 58, 0.98) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) !important;
  }

  body.xmdsite-page .xmdsite-header.is-nav-open .xmdsite-nav {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  body.xmdsite-page .xmdsite-nav-list {
    display: grid !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 6px 0 !important;
    gap: 0 !important;
  }

  body.xmdsite-page .xmdsite-nav-item {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link,
  body.xmdsite-page .xmdsite-nav-link {
    justify-content: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 46px !important;
    padding: 0 20px !important;
    text-align: left !important;
    white-space: normal !important;
  }

  body.xmdsite-page .xmdsite-nav-sublist {
    position: static !important;
    display: none !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 4px 0 8px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.2) !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  body.xmdsite-page .xmdsite-nav-item.is-subnav-open .xmdsite-nav-sublist {
    display: grid !important;
  }

  body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link {
    min-height: 40px !important;
    padding: 0 20px 0 36px !important;
    font-size: 13px !important;
  }

  body.xmdsite-page :where(.xmdsite-hero, .xmdsite-page-hero) {
    min-height: auto !important;
    margin-top: 0 !important;
  }

  body.xmdsite-page :where(.xmdsite-hero-media, .xmdsite-page-hero .xmdsite-hero-media) {
    margin-top: 0 !important;
  }

  body.xmdsite-page :where(.xmdsite-main, main.xmdsite-container) {
    padding-top: 36px !important;
    padding-bottom: 52px !important;
  }

  body.xmdsite-page :where(.xmdsite-section, .xmdsite-list-section, .xmdsite-detail-layout, .xmdsite-detail-shell, .xmdsite-contact-layout) {
    max-width: 100% !important;
  }

  body.xmdsite-page :where(.xmdsite-detail-layout, .xmdsite-detail-shell, .xmdsite-contact-layout, .xmdsite-hero-search-stack, .xmdsite-footer-inner) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.xmdsite-page :where(.xmdsite-detail-grid, .xmdsite-contact-grid, .xmdsite-form-grid, .xmdsite-product-detail-grid, .xmdsite-article-head > .xmdsite-container) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.xmdsite-page :where(.xmdsite-article, .xmdsite-detail-column, .xmdsite-sidebar, .xmdsite-contact-aside, .xmdsite-section-card, .xmdsite-map-wrap) {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.xmdsite-page .xmdsite-article {
    padding-right: clamp(16px, 4vw, 28px) !important;
    padding-left: clamp(16px, 4vw, 28px) !important;
  }

  body.xmdsite-page :where(.xmdsite-article, .xmdsite-section-description, .xmdsite-contact-summary) :where(img, video, table, iframe) {
    max-width: 100% !important;
  }

  body.xmdsite-page :where(.xmdsite-article, .xmdsite-section-description) :where(table, pre) {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  body.xmdsite-page :where(.xmdsite-grid-news, .xmdsite-grid-case, .xmdsite-grid-event, .xmdsite-grid-service, .xmdsite-grid-document, .xmdsite-grid-about, .xmdsite-function-grid, .xmdsite-recommend-gallery) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.xmdsite-page :where(.xmdsite-gallery-grid, .xmdsite-related-grid, .xmdsite-download-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.xmdsite-page :where(.xmdsite-card-news.is-featured, .xmdsite-card-case.is-featured, .xmdsite-card-document:first-child, .xmdsite-card-document:nth-child(n+2), .xmdsite-card-event:nth-child(2), .xmdsite-card-event:nth-child(3)) {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  body.xmdsite-page :where(.xmdsite-card-news .xmdsite-item-card-link, .xmdsite-card-case .xmdsite-item-card-link, .xmdsite-card-event .xmdsite-item-card-link, .xmdsite-card-about .xmdsite-item-card-link, .xmdsite-card-document .xmdsite-item-card-link) {
    min-height: 0 !important;
  }

  body.xmdsite-page :where(.xmdsite-card-media, .xmdsite-card-case .xmdsite-card-media, .xmdsite-card-event .xmdsite-card-media, .xmdsite-card-about .xmdsite-card-media, .xmdsite-card-document .xmdsite-card-media) {
    min-height: 0 !important;
    aspect-ratio: 16 / 10 !important;
  }

  body.xmdsite-page :where(.xmdsite-section-title, .xmdsite-page-title, h1) {
    font-size: clamp(28px, 7vw, 40px) !important;
    line-height: 1.18 !important;
  }

  body.xmdsite-page :where(.xmdsite-product-section-title, h2) {
    font-size: clamp(23px, 5.8vw, 32px) !important;
    line-height: 1.25 !important;
  }

  body.xmdsite-page :where(.xmdsite-search-form, .xmdsite-title-search-form, .xmdsite-home-search-form) {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.xmdsite-page :where(.xmdsite-category-list, .xmdsite-breadcrumb-list, .xmdsite-recommend-tabs, .xmdsite-pagination-actions) {
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  body.xmdsite-page .xmdsite-pagination {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: stretch !important;
    gap: 12px !important;
  }

  body.xmdsite-page .xmdsite-pagination-actions {
    display: flex !important;
    justify-content: flex-start !important;
  }

  body.xmdsite-page .xmdsite-footer-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-page .xmdsite-container,
  body.xmdsite-page main.xmdsite-container,
  body.xmdsite-page section .xmdsite-container {
    width: min(100% - 20px, 1180px) !important;
    max-width: calc(100vw - 20px) !important;
  }

  body.xmdsite-page :where(.xmdsite-grid-news, .xmdsite-grid-case, .xmdsite-grid-event, .xmdsite-grid-service, .xmdsite-grid-document, .xmdsite-grid-about, .xmdsite-function-grid, .xmdsite-recommend-gallery) {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.xmdsite-page :where(.xmdsite-gallery-grid, .xmdsite-related-grid, .xmdsite-download-grid) {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.xmdsite-page .xmdsite-article {
    padding: 20px 16px !important;
  }

  body.xmdsite-page :where(.xmdsite-detail-tabs, .xmdsite-contact-inner, .xmdsite-section-card) {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  body.xmdsite-page :where(.xmdsite-section-news, .xmdsite-section-case, .xmdsite-section-event, .xmdsite-section-service, .xmdsite-section-document, .xmdsite-section-about, .xmdsite-section-product) {
    padding-right: 12px !important;
    padding-left: 12px !important;
    border-radius: 18px !important;
  }

  body.xmdsite-page :where(.xmdsite-card-body, .xmdsite-card-document:first-child .xmdsite-card-body, .xmdsite-card-event:not(.is-featured) .xmdsite-card-body) {
    padding: 18px !important;
  }

  body.xmdsite-page :where(.xmdsite-card-media, .xmdsite-recommend-stage-media, .xmdsite-recommend-stage-media img, .xmdsite-recommend-stage-media .xmdsite-card-placeholder) {
    min-height: 0 !important;
  }

  body.xmdsite-page .xmdsite-recommend-stage {
    min-height: 230px !important;
  }

  body.xmdsite-page .xmdsite-recommend-thumb a {
    grid-template-columns: minmax(96px, 34%) minmax(0, 1fr) !important;
  }

  body.xmdsite-page :where(.xmdsite-footer-inner, .xmdsite-footer-bottom-inner) {
    text-align: left !important;
  }

  body.xmdsite-page .xmdsite-footer-list {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 420px) {
  body.xmdsite-page .xmdsite-brand-logo {
    max-width: min(190px, calc(100vw - 82px)) !important;
  }

  body.xmdsite-page :where(.xmdsite-search-field, .xmdsite-title-search-form, .xmdsite-home-search-form) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.xmdsite-page .xmdsite-search-submit {
    width: 100% !important;
  }
}

/* News list must stay as one horizontal article row per item. */
body.xmdsite-news-list-page .xmdsite-list-section {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-item-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 22px !important;
  width: 100% !important;
  max-width: 100% !important;
  border-top: 0 !important;
}

body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-item-card {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: 0 !important;
}

body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-item-card-link {
  display: grid !important;
  grid-template-columns: 128px minmax(0, 1fr) 270px !important;
  align-items: center !important;
  gap: 34px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 168px !important;
  padding: 30px 0 !important;
}

body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-date-box {
  align-self: stretch !important;
  min-height: 148px !important;
  writing-mode: horizontal-tb !important;
}

body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-card-body {
  display: grid !important;
  min-width: 0 !important;
  width: auto !important;
  writing-mode: horizontal-tb !important;
}

body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-card-title,
body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-card-summary,
body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-card-meta {
  max-width: 100% !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  writing-mode: horizontal-tb !important;
  white-space: normal !important;
}

body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-card-media {
  width: 100% !important;
  max-width: 270px !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
}

@media (max-width: 960px) {
  body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-item-card-link {
    grid-template-columns: 112px minmax(0, 1fr) 220px !important;
    gap: 28px !important;
  }

  body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-card-media {
    max-width: 220px !important;
  }
}

@media (max-width: 640px) {
  body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-item-card-link {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    min-height: 0 !important;
    padding: 26px 0 !important;
  }

  body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-date-box {
    align-self: auto !important;
    min-height: 0 !important;
  }

  body.xmdsite-news-list-page .xmdsite-list-section .xmdsite-card-media {
    max-width: 100% !important;
  }
}

/* Service list page styles moved from model-list-service.html. */
body.xmdsite-service-list-page {
      --xmdsite-accent: #2563eb;
      --xmdsite-accent-hover: #2563eb;
      --xmdsite-accent-soft: #eff6ff;
      --xmdsite-bg: #ffffff;
      --xmdsite-border: rgba(17, 24, 39, 0.1);
      --xmdsite-border-strong: rgba(17, 24, 39, 0.16);
      --xmdsite-ink: #111827;
      --xmdsite-muted: rgba(17, 24, 39, 0.68);
      --xmdsite-soft: rgba(17, 24, 39, 0.5);
      --xmdsite-surface: #ffffff;
      --xmdsite-surface-soft: #f2f4f7;
      --xmdsite-footer: #101319;
      --xmdsite-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
      --xmdsite-shadow-hover: 0 20px 44px rgba(17, 24, 39, 0.12);
      --xmdsite-radius: 8px;
      color-scheme: light;
    }

    body.xmdsite-service-list-page * {
      box-sizing: border-box;
    }

    body.xmdsite-service-list-page {
      margin: 0;
      background:
        linear-gradient(180deg, #ffffff 0%, var(--xmdsite-bg) 48%, #ffffff 100%);
      color: var(--xmdsite-ink);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.xmdsite-service-list-page a {
      color: inherit;
      text-decoration: none;
    }

    body.xmdsite-service-list-page img,
    body.xmdsite-service-list-page video {
      display: block;
      max-width: 100%;
    }

    body.xmdsite-service-list-page .xmdsite-container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    body.xmdsite-service-list-page .xmdsite-nav-list,
    body.xmdsite-service-list-page .xmdsite-nav-sublist,
    body.xmdsite-service-list-page .xmdsite-breadcrumb-list,
    body.xmdsite-service-list-page .xmdsite-category-list,
    body.xmdsite-service-list-page .xmdsite-item-grid,
    body.xmdsite-service-list-page .xmdsite-footer-list,
    body.xmdsite-service-list-page .xmdsite-footer-sublist {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    body.xmdsite-service-list-page .xmdsite-page-hero {
      position: relative;
      min-height: 360px;
      overflow: hidden;
      border-bottom: 1px solid var(--xmdsite-border-strong);
      background:
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 56%, #eef2f7 100%);
    }

    body.xmdsite-service-list-page .xmdsite-page-hero-has-media {
      min-height: 0;
      background: #ffffff;
    }

    body.xmdsite-service-list-page .xmdsite-hero-media {
      position: relative;
      z-index: 0;
      overflow: hidden;
      background: #111827;
    }

    body.xmdsite-service-list-page .xmdsite-hero-image-list,
    body.xmdsite-service-list-page .xmdsite-hero-image-item,
    body.xmdsite-service-list-page .xmdsite-hero-image-link {
      display: block;
      width: 100%;
    }

    body.xmdsite-service-list-page .xmdsite-hero-image-list {
      --swiper-pagination-bottom: 18px;
      --swiper-pagination-bullet-horizontal-gap: 5px;
      --swiper-pagination-bullet-border-radius: 999px;
      --swiper-pagination-bullet-height: 6px;
      --swiper-pagination-bullet-inactive-color: rgba(17, 24, 39, 0.48);
      --swiper-pagination-bullet-inactive-opacity: 1;
      --swiper-pagination-bullet-size: 8px;
      --swiper-pagination-bullet-width: 24px;
      --swiper-pagination-color: var(--xmdsite-accent);
      cursor: grab;
    }

    body.xmdsite-service-list-page .xmdsite-hero-image-list:not(:defined) {
      overflow: hidden;
    }

    body.xmdsite-service-list-page .xmdsite-hero-image-list:not(:defined) .xmdsite-hero-slide:not(:first-child) {
      display: none;
    }

    body.xmdsite-service-list-page .xmdsite-hero-image-list:active {
      cursor: grabbing;
    }

    body.xmdsite-service-list-page .xmdsite-hero-slide {
      display: block;
      height: auto;
      overflow: hidden;
    }

    body.xmdsite-service-list-page .xmdsite-hero-media-content {
      display: block;
      width: 100%;
      height: auto;
      user-select: none;
      -webkit-user-drag: none;
    }

    body.xmdsite-service-list-page .xmdsite-hero-image-link {
      user-select: none;
      -webkit-user-drag: none;
    }

    body.xmdsite-service-list-page .xmdsite-hero-file {
      display: grid;
      place-items: center;
      min-height: 240px;
      padding: 32px;
      background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
      color: var(--xmdsite-ink);
      font-weight: 700;
      text-align: center;
    }

    body.xmdsite-service-list-page .xmdsite-page-hero-content {
      position: relative;
      z-index: 1;
      display: grid;
      align-content: end;
      min-height: inherit;
      padding: 78px 0 64px;
      animation: xmdsite-fade-up 560ms ease both;
    }

    body.xmdsite-service-list-page .xmdsite-page-hero-has-media .xmdsite-page-hero-content {
      align-content: start;
      min-height: 0;
      padding: 40px 0 48px;
    }

    body.xmdsite-service-list-page .xmdsite-eyebrow {
      margin: 0 0 14px;
      color: var(--xmdsite-accent);
      font-size: 13px;
      font-weight: 700;
    }

    body.xmdsite-service-list-page .xmdsite-page-title {
      margin: 0;
      max-width: 820px;
      font-size: 44px;
      font-weight: 800;
      line-height: 1.08;
    }

    body.xmdsite-service-list-page .xmdsite-page-title-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      width: 100%;
    }

    body.xmdsite-service-list-page .xmdsite-page-title-row .xmdsite-page-title {
      flex: 1 1 auto;
      min-width: 0;
    }

    body.xmdsite-service-list-page .xmdsite-section-description {
      margin: 18px 0 0;
      max-width: 720px;
      color: var(--xmdsite-muted);
      font-size: 16px;
      line-height: 1.9;
    }

    body.xmdsite-service-list-page .xmdsite-sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
    }

    body.xmdsite-service-list-page .xmdsite-main {
      display: grid;
      gap: 32px;
      padding: 36px 0 88px;
    }

    body.xmdsite-service-list-page .xmdsite-list-toolbar + .xmdsite-main {
      padding-top: 48px;
    }

    body.xmdsite-service-list-page .xmdsite-breadcrumb {
      animation: xmdsite-fade-up 520ms ease both;
    }

    body.xmdsite-service-list-page .xmdsite-breadcrumb-list {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 8px;
      color: var(--xmdsite-soft);
      font-size: 14px;
      overflow: hidden;
      white-space: nowrap;
    }

    body.xmdsite-service-list-page .xmdsite-breadcrumb-item {
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      gap: 8px;
      min-width: 0;
    }

    body.xmdsite-service-list-page .xmdsite-breadcrumb-current-item {
      flex: 1 1 auto;
      overflow: hidden;
    }

    body.xmdsite-service-list-page .xmdsite-breadcrumb-item + .xmdsite-breadcrumb-item::before {
      color: rgba(17, 24, 39, 0.28);
      content: "/";
    }

    body.xmdsite-service-list-page .xmdsite-breadcrumb-link {
      color: var(--xmdsite-muted);
      transition: color 180ms ease;
    }

    body.xmdsite-service-list-page .xmdsite-breadcrumb-link:hover,
    body.xmdsite-service-list-page .xmdsite-breadcrumb-link:focus-visible {
      color: var(--xmdsite-accent);
      outline: none;
    }

    body.xmdsite-service-list-page .xmdsite-breadcrumb-current {
      display: block;
      flex: 1 1 auto;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    body.xmdsite-service-list-page .xmdsite-category-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      animation: xmdsite-fade-up 520ms ease both;
      animation-delay: 40ms;
    }

    body.xmdsite-service-list-page .xmdsite-category-link {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      border: 1px solid var(--xmdsite-border);
      border-radius: var(--xmdsite-radius);
      padding: 0 14px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--xmdsite-muted);
      font-size: 14px;
      font-weight: 650;
      transition:
        border-color 180ms ease,
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
    }

    body.xmdsite-service-list-page .xmdsite-category-link:hover,
    body.xmdsite-service-list-page .xmdsite-category-link:focus-visible {
      border-color: rgba(37, 99, 235, 0.28);
      background: var(--xmdsite-accent-soft);
      color: var(--xmdsite-accent-hover);
      outline: none;
      transform: translateY(-1px);
    }

    body.xmdsite-service-list-page .xmdsite-category-link.is-active {
      border-color: rgba(37, 99, 235, 0.34);
      background: var(--xmdsite-accent-soft);
      color: var(--xmdsite-accent-hover);
    }

    body.xmdsite-service-list-page .xmdsite-list-toolbar {
      border-bottom: 1px solid rgba(17, 24, 39, 0.08);
      background: #ffffff;
    }

    body.xmdsite-service-list-page .xmdsite-list-toolbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      min-height: 64px;
    }

    body.xmdsite-service-list-page .xmdsite-list-toolbar .xmdsite-breadcrumb {
      flex: 1 1 auto;
      min-width: 0;
    }

    body.xmdsite-service-list-page .xmdsite-search-form {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 0;
      width: 100%;
    }

    body.xmdsite-service-list-page .xmdsite-title-search-form {
      flex: 0 0 auto;
      width: auto;
      max-width: 100%;
      min-height: 36px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    body.xmdsite-service-list-page .xmdsite-search-label {
      position: relative;
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      width: auto;
      height: 36px;
      margin: 0 12px 0 0;
      padding-left: 22px;
      overflow: visible;
      color: #1f2937;
      font-size: 14px;
      line-height: 1;
      white-space: nowrap;
    }

    body.xmdsite-service-list-page .xmdsite-search-label::before {
      position: absolute;
      top: 50%;
      left: 0;
      width: 13px;
      height: 13px;
      border: 1.8px solid currentColor;
      border-radius: 999px;
      box-sizing: border-box;
      content: "";
      transform: translateY(-58%);
    }

    body.xmdsite-service-list-page .xmdsite-search-label::after {
      position: absolute;
      top: 50%;
      left: 12px;
      width: 7px;
      height: 1.8px;
      background: currentColor;
      border-radius: 999px;
      content: "";
      transform: translateY(4px) rotate(45deg);
      transform-origin: left center;
    }

    body.xmdsite-service-list-page .xmdsite-search-field {
      flex: 0 0 180px;
      min-width: 0;
    }

    body.xmdsite-service-list-page .xmdsite-search-input {
      width: 100%;
      min-height: 36px;
      border: 1px solid #d5dbe5;
      border-right: 0;
      border-radius: 14px 0 0 14px;
      background: #ffffff;
      color: var(--xmdsite-ink);
      font: inherit;
      font-size: 13px;
      padding: 0 14px;
      outline: none;
    }

    body.xmdsite-service-list-page .xmdsite-search-input::placeholder {
      color: #9ca3af;
    }

    body.xmdsite-service-list-page .xmdsite-title-search-form:focus-within .xmdsite-search-input {
      border-color: rgba(37, 99, 235, 0.58);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    }

    body.xmdsite-service-list-page .xmdsite-search-submit {
      display: inline-flex;
      flex: 0 0 62px;
      align-items: center;
      justify-content: center;
      min-width: 62px;
      min-height: 36px;
      border: 0;
      border-radius: 0 14px 14px 0;
      background: #2563eb;
      color: #ffffff;
      cursor: pointer;
      font: inherit;
      font-size: 13px;
      font-weight: 700;
      line-height: 1;
      padding: 0 16px;
      white-space: nowrap;
      transition:
        background-color 180ms ease,
        transform 180ms ease;
    }

    body.xmdsite-service-list-page .xmdsite-search-submit:hover,
    body.xmdsite-service-list-page .xmdsite-search-submit:focus-visible {
      background: #2563eb;
      outline: none;
      transform: translateY(-1px);
    }

    body.xmdsite-service-list-page .xmdsite-list-section {
      animation: xmdsite-fade-up 560ms ease both;
      animation-delay: 80ms;
    }

    body.xmdsite-service-list-page .xmdsite-item-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    body.xmdsite-service-list-page .xmdsite-item-card-link {
      display: grid;
      height: 100%;
      overflow: hidden;
      border: 1px solid var(--xmdsite-border);
      border-radius: var(--xmdsite-radius);
      background: var(--xmdsite-surface);
      box-shadow: var(--xmdsite-shadow);
      transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
    }

    body.xmdsite-service-list-page .xmdsite-item-card-link:hover,
    body.xmdsite-service-list-page .xmdsite-item-card-link:focus-visible {
      border-color: rgba(37, 99, 235, 0.28);
      box-shadow: var(--xmdsite-shadow-hover);
      outline: none;
      transform: translateY(-4px);
    }

    body.xmdsite-service-list-page .xmdsite-card-media {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--xmdsite-surface-soft);
    }

    body.xmdsite-service-list-page .xmdsite-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 520ms ease;
    }

    body.xmdsite-service-list-page .xmdsite-item-card-link:hover .xmdsite-card-media img,
    body.xmdsite-service-list-page .xmdsite-item-card-link:focus-visible .xmdsite-card-media img {
      transform: scale(1.035);
    }

    body.xmdsite-service-list-page .xmdsite-card-placeholder {
      display: grid;
      place-items: center;
      height: 100%;
      padding: 24px;
      background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
      color: var(--xmdsite-soft);
      font-size: 13px;
      font-weight: 700;
    }

    body.xmdsite-service-list-page .xmdsite-card-body {
      display: grid;
      align-content: start;
      gap: 10px;
      padding: 18px;
    }

    body.xmdsite-service-list-page .xmdsite-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      color: var(--xmdsite-soft);
      font-size: 13px;
    }

    body.xmdsite-service-list-page .xmdsite-card-title {
      margin: 0;
      font-size: 19px;
      line-height: 1.42;
    }

    body.xmdsite-service-list-page .xmdsite-card-summary {
      display: -webkit-box;
      overflow: hidden;
      margin: 0;
      color: var(--xmdsite-muted);
      font-size: 14px;
      line-height: 1.8;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    body.xmdsite-service-list-page .xmdsite-pagination {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-top: 1px solid var(--xmdsite-border);
      padding-top: 24px;
      animation: xmdsite-fade-up 560ms ease both;
      animation-delay: 120ms;
    }

    body.xmdsite-service-list-page .xmdsite-pagination-status {
      color: var(--xmdsite-muted);
      font-size: 14px;
    }

    body.xmdsite-service-list-page .xmdsite-pagination-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    body.xmdsite-service-list-page .xmdsite-pagination-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      border: 1px solid var(--xmdsite-border);
      border-radius: var(--xmdsite-radius);
      padding: 0 16px;
      background: var(--xmdsite-surface);
      color: var(--xmdsite-ink);
      font-size: 14px;
      font-weight: 700;
      overflow: hidden;
      box-shadow: 0 8px 18px rgba(17, 24, 39, 0.04);
      transition:
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        transform 180ms ease;
    }

    body.xmdsite-service-list-page .xmdsite-pagination-link::after {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.08));
      content: "";
      opacity: 0;
      transition: opacity 180ms ease;
    }

    body.xmdsite-service-list-page .xmdsite-pagination-link span,
    body.xmdsite-service-list-page .xmdsite-pagination-link svg {
      position: relative;
      z-index: 1;
    }

    body.xmdsite-service-list-page .xmdsite-pagination-link:hover,
    body.xmdsite-service-list-page .xmdsite-pagination-link:focus-visible,
    body.xmdsite-service-list-page .xmdsite-pagination-link.is-active {
      border-color: rgba(37, 99, 235, 0.62);
      background: rgba(37, 99, 235, 0.12);
      color: #2563eb;
      outline: none;
      box-shadow: 0 12px 26px rgba(37, 99, 235, 0.2);
      transform: translateY(-2px);
    }

    body.xmdsite-service-list-page .xmdsite-pagination-link:hover::after,
    body.xmdsite-service-list-page .xmdsite-pagination-link:focus-visible::after,
    body.xmdsite-service-list-page .xmdsite-pagination-link.is-active::after {
      opacity: 1;
    }

    body.xmdsite-service-list-page .xmdsite-pagination-link:active {
      border-color: #2563eb;
      background: #2563eb;
      color: #fff;
      box-shadow: 0 6px 14px rgba(37, 99, 235, 0.28);
      transform: translateY(0) scale(0.98);
    }

    body.xmdsite-service-list-page .xmdsite-pagination-link:active::after {
      opacity: 0;
    }

    body.xmdsite-service-list-page .xmdsite-empty-state {
      border: 1px dashed var(--xmdsite-border-strong);
      border-radius: var(--xmdsite-radius);
      background: rgba(255, 255, 255, 0.74);
      padding: 44px 24px;
      text-align: center;
    }

    body.xmdsite-service-list-page .xmdsite-empty-state h2 {
      margin: 0;
      font-size: 24px;
    }

    body.xmdsite-service-list-page .xmdsite-empty-state p {
      margin: 12px auto 0;
      max-width: 620px;
      color: var(--xmdsite-muted);
    }

    body.xmdsite-service-list-page .xmdsite-footer {
      background: var(--xmdsite-footer);
      color: rgba(255, 255, 255, 0.82);
    }

    body.xmdsite-service-list-page .xmdsite-footer-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 280px;
      gap: 48px;
      padding: 48px 0;
    }

    body.xmdsite-service-list-page .xmdsite-footer-brand {
      margin: 0 0 22px;
      color: #ffffff;
      font-size: 20px;
      font-weight: 800;
    }

    body.xmdsite-service-list-page .xmdsite-footer-list {
      display: flex;
      flex-wrap: wrap;
      gap: 28px 48px;
    }

    body.xmdsite-service-list-page .xmdsite-footer-item {
      min-width: 120px;
    }

    body.xmdsite-service-list-page .xmdsite-footer-link {
      color: rgba(255, 255, 255, 0.84);
      font-size: 14px;
      font-weight: 700;
      transition: color 180ms ease;
    }

    body.xmdsite-service-list-page .xmdsite-footer-link:hover,
    body.xmdsite-service-list-page .xmdsite-footer-link:focus-visible {
      color: #ffffff;
      outline: none;
    }

    body.xmdsite-service-list-page .xmdsite-footer-sublist {
      display: grid;
      gap: 8px;
      margin-top: 12px;
    }

    body.xmdsite-service-list-page .xmdsite-footer-sublist .xmdsite-footer-link {
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
    }

    body.xmdsite-service-list-page .xmdsite-footer-aside {
      display: grid;
      align-content: start;
      gap: 14px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 14px;
      line-height: 1.8;
    }

    body.xmdsite-service-list-page .xmdsite-footer-qrcode {
      width: 96px;
      height: 96px;
      border-radius: var(--xmdsite-radius);
      object-fit: cover;
    }

    body.xmdsite-service-list-page .xmdsite-footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 18px 0;
      color: rgba(255, 255, 255, 0.5);
      font-size: 13px;
    }

    body.xmdsite-service-list-page .xmdsite-footer-bottom-inner {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 20px;
      justify-content: center;
    }

    body.xmdsite-service-list-page .xmdsite-footer-icp {
      color: inherit;
      text-decoration: none;
      transition: color 180ms ease;
    }

    body.xmdsite-service-list-page .xmdsite-footer-icp:hover,
    body.xmdsite-service-list-page .xmdsite-footer-icp:focus-visible {
      color: rgba(255, 255, 255, 0.82);
      outline: none;
    }

    @keyframes xmdsite-fade-up {
      from {
        opacity: 0;
        transform: translateY(14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 960px) {
      body.xmdsite-service-list-page .xmdsite-page-title {
        font-size: 38px;
      }

      body.xmdsite-service-list-page .xmdsite-item-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      body.xmdsite-service-list-page .xmdsite-footer-inner {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      body.xmdsite-service-list-page .xmdsite-container {
        width: min(100% - 24px, 1180px);
      }

      body.xmdsite-service-list-page .xmdsite-page-hero {
        min-height: 360px;
      }

      body.xmdsite-service-list-page .xmdsite-page-hero-has-media {
        min-height: 0;
      }

      body.xmdsite-service-list-page .xmdsite-page-hero-content {
        padding: 58px 0 48px;
      }

      body.xmdsite-service-list-page .xmdsite-page-hero-has-media .xmdsite-page-hero-content {
        padding: 28px 0 38px;
      }

      body.xmdsite-service-list-page .xmdsite-page-title {
        font-size: 32px;
      }

      body.xmdsite-service-list-page .xmdsite-section-description {
        font-size: 15px;
      }

      body.xmdsite-service-list-page .xmdsite-main {
        padding: 28px 0 64px;
      }

      body.xmdsite-service-list-page .xmdsite-page-title-row {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
      }

      body.xmdsite-service-list-page .xmdsite-list-toolbar-inner {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding-top: 14px;
        padding-bottom: 14px;
      }

      body.xmdsite-service-list-page .xmdsite-title-search-form {
        flex-basis: auto;
        width: 100%;
      }

      body.xmdsite-service-list-page .xmdsite-search-label {
        margin-right: 10px;
      }

      body.xmdsite-service-list-page .xmdsite-search-field {
        flex: 1 1 auto;
      }

      body.xmdsite-service-list-page .xmdsite-search-submit {
        flex: 0 0 62px;
        min-width: 62px;
      }

      body.xmdsite-service-list-page .xmdsite-item-grid {
        grid-template-columns: 1fr;
      }

      body.xmdsite-service-list-page .xmdsite-pagination {
        align-items: flex-start;
        flex-direction: column;
      }

      body.xmdsite-service-list-page .xmdsite-footer-list {
        display: grid;
        grid-template-columns: 1fr;
      }
    }


    /* Cooperation partner diamond mosaic */
    body.xmdsite-service-list-page .xmdsite-partner-showcase {
      padding: 4px 0 18px;
      text-align: center;
    }

    body.xmdsite-service-list-page .xmdsite-partner-section-head {
      margin: 0 auto 8px;
      animation: xmdsite-fade-up 560ms ease both;
    }

    body.xmdsite-service-list-page .xmdsite-partner-title {
      margin: 0;
      color: #1f2329;
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 900;
      letter-spacing: 0.02em;
      line-height: 1.18;
    }

    body.xmdsite-service-list-page .xmdsite-partner-subtitle {
      margin: 14px 0 0;
      color: rgba(31, 35, 41, 0.78);
      font-size: clamp(14px, 1.7vw, 17px);
      letter-spacing: 0.08em;
    }

    body.xmdsite-service-list-page .xmdsite-partner-board {
      --xmdsite-partner-tile: 118px;
      --xmdsite-partner-center: 152px;
      position: relative;
      width: min(1040px, 100%);
      height: 500px;
      margin: 58px auto 4px;
    }

    body.xmdsite-service-list-page .xmdsite-partner-mosaic {
      position: absolute;
      inset: 0;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    body.xmdsite-service-list-page .xmdsite-partner-center,
    body.xmdsite-service-list-page .xmdsite-partner-button {
      position: absolute;
      left: 50%;
      top: 50%;
      display: grid;
      place-items: center;
      transform: translate(-50%, -50%) rotate(45deg);
      transform-origin: center;
    }

    body.xmdsite-service-list-page .xmdsite-partner-center {
      z-index: 3;
      width: var(--xmdsite-partner-center);
      height: var(--xmdsite-partner-center);
      border: 0;
      background: linear-gradient(135deg, #2563eb 0%, #2563eb 100%);
      color: #ffffff;
      box-shadow: 0 18px 34px rgba(0, 111, 184, 0.24);
    }

    body.xmdsite-service-list-page .xmdsite-partner-center span,
    body.xmdsite-service-list-page .xmdsite-partner-button-inner {
      display: grid;
      place-items: center;
      width: 100%;
      height: 100%;
      transform: rotate(-45deg);
    }

    body.xmdsite-service-list-page .xmdsite-partner-center strong {
      display: block;
      font-size: 30px;
      font-weight: 900;
      letter-spacing: 0.08em;
      line-height: 1.15;
      white-space: nowrap;
    }

    body.xmdsite-service-list-page .xmdsite-partner-center em {
      display: block;
      margin-top: 4px;
      font-size: 17px;
      font-style: normal;
      font-weight: 500;
      letter-spacing: 0.02em;
      line-height: 1.2;
      white-space: nowrap;
    }

    body.xmdsite-service-list-page .xmdsite-partner-node {
      display: block;
    }

    body.xmdsite-service-list-page .xmdsite-partner-button {
      z-index: 1;
      width: var(--xmdsite-partner-tile);
      height: var(--xmdsite-partner-tile);
      border: 1px solid rgba(229, 233, 239, 0.95);
      background: #ffffff;
      color: #1f2937;
      cursor: pointer;
      padding: 0;
      box-shadow: 0 8px 26px rgba(31, 41, 55, 0.11);
      transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
    }

    body.xmdsite-service-list-page .xmdsite-partner-button::before {
      position: absolute;
      inset: 8px;
      border: 1px solid rgba(255, 255, 255, 0.72);
      content: "";
      pointer-events: none;
    }

    body.xmdsite-service-list-page .xmdsite-partner-button:hover,
    body.xmdsite-service-list-page .xmdsite-partner-button:focus-visible,
    body.xmdsite-service-list-page .xmdsite-partner-button.is-active {
      z-index: 2;
      border-color: rgba(0, 126, 202, 0.62);
      background: #f4fbff;
      box-shadow: 0 16px 34px rgba(0, 111, 184, 0.2);
      outline: none;
      transform: translate(-50%, -50%) rotate(45deg) scale(1.045);
    }

    body.xmdsite-service-list-page .xmdsite-partner-button.is-active::after {
      position: absolute;
      inset: -5px;
      border: 2px solid rgba(0, 126, 202, 0.58);
      content: "";
      pointer-events: none;
    }

    body.xmdsite-service-list-page .xmdsite-partner-logo {
      display: block;
      width: auto;
      max-width: 78%;
      max-height: 58px;
      object-fit: contain;
    }

    body.xmdsite-service-list-page .xmdsite-partner-name {
      display: block;
      max-width: 82%;
      color: #0f172a;
      font-size: 16px;
      font-weight: 800;
      line-height: 1.35;
      overflow-wrap: anywhere;
      text-align: center;
    }

    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(1) .xmdsite-partner-button { left: 12%; top: 50%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(2) .xmdsite-partner-button { left: 22%; top: 34%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(3) .xmdsite-partner-button { left: 22%; top: 66%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(4) .xmdsite-partner-button { left: 32%; top: 18%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(5) .xmdsite-partner-button { left: 32%; top: 50%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(6) .xmdsite-partner-button { left: 32%; top: 82%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(7) .xmdsite-partner-button { left: 68%; top: 18%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(8) .xmdsite-partner-button { left: 68%; top: 82%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(9) .xmdsite-partner-button { left: 78%; top: 34%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(10) .xmdsite-partner-button { left: 78%; top: 66%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(11) .xmdsite-partner-button { left: 88%; top: 50%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(12) .xmdsite-partner-button { left: 50%; top: 18%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(13) .xmdsite-partner-button { left: 50%; top: 82%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(14) .xmdsite-partner-button { left: 12%; top: 72%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(15) .xmdsite-partner-button { left: 88%; top: 72%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(16) .xmdsite-partner-button { left: 12%; top: 28%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(17) .xmdsite-partner-button { left: 88%; top: 28%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(18) .xmdsite-partner-button { left: 50%; top: 6%; }

    @media (max-width: 920px) {
      body.xmdsite-service-list-page .xmdsite-partner-board {
        --xmdsite-partner-tile: 96px;
        --xmdsite-partner-center: 126px;
        height: 430px;
        margin-top: 46px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-center strong {
        font-size: 24px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-center em {
        font-size: 14px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-logo {
        max-height: 48px;
      }
    }

    @media (max-width: 640px) {
      body.xmdsite-service-list-page .xmdsite-partner-showcase {
        padding-top: 0;
      }

      body.xmdsite-service-list-page .xmdsite-partner-subtitle {
        letter-spacing: 0.03em;
      }

      body.xmdsite-service-list-page .xmdsite-partner-board {
        display: grid;
        gap: 34px;
        height: auto;
        margin-top: 34px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-center {
        position: relative;
        left: auto;
        top: auto;
        justify-self: center;
        transform: rotate(45deg);
      }

      body.xmdsite-service-list-page .xmdsite-partner-mosaic {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 10px;
        justify-items: center;
      }

      body.xmdsite-service-list-page .xmdsite-partner-button,
      body.xmdsite-service-list-page .xmdsite-partner-button:hover,
      body.xmdsite-service-list-page .xmdsite-partner-button:focus-visible,
      body.xmdsite-service-list-page .xmdsite-partner-button.is-active {
        position: relative;
        left: auto !important;
        top: auto !important;
        transform: rotate(45deg);
      }

      body.xmdsite-service-list-page .xmdsite-partner-button:hover,
      body.xmdsite-service-list-page .xmdsite-partner-button:focus-visible,
      body.xmdsite-service-list-page .xmdsite-partner-button.is-active {
        transform: rotate(45deg) scale(1.045);
      }
    }

    @media (max-width: 420px) {
      body.xmdsite-service-list-page .xmdsite-partner-board {
        --xmdsite-partner-tile: 88px;
        --xmdsite-partner-center: 116px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-center strong {
        font-size: 21px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-center em {
        font-size: 12px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-logo {
        max-height: 42px;
      }
    }


    /* Partner section visual update to match the provided diamond wall style */
    body.xmdsite-service-list-page .xmdsite-partner-showcase {
      padding: 58px 0 76px;
      text-align: center;
      background: #ffffff;
    }

    body.xmdsite-service-list-page .xmdsite-partner-section-head {
      max-width: 860px;
      margin: 0 auto 0;
    }

    body.xmdsite-service-list-page .xmdsite-partner-title {
      color: #202124;
      font-size: clamp(30px, 3.5vw, 40px);
      font-weight: 900;
      letter-spacing: 0.01em;
      line-height: 1.12;
    }

    body.xmdsite-service-list-page .xmdsite-partner-subtitle {
      margin-top: 12px;
      color: #333840;
      font-size: clamp(13px, 1.3vw, 16px);
      letter-spacing: 0.06em;
    }

    body.xmdsite-service-list-page .xmdsite-partner-intro {
      max-width: 780px;
      margin: 20px auto 0;
      color: rgba(51, 56, 64, 0.82);
      font-size: clamp(14px, 1.35vw, 16px);
      line-height: 1.9;
      letter-spacing: 0.03em;
    }

    body.xmdsite-service-list-page .xmdsite-partner-stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 18px;
      margin: 24px auto 0;
      padding: 0;
      list-style: none;
    }

    body.xmdsite-service-list-page .xmdsite-partner-stat {
      min-width: 132px;
      padding: 12px 18px;
      border: 1px solid rgba(0, 117, 190, 0.12);
      background: rgba(247, 251, 255, 0.88);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    }

    body.xmdsite-service-list-page .xmdsite-partner-stat strong,
    body.xmdsite-service-list-page .xmdsite-partner-stat span {
      display: block;
    }

    body.xmdsite-service-list-page .xmdsite-partner-stat strong {
      color: #2563eb;
      font-size: 22px;
      font-weight: 900;
      line-height: 1.15;
    }

    body.xmdsite-service-list-page .xmdsite-partner-stat span {
      margin-top: 4px;
      color: rgba(31, 35, 41, 0.72);
      font-size: 13px;
      line-height: 1.35;
    }

    body.xmdsite-service-list-page .xmdsite-partner-board {
      --xmdsite-partner-tile: 108px;
      --xmdsite-partner-center: 178px;
      width: min(930px, 100%);
      height: 410px;
      margin: 66px auto 0;
    }

    body.xmdsite-service-list-page .xmdsite-partner-center {
      background: #2563eb;
      box-shadow: 0 18px 34px rgba(0, 106, 180, 0.22);
    }

    body.xmdsite-service-list-page .xmdsite-partner-center strong {
      font-size: 34px;
      letter-spacing: 0.04em;
      line-height: 1.06;
    }

    body.xmdsite-service-list-page .xmdsite-partner-center em {
      margin-top: 7px;
      font-size: 16px;
      letter-spacing: 0;
    }

    body.xmdsite-service-list-page .xmdsite-partner-button {
      border-color: rgba(236, 239, 244, 0.96);
      background: #fff;
      box-shadow: 0 9px 24px rgba(31, 41, 55, 0.12);
    }

    body.xmdsite-service-list-page .xmdsite-partner-button::before {
      inset: 7px;
      border-color: rgba(255, 255, 255, 0.9);
      box-shadow: inset 0 0 0 1px rgba(240, 243, 247, 0.75);
    }

    body.xmdsite-service-list-page .xmdsite-partner-button:hover,
    body.xmdsite-service-list-page .xmdsite-partner-button:focus-visible,
    body.xmdsite-service-list-page .xmdsite-partner-button.is-active {
      border-color: rgba(0, 117, 190, 0.55);
      background: #ffffff;
      box-shadow: 0 16px 30px rgba(0, 98, 170, 0.18);
      transform: translate(-50%, -50%) rotate(45deg) scale(1.035);
    }

    body.xmdsite-service-list-page .xmdsite-partner-button.is-active::after {
      inset: -4px;
      border-color: rgba(0, 117, 190, 0.45);
    }

    body.xmdsite-service-list-page .xmdsite-partner-logo {
      max-width: 76%;
      max-height: 52px;
    }

    body.xmdsite-service-list-page .xmdsite-partner-name {
      max-width: 78%;
      color: #0f172a;
      font-size: 15px;
      font-weight: 800;
    }

    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(1) .xmdsite-partner-button { left: 10%; top: 50%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(2) .xmdsite-partner-button { left: 21%; top: 32%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(3) .xmdsite-partner-button { left: 21%; top: 68%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(4) .xmdsite-partner-button { left: 32%; top: 14%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(5) .xmdsite-partner-button { left: 32%; top: 50%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(6) .xmdsite-partner-button { left: 32%; top: 86%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(7) .xmdsite-partner-button { left: 68%; top: 14%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(8) .xmdsite-partner-button { left: 68%; top: 86%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(9) .xmdsite-partner-button { left: 79%; top: 32%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(10) .xmdsite-partner-button { left: 79%; top: 68%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(11) .xmdsite-partner-button { left: 90%; top: 50%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(12) .xmdsite-partner-button { left: 43%; top: 14%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(13) .xmdsite-partner-button { left: 43%; top: 86%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(14) .xmdsite-partner-button { left: 10%; top: 72%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(15) .xmdsite-partner-button { left: 90%; top: 72%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(16) .xmdsite-partner-button { left: 10%; top: 28%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(17) .xmdsite-partner-button { left: 90%; top: 28%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(18) .xmdsite-partner-button { left: 57%; top: 14%; }

    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(n+19) {
      display: none;
    }

    body.xmdsite-service-list-page .xmdsite-partner-extra-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 14px;
      max-width: 980px;
      margin: 44px auto 0;
      padding: 0;
      list-style: none;
      text-align: left;
    }

    body.xmdsite-service-list-page .xmdsite-partner-extra-item {
      display: flex;
      align-items: center;
      min-height: 66px;
      padding: 14px 16px;
      border: 1px solid rgba(226, 232, 240, 0.82);
      background: #ffffff;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
      transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    }

    body.xmdsite-service-list-page .xmdsite-partner-extra-item:hover {
      border-color: rgba(0, 117, 190, 0.34);
      box-shadow: 0 16px 34px rgba(0, 98, 170, 0.1);
      transform: translateY(-2px);
    }

    body.xmdsite-service-list-page .xmdsite-partner-extra-logo {
      display: block;
      width: auto;
      max-width: 112px;
      max-height: 38px;
      object-fit: contain;
    }

    body.xmdsite-service-list-page .xmdsite-partner-extra-name {
      color: #0f172a;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.45;
    }

    body.xmdsite-service-list-page .xmdsite-partner-note {
      max-width: 760px;
      margin: 28px auto 0;
      color: rgba(51, 56, 64, 0.72);
      font-size: 14px;
      line-height: 1.8;
      letter-spacing: 0.02em;
    }

    @media (max-width: 920px) {
      body.xmdsite-service-list-page .xmdsite-partner-showcase {
        padding: 48px 0 64px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-board {
        --xmdsite-partner-tile: 92px;
        --xmdsite-partner-center: 150px;
        height: 360px;
        margin-top: 52px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-center strong {
        font-size: 28px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-center em {
        font-size: 14px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-logo {
        max-height: 44px;
      }
    }

    @media (max-width: 640px) {
      body.xmdsite-service-list-page .xmdsite-partner-showcase {
        padding: 42px 0 58px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-intro {
        margin-top: 16px;
        line-height: 1.75;
      }

      body.xmdsite-service-list-page .xmdsite-partner-stats {
        gap: 10px;
        margin-top: 18px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-stat {
        min-width: 118px;
        padding: 10px 14px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-board {
        display: grid;
        gap: 32px;
        height: auto;
        margin-top: 42px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-center {
        position: relative;
        left: auto;
        top: auto;
        justify-self: center;
        transform: rotate(45deg);
      }

      body.xmdsite-service-list-page .xmdsite-partner-mosaic {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 8px;
        justify-items: center;
      }

      body.xmdsite-service-list-page .xmdsite-partner-button,
      body.xmdsite-service-list-page .xmdsite-partner-button:hover,
      body.xmdsite-service-list-page .xmdsite-partner-button:focus-visible,
      body.xmdsite-service-list-page .xmdsite-partner-button.is-active {
        position: relative;
        left: auto !important;
        top: auto !important;
        transform: rotate(45deg);
      }

      body.xmdsite-service-list-page .xmdsite-partner-button:hover,
      body.xmdsite-service-list-page .xmdsite-partner-button:focus-visible,
      body.xmdsite-service-list-page .xmdsite-partner-button.is-active {
        transform: rotate(45deg) scale(1.035);
      }

      body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(n+19) {
        display: block;
      }

      body.xmdsite-service-list-page .xmdsite-partner-extra-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 28px;
      }
    }

    @media (max-width: 420px) {
      body.xmdsite-service-list-page .xmdsite-partner-board {
        --xmdsite-partner-tile: 84px;
        --xmdsite-partner-center: 118px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-center strong {
        font-size: 21px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-center em {
        font-size: 12px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-logo {
        max-height: 40px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-extra-list {
        grid-template-columns: 1fr;
      }
    }



    /* Final partner section tuning: wide diamond wall matching the supplied reference */
    body.xmdsite-service-list-page,
    body.xmdsite-service-list-page .xmdsite-page {
      max-width: 100%;
      overflow-x: hidden;
      overflow-x: clip;
    }

    body.xmdsite-service-list-page .xmdsite-container.xmdsite-main {
      width: 100%;
      max-width: none;
    }

    body.xmdsite-service-list-page .xmdsite-partner-showcase {
      width: 100%;
      margin-left: 0;
      padding: 86px 0 108px;
      overflow: hidden;
      background: #ffffff;
      text-align: center;
      transform: none;
    }

    body.xmdsite-service-list-page .xmdsite-partner-section-head {
      max-width: 980px;
      margin: 0 auto;
      padding: 0 24px;
    }

    body.xmdsite-service-list-page .xmdsite-partner-title {
      margin: 0;
      color: #1f1f1f;
      font-size: clamp(42px, 4.1vw, 62px);
      font-weight: 900;
      letter-spacing: 0.015em;
      line-height: 1.12;
    }

    body.xmdsite-service-list-page .xmdsite-partner-subtitle {
      margin: 22px 0 0;
      color: #202124;
      font-size: clamp(18px, 1.55vw, 28px);
      font-weight: 500;
      letter-spacing: 0.08em;
      line-height: 1.45;
    }

    body.xmdsite-service-list-page .xmdsite-partner-intro,
    body.xmdsite-service-list-page .xmdsite-partner-stats,
    body.xmdsite-service-list-page .xmdsite-partner-note {
      display: none;
    }

    body.xmdsite-service-list-page .xmdsite-partner-board {
      --xmdsite-partner-tile: 146px;
      --xmdsite-partner-center: 258px;
      width: min(1660px, calc(100% - 48px));
      max-width: 100%;
      height: 760px;
      margin: 112px auto 0;
    }

    body.xmdsite-service-list-page .xmdsite-partner-center {
      background: #2563eb;
      box-shadow: 0 20px 44px rgba(0, 94, 166, 0.22);
    }

    body.xmdsite-service-list-page .xmdsite-partner-center strong {
      font-size: clamp(42px, 3.2vw, 56px);
      font-weight: 900;
      letter-spacing: 0.05em;
      line-height: 1.05;
    }

    body.xmdsite-service-list-page .xmdsite-partner-center em {
      margin-top: 14px;
      font-size: clamp(20px, 1.6vw, 30px);
      font-weight: 400;
      letter-spacing: 0.01em;
      line-height: 1.1;
    }

    body.xmdsite-service-list-page .xmdsite-partner-button {
      border: 1px solid rgba(246, 247, 249, 0.98);
      background: #fff;
      box-shadow: 0 12px 30px rgba(28, 36, 48, 0.12), 0 2px 10px rgba(28, 36, 48, 0.05);
    }

    body.xmdsite-service-list-page .xmdsite-partner-button::before {
      inset: 7px;
      border-color: rgba(255, 255, 255, 0.92);
      box-shadow: inset 0 0 0 1px rgba(242, 244, 247, 0.74);
    }

    body.xmdsite-service-list-page .xmdsite-partner-button:hover,
    body.xmdsite-service-list-page .xmdsite-partner-button:focus-visible,
    body.xmdsite-service-list-page .xmdsite-partner-button.is-active {
      border-color: rgba(8, 119, 189, 0.5);
      background: #ffffff;
      box-shadow: 0 18px 38px rgba(8, 119, 189, 0.2), 0 4px 14px rgba(28, 36, 48, 0.07);
      transform: translate(-50%, -50%) rotate(45deg) scale(1.035);
    }

    body.xmdsite-service-list-page .xmdsite-partner-button.is-active::after {
      inset: -4px;
      border-color: rgba(8, 119, 189, 0.45);
    }

    body.xmdsite-service-list-page .xmdsite-partner-logo {
      max-width: 82%;
      max-height: 64px;
      filter: saturate(1.05) contrast(1.02);
    }

    body.xmdsite-service-list-page .xmdsite-partner-name {
      max-width: 78%;
      color: #0f172a;
      font-size: 18px;
      font-weight: 900;
      line-height: 1.35;
    }

    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(1) .xmdsite-partner-button { left: 8%; top: 52%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(2) .xmdsite-partner-button { left: 16%; top: 33%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(3) .xmdsite-partner-button { left: 16%; top: 72%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(4) .xmdsite-partner-button { left: 25%; top: 15%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(5) .xmdsite-partner-button { left: 25%; top: 52%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(6) .xmdsite-partner-button { left: 25%; top: 89%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(7) .xmdsite-partner-button { left: 34%; top: 33%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(8) .xmdsite-partner-button { left: 34%; top: 72%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(9) .xmdsite-partner-button { left: 44%; top: 15%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(10) .xmdsite-partner-button { left: 44%; top: 89%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(11) .xmdsite-partner-button { left: 56%; top: 15%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(12) .xmdsite-partner-button { left: 56%; top: 89%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(13) .xmdsite-partner-button { left: 66%; top: 33%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(14) .xmdsite-partner-button { left: 66%; top: 72%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(15) .xmdsite-partner-button { left: 75%; top: 15%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(16) .xmdsite-partner-button { left: 75%; top: 89%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(17) .xmdsite-partner-button { left: 84%; top: 33%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(18) .xmdsite-partner-button { left: 84%; top: 72%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(n+19) { display: block; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(19) .xmdsite-partner-button { left: 8%; top: 16%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(20) .xmdsite-partner-button { left: 8%; top: 88%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(21) .xmdsite-partner-button { left: 16%; top: 14%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(22) .xmdsite-partner-button { left: 16%; top: 90%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(23) .xmdsite-partner-button { left: 34%; top: 14%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(24) .xmdsite-partner-button { left: 34%; top: 90%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(25) .xmdsite-partner-button { left: 66%; top: 14%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(26) .xmdsite-partner-button { left: 66%; top: 90%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(27) .xmdsite-partner-button { left: 84%; top: 14%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(28) .xmdsite-partner-button { left: 84%; top: 90%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(29) .xmdsite-partner-button { left: 92%; top: 33%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(30) .xmdsite-partner-button { left: 92%; top: 72%; }
    body.xmdsite-service-list-page .xmdsite-partner-node:nth-child(n+31) { display: none; }

    body.xmdsite-service-list-page .xmdsite-partner-extra-list {
      max-width: 1180px;
      margin-top: 28px;
    }

    @media (max-width: 1280px) {
      body.xmdsite-service-list-page .xmdsite-partner-board {
        --xmdsite-partner-tile: 128px;
        --xmdsite-partner-center: 220px;
        width: min(1120px, calc(100% - 40px));
        max-width: 100%;
        height: 560px;
        margin-top: 86px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-logo {
        max-height: 54px;
      }
    }

    @media (max-width: 760px) {
      body.xmdsite-service-list-page .xmdsite-partner-showcase {
        width: auto;
        margin-left: 0;
        padding: 54px 0 70px;
        transform: none;
      }

      body.xmdsite-service-list-page .xmdsite-partner-title {
        font-size: clamp(28px, 8vw, 40px);
      }

      body.xmdsite-service-list-page .xmdsite-partner-subtitle {
        margin-top: 12px;
        font-size: 15px;
        letter-spacing: 0.03em;
      }

      body.xmdsite-service-list-page .xmdsite-partner-board {
        --xmdsite-partner-tile: 98px;
        --xmdsite-partner-center: 136px;
        display: grid;
        gap: 34px;
        width: 100%;
        height: auto;
        margin-top: 42px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-center {
        position: relative;
        left: auto;
        top: auto;
        justify-self: center;
        transform: rotate(45deg);
      }

      body.xmdsite-service-list-page .xmdsite-partner-center strong {
        font-size: 24px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-center em {
        margin-top: 6px;
        font-size: 13px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-mosaic {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 8px;
        justify-items: center;
      }

      body.xmdsite-service-list-page .xmdsite-partner-button,
      body.xmdsite-service-list-page .xmdsite-partner-button:hover,
      body.xmdsite-service-list-page .xmdsite-partner-button:focus-visible,
      body.xmdsite-service-list-page .xmdsite-partner-button.is-active {
        position: relative;
        left: auto !important;
        top: auto !important;
        transform: rotate(45deg);
      }

      body.xmdsite-service-list-page .xmdsite-partner-button:hover,
      body.xmdsite-service-list-page .xmdsite-partner-button:focus-visible,
      body.xmdsite-service-list-page .xmdsite-partner-button.is-active {
        transform: rotate(45deg) scale(1.035);
      }
    }

    @media (max-width: 420px) {
      body.xmdsite-service-list-page .xmdsite-partner-board {
        --xmdsite-partner-tile: 84px;
        --xmdsite-partner-center: 116px;
      }

      body.xmdsite-service-list-page .xmdsite-partner-logo {
        max-height: 38px;
      }
    }



    body.xmdsite-service-list-page .xmdsite-partner-pagination {
      max-width: 980px;
      margin: 34px auto 0;
      justify-content: center;
      border: 0;
      background: transparent;
      box-shadow: none;
    }

    body.xmdsite-service-list-page .xmdsite-partner-pagination .xmdsite-pagination-actions {
      justify-content: center;
    }

/* Unified list-page breadcrumb and search toolbar. */
body.xmdsite-page .xmdsite-main:has(> .xmdsite-unified-list-toolbar) {
  padding-top: 0 !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar {
  min-height: 66px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.08), 0 0 0 100vmax #ffffff !important;
  clip-path: inset(0 -100vmax) !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar,
body.xmdsite-page .xmdsite-unified-list-toolbar > :where(.xmdsite-product-topline-inner, .xmdsite-list-toolbar-inner) {
  width: min(1328px, calc(100% - 32px)) !important;
  min-height: 66px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar::after {
  display: none !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar .xmdsite-breadcrumb,
body.xmdsite-page .xmdsite-unified-list-toolbar.xmdsite-breadcrumb {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar .xmdsite-breadcrumb-list {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #111827 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  list-style: none !important;
  white-space: nowrap !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar .xmdsite-breadcrumb-item {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar .xmdsite-breadcrumb-item + .xmdsite-breadcrumb-item::before {
  color: rgba(17, 24, 39, 0.44) !important;
  content: "/" !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar .xmdsite-breadcrumb-link,
body.xmdsite-page .xmdsite-unified-list-toolbar .xmdsite-breadcrumb-current {
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-form, .xmdsite-title-search-form, .xmdsite-breadcrumb-search-form, .xmdsite-toolbar-search-form, .xmdsite-top-search-form),
body.xmdsite-page .xmdsite-unified-list-toolbar:where(.xmdsite-search-form, .xmdsite-title-search-form, .xmdsite-breadcrumb-search-form, .xmdsite-toolbar-search-form, .xmdsite-top-search-form) {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  width: auto !important;
  max-width: 100% !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-label, .xmdsite-search-label-inline, .xmdsite-search-intro, .xmdsite-top-search-label) {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  height: 38px !important;
  margin: 0 10px 0 0 !important;
  padding: 0 !important;
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-label, .xmdsite-search-label-inline, .xmdsite-search-intro, .xmdsite-top-search-label)::before {
  position: relative !important;
  display: inline-block !important;
  width: 13px !important;
  height: 13px !important;
  border: 1.5px solid currentColor !important;
  border-radius: 50% !important;
  content: "" !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-label, .xmdsite-search-label-inline, .xmdsite-search-intro, .xmdsite-top-search-label)::after {
  display: inline-block !important;
  width: 6px !important;
  height: 1.5px !important;
  margin-left: -8px !important;
  margin-right: 1px !important;
  border-radius: 999px !important;
  background: currentColor !important;
  content: "" !important;
  transform: translate(7px, 6px) rotate(45deg) !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-label, .xmdsite-search-label-inline, .xmdsite-search-intro, .xmdsite-top-search-label) :where(svg, .xmdsite-search-label-icon) {
  display: none !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-field) {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: stretch !important;
  width: auto !important;
  height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-input, .xmdsite-top-search-input) {
  flex: 0 0 180px !important;
  width: 180px !important;
  height: 38px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border: 1px solid #d8dee8 !important;
  border-right: 0 !important;
  border-radius: 20px 0 0 20px !important;
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 14px !important;
  line-height: 38px !important;
  outline: none !important;
  box-shadow: none !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-input, .xmdsite-top-search-input)::placeholder {
  color: #9aa3b2 !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-submit, .xmdsite-top-search-submit) {
  flex: 0 0 62px !important;
  width: 62px !important;
  height: 38px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #2563eb !important;
  border-radius: 0 20px 20px 0 !important;
  background: #2563eb !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 36px !important;
  text-align: center !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-submit, .xmdsite-top-search-submit):hover,
body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-submit, .xmdsite-top-search-submit):focus-visible {
  border-color: #2563eb !important;
  background: #2563eb !important;
  color: #ffffff !important;
  outline: none !important;
  transform: none !important;
}

body.xmdsite-page .xmdsite-main > .xmdsite-unified-list-toolbar + * {
  margin-top: 34px !important;
}

@media (max-width: 760px) {
  body.xmdsite-page .xmdsite-unified-list-toolbar,
  body.xmdsite-page .xmdsite-unified-list-toolbar > :where(.xmdsite-product-topline-inner, .xmdsite-list-toolbar-inner) {
    min-height: 66px !important;
    gap: 12px !important;
  }

  body.xmdsite-page .xmdsite-unified-list-toolbar .xmdsite-breadcrumb-list {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-label, .xmdsite-search-label-inline, .xmdsite-search-intro, .xmdsite-top-search-label) span {
    display: none !important;
  }

  body.xmdsite-page .xmdsite-unified-list-toolbar :where(.xmdsite-search-input, .xmdsite-top-search-input) {
    flex-basis: 128px !important;
    width: 128px !important;
  }
}

/* Design template home page */
body.xmdsite-design-home {
  --design-blue: #2563eb;
  --design-dark: #0f2747;
  --design-black: #030303;
  --design-text: #333333;
  --design-muted: #777777;
  margin: 0;
  background: #ffffff;
  color: var(--design-text);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.7;
}

body.xmdsite-design-home .xmdsite-header {
  top: 24px;
  min-height: 48px !important;
  background: rgba(11, 31, 58, 0.96);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body.xmdsite-design-home .xmdsite-header::before {
  position: fixed;
  top: -24px;
  right: 0;
  left: 0;
  height: 24px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.88), rgba(147, 197, 253, 0.88));
  content: "";
}

body.xmdsite-design-home .xmdsite-header-inner {
  width: min(1230px, calc(100% - 32px));
  min-height: 48px;
  padding: 0;
}

body.xmdsite-design-home .xmdsite-brand {
  flex: 0 1 245px;
  min-height: 48px;
}

body.xmdsite-design-home .xmdsite-brand-logo {
  max-width: 210px;
  max-height: 46px;
}

body.xmdsite-design-home .xmdsite-nav-list,
body.xmdsite-design-home .xmdsite-nav-link {
  min-height: 48px;
}

body.xmdsite-design-home .xmdsite-nav-link {
  padding: 0 16px;
  color: #f3f3f3;
  font-size: 13px;
  font-weight: 600;
}

body.xmdsite-design-home .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link::after {
  right: 16px;
  bottom: 9px;
  left: 16px;
  height: 2px;
  background: var(--design-blue);
}

body.xmdsite-design-home .design-hero {
  position: relative;
  background: var(--design-dark);
}

body.xmdsite-design-home .design-hero-slider,
body.xmdsite-design-home .design-hero-slide {
  display: block;
  width: 100%;
  height: min(680px, 72vh);
  min-height: 520px;
}

body.xmdsite-design-home .design-hero-slide {
  position: relative;
  overflow: hidden;
}

body.xmdsite-design-home .design-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.xmdsite-design-home .design-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(82px, 8vw, 116px) clamp(24px, 5vw, 80px) 32px;
  pointer-events: none;
  text-align: right;
}

body.xmdsite-design-home .design-hero-copy h1,
body.xmdsite-design-home .design-hero-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  max-width: min(70%, 900px);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72);
}

body.xmdsite-design-home .design-hero-fallback,
body.xmdsite-design-home .design-hero-empty {
  display: grid;
  place-items: center;
  background: #222222;
  color: #ffffff;
}

body.xmdsite-design-home .design-hero-slider::part(button-prev),
body.xmdsite-design-home .design-hero-slider::part(button-next) {
  color: rgba(255, 255, 255, 0.7);
  width: 36px;
  height: 36px;
}

body.xmdsite-design-home .design-hero-slider::part(pagination) {
  bottom: 16px;
}

body.xmdsite-design-home .design-hero-slider::part(bullet) {
  width: 9px;
  height: 9px;
  background: #ffffff;
  opacity: 0.95;
}

body.xmdsite-design-home .design-hero-slider::part(bullet-active) {
  width: 9px;
  height: 9px;
  background: var(--design-blue);
}

body.xmdsite-design-home .design-section-head {
  padding: 48px 20px 30px;
  text-align: center;
}

body.xmdsite-design-home .design-section-head h2 {
  margin: 0;
  color: #4d4d4d;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

body.xmdsite-design-home .design-section-head p {
  margin: 4px 0 0;
  color: #858585;
  font-size: 12px;
  line-height: 1.4;
}

body.xmdsite-design-home .design-section-head-dark h2 {
  color: #ffffff;
}

body.xmdsite-design-home .design-section-head-dark p {
  color: rgba(255, 255, 255, 0.78);
}

body.xmdsite-design-home .design-business {
  background: #ffffff;
}

body.xmdsite-design-home .design-business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.xmdsite-design-home .design-business-card {
  position: relative;
  display: block;
  min-height: 260px;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  background: #dddddd;
  color: #ffffff;
}

body.xmdsite-design-home .design-business-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

body.xmdsite-design-home .design-business-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58));
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

body.xmdsite-design-home .design-business-card span:last-child {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

body.xmdsite-design-home .design-business-card:hover img,
body.xmdsite-design-home .design-business-card:focus-visible img {
  filter: grayscale(0.15) contrast(1.05);
  transform: scale(1.045);
}

body.xmdsite-design-home .design-business-card:hover::after,
body.xmdsite-design-home .design-business-card:focus-visible::after,
body.xmdsite-design-home .design-business-card:hover span:last-child,
body.xmdsite-design-home .design-business-card:focus-visible span:last-child {
  opacity: 1;
  transform: translateY(0);
}

body.xmdsite-design-home .design-more-band {
  display: grid;
  place-items: start center;
  min-height: 335px;
  padding-top: 24px;
  background: var(--design-dark);
}

body.xmdsite-design-home .design-link-more,
body.xmdsite-design-home .design-news-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 40px;
  padding: 0 28px;
  color: var(--design-blue);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

body.xmdsite-design-home .design-about {
  margin-top: -178px;
  padding: 0 20px 64px;
  background: #ffffff;
}

body.xmdsite-design-home .design-about-panel {
  display: grid;
  grid-template-columns: 45% minmax(0, 1fr);
  width: min(950px, 100%);
  margin: 0 auto;
  background: var(--design-blue);
}

body.xmdsite-design-home .design-about-media {
  min-height: 280px;
  margin: 0;
  transform: translate(18px, -32px);
  background: #111111;
}

body.xmdsite-design-home .design-about-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: none;
  opacity: 1;
}

body.xmdsite-design-home .design-about-copy {
  padding: 58px 58px 50px 76px;
}

body.xmdsite-design-home .design-about-copy h2 {
  margin: 0;
  color: #333333;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

body.xmdsite-design-home .design-en {
  margin: 2px 0 24px;
  color: #333333;
  font-size: 13px;
  text-transform: uppercase;
}

body.xmdsite-design-home .design-about-text {
  max-height: 96px;
  overflow: hidden;
  color: #333333;
  font-size: 13px;
  line-height: 1.9;
}

body.xmdsite-design-home .design-about-text :where(p, div) {
  margin: 0;
}

body.xmdsite-design-home .design-arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 32px;
  margin-top: 22px;
  background: #ffffff;
  color: var(--design-blue);
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
}

body.xmdsite-design-home .design-team {
  padding: 0 0 74px;
  background: var(--design-black);
  overflow: hidden;
}

body.xmdsite-design-home .design-team-slider {
  width: min(820px, calc(100% - 96px));
  margin: 18px auto 0;
  overflow: visible;
}

body.xmdsite-design-home .design-team-card {
  display: block;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

body.xmdsite-design-home .design-team-card strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
body.xmdsite-design-home .design-team-card:hover img {
  filter: grayscale(1) contrast(1.08);
  opacity: 1;
  transform: scale(1.08);
}

body.xmdsite-design-home .design-team-slider::part(button-prev),
body.xmdsite-design-home .design-team-slider::part(button-next) {
  color: rgba(255, 255, 255, 0.6);
  width: 30px;
  height: 30px;
}

body.xmdsite-design-home .design-news {
  padding: 0 20px 72px;
  background: #ffffff;
}

body.xmdsite-design-home .design-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(1230px, 100%);
  margin: 0 auto;
}

body.xmdsite-design-home .design-news-card {
  background: #f2f2f2;
}

body.xmdsite-design-home .design-news-card a {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  grid-template-areas:
    "date title"
    "date desc";
  gap: 18px 20px;
  min-height: 156px;
  padding: 18px 24px 22px;
  color: inherit;
  text-decoration: none;
}

body.xmdsite-design-home .design-news-card time {
  grid-area: date;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 72px;
  background: #2f2f2f;
  color: #ffffff;
}

body.xmdsite-design-home .design-news-card time strong {
  font-size: 18px;
  line-height: 1.1;
}

body.xmdsite-design-home .design-news-card time span {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1;
}

body.xmdsite-design-home .design-news-card h3 {
  grid-area: title;
  align-self: end;
  min-width: 0;
  margin: 0;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

body.xmdsite-design-home .design-news-card p {
  grid-area: desc;
  display: -webkit-box;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #777777;
  font-size: 12px;
  line-height: 1.8;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

body.xmdsite-design-home .design-news-more {
  display: grid;
  place-items: center;
  margin-top: 42px;
}

body.xmdsite-design-home .design-news-button {
  min-width: 260px;
  min-height: 36px;
  border-radius: 3px;
  background: #2b2b2b;
}

body.xmdsite-design-home .design-empty {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 24px;
  background: #f3f3f3;
  color: #777777;
  text-align: center;
}

body.xmdsite-design-home .design-empty-dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

body.xmdsite-design-home .design-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: #3a3a3a;
  color: #ffffff;
}

body.xmdsite-design-home .xmdsite-footer {
  margin-top: 0;
  background: var(--design-dark);
  color: #ffffff;
}

@media (max-width: 1100px) {
  body.xmdsite-design-home .xmdsite-nav-link {
    padding: 0 10px;
    font-size: 12px;
  }

  body.xmdsite-design-home .design-news-card a {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 16px;
  }
}

@media (max-width: 920px) {
  body.xmdsite-design-home .xmdsite-header {
    top: 0;
    min-height: 60px !important;
  }

  body.xmdsite-design-home .xmdsite-header::before {
    display: none;
  }

  body.xmdsite-design-home .xmdsite-header-inner,
  body.xmdsite-design-home .xmdsite-nav-list,
  body.xmdsite-design-home .xmdsite-nav-link {
    min-height: 60px;
  }

  body.xmdsite-design-home .design-hero-slider,
  body.xmdsite-design-home .design-hero-slide {
    height: 66vh;
    min-height: 440px;
  }

  body.xmdsite-design-home .design-business-grid,
  body.xmdsite-design-home .design-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.xmdsite-design-home .design-about-panel {
    grid-template-columns: 1fr;
  }

  body.xmdsite-design-home .design-about-media {
    transform: none;
  }

  body.xmdsite-design-home .design-about-copy {
    padding: 36px 32px 40px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-design-home .design-hero-slider,
  body.xmdsite-design-home .design-hero-slide {
    height: 60vh;
    min-height: 360px;
  }

  body.xmdsite-design-home .design-section-head {
    padding: 38px 16px 24px;
  }

  body.xmdsite-design-home .design-business-grid,
  body.xmdsite-design-home .design-news-grid {
    grid-template-columns: 1fr;
  }

  body.xmdsite-design-home .design-business-card {
    min-height: 220px;
  }

  body.xmdsite-design-home .design-more-band {
    min-height: 210px;
  }

  body.xmdsite-design-home .design-about {
    margin-top: -92px;
    padding-right: 16px;
    padding-left: 16px;
  }

  body.xmdsite-design-home .design-team-slider {
    width: min(360px, calc(100% - 64px));
  }

  body.xmdsite-design-home .design-news-card a {
    min-height: 140px;
  }
}

/* Reference-site refinements for theme 98. */
body.xmdsite-design-home {
  --design-blue: #2563eb;
  --design-blue-soft: #93c5fd;
  --design-dark: #0f2747;
  --design-nav: #0b1f3a;
  --design-black: #000000;
}

body.xmdsite-design-home .xmdsite-header {
  top: 0;
  min-height: 74px !important;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
}

body.xmdsite-design-home .xmdsite-header::before {
  display: none;
}

body.xmdsite-design-home .xmdsite-topline {
  display: block;
  height: 24px;
  background: linear-gradient(90deg, var(--design-blue-soft), #dbeafe);
  color: rgba(80, 80, 80, 0.78);
  font-size: 11px;
  line-height: 24px;
}

body.xmdsite-design-home .xmdsite-topline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1230px, calc(100% - 32px));
  height: 24px;
  white-space: nowrap;
}

body.xmdsite-design-home .xmdsite-header-inner {
  width: min(1230px, calc(100% - 32px));
  min-height: 50px;
  padding: 0;
  background: rgba(11, 31, 58, 0.96);
}

body.xmdsite-design-home .xmdsite-brand {
  flex: 0 0 264px;
  min-height: 50px;
  padding-left: 0;
}

body.xmdsite-design-home .xmdsite-brand-logo {
  max-width: 230px;
  max-height: 48px;
  margin-left: 0;
}

body.xmdsite-design-home .xmdsite-brand-emblem {
  display: grid;
  place-items: center;
  width: 42px;
  height: 50px;
  background: var(--design-blue);
  color: #282828;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

body.xmdsite-design-home .xmdsite-brand-text {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 14px 0 8px;
  color: #f7f7f7;
  font-size: 16px;
  font-weight: 400;
}

body.xmdsite-design-home .xmdsite-nav {
  padding-right: 18px;
}

body.xmdsite-design-home .xmdsite-nav-list,
body.xmdsite-design-home .xmdsite-nav-link {
  min-height: 50px;
}

body.xmdsite-design-home .xmdsite-nav-list {
  gap: 0;
}

body.xmdsite-design-home .xmdsite-nav-link {
  padding: 0 17px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
}

body.xmdsite-design-home .xmdsite-nav-link:hover,
body.xmdsite-design-home .xmdsite-nav-link:focus-visible,
body.xmdsite-design-home .xmdsite-nav-item.is-active > .xmdsite-nav-link {
  background: rgba(0, 0, 0, 0.16);
  color: #ffffff;
}

body.xmdsite-design-home .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link::after {
  right: 17px;
  bottom: 8px;
  left: 17px;
  height: 2px;
  background: var(--design-blue);
}

body.xmdsite-design-home .design-hero-slider,
body.xmdsite-design-home .design-hero-slide {
  height: min(690px, 73vh);
  min-height: 540px;
}

body.xmdsite-design-home .design-hero-copy {
  padding-top: clamp(82px, 8vw, 116px);
}

body.xmdsite-design-home .design-hero-copy h1,
body.xmdsite-design-home .design-hero-title {
  font-size: clamp(42px, 4.7vw, 64px);
  font-weight: 700;
}

body.xmdsite-design-home .design-section-head {
  padding: 46px 20px 31px;
}

body.xmdsite-design-home .design-section-head h2 {
  font-size: 23px;
  font-weight: 500;
}

body.xmdsite-design-home .design-business-card {
  min-height: 310px;
  aspect-ratio: 1.18 / 1;
}

body.xmdsite-design-home .design-more-band {
  min-height: 340px;
  padding-top: 25px;
}

body.xmdsite-design-home .design-link-more {
  min-height: 34px;
  font-size: 17px;
}

body.xmdsite-design-home .design-about {
  margin-top: -178px;
  padding-bottom: 64px;
}

body.xmdsite-design-home .design-about-panel {
  width: min(960px, calc(100% - 40px));
  grid-template-columns: 45% minmax(0, 1fr);
  min-height: 250px;
}

body.xmdsite-design-home .design-about-media {
  min-height: 270px;
  transform: translate(18px, -34px);
}

body.xmdsite-design-home .design-about-media img {
  min-height: 270px;
}

body.xmdsite-design-home .design-about-copy {
  padding: 48px 58px 42px 78px;
}

body.xmdsite-design-home .design-team {
  padding-bottom: 78px;
}

body.xmdsite-design-home .design-team-slider {
  width: min(840px, calc(100% - 112px));
}

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder {
  height: 225px;
}

body.xmdsite-design-home .design-news {
  padding-bottom: 78px;
}

body.xmdsite-design-home .design-news-grid {
  width: min(1230px, 100%);
  gap: 24px;
}

body.xmdsite-design-home .design-news-card {
  background: #f0f0f0;
}

body.xmdsite-design-home .design-news-card a {
  min-height: 166px;
  padding: 20px 25px 24px;
}

body.xmdsite-design-home .design-news-button {
  min-width: 270px;
  color: var(--design-blue);
}

.xmdsite-footer {
  margin-top: 0;
  background: #2d2c2b;
  color: #ffffff;
}

.xmdsite-footer-inner {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 48px 0 18px;
}

.xmdsite-footer-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  width: min(880px, 100%);
}

.xmdsite-footer-contact-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.7;
}

.xmdsite-footer-contact-item p {
  margin: 0;
}

.xmdsite-footer-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.xmdsite-footer-nav {
  width: min(760px, 100%);
}

.xmdsite-footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.xmdsite-footer-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-decoration: none;
}

.xmdsite-footer-link:hover,
.xmdsite-footer-link:focus-visible {
  color: var(--design-blue, #2563eb);
  outline: none;
}

.xmdsite-footer-qrcode {
  width: 92px;
  height: 92px;
  object-fit: cover;
}

.xmdsite-footer-bottom {
  border-top: 0;
  background: #2d2c2b;
}

.xmdsite-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 12px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  text-align: center;
}

.xmdsite-footer-icp {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1100px) {
  body.xmdsite-design-home .xmdsite-brand {
    flex-basis: 230px;
  }

  body.xmdsite-design-home .xmdsite-nav-link {
    padding: 0 10px;
    font-size: 12px;
  }

  body.xmdsite-design-home .design-business-card {
    min-height: 250px;
  }
}

@media (max-width: 920px) {
  body.xmdsite-design-home .xmdsite-header {
    min-height: 60px !important;
  }

  body.xmdsite-design-home .xmdsite-topline {
    display: none;
  }

  body.xmdsite-design-home .xmdsite-header-inner {
    width: 100%;
    min-height: 60px;
    padding: 0 16px;
  }

  body.xmdsite-design-home .xmdsite-brand {
    flex: 1 1 auto;
    min-height: 60px;
    padding: 0;
  }

  body.xmdsite-design-home .xmdsite-brand-emblem {
    height: 46px;
  }

  body.xmdsite-design-home .xmdsite-brand-text {
    min-height: 46px;
  }

  body.xmdsite-design-home .xmdsite-nav {
    top: 100%;
    padding-right: 0;
    background: rgba(11, 31, 58, 0.98);
  }

  body.xmdsite-design-home .xmdsite-nav-list,
  body.xmdsite-design-home .xmdsite-nav-link {
    min-height: 48px;
  }

  body.xmdsite-design-home .design-hero-slider,
  body.xmdsite-design-home .design-hero-slide {
    height: 64vh;
    min-height: 430px;
  }

  body.xmdsite-design-home .design-hero-copy {
    padding: 28px 24px;
  }

  body.xmdsite-design-home .design-about-panel {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 32px));
  }

  body.xmdsite-design-home .design-about-media {
    transform: none;
  }

  body.xmdsite-design-home .design-about-copy {
    padding: 34px 28px 38px;
  }

  .xmdsite-footer-contact {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(420px, 100%);
  }
}

@media (max-width: 640px) {
  body.xmdsite-design-home .xmdsite-brand-text {
    font-size: 14px;
  }

  body.xmdsite-design-home .design-hero-copy h1,
  body.xmdsite-design-home .design-hero-title {
    font-size: clamp(32px, 10vw, 42px);
    max-width: 88%;
  }

  body.xmdsite-design-home .design-hero-copy {
    padding: 22px 18px;
  }

  body.xmdsite-design-home .design-business-card {
    min-height: 230px;
  }

  body.xmdsite-design-home .design-about {
    margin-top: -88px;
  }

  body.xmdsite-design-home .design-team-slider {
    width: min(360px, calc(100% - 56px));
  }

  .xmdsite-footer-inner {
    padding-top: 36px;
  }

  .xmdsite-footer-contact-item {
    grid-template-columns: 48px minmax(0, 1fr);
    font-size: 14px;
  }

  .xmdsite-footer-icon {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
}

/* User requested: no top accent strip, no sticky header, full-width navigation bar. */
body.xmdsite-design-home .xmdsite-header {
  position: relative !important;
  top: auto !important;
  right: auto;
  left: auto;
  z-index: 20;
  width: 100%;
  min-height: 50px !important;
  background: rgba(11, 31, 58, 0.98);
}

body.xmdsite-page.xmdsite-design-home {
  padding-top: 0 !important;
}

body.xmdsite-design-home .xmdsite-topline {
  display: none !important;
}

body.xmdsite-design-home .xmdsite-header-inner {
  width: min(1230px, calc(100% - 32px));
  min-height: 50px;
  margin: 0 auto;
  background: transparent;
}

body.xmdsite-design-home .design-hero {
  margin-top: 0;
}

@media (max-width: 920px) {
  body.xmdsite-design-home .xmdsite-header {
    position: relative !important;
    min-height: 60px !important;
  }

  body.xmdsite-design-home .xmdsite-header-inner {
    width: 100%;
  }
}

/* Team carousel: layered center-stage image display. */
body.xmdsite-design-home .design-team {
  padding: 0 0 86px;
  background: #000000;
  overflow: hidden;
}

body.xmdsite-design-home .design-team .design-section-head {
  padding-bottom: 18px;
}

body.xmdsite-design-home .design-team-slider {
  width: min(1240px, calc(100% - 80px));
  height: 405px;
  margin: 0 auto;
  overflow: visible;
}

body.xmdsite-design-home .design-team-slider swiper-slide {
  width: 235px;
  height: 342px;
}

body.xmdsite-design-home .design-team-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder {
  width: 100%;
  height: 306px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.03);
  opacity: 0.42;
  transform: scale(0.9);
  transform-origin: center bottom;
  transition: opacity 260ms ease, filter 260ms ease, transform 260ms ease;
}

body.xmdsite-design-home .design-team-card::after {
  position: absolute;
  inset: 0 0 30px;
  background: rgba(0, 0, 0, 0.22);
  content: "";
  pointer-events: none;
  transition: opacity 260ms ease;
}

body.xmdsite-design-home .design-team-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active {
  z-index: 5;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
  filter: grayscale(0) contrast(1.04);
  opacity: 1;
  transform: scale(1.1);
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card::after {
  opacity: 0;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card strong {
  margin-top: 18px;
  color: #ffffff;
  font-size: 18px;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card .design-placeholder {
  opacity: 0.72;
  transform: scale(1);
}

body.xmdsite-design-home .design-team-slider::part(button-prev),
body.xmdsite-design-home .design-team-slider::part(button-next) {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.56);
}

body.xmdsite-design-home .design-team-slider::part(button-prev) {
  left: 0;
}

body.xmdsite-design-home .design-team-slider::part(button-next) {
  right: 0;
}

@media (max-width: 920px) {
  body.xmdsite-design-home .design-team-slider {
    width: min(760px, calc(100% - 40px));
    height: 330px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 170px;
    height: 280px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 250px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-design-home .design-team {
    padding-bottom: 62px;
  }

  body.xmdsite-design-home .design-team-slider {
    width: min(460px, calc(100% - 28px));
    height: 300px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 148px;
    height: 250px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 220px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
    transform: scale(1.08);
  }
}

/* News cards active state. */
body.xmdsite-design-home .design-news-card {
  position: relative;
  overflow: hidden;
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

body.xmdsite-design-home .design-news-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2f2f2f 0%, #181818 100%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

body.xmdsite-design-home .design-news-card a {
  position: relative;
  z-index: 1;
  outline: none;
}

body.xmdsite-design-home .design-news-card time,
body.xmdsite-design-home .design-news-card h3,
body.xmdsite-design-home .design-news-card p {
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

body.xmdsite-design-home .design-news-card:hover,
body.xmdsite-design-home .design-news-card:focus-within {
  background: #242424;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-8px);
}

body.xmdsite-design-home .design-news-card:hover::before,
body.xmdsite-design-home .design-news-card:focus-within::before {
  opacity: 1;
}

body.xmdsite-design-home .design-news-card:hover time,
body.xmdsite-design-home .design-news-card:focus-within time {
  background: var(--design-blue);
  color: #202020;
  transform: translateY(-2px);
}

body.xmdsite-design-home .design-news-card:hover h3,
body.xmdsite-design-home .design-news-card:focus-within h3 {
  color: #ffffff;
}

body.xmdsite-design-home .design-news-card:hover p,
body.xmdsite-design-home .design-news-card:focus-within p {
  color: rgba(255, 255, 255, 0.72);
}

body.xmdsite-design-home .design-news-button {
  transition: background-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 220ms ease;
}

body.xmdsite-design-home .design-news-button:hover,
body.xmdsite-design-home .design-news-button:focus-visible {
  background: var(--design-blue);
  color: #222222;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
  outline: none;
}

/* Non-home columns: compact banners and unified blue palette. */
body.xmdsite-page:not(.xmdsite-design-home) {
  --xmdsite-accent: #2563eb !important;
  --xmdsite-accent-hover: #1d4ed8 !important;
  --xmdsite-accent-soft: #eff6ff !important;
  --xmdsite-footer: #0b1f3a !important;
  --xmdsite-ink: #0f172a !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-page-hero,
  .xmdsite-hero,
  .xmdsite-about-banner,
  .xmdsite-contact-banner
) {
  min-height: 360px !important;
  background-color: #0b1f3a !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-page-hero-has-media,
  .xmdsite-hero-has-media
) {
  min-height: 360px !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-hero-media,
  .xmdsite-hero-image-list,
  .xmdsite-hero-image-item,
  .xmdsite-hero-image-link,
  .xmdsite-hero-slide,
  .xmdsite-hero-media-content,
  .xmdsite-about-banner-slider,
  .xmdsite-about-banner-slide,
  .xmdsite-about-banner-image,
  .xmdsite-about-banner-link,
  .xmdsite-about-banner-media,
  .xmdsite-about-banner-file,
  .xmdsite-contact-banner-media,
  .xmdsite-contact-banner swiper-container,
  .xmdsite-contact-banner swiper-slide,
  .xmdsite-contact-banner-picture
) {
  height: 360px !important;
  min-height: 360px !important;
  max-height: 360px !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-hero-media-content,
  .xmdsite-about-banner-media,
  .xmdsite-contact-banner-picture
) {
  object-fit: cover !important;
  object-position: center center !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-page-hero-content,
  .xmdsite-hero-content,
  .xmdsite-page-hero-has-media .xmdsite-page-hero-content,
  .xmdsite-hero-has-media .xmdsite-hero-content
) {
  min-height: 360px !important;
  padding-top: 68px !important;
  padding-bottom: 68px !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-page-title,
  .xmdsite-section-title,
  .xmdsite-detail-title,
  .xmdsite-contact-title
) {
  color: #0f172a !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-page-hero-has-media .xmdsite-page-title,
  .xmdsite-hero-has-media .xmdsite-page-title,
  .xmdsite-page-hero-has-media .xmdsite-section-description,
  .xmdsite-hero-has-media .xmdsite-section-description
) {
  color: #ffffff !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-page-hero,
  .xmdsite-hero,
  .xmdsite-about-banner,
  .xmdsite-contact-banner
) :where(
  .xmdsite-page-title,
  .xmdsite-detail-title,
  .xmdsite-contact-title,
  .xmdsite-section-description,
  .xmdsite-eyebrow
) {
  color: #ffffff !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-search-submit,
  .xmdsite-top-search-submit,
  .xmdsite-pagination-link:hover,
  .xmdsite-pagination-link:focus-visible,
  .xmdsite-pagination-current,
  .xmdsite-category-link:hover,
  .xmdsite-category-link:focus-visible,
  .xmdsite-category-link[aria-current="page"],
  .xmdsite-category-item.is-active .xmdsite-category-link,
  .xmdsite-lux-filter-option:hover,
  .xmdsite-lux-filter-option:focus-visible,
  .xmdsite-lux-filter-option.is-active,
  .xmdsite-lux-filter-option[aria-current="page"],
  .xmdsite-card-button,
  .xmdsite-more-link,
  .xmdsite-submit
) {
  background-color: #2563eb !important;
  border-color: #2563eb !important;
  color: #ffffff !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-breadcrumb-link:hover,
  .xmdsite-breadcrumb-link:focus-visible,
  .xmdsite-item-title a:hover,
  .xmdsite-item-title a:focus-visible,
  .xmdsite-card-title a:hover,
  .xmdsite-card-title a:focus-visible,
  .xmdsite-footer-link:hover,
  .xmdsite-footer-link:focus-visible
) {
  color: #1d4ed8 !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-lux-filter-label,
  .xmdsite-lux-category-label
) {
  color: #1e40af !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-lux-filter-bar,
  .xmdsite-lux-category-row,
  .xmdsite-lux-filter-option
) {
  border-color: rgba(37, 99, 235, 0.18) !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(.xmdsite-lux-filter-bar) {
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%) !important;
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.08) !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-hero-image-list,
  .xmdsite-about-banner-slider,
  .xmdsite-contact-banner-media
)::part(bullet-active) {
  background: #2563eb !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(.xmdsite-footer) {
  background: #0b1f3a !important;
}

@media (max-width: 920px) {
  body.xmdsite-page:not(.xmdsite-design-home) :where(
    .xmdsite-page-hero,
    .xmdsite-hero,
    .xmdsite-about-banner,
    .xmdsite-contact-banner,
    .xmdsite-page-hero-has-media,
    .xmdsite-hero-has-media
  ) {
    min-height: 280px !important;
  }

  body.xmdsite-page:not(.xmdsite-design-home) :where(
    .xmdsite-hero-media,
    .xmdsite-hero-image-list,
    .xmdsite-hero-image-item,
    .xmdsite-hero-image-link,
    .xmdsite-hero-slide,
    .xmdsite-hero-media-content,
    .xmdsite-about-banner-slider,
    .xmdsite-about-banner-slide,
    .xmdsite-about-banner-image,
    .xmdsite-about-banner-link,
    .xmdsite-about-banner-media,
    .xmdsite-about-banner-file,
    .xmdsite-contact-banner-media,
    .xmdsite-contact-banner swiper-container,
    .xmdsite-contact-banner swiper-slide,
    .xmdsite-contact-banner-picture
  ) {
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
  }

  body.xmdsite-page:not(.xmdsite-design-home) :where(
    .xmdsite-page-hero-content,
    .xmdsite-hero-content,
    .xmdsite-page-hero-has-media .xmdsite-page-hero-content,
    .xmdsite-hero-has-media .xmdsite-hero-content
  ) {
    min-height: 280px !important;
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}

/* FINAL: keep homepage service team as coverflow. */
body.xmdsite-design-home .design-team {
  padding: 0 0 86px;
  background: #000000;
  overflow: hidden;
}

body.xmdsite-design-home .design-team .design-section-head {
  padding-bottom: 18px;
}

body.xmdsite-design-home .design-team-slider {
  width: min(1240px, calc(100% - 80px));
  height: 405px;
  margin: 0 auto;
  overflow: visible;
}

body.xmdsite-design-home .design-team-slider swiper-slide {
  width: 235px;
  height: 342px;
}

body.xmdsite-design-home .design-team-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

body.xmdsite-design-home .design-team-card::after {
  position: absolute;
  inset: 0 0 30px;
  display: block;
  background: rgba(0, 0, 0, 0.22);
  content: "";
  pointer-events: none;
}

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder {
  width: 100%;
  height: 306px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.03);
  opacity: 0.42;
  transform: scale(0.9);
  transform-origin: center bottom;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active {
  z-index: 5;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
  filter: grayscale(0) contrast(1.04);
  opacity: 1;
  transform: scale(1.1);
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card::after {
  opacity: 0;
}

body.xmdsite-design-home .design-team-card strong,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card .design-placeholder {
  opacity: 0.72;
  transform: scale(1);
}

body.xmdsite-design-home .design-team-slider::part(button-prev),
body.xmdsite-design-home .design-team-slider::part(button-next) {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.56);
}

body.xmdsite-design-home .design-team-slider::part(button-prev) {
  left: 0;
}

body.xmdsite-design-home .design-team-slider::part(button-next) {
  right: 0;
}

@media (max-width: 920px) {
  body.xmdsite-design-home .design-team-slider {
    width: min(760px, calc(100% - 40px));
    height: 330px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 170px;
    height: 280px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 250px;
  }
}

@media (max-width: 640px) {
  body.xmdsite-design-home .design-team {
    padding-bottom: 62px;
  }

  body.xmdsite-design-home .design-team-slider {
    width: min(460px, calc(100% - 28px));
    height: 300px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 148px;
    height: 250px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 220px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
    transform: scale(1.08);
  }
}


/* FINAL: smoother homepage team carousel interaction at EOF. */
body.xmdsite-design-home .design-team-slider {
  touch-action: pan-y;
}

body.xmdsite-design-home .design-team-card {
  outline: none;
}

body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-card strong,
body.xmdsite-design-home .design-team-card::after {
  transition:
    opacity 240ms ease,
    filter 240ms ease,
    transform 240ms ease,
    color 240ms ease;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next {
  z-index: 4;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active {
  z-index: 6;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card .design-placeholder {
  filter: grayscale(0.18) contrast(1.05);
  opacity: 0.9;
  transform: scale(1.03);
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card::after,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card::after {
  opacity: 0.16;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card strong,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card strong {
  color: #ffffff;
  font-size: 16px;
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-card:hover img,
body.xmdsite-design-home .design-team-card:focus-visible img,
body.xmdsite-design-home .design-team-card:hover .design-placeholder,
body.xmdsite-design-home .design-team-card:focus-visible .design-placeholder {
  filter: grayscale(0) contrast(1.07);
  opacity: 1;
  transform: scale(1.1);
}

body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card::after,
body.xmdsite-design-home .design-team-card:hover::after,
body.xmdsite-design-home .design-team-card:focus-visible::after {
  opacity: 0;
}

body.xmdsite-design-home .design-team-card:hover strong,
body.xmdsite-design-home .design-team-card:focus-visible strong {
  color: #ffffff;
  transform: translateY(-2px);
}

body.xmdsite-design-home .design-team-slider swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) .design-team-card .design-placeholder {
  filter: grayscale(1) contrast(1.03);
  opacity: 0.42;
  transform: scale(0.9);
}

body.xmdsite-design-home .design-team-slider.is-normalizing .design-team-card,
body.xmdsite-design-home .design-team-slider.is-normalizing .design-team-card img,
body.xmdsite-design-home .design-team-slider.is-normalizing .design-team-card .design-placeholder,
body.xmdsite-design-home .design-team-slider.is-normalizing .design-team-card strong,
body.xmdsite-design-home .design-team-slider.is-normalizing .design-team-card::after {
  transition-duration: 0ms !important;
}


/* FINAL: enlarge homepage about section at EOF. */
body.xmdsite-design-home .design-about {
  margin-top: -196px;
  padding: 0 32px 86px;
}

body.xmdsite-design-home .design-about-panel {
  width: min(1240px, 100%);
  min-height: 360px;
  grid-template-columns: minmax(480px, 47%) minmax(0, 1fr);
}

body.xmdsite-design-home .design-about-media {
  min-height: 390px;
  transform: translate(28px, -40px);
}

body.xmdsite-design-home .design-about-media img,
body.xmdsite-design-home .design-about-media .design-placeholder {
  min-height: 390px;
}

body.xmdsite-design-home .design-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 70px 82px 62px 110px;
}

body.xmdsite-design-home .design-about-text {
  max-height: 132px;
  font-size: 14px;
  line-height: 2;
}

body.xmdsite-design-home .design-about-copy h2 {
  font-size: 26px;
}

body.xmdsite-design-home .design-arrow-link {
  width: 112px;
  height: 36px;
  margin-top: 28px;
}

@media (max-width: 1100px) {
  body.xmdsite-design-home .design-about-panel {
    grid-template-columns: minmax(360px, 46%) minmax(0, 1fr);
  }

  body.xmdsite-design-home .design-about-copy {
    padding: 58px 54px 52px 84px;
  }
}

@media (max-width: 820px) {
  body.xmdsite-design-home .design-about {
    margin-top: -132px;
    padding: 0 20px 64px;
  }

  body.xmdsite-design-home .design-about-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.xmdsite-design-home .design-about-media {
    min-height: 320px;
    transform: translate(0, -30px);
  }

  body.xmdsite-design-home .design-about-media img,
  body.xmdsite-design-home .design-about-media .design-placeholder {
    min-height: 320px;
  }

  body.xmdsite-design-home .design-about-copy {
    min-height: 0;
    padding: 0 28px 42px;
  }
}


/* FINAL: increase homepage business black band height at EOF. */
body.xmdsite-design-home .design-more-band {
  min-height: 430px;
  padding-top: 36px;
}

body.xmdsite-design-home .design-about {
  margin-top: -226px;
}

@media (max-width: 820px) {
  body.xmdsite-design-home .design-more-band {
    min-height: 320px;
    padding-top: 28px;
  }

  body.xmdsite-design-home .design-about {
    margin-top: -142px;
  }
}


/* FINAL: move homepage view-more text lower. */
body.xmdsite-design-home .design-more-band {
  padding-top: 72px;
}

@media (max-width: 820px) {
  body.xmdsite-design-home .design-more-band {
    padding-top: 56px;
  }
}


/* FINAL: service list category and title spacing. */
body.xmdsite-service-list-page .xmdsite-container.xmdsite-main {
  padding-top: 0;
}

body.xmdsite-service-list-page .xmdsite-category-nav {
  width: min(1280px, calc(100vw - 32px));
  margin: 70px auto 0;
  transform: translateX(-18%);
}

body.xmdsite-service-list-page .xmdsite-category-list {
  justify-content: flex-start;
}

body.xmdsite-service-list-page .xmdsite-partner-showcase {
  padding-top: 78px;
}

body.xmdsite-service-list-page .xmdsite-partner-section-head {
  margin-bottom: 46px;
}

body.xmdsite-service-list-page .xmdsite-service-scroll-track {
  padding-top: 4px;
}

@media (max-width: 1100px) {
  body.xmdsite-service-list-page .xmdsite-category-nav {
    transform: translateX(-8%);
  }
}

@media (max-width: 760px) {
  body.xmdsite-service-list-page .xmdsite-category-nav {
    margin-top: 38px;
    transform: none;
  }

  body.xmdsite-service-list-page .xmdsite-partner-showcase {
    padding-top: 52px;
  }

  body.xmdsite-service-list-page .xmdsite-partner-section-head {
    margin-bottom: 32px;
  }
}

/* FINAL: align service categories below breadcrumb. */
body.xmdsite-service-list-page .xmdsite-category-nav {
  width: min(1320px, calc(100vw - 40px));
  margin: 28px auto 0;
  transform: none;
}

body.xmdsite-service-list-page .xmdsite-category-list {
  justify-content: flex-start;
}

@media (max-width: 760px) {
  body.xmdsite-service-list-page .xmdsite-category-nav {
    width: min(100%, calc(100vw - 32px));
    margin-top: 24px;
  }
}

/* Footer follows theme-93 standalone layout. */
.footer {
  background: #2f2f2f;
  color: #ffffff;
}

.footer-main {
  min-height: 183px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
  padding: 32px 0 34px;
}

.footer-main > div:first-child {
  min-width: 0;
}

.footer-brand {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
}

.footer-nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  outline: none;
}

.footer-info {
  flex: 0 0 330px;
  max-width: 330px;
  padding-top: 1px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.9;
}

.footer-info p,
.footer-info div {
  margin: 0 0 16px;
}

.footer-info * {
  color: #ffffff !important;
}

.footer-info p:last-child,
.footer-info div:last-child {
  margin-bottom: 0;
}

.copyright {
  min-height: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #242424;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  padding: 0 20px;
}

.copyright a {
  margin-left: 28px;
  color: inherit;
}

.copyright a:hover,
.copyright a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  outline: none;
}

@media (max-width: 820px) {
  .footer-main {
    min-height: 0;
    flex-direction: column;
    gap: 24px;
    padding: 30px 0;
  }

  .footer-info {
    flex-basis: auto;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .copyright {
    gap: 6px 14px;
    padding: 8px 16px;
  }

  .copyright a {
    margin-left: 0;
  }
}

/* FINAL: use design blue for active navigation and selected states. */
body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link::after,
.xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link::after {
  background: #2563eb !important;
}

body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link::before,
.xmdsite-nav-sublist .xmdsite-nav-link::before {
  background: #2563eb !important;
}

body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link:hover,
body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link:focus-visible,
body.xmdsite-page .xmdsite-nav-subitem.is-active > .xmdsite-nav-link,
body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link[aria-current="page"],
.xmdsite-nav-subitem.is-active > .xmdsite-nav-link,
.xmdsite-nav-sublist .xmdsite-nav-link[aria-current="page"] {
  background: rgba(37, 99, 235, 0.14) !important;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.42) !important;
}

.xmdsite-nav-toggle:hover,
.xmdsite-nav-toggle:focus-visible {
  border-color: rgba(37, 99, 235, 0.86) !important;
  background: rgba(37, 99, 235, 0.18) !important;
  color: #2563eb !important;
}

/* FINAL: apply the about-page grid background to every non-home page. */
body.xmdsite-page:not(.xmdsite-design-home) {
  background:
    linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    #ffffff !important;
  background-size: 42px 42px, 42px 42px, auto !important;
  background-attachment: fixed, fixed, scroll !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-main,
  .xmdsite-page-main,
  .xmdsite-page-shell,
  .xmdsite-about-intro-page,
  .xmdsite-list-section,
  .xmdsite-detail-section,
  .xmdsite-detail-main,
  .xmdsite-news-detail,
  .xmdsite-contact-main,
  .xmdsite-contact-section,
  .xmdsite-product-topline,
  .xmdsite-unified-list-toolbar
) {
  background:
    linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    #ffffff !important;
  background-size: 42px 42px, 42px 42px, auto !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-page-hero-content,
  .xmdsite-hero-content,
  .xmdsite-list-section,
  .xmdsite-detail-section,
  .xmdsite-detail-main,
  .xmdsite-news-detail,
  .xmdsite-contact-main,
  .xmdsite-contact-section,
  .xmdsite-product-topline,
  .xmdsite-unified-list-toolbar
) {
  background: transparent !important;
}

body.xmdsite-page:not(.xmdsite-design-home) :where(
  .xmdsite-item-card-link,
  .xmdsite-card-body,
  .xmdsite-card-media,
  .xmdsite-detail-card,
  .xmdsite-news-card,
  .xmdsite-about-panel,
  .xmdsite-contact-card,
  .xmdsite-lux-filter-bar,
  .xmdsite-empty-state
) {
  background-color: #ffffff;
}

/* FINAL: keep every list-page breadcrumb in the same position with equal vertical spacing. */
body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-main:has(> .xmdsite-unified-list-toolbar),
body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-container.xmdsite-main:has(> .xmdsite-unified-list-toolbar),
body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-unified-list-toolbar + .xmdsite-main,
body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-unified-list-toolbar + .xmdsite-container.xmdsite-main {
  gap: 0 !important;
  padding-top: 0 !important;
}

body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-unified-list-toolbar {
  width: min(1320px, calc(100% - 40px)) !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 18px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  clip-path: none !important;
  background: transparent !important;
}

body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-main > .xmdsite-unified-list-toolbar {
  width: 100% !important;
}

body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-unified-list-toolbar > :where(
  .xmdsite-product-topline-inner,
  .xmdsite-list-toolbar-inner
) {
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-unified-list-toolbar :where(
  .xmdsite-breadcrumb,
  .xmdsite-top-breadcrumb
),
body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-unified-list-toolbar.xmdsite-breadcrumb {
  min-height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}

body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-unified-list-toolbar .xmdsite-breadcrumb-list {
  min-height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center !important;
  line-height: 20px !important;
}

body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-main > .xmdsite-unified-list-toolbar + :where(.xmdsite-category-nav, .xmdsite-lux-filter, .xmdsite-list-section),
body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-unified-list-toolbar + .xmdsite-main > :first-child,
body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-unified-list-toolbar + .xmdsite-container.xmdsite-main > :first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-main > .xmdsite-category-nav + :where(.xmdsite-list-section, .xmdsite-partner-showcase),
body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-main > .xmdsite-category-nav ~ :where(.xmdsite-list-section, .xmdsite-partner-showcase),
body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-main > .xmdsite-lux-filter + .xmdsite-list-section {
  margin-top: 0 !important;
  padding-top: 40px !important;
}

body.xmdsite-service-list-page .xmdsite-category-nav,
body.xmdsite-service-list-page .xmdsite-partner-showcase {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-unified-list-toolbar {
    width: min(1320px, calc(100% - 28px)) !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  body.xmdsite-page:not(.xmdsite-design-home) .xmdsite-main > .xmdsite-unified-list-toolbar + :where(.xmdsite-category-nav, .xmdsite-lux-filter, .xmdsite-list-section) {
    padding-top: 0 !important;
  }
}

/* FINAL: keep the H5 navigation panel on the right without covering the page. */
@media (max-width: 920px) {
  body.xmdsite-page .xmdsite-nav {
    right: 12px !important;
    left: auto !important;
    width: max-content !important;
    min-width: 84px !important;
    max-width: calc(100vw - 24px) !important;
    background: rgba(11, 31, 58, 0.98) !important;
  }

  body.xmdsite-page .xmdsite-nav-list {
    width: max-content !important;
    min-width: 84px !important;
    max-width: 100% !important;
  }

  body.xmdsite-page .xmdsite-nav-item {
    width: 100% !important;
  }

  body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link,
  body.xmdsite-page .xmdsite-nav-link {
    justify-content: center !important;
    width: 100% !important;
    min-width: 84px !important;
    padding-right: 18px !important;
    padding-left: 18px !important;
    text-align: center !important;
  }
}

/* FINAL: hide secondary navigation in the mobile header. */
@media (max-width: 920px) {
  body.xmdsite-page .xmdsite-nav .xmdsite-nav-sublist,
  body.xmdsite-page .xmdsite-nav .xmdsite-nav-item:hover .xmdsite-nav-sublist,
  body.xmdsite-page .xmdsite-nav .xmdsite-nav-item:focus-within .xmdsite-nav-sublist,
  body.xmdsite-page .xmdsite-nav .xmdsite-nav-item.is-subnav-open .xmdsite-nav-sublist {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* FINAL: unified sitewide blue color system. */
:root {
  --xmdsite-accent: #2563eb !important;
  --xmdsite-accent-hover: #1d4ed8 !important;
  --xmdsite-accent-dark: #1d4ed8 !important;
  --xmdsite-accent-deep: #1e40af !important;
  --xmdsite-accent-soft: #eff6ff !important;
  --xmdsite-accent-tint: rgba(37, 99, 235, 0.12) !important;
  --xmdsite-accent-line: rgba(37, 99, 235, 0.28) !important;
  --xmdsite-accent-ring: rgba(37, 99, 235, 0.28) !important;
  --xmdsite-accent-rgb: 37, 99, 235 !important;
  --contact-blue: #2563eb !important;
  --contact-blue-dark: #1d4ed8 !important;
  --contact-blue-soft: #eff6ff !important;
  --contact-sky: #60a5fa !important;
}

html {
  accent-color: #2563eb;
}

::selection {
  background: rgba(37, 99, 235, 0.24);
  color: #0f172a;
}

body.xmdsite-design-home {
  --design-blue: #2563eb !important;
  --design-blue-soft: #93c5fd !important;
  --design-dark: #0f2747 !important;
  --design-nav: #0b1f3a !important;
  --design-black: #071426 !important;
  --design-text: #172033 !important;
  --design-muted: #64748b !important;
  background-color: #f8fbff !important;
}

body.xmdsite-page .xmdsite-header,
body.xmdsite-page .xmdsite-nav,
body.xmdsite-page .xmdsite-nav-sublist {
  border-color: rgba(96, 165, 250, 0.2) !important;
  background: rgba(11, 31, 58, 0.97) !important;
  color: #ffffff !important;
}

body.xmdsite-page .xmdsite-nav-link:hover,
body.xmdsite-page .xmdsite-nav-link:focus-visible,
body.xmdsite-page .xmdsite-nav-item.is-active > .xmdsite-nav-link,
body.xmdsite-page .xmdsite-nav-item.is-subnav-open > .xmdsite-nav-link {
  background-color: rgba(37, 99, 235, 0.22) !important;
  color: #ffffff !important;
}

body.xmdsite-page .xmdsite-nav-toggle:hover,
body.xmdsite-page .xmdsite-nav-toggle:focus-visible {
  border-color: #60a5fa !important;
  background: #2563eb !important;
  color: #ffffff !important;
}

body.xmdsite-design-home .xmdsite-brand-emblem {
  background: #2563eb !important;
  color: #ffffff !important;
}

body.xmdsite-design-home .design-more-band,
body.xmdsite-design-home .design-team {
  background: #071426 !important;
}

body.xmdsite-design-home .design-about {
  background: #f8fbff !important;
}

body.xmdsite-design-home .design-about-panel {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #003153 !important;
  box-shadow:
    0 34px 80px rgba(0, 31, 53, 0.28),
    0 12px 28px rgba(0, 49, 83, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
}

body.xmdsite-design-home .design-about-copy,
body.xmdsite-design-home .design-about-copy h2,
body.xmdsite-design-home .design-about-copy .design-en,
body.xmdsite-design-home .design-about-copy .design-about-text,
body.xmdsite-design-home .design-about-copy .design-about-text :where(p, div) {
  color: #ffffff !important;
}

body.xmdsite-design-home .design-link-more,
body.xmdsite-design-home .design-news-button {
  border-radius: 4px;
  background: #2563eb !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}

body.xmdsite-design-home .design-link-more:hover,
body.xmdsite-design-home .design-link-more:focus-visible,
body.xmdsite-design-home .design-news-button:hover,
body.xmdsite-design-home .design-news-button:focus-visible {
  background: #1d4ed8 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.3);
}

body.xmdsite-design-home .design-news-card::before {
  background: linear-gradient(135deg, #1e40af 0%, #0b1f3a 100%) !important;
}

body.xmdsite-design-home .design-news-card:hover,
body.xmdsite-design-home .design-news-card:focus-within {
  background: #0f2747 !important;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.2);
}

body.xmdsite-design-home .design-news-card time,
body.xmdsite-design-home .design-news-card:hover time,
body.xmdsite-design-home .design-news-card:focus-within time {
  background: #2563eb !important;
  color: #ffffff !important;
}

body.xmdsite-page :where(
  .xmdsite-search-submit,
  .xmdsite-top-search-submit,
  .xmdsite-contact-button,
  .xmdsite-card-button,
  .xmdsite-more-link,
  .xmdsite-submit,
  .xmdsite-pagination-current,
  .xmdsite-pagination-link[aria-current="page"]
) {
  border-color: #2563eb !important;
  background-color: #2563eb !important;
  color: #ffffff !important;
}

body.xmdsite-page :where(
  .xmdsite-search-submit,
  .xmdsite-top-search-submit,
  .xmdsite-contact-button,
  .xmdsite-card-button,
  .xmdsite-more-link,
  .xmdsite-submit
):hover,
body.xmdsite-page :where(
  .xmdsite-search-submit,
  .xmdsite-top-search-submit,
  .xmdsite-contact-button,
  .xmdsite-card-button,
  .xmdsite-more-link,
  .xmdsite-submit
):focus-visible {
  border-color: #1d4ed8 !important;
  background-color: #1d4ed8 !important;
  color: #ffffff !important;
}

body.xmdsite-page :where(.xmdsite-footer, .footer) {
  background: #0b1f3a !important;
  color: #ffffff !important;
}

body.xmdsite-page :where(.copyright, .xmdsite-footer-bottom) {
  background: #071426 !important;
}

body.xmdsite-page :where(.xmdsite-footer-link, .footer-nav a):hover,
body.xmdsite-page :where(.xmdsite-footer-link, .footer-nav a):focus-visible {
  color: #93c5fd !important;
}

/* Mobile hero carousels: preserve the source aspect ratio and show the full image. */
@media (max-width: 760px) {
  body.xmdsite-design-home :where(
    .design-hero,
    .design-hero-slider,
    .design-hero-slider swiper-slide,
    .design-hero-slide
  ) {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  body.xmdsite-design-home .design-hero-media {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  body.xmdsite-page:not(.xmdsite-design-home) :where(
    .xmdsite-page-hero,
    .xmdsite-page-hero-has-media,
    .xmdsite-hero,
    .xmdsite-hero-has-media,
    .xmdsite-about-banner,
    .xmdsite-contact-banner,
    .xmdsite-hero-media,
    .xmdsite-hero-image-list,
    .xmdsite-hero-image-item,
    .xmdsite-hero-image-link,
    .xmdsite-hero-slide,
    .xmdsite-about-banner-slider,
    .xmdsite-about-banner-slide,
    .xmdsite-about-banner-image,
    .xmdsite-about-banner-link,
    .xmdsite-contact-banner-media,
    .xmdsite-contact-banner swiper-container,
    .xmdsite-contact-banner swiper-slide
  ) {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  body.xmdsite-page:not(.xmdsite-design-home) :where(
    .xmdsite-hero-media-content,
    .xmdsite-about-banner-media,
    .xmdsite-contact-banner-picture
  ) {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

/* Mobile team carousel: keep long service titles readable without overlap. */
@media (max-width: 640px) {
  body.xmdsite-design-home .design-team-slider {
    height: 340px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: min(220px, calc(100vw - 120px));
    height: 286px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 238px;
  }

  body.xmdsite-design-home .design-team-card strong {
    max-width: 100%;
    min-height: 48px;
    margin-top: 14px;
    padding: 0 8px;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide:not(.swiper-slide-active) .design-team-card strong {
    visibility: hidden;
    opacity: 0;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card strong {
    visibility: visible;
    margin-top: 14px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.4;
    opacity: 1;
    transform: none;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
    transform: scale(1.04);
  }
}

/* Desktop product carousel: give long titles enough horizontal and vertical room. */
@media (min-width: 921px) {
  body.xmdsite-design-home .design-team {
    padding-bottom: 108px;
  }

  body.xmdsite-design-home .design-team-slider {
    width: min(1560px, calc(100% - 64px));
    height: 500px;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide {
    width: 300px;
    height: 500px;
  }

  body.xmdsite-design-home .design-team-card::after {
    inset: 0 0 80px;
  }

  body.xmdsite-design-home .design-team-card img,
  body.xmdsite-design-home .design-team-card .design-placeholder {
    height: 420px;
  }

  body.xmdsite-design-home .design-team-card strong,
  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card strong {
    box-sizing: border-box;
    display: -webkit-box;
    width: 100%;
    min-height: 66px;
    margin-top: 14px;
    padding: 0 14px;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
  body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card .design-placeholder {
    transform: scale(1.06);
  }
}

/* Sitewide interaction palette: Hermes orange for hover, focus and active states. */
body.xmdsite-page {
  --xmdsite-interaction-orange: #f37021;
  --xmdsite-interaction-orange-soft: rgba(243, 112, 33, 0.14);
  --xmdsite-interaction-orange-border: rgba(243, 112, 33, 0.72);
  --xmdsite-interaction-orange-shadow: rgba(243, 112, 33, 0.24);
}

body.xmdsite-page.xmdsite-page :where(
  a,
  .xmdsite-section-link,
  .xmdsite-breadcrumb-link,
  .xmdsite-news-link,
  .xmdsite-about-side-link,
  .xmdsite-footer-link,
  .footer-nav a,
  .copyright a
):hover,
body.xmdsite-page.xmdsite-page :where(
  a,
  .xmdsite-section-link,
  .xmdsite-breadcrumb-link,
  .xmdsite-news-link,
  .xmdsite-about-side-link,
  .xmdsite-footer-link,
  .footer-nav a,
  .copyright a
):focus-visible {
  color: var(--xmdsite-interaction-orange) !important;
}

body.xmdsite-page .xmdsite-nav-link:hover,
body.xmdsite-page .xmdsite-nav-link:focus-visible,
body.xmdsite-page .xmdsite-nav-item.is-active > .xmdsite-nav-link,
body.xmdsite-page .xmdsite-nav-item.is-subnav-open > .xmdsite-nav-link,
body.xmdsite-page .xmdsite-nav-link[aria-current="page"] {
  border-color: var(--xmdsite-interaction-orange-border) !important;
  background-color: var(--xmdsite-interaction-orange-soft) !important;
  color: var(--xmdsite-interaction-orange) !important;
}

body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link:hover::after,
body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item > .xmdsite-nav-link:focus-visible::after,
body.xmdsite-page .xmdsite-nav > .xmdsite-nav-list > .xmdsite-nav-item.is-active > .xmdsite-nav-link::after,
body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link:hover::before,
body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link:focus-visible::before,
body.xmdsite-page .xmdsite-nav-subitem.is-active > .xmdsite-nav-link::before,
body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link[aria-current="page"]::before {
  background: var(--xmdsite-interaction-orange) !important;
}

body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link:hover,
body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link:focus-visible,
body.xmdsite-page .xmdsite-nav-subitem.is-active > .xmdsite-nav-link,
body.xmdsite-page .xmdsite-nav-sublist .xmdsite-nav-link[aria-current="page"] {
  background: var(--xmdsite-interaction-orange-soft) !important;
  color: var(--xmdsite-interaction-orange) !important;
  box-shadow: inset 0 0 0 1px var(--xmdsite-interaction-orange-border) !important;
}

body.xmdsite-page .xmdsite-nav-toggle:hover,
body.xmdsite-page .xmdsite-nav-toggle:focus-visible {
  border-color: var(--xmdsite-interaction-orange) !important;
  background: var(--xmdsite-interaction-orange-soft) !important;
  color: var(--xmdsite-interaction-orange) !important;
  box-shadow: 0 8px 22px var(--xmdsite-interaction-orange-shadow) !important;
}

body.xmdsite-page.xmdsite-page :where(
  .xmdsite-search-submit,
  .xmdsite-top-search-submit,
  .xmdsite-contact-button,
  .xmdsite-card-button,
  .xmdsite-more-link,
  .xmdsite-submit,
  .xmdsite-card-cta,
  .design-link-more,
  .design-news-button,
  .design-arrow-link,
  button[type="submit"],
  input[type="submit"]
):hover,
body.xmdsite-page.xmdsite-page :where(
  .xmdsite-search-submit,
  .xmdsite-top-search-submit,
  .xmdsite-contact-button,
  .xmdsite-card-button,
  .xmdsite-more-link,
  .xmdsite-submit,
  .xmdsite-card-cta,
  .design-link-more,
  .design-news-button,
  .design-arrow-link,
  button[type="submit"],
  input[type="submit"]
):focus-visible {
  border-color: var(--xmdsite-interaction-orange) !important;
  background: #ffffff !important;
  color: var(--xmdsite-interaction-orange) !important;
  box-shadow: 0 12px 28px var(--xmdsite-interaction-orange-shadow) !important;
}

body.xmdsite-page.xmdsite-page :where(
  .xmdsite-pagination-link:hover,
  .xmdsite-pagination-link:focus-visible,
  .xmdsite-pagination-link.is-active,
  .xmdsite-pagination-link[aria-current="page"],
  .xmdsite-pagination-current,
  .xmdsite-category-link:hover,
  .xmdsite-category-link:focus-visible,
  .xmdsite-category-link.is-active,
  .xmdsite-category-link[aria-current="page"],
  .xmdsite-category-item.is-active .xmdsite-category-link,
  .xmdsite-category-pill:hover,
  .xmdsite-category-pill:focus-visible,
  .xmdsite-tag-pill:hover,
  .xmdsite-tag-pill:focus-visible,
  .xmdsite-lux-filter-option:hover,
  .xmdsite-lux-filter-option:focus-visible,
  .xmdsite-lux-filter-option.is-active,
  .xmdsite-lux-filter-option[aria-current="page"],
  .xmdsite-partner-button:hover,
  .xmdsite-partner-button:focus-visible,
  .xmdsite-partner-button.is-active,
  .xmdsite-tab:hover,
  .xmdsite-tab:focus-visible,
  .xmdsite-tab.is-active,
  .xmdsite-tab[aria-selected="true"]
) {
  border-color: var(--xmdsite-interaction-orange-border) !important;
  background: var(--xmdsite-interaction-orange-soft) !important;
  color: var(--xmdsite-interaction-orange) !important;
  box-shadow: 0 8px 20px var(--xmdsite-interaction-orange-shadow) !important;
}

body.xmdsite-page.xmdsite-page :where(
  .xmdsite-partner-button.is-active,
  .xmdsite-pagination-link.is-active,
  .xmdsite-pagination-link[aria-current="page"],
  .xmdsite-category-item.is-active .xmdsite-category-link,
  .xmdsite-lux-filter-option.is-active,
  .xmdsite-lux-filter-option[aria-current="page"],
  .xmdsite-tab.is-active,
  .xmdsite-tab[aria-selected="true"]
)::after {
  background: var(--xmdsite-interaction-orange) !important;
}

body.xmdsite-page .xmdsite-item-card-link:hover,
body.xmdsite-page .xmdsite-item-card-link:focus-visible,
body.xmdsite-page .xmdsite-service-scroll-card:hover,
body.xmdsite-page .xmdsite-service-scroll-card:focus-visible,
body.xmdsite-page :where(
  .xmdsite-visual-card,
  .xmdsite-overview-card,
  .xmdsite-section-card,
  .xmdsite-adjacent-card,
  .xmdsite-contact-card,
  .xmdsite-partner-extra-item
):hover,
body.xmdsite-page :where(
  .xmdsite-visual-card,
  .xmdsite-overview-card,
  .xmdsite-section-card,
  .xmdsite-adjacent-card,
  .xmdsite-contact-card,
  .xmdsite-partner-extra-item
):focus-within {
  border-color: var(--xmdsite-interaction-orange-border) !important;
  box-shadow: 0 18px 38px var(--xmdsite-interaction-orange-shadow) !important;
}

body.xmdsite-page .xmdsite-item-card-link:hover :where(
  .xmdsite-card-title,
  .xmdsite-card-title a,
  .xmdsite-card-more,
  .xmdsite-card-cta,
  .xmdsite-card-tip
),
body.xmdsite-page .xmdsite-item-card-link:focus-visible :where(
  .xmdsite-card-title,
  .xmdsite-card-title a,
  .xmdsite-card-more,
  .xmdsite-card-cta,
  .xmdsite-card-tip
),
body.xmdsite-page .xmdsite-service-scroll-card:hover :where(h2, h3, strong, .xmdsite-card-title),
body.xmdsite-page .xmdsite-service-scroll-card:focus-visible :where(h2, h3, strong, .xmdsite-card-title) {
  color: var(--xmdsite-interaction-orange) !important;
}

body.xmdsite-design-home .design-business-card:hover::after,
body.xmdsite-design-home .design-business-card:focus-visible::after {
  background: linear-gradient(180deg, transparent 36%, rgba(7, 20, 38, 0.9)) !important;
}

body.xmdsite-design-home .design-business-card:hover span:last-child,
body.xmdsite-design-home .design-business-card:focus-visible span:last-child,
body.xmdsite-design-home .design-team-card:hover strong,
body.xmdsite-design-home .design-team-card:focus-visible strong,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card strong {
  color: var(--xmdsite-interaction-orange) !important;
}

body.xmdsite-design-home .design-news-card:hover,
body.xmdsite-design-home .design-news-card:focus-within {
  border-color: var(--xmdsite-interaction-orange-border) !important;
  box-shadow: 0 18px 38px var(--xmdsite-interaction-orange-shadow) !important;
}

body.xmdsite-design-home .design-news-card:hover::before,
body.xmdsite-design-home .design-news-card:focus-within::before {
  background: linear-gradient(135deg, #0b1f3a 0%, #51270f 100%) !important;
}

body.xmdsite-design-home .design-news-card:hover h3,
body.xmdsite-design-home .design-news-card:focus-within h3 {
  color: var(--xmdsite-interaction-orange) !important;
}

body.xmdsite-design-home .design-news-card:hover time,
body.xmdsite-design-home .design-news-card:focus-within time {
  background: #ffffff !important;
  color: var(--xmdsite-interaction-orange) !important;
}

body.xmdsite-page.xmdsite-page :where(input, textarea, select):focus,
body.xmdsite-page.xmdsite-page :where(input, textarea, select):focus-visible {
  border-color: var(--xmdsite-interaction-orange) !important;
  outline-color: var(--xmdsite-interaction-orange) !important;
  box-shadow: 0 0 0 3px var(--xmdsite-interaction-orange-soft) !important;
}

body.xmdsite-page.xmdsite-page :where(input[type="checkbox"], input[type="radio"]):checked {
  accent-color: var(--xmdsite-interaction-orange) !important;
}

body.xmdsite-page swiper-container::part(button-prev):hover,
body.xmdsite-page swiper-container::part(button-next):hover,
body.xmdsite-page swiper-container::part(button-prev):focus-visible,
body.xmdsite-page swiper-container::part(button-next):focus-visible {
  color: var(--xmdsite-interaction-orange) !important;
}

body.xmdsite-page swiper-container::part(bullet-active) {
  background: var(--xmdsite-interaction-orange) !important;
}

/* Homepage product carousel: navigation lives at the page edges, outside cards. */
body.xmdsite-design-home .design-team-carousel-shell {
  position: relative;
  width: 100%;
}

body.xmdsite-design-home .design-team-slider::part(button-prev),
body.xmdsite-design-home .design-team-slider::part(button-next) {
  display: none !important;
}

body.xmdsite-design-home .design-team-carousel-arrow {
  position: absolute;
  top: 42%;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(7, 20, 38, 0.78);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

body.xmdsite-design-home .design-team-carousel-arrow span {
  display: block;
  margin-top: -4px;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}

body.xmdsite-design-home .design-team-carousel-arrow-prev {
  left: clamp(16px, 2vw, 36px);
}

body.xmdsite-design-home .design-team-carousel-arrow-next {
  right: clamp(16px, 2vw, 36px);
}

body.xmdsite-design-home .design-team-carousel-arrow:hover,
body.xmdsite-design-home .design-team-carousel-arrow:focus-visible {
  border-color: var(--xmdsite-interaction-orange) !important;
  background: rgba(7, 20, 38, 0.96) !important;
  color: var(--xmdsite-interaction-orange) !important;
  outline: none;
  box-shadow: 0 14px 34px var(--xmdsite-interaction-orange-shadow) !important;
  transform: translateY(-50%) scale(1.06);
}

@media (min-width: 921px) {
  body.xmdsite-design-home .design-team-slider {
    width: min(1560px, calc(100% - 192px));
  }
}

@media (max-width: 920px) {
  body.xmdsite-design-home .design-team-slider {
    width: min(760px, calc(100% - 112px));
  }

  body.xmdsite-design-home .design-team-carousel-arrow {
    top: 38%;
    width: 42px;
    height: 42px;
  }

  body.xmdsite-design-home .design-team-carousel-arrow span {
    font-size: 38px;
  }

  body.xmdsite-design-home .design-team-carousel-arrow-prev {
    left: 10px;
  }

  body.xmdsite-design-home .design-team-carousel-arrow-next {
    right: 10px;
  }
}

/* Homepage images: preserve the complete source image without cropping. */
body.xmdsite-design-home img.design-hero-media,
body.xmdsite-design-home .design-business-card img,
body.xmdsite-design-home .design-about-media img,
body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .xmdsite-brand-logo,
body.xmdsite-design-home :where(.xmdsite-footer, .footer) img {
  max-width: 100%;
  object-fit: contain !important;
  object-position: center center !important;
}

body.xmdsite-design-home .design-hero-slide {
  background: #071426;
}

body.xmdsite-design-home .design-business-card {
  background: #e8eef5;
}

body.xmdsite-design-home .design-about-media {
  background: #edf2f7;
}

body.xmdsite-design-home .design-team-card img {
  background: #071426;
}

body.xmdsite-design-home .design-business-card:hover img,
body.xmdsite-design-home .design-business-card:focus-visible img,
body.xmdsite-design-home .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-active .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-prev .design-team-card img,
body.xmdsite-design-home .design-team-slider swiper-slide.swiper-slide-next .design-team-card img,
body.xmdsite-design-home .design-team-card:hover img,
body.xmdsite-design-home .design-team-card:focus-visible img {
  transform: none !important;
}

/* Homepage service grid: keep every image container strictly square. */
body.xmdsite-design-home .design-business-card {
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
}

/* Homepage hero: break out of content wrappers and span the full viewport. */
html:has(body.xmdsite-design-home),
body.xmdsite-design-home {
  overflow-x: clip;
}

body.xmdsite-design-home .design-hero {
  position: relative;
  left: 50%;
  width: 100vw !important;
  max-width: none !important;
  margin-right: -50vw !important;
  margin-left: -50vw !important;
}

body.xmdsite-design-home .design-hero-slider,
body.xmdsite-design-home .design-hero-slider swiper-slide,
body.xmdsite-design-home .design-hero-slide,
body.xmdsite-design-home .design-hero-media {
  width: 100% !important;
  max-width: none !important;
}

body.xmdsite-design-home .design-hero-media {
  display: block;
}

/* Homepage hero image itself: full viewport width with intrinsic aspect ratio. */
body.xmdsite-design-home .design-hero,
body.xmdsite-design-home .design-hero-slider,
body.xmdsite-design-home .design-hero-slider swiper-slide,
body.xmdsite-design-home .design-hero-slide {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

body.xmdsite-design-home .design-hero-media {
  width: 100vw !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
}
