@font-face {
  font-family: "PingFang SC Local";
  src: url("assets/PlusJakartaSans/PingFangSC-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PingFang SC Local";
  src: url("assets/PlusJakartaSans/PingFangSC-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PingFang SC Local";
  src: url("assets/PlusJakartaSans/PingFangSC-Semibold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans Local";
  src: url("assets/PlusJakartaSans/PlusJakartaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans Local";
  src: url("assets/PlusJakartaSans/PlusJakartaSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans Local";
  src: url("assets/PlusJakartaSans/PlusJakartaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans Local";
  src: url("assets/PlusJakartaSans/PlusJakartaSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --design-width: 1920px;
  --brand-blue: #14b1ff;
  --brand-blue-dark: #007ee5;
  --navy: #071a34;
  --navy-deep: #031326;
  --ink: #102033;
  --muted: #66758a;
  --paper: #ffffff;
  --surface: #f4f7fb;
  --line: #e2e9f2;
  --dark-line: rgba(255, 255, 255, 0.16);
  --radius: 8px;
  --max: 1180px;
  --header: 80px;
  --shadow: 0 18px 45px rgba(11, 32, 58, 0.12);
  --font: "Manrope", "Noto Sans SC", "Microsoft YaHei", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.55;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(18, 168, 255, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--brand-blue);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 63px;
  padding: 0 max(99px, calc((var(--design-width, 100vw) - 1715px) / 2));
  color: var(--paper);
  border-bottom: 0;
  transition:
    background-color 280ms ease,
    color 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    backdrop-filter 280ms ease;
}

.brand img {
  width: 191px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: flex-start;
  gap: 22px;
  margin-top: 10px;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
  white-space: nowrap;
}

body[data-locale="en"] .site-nav {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.site-nav a {
  color: var(--paper);
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: rgba(255, 255, 255, 0.82);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 49px;
}

.header-cta,
.button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.header-cta {
  min-width: 177px;
  min-height: 42px;
  padding: 0 24px;
  color: var(--paper);
  background: var(--brand-blue);
  border-radius: 8px;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
}

body[data-locale="en"] .header-cta {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--paper);
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0;
}

.language-switcher__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.language-switcher__trigger::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url("assets/img/Icon.webp") center / contain no-repeat;
}

.language-switcher__trigger::after {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url("assets/img/chevron-down.webp") center / contain no-repeat;
  transition: transform 180ms ease;
}

.language-switcher.is-open .language-switcher__trigger::after {
  transform: rotate(180deg);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 80;
  margin: 0;
  padding: 6px;
  list-style: none;
  min-width: 132px;
  background: #fff;
  border: 1px solid rgba(22, 40, 67, 0.1);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(2, 13, 28, 0.16);
}

.language-switcher__menu[hidden] {
  display: none;
}

.language-switcher__menu button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  color: #162843;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
  cursor: pointer;
}

.language-switcher__menu button:hover,
.language-switcher__menu button.is-active {
  background: rgba(22, 40, 67, 0.06);
}

.language-switcher__menu button[data-locale="en"] {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.language-switcher--footer {
  margin-left: 12px;
}

.language-switcher--footer .language-switcher__trigger {
  width: 262px;
  min-width: 262px;
  height: 52px;
  min-height: 52px;
  padding: 0 22px 0 16px;
  justify-content: flex-start;
  gap: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
}

body[data-locale="en"] .language-switcher--footer .language-switcher__trigger {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.language-switcher--footer .language-switcher__trigger::before {
  width: 30px;
  height: 30px;
  background: url("assets/img/earth.webp") center / contain no-repeat;
}

.language-switcher--footer .language-switcher__trigger::after {
  width: 18px;
  height: 18px;
  margin-left: auto;
  background: url("assets/img/bottom.webp") center / contain no-repeat;
}

.language-switcher--footer .language-switcher__menu {
  top: auto;
  bottom: calc(100% + 8px);
  min-width: 262px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: var(--header) max(100px, calc((var(--design-width, 100vw) - 1715px) / 2)) 92px;
  color: var(--paper);
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media {
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(2, 13, 28, 0.96) 0%,
    rgba(4, 22, 43, 0.78) 43%,
    rgba(4, 22, 43, 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
}

.hero-eyebrow {
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.3);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1.43px;
}

body[data-locale="en"] .hero-eyebrow {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--paper);
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(56px, 5.42vw, 104px);
  line-height: 136px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-title-accent {
  color: #84d5fe;
}

.hero-subtitle {
  white-space: pre-line;
  margin: 0;
  color: var(--paper);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(32px, 2.82vw, 54px);
  font-weight: 600;
  line-height: 72px;
  letter-spacing: 0;
}

body[data-locale="en"] .hero-subtitle {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.hero-description {
  max-width: 661px;
  margin: 44px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0;
}

body[data-locale="en"] .hero-description {
  max-width: 821px;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 145px;
}

.button {
  min-height: 42px;
  padding: 0 24px;
  font-size: 13px;
}

.hero .button {
  min-height: 62px;
  min-width: 248px;
  padding: 0px 8px 0px 22px;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0;
  border-radius: 10px;
}

body[data-locale="en"] .hero .button {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

body[data-locale="en"] .hero .button-primary {
  font-weight: 800;
}

body[data-locale="en"] .hero .button-secondary {
  font-weight: 700;
}

.button-primary {
  color: var(--paper);
  background: var(--brand-blue);
  box-shadow: 0 12px 26px rgba(20, 177, 255, 0.26);
}

.hero-primary {
  justify-content: space-between;
  gap: 18px;
  box-shadow: none;
}

.hero-primary-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.hero .button-secondary {
  color: var(--brand-blue);
  background: rgba(20, 177, 255, 0.08);
  border: 1px solid var(--brand-blue);
  backdrop-filter: blur(1.65px);
  box-shadow: none;
}

.button-secondary {
  color: var(--brand-blue);
  background: rgba(4, 26, 49, 0.36);
  border: 1.5px solid rgba(18, 168, 255, 0.72);
  box-shadow:
    inset 0 0 18px rgba(18, 168, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.16);
}

.button:hover,
.header-cta:hover,
.mini-button:hover {
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 75px;
  z-index: 2;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: url("assets/img/arrow-circle-down.webp") center / contain no-repeat;
  cursor: pointer;
  transform: translateX(-50%);
}

.section {
  padding: 78px 100px;
}

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 56px;
}

.section-top h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.core-business .section-top h2 {
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
}

.core-business {
  padding-left: 100px;
  padding-right: 100px;
}

.section-top a {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
}

.business-grid,
.client-win-grid,
.case-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.business-grid {
  grid-template-columns: repeat(3, minmax(0, 561px));
  justify-content: space-between;
  gap: 28px;
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 554px));
  justify-content: space-between;
  gap: 28px;
}

.business-card,
.client-win-card,
.platform-card,
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(12, 35, 68, 0.08);
  overflow: hidden;
}

.business-card {
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.business-card__media {
  border-radius: 12px;
}

.business-card__media {
  position: relative;
  width: 561px;
  height: 561px;
  min-height: 561px;
  color: var(--paper);
  overflow: hidden;
}

.business-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-card__media::after,
.client-win-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 13, 28, 0.05), rgba(2, 13, 28, 0.5));
}

.client-win-card::after {
  content: none;
}

.business-card__media h3 {
  position: absolute;
  z-index: 1;
  inset: 0 28px;
  display: grid;
  place-items: center;
  margin: 0;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(44px, 3.34vw, 64px);
  font-weight: 600;
  line-height: 72px;
  letter-spacing: 0;
  text-align: center;
}

.business-card__body,
.product-card__body {
  padding: 20px 0 0;
}

.business-card .card-lead {
  margin: 0 0 22px;
}

.business-card .card-kicker {
  margin: 0;
  color: #162843;
  font-family: "Plus Jakarta Sans Local";
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
}

.business-card h4 {
  margin: 0;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
}

body[data-locale="en"] .business-card .card-kicker {
  display: inline;
  font-family: "Plus Jakarta Sans Local";
  font-weight: 800;
}

body[data-locale="en"] .business-card .card-kicker::after {
  content: " ";
}

body[data-locale="en"] .business-card h4 {
  display: inline;
  font-family: "Plus Jakarta Sans Local";
  font-weight: 600;
}

.business-card p,
.platform-card p,
.product-card p,
.contact-copy p {
  color: var(--muted);
}

.business-card__body > p:not(.card-kicker) {
  margin: 0 0 28px;
  font-family: "PingFang SC Local";
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
  color: rgba(22, 40, 67, 0.56);
}

body[data-locale="en"] .business-card__body > p:not(.card-kicker) {
  font-family: "Plus Jakarta Sans Local";
}

.business-card a,
.client-win-card a,
.case-card a {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
}

.business-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 42px;
  color: var(--paper);
  background: var(--brand-blue);
  border-radius: 6px;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
}

.growth-architecture {
  background: var(--paper);
}

.growth-architecture .section-top h2 {
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.architecture-card {
  position: relative;
  display: grid;
  grid-template-rows: 409px auto;
  gap: 24px;
  color: #162843;
  background: transparent;
}

.architecture-card__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 406px;
  height: 409px;
  min-height: 409px;
  padding: 23px 22px;
  color: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(4, 20, 40, 0.18)),
    var(--architecture-image) center / cover no-repeat;
}

.architecture-card span {
  display: block;
  margin: 0 0 50px;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(84px, 6.25vw, 120px);
  line-height: 122px;
  font-weight: 800;
  letter-spacing: 0;
}

.architecture-card h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans Local";
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: 0;
  font-feature-settings: "liga" off, "clig" off;
}

body[data-locale="en"] .architecture-card h3 {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.architecture-card p {
  display: block;
  margin: auto 0 0;
  color: rgb(255, 255, 255);
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
}

.architecture-card small {
  display: block;
  margin: 0;
  color: #162843;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
  color: rgba(22, 40, 67, 0.56);
}

.client-win-card {
  position: relative;
  color: #162843;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.client-wins {
  --client-win-gap: 28px;
  --client-win-gutter: 100px;
  --client-win-peek: 120px;
  --client-win-size: 554px;

  padding-left: var(--client-win-gutter);
  padding-right: 0;
  overflow: hidden;
}

.client-wins .section-top {
  margin-bottom: 56px;
  padding-right: max(100px, calc((var(--design-width, 100vw) - 1720px) / 2));
}

.client-wins .section-top h2 {
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
}

body[data-locale="en"] .client-wins .section-top h2,
body[data-locale="en"] .client-wins .section-top a {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.client-wins .section-top a {
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
}

.client-win-grid {
  display: flex;
  gap: var(--client-win-gap);
  overflow-x: auto;
  padding-right: max(100px, calc((var(--design-width, 100vw) - 1720px) / 2));
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-x;
}

.client-win-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}

.client-win-grid::-webkit-scrollbar {
  display: none;
}

.client-win-card {
  flex: 0 0 var(--client-win-size);
  scroll-snap-align: start;
}

.client-win-card__visual {
  position: relative;
  width: 554px;
  height: 554px;
  overflow: hidden;
  border-radius: 12px;
}

.client-win-card__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-win-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.client-win-card__logo {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.client-win-card__logo img {
  max-width: 78%;
  max-height: 42%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-win-card__logo--large img {
  max-width: 80%;
  max-height: 58%;
}

.client-win-card__copy {
  padding-top: 20px;
}

.client-win-card__copy p,
.client-win-card__excerpt {
  margin: 0 0 31px;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.client-win-card.is-expanded .client-win-card__excerpt {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  white-space: pre-line;
}

body[data-locale="en"] .client-win-card__copy p,
body[data-locale="en"] .client-win-card__excerpt {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.client-win-card__copy a,
.client-win-card__toggle {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  color: var(--brand-blue);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
}

body[data-locale="en"] .client-win-card__copy a,
body[data-locale="en"] .client-win-card__toggle {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.platforms {
  padding: 74px 100px;
  background: var(--paper);
}

.platforms .section-top h2 {
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
}

.platform-list {
  display: grid;
  gap: 64px;
}

.platform-card {
  display: grid;
  grid-template-columns: 844px minmax(0, 1fr);
  align-items: center;
  gap: 64px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.platform-card img {
  width: 844px;
  height: 428px;
  object-fit: cover;
  border-radius: 12px;
}

.platform-copy {
  max-width: 560px;
  padding: 0;
}

body[data-locale="en"] .platform-copy {
  max-width: none;
  width: 100%;
}

.platform-copy h3,
.platform-copy__title {
  display: block;
  margin: 0 0 26px;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0;
}

body[data-locale="en"] .platform-copy h3,
body[data-locale="en"] .platform-copy__title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.platform-copy__label,
.platform-copy__name {
  display: inline;
}

.platform-copy p {
  margin: 0 0 34px;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
}

body[data-locale="en"] .platform-copy p {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.platform-copy ul {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.platform-copy li {
  padding: 7px 10px;
  color: var(--navy);
  background: #eaf7ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.mini-button {
  min-width: 136px;
  min-height: 42px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--brand-blue);
  border-radius: 6px;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}

.case-studies {
  padding: 74px 100px;
  background: var(--paper);
  color: #162843;
}

.case-studies .section-top h2 {
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
}

.case-card {
  min-height: auto;
  padding: 0;
  color: #162843;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.case-card__metric strong {
  display: block;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 120px;
  font-weight: 800;
  line-height: 94px;
  letter-spacing: 0;
}

.case-card__metric span {
  display: block;
  color: var(--paper);
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 75px;
}

.case-card__metric,
.case-card__stats {
  position: relative;
  z-index: 1;
  text-align: left;
}

.case-card__stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin: 0;
  width: 100%;
}

.case-card__stats span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--paper);
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 82px;
}

.case-card__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 554px;
  height: 554px;
  min-height: 554px;
  padding: 45px 42px 42px;
  color: var(--paper);
  border-radius: 8px;
  background: #020204 var(--case-image) center / cover no-repeat;
  overflow: hidden;
}

.case-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.42) 100%);
}

.case-card__stats small {
  display: block;
  margin-top: 14px;
  font-size: 34px;
  line-height: 34px;
}

.case-card__body {
  padding-top: 20px;
}

.case-card__stats span {
  font-weight: 800;
}

.case-card h3 {
  min-height: 56px;
  margin: 0 0 31px;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
}

.case-card a {
  color: var(--brand-blue);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}

.products {
  padding: 74px 100px;
  background: var(--paper);
}

.products .section-top h2 {
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
}

.products .section-top a {
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 554px));
  justify-content: space-between;
  gap: 28px;
}

.product-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.product-card__media {
  position: relative;
  min-height: 554px;
  color: var(--paper);
  border-radius: 8px;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 554px;
  object-fit: cover;
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 28, 0.34);
}

.product-app-icon {
  position: absolute;
  z-index: 1;
  top: 168px;
  left: 50%;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  color: #18304a;
  background: linear-gradient(135deg, #50f0d1, #71b8ff);
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  font-size: 58px;
  transform: translateX(-50%);
}

.product-app-icon:has(img) {
  background: none;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  padding: 0;
  overflow: hidden;
}

.product-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.product-card:nth-child(2) .product-app-icon {
  background: linear-gradient(135deg, #ffd08a, #ff8ca8);
}

.product-card:nth-child(3) .product-app-icon {
  background: linear-gradient(135deg, #6ce4f1, #6675ff);
}

.product-card__media strong {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 132px;
  color: var(--paper);
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  text-align: center;
}

.product-card h3 {
  margin: 0 0 10px;
  color: #162843;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 28px;
}

.product-card p {
  margin: 0;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
}

.product-card dl {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 16px 0px 20px 0px;
}

.product-card dl div {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.product-card dt {
  color: inherit;
}

.product-card dd {
  margin: 0;
  color: #162843;
  font-weight: 800;
}

.global-traffic,
.careers-banner,
.contact-footer {
  margin: 0 max(22px, calc((var(--design-width, 100vw) - var(--max)) / 2));
}

.global-traffic {
  width: min(1720px, calc(var(--design-width, 100vw) - 192px));
  min-height: 528px;
  display: flex;
  align-items: center;
  margin: 96px auto 0;
  padding: 0 88px;
  color: var(--paper);
  background: url("assets/img/globalBg.webp") center / cover no-repeat;
  border-radius: 14px;
}

.global-traffic div {
  max-width: 860px;
}

.global-traffic h2,
.careers-banner h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.6vw, 36px);
}

.global-traffic h2 {
  margin-bottom: 28px;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(38px, 3.34vw, 64px);
  font-weight: 600;
  line-height: 72px;
  letter-spacing: 0;
}

.global-traffic p,
.careers-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.global-traffic p {
  color: rgba(255, 255, 255, 0.72);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(20px, 1.66vw, 32px);
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0;
}

.careers-banner {
  width: min(1720px, calc(var(--design-width, 100vw) - 192px));
  min-height: 528px;
  display: grid;
  place-items: center;
  margin: 156px auto 0;
  padding: 0 88px;
  color: var(--paper);
  text-align: center;
  background: url("assets/img/joinus.webp") center / cover no-repeat;
  border-radius: 14px;
}

.careers-banner .button {
  min-width: 260px;
  min-height: 56px;
  margin-top: 44px;
  font-size: 18px;
  line-height: 20px;
  border-radius: 10px;
}

.careers-banner h2 {
  margin: 0;
  font-family: "PingFang SC";
  font-size: clamp(42px, 3.34vw, 56px);
  font-weight: 600;
  line-height: 72px;
  letter-spacing: 0;
}

.careers-banner p {
  margin: 0;
  font-family: "PingFang SC";
  font-size: clamp(42px, 3.34vw, 56px);
  font-weight: 600;
  line-height: 72px;
  letter-spacing: 0;
  color: #FFF;
}

.contact-footer {
  min-height: 608px;
  margin: 0;
  margin-top: 156px;
  color: rgba(255, 255, 255, 0.86);
  background: #162843;
  border-radius: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(560px, 700px);
  justify-content: space-between;
  gap: 120px;
  padding: 86px 100px 76px;
  border-bottom: 1px solid var(--dark-line);
}

.contact-copy h2 {
  max-width: 220px;
  margin: 0 0 12px;
  color: var(--paper);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
}

.contact-copy p {
  width: 488px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.contact-copy ul {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 295px;
  min-height: 72px;
  margin-top: 18px;
  padding: 10px 18px;
  color: var(--paper);
  border: 2px solid var(--paper);
  border-radius: 45px;
}

.contact-support-copy {
  display: grid;
  gap: 4px;
}

.contact-support-email {
  color: rgba(255, 255, 255, 0.82);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.contact-support-email:hover {
  color: var(--paper);
  text-decoration: underline;
}

body[data-locale="en"] .contact-support-email {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.contact-support-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.contact-copy li strong {
  color: var(--paper);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
}

body[data-locale="en"] .contact-copy li strong {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--dark-line);
  border-radius: 6px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.span-2 {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: #8fe1ff;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: end;
  gap: 118px;
  padding: 0;
  border-bottom: 0;
}

.footer-nav h3 {
  margin: 0 0 20px;
  color: var(--paper);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  opacity: 0.52;
}

.footer-nav a {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 28px max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 48px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 28px;
}

.footer-bottom::before {
  content: "";
  position: absolute;
}

.footer-brand {
  margin-right: 22px;
  align-self: flex-end;
}

.footer-brand img {
  width: 182px;
  height: 50px;
}

.footer-bottom > span:first-of-type {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.9);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.footer-social a img {
  display: block;
  width: 24px;
  height: 24px;
}

.scroll-top-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 42px;
  height: 42px;
  color: var(--paper);
  background: var(--brand-blue);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 180ms ease;
}

.scroll-top-fab.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Layout breakpoints disabled: site uses 1920px fixed-design-scale */
@media (max-width: 0px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    padding: 0 22px;
  }

  .brand img {
    width: 140px;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    order: 3;
    justify-self: end;
    width: 40px;
    height: 40px;
    place-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--paper);
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    margin-top: 0;
    padding: 14px 22px 22px;
    background: rgba(3, 19, 38, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 0;
  }

  .header-actions {
    justify-self: end;
    margin-right: 48px;
    gap: 24px;
  }

  .business-grid,
  .client-win-grid,
  .case-grid,
  .product-grid,
  .architecture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .core-business {
    padding-left: 22px;
    padding-right: 22px;
  }

  .client-wins {
    --client-win-gutter: 22px;
    --client-win-peek: 80px;

    padding-left: var(--client-win-gutter);
  }

  .platforms {
    padding-left: 22px;
    padding-right: 22px;
  }

  .products {
    padding-left: 22px;
    padding-right: 22px;
  }

  .case-studies {
    padding-left: 22px;
    padding-right: 22px;
  }

  .client-wins .section-top,
  .client-win-grid {
    padding-right: 22px;
  }

  .client-win-card {
    flex-basis: var(--client-win-size);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .business-grid {
    justify-content: stretch;
  }

  .platform-card,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: start;
    gap: 36px;
  }

  .platform-card {
    gap: 24px;
  }

  .architecture-card {
    grid-template-rows: 320px auto;
  }

  .architecture-card__visual {
    min-height: 320px;
  }

  .platform-copy {
    padding: 0 12px 18px;
  }
}

/* Layout breakpoints disabled: site uses 1920px fixed-design-scale */
@media (max-width: 0px) {
  :root {
    --header: 56px;
  }

  .site-header {
    gap: 10px;
  }

  .brand img {
    width: 96px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--header) + 34px) 22px 64px;
  }

  .hero-eyebrow {
    font-size: 18px;
  }

  .hero-description {
    font-size: 15px;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .business-grid,
  .client-win-grid,
  .case-grid,
  .product-grid,
  .architecture-grid,
  .footer-nav,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .business-card__media img,
  .product-card__media img {
    height: 220px;
  }

  .client-wins {
    --client-win-peek: 64px;
    --client-win-visible: min(calc(var(--design-width, 100vw) - var(--client-win-gutter)), var(--design-width, 100vw));
    --client-win-size: calc((var(--client-win-visible) - var(--client-win-gap) - var(--client-win-peek)) / 2);
  }

  .product-card__media {
    min-height: 220px;
  }

  .product-app-icon {
    top: 58px;
    width: 76px;
    height: 76px;
    border-radius: 18px;
    font-size: 34px;
  }

  .product-card__media strong {
    bottom: 48px;
    font-size: 24px;
    line-height: 30px;
  }

  .business-card__media {
    min-height: 220px;
  }

  .business-card__media h3 {
    font-size: 36px;
    line-height: 44px;
  }

  .architecture-card {
    grid-template-rows: 280px auto;
  }

  .architecture-card__visual {
    min-height: 280px;
    padding: 22px 18px;
  }

  .architecture-card span {
    margin-bottom: 36px;
    font-size: 72px;
    line-height: 78px;
  }

  .architecture-card h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .architecture-card p {
    font-size: 18px;
    line-height: 24px;
  }

  .case-card__visual {
    min-height: 360px;
    padding: 34px 24px 28px;
  }

  .case-card__metric strong {
    font-size: 64px;
    line-height: 70px;
    margin-bottom: 8px;
  }

  .case-card__metric span {
    font-size: 24px;
    line-height: 30px;
  }

  .case-card__stats span {
    font-size: 36px;
    line-height: 42px;
  }

  .case-card__stats small {
    font-size: 18px;
    line-height: 24px;
  }

  .platform-card img {
    height: 220px;
  }

  .global-traffic,
  .careers-banner,
  .contact-footer {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }

  .global-traffic,
  .careers-banner,
  .contact-panel,
  .footer-nav,
  .footer-bottom {
    padding-left: 22px;
    padding-right: 22px;
  }

  .global-traffic {
    width: 100%;
    min-height: 360px;
    margin-top: 64px;
  }

  .careers-banner {
    width: 100%;
    min-height: 360px;
    margin-top: 48px;
  }

  .global-traffic h2 {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 40px;
  }

  .global-traffic p {
    font-size: 18px;
    line-height: 30px;
  }

  .careers-banner h2,
  .careers-banner p {
    font-size: 34px;
    line-height: 44px;
  }

  .careers-banner .button {
    min-width: 190px;
    min-height: 46px;
    font-size: 16px;
    line-height: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-footer {
    min-height: auto;
  }

  .contact-panel {
    gap: 36px;
    padding-top: 52px;
    padding-bottom: 42px;
  }

  .contact-copy h2 {
    font-size: 34px;
    line-height: 42px;
  }

  .contact-copy p,
  .footer-nav a {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-copy li {
    min-width: 220px;
    min-height: 54px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    gap: 18px;
  }

  .footer-social {
    margin-left: 0;
  }

  .language-switcher--footer {
    margin-left: 0;
  }
}

/* Detail pages (product ecosystem, etc.) */
.site-header--light {
  color: #162843;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 40, 67, 0.08);
}

.site-nav--dark a {
  color: #162843;
}

.site-nav--dark a:hover {
  color: rgba(22, 40, 67, 0.72);
}

.language-switcher--dark {
  color: #162843;
}

.language-switcher--dark .language-switcher__trigger {
  color: #162843;
}

.language-switcher--dark .language-switcher__trigger::before {
  background: url("assets/img/languageIcon.svg") center / contain no-repeat;
}

.language-switcher--dark .language-switcher__trigger::after {
  background: url("assets/img/chevron-down.svg") center / contain no-repeat;
}

.nav-toggle--dark span {
  background: #162843;
}

.detail-page {
  --detail-image-radius: 14px;
  --detail-text-ink: #162843;
  --detail-text-muted: rgba(22, 40, 67, 0.56);
  --detail-heading-size: 20px;
  --detail-subheading-size: 18px;
  --detail-body-size: 16px;
  --detail-gap-paragraph: 50px;
  --detail-gap-heading-subheading: 30px;
  --detail-gap-heading-body: 20px;
  padding-top: var(--header);
}

.detail-page img {
  border-radius: var(--detail-image-radius);
}

.detail-page .detail-hero__badge-icon,
.detail-page .contact-us__submit img {
  border-radius: 0;
}

.detail-hero {
  padding: 20px max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 0;
}

.detail-hero__banner {
  position: relative;
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  min-height: 528px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--detail-image-radius);
}

.detail-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.detail-hero__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--paper);
  text-align: center;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(42px, 3.34vw, 64px);
  font-weight: 600;
  line-height: 1.125;
  max-width: min(90%, 1334px);
}

.detail-hero__title span {
  display: block;
}

body[data-locale="en"] .detail-hero__title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.detail-intro-section {
  padding: 40px max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 0;
}

.detail-intro {
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 0 auto;
}

.detail-intro__lead {
  margin: 0 0 var(--detail-gap-heading-body);
  color: var(--detail-text-ink);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: var(--detail-heading-size);
  font-weight: 600;
  line-height: 24px;
}

body[data-locale="en"] .detail-intro__lead {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.detail-intro__kicker {
  margin-right: 0.25em;
}

.detail-intro__body {
  display: grid;
  gap: 0;
  color: var(--detail-text-muted);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: var(--detail-body-size);
  font-weight: 500;
  line-height: 20px;
}

body[data-locale="en"] .detail-intro__body {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

.detail-intro__body p {
  margin: 0;
}

.detail-intro__body > p + p {
  margin-top: var(--detail-gap-paragraph);
}

.detail-intro__section + .detail-intro__section {
  margin-top: var(--detail-gap-paragraph);
}

.detail-intro__section-title {
  margin: 0 0 var(--detail-gap-heading-body);
  color: var(--detail-text-ink);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: var(--detail-heading-size);
  font-weight: 600;
  line-height: 24px;
}

.detail-intro__section-title:has(+ .detail-intro__subsection) {
  margin-bottom: var(--detail-gap-heading-subheading);
}

body[data-locale="en"] .detail-intro__section-title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.detail-intro__subsection + .detail-intro__subsection {
  margin-top: var(--detail-gap-paragraph);
}

.detail-intro__subsection-title {
  margin: 0 0 var(--detail-gap-heading-body);
  color: var(--detail-text-ink);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: var(--detail-subheading-size);
  font-weight: 600;
  line-height: 22px;
}

body[data-locale="en"] .detail-intro__subsection-title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.detail-intro__subsection p + p,
.detail-intro__section > p + p {
  margin-top: 10px;
}

.detail-intro__section > p + .detail-intro__subsection {
  margin-top: var(--detail-gap-paragraph);
}

.detail-intro__title {
  margin: 0 0 var(--detail-gap-heading-body);
  color: var(--detail-text-ink);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: var(--detail-heading-size);
  font-weight: 600;
  line-height: 24px;
}

body[data-locale="en"] .detail-intro__title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.detail-hero__banner--branded {
  align-content: center;
}

.detail-hero__brand {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.detail-hero__logo {
  width: clamp(120px, 9.6vw, 184px);
  height: clamp(120px, 9.6vw, 184px);
  object-fit: contain;
  border-radius: var(--detail-image-radius);
}

.detail-page--retroshot .detail-intro__title,
.detail-page--psychosomatic-analyzer .detail-intro__title,
.detail-page--translate-any-languages .detail-intro__title {
  font-size: var(--detail-heading-size);
  font-weight: 600;
  line-height: 24px;
  margin-bottom: var(--detail-gap-heading-body);
}

body[data-locale="en"] .detail-page--retroshot .detail-intro__title,
body[data-locale="en"] .detail-page--psychosomatic-analyzer .detail-intro__title,
body[data-locale="en"] .detail-page--translate-any-languages .detail-intro__title {
  font-weight: 700;
}

.detail-page--retroshot .detail-intro-section,
.detail-page--psychosomatic-analyzer .detail-intro-section,
.detail-page--translate-any-languages .detail-intro-section {
  padding-bottom: 80px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.detail-hero__banner--rtb {
  align-content: stretch;
}

.detail-hero__badges {
  position: absolute;
  left: 50%;
  bottom: 129px;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 456px;
  max-width: calc(100% - 48px);
  min-height: 94px;
  padding: 16px 26px;
  border: 1px solid #fff;
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.35);
  transform: translateX(-50%);
}

.detail-hero__badge {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 1 auto;
  min-width: 0;
}

.detail-hero__badge-icon {
  flex: 0 0 41px;
  width: 41px;
  height: 41px;
}

.detail-hero__badge-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.detail-hero__badge-copy strong {
  color: #fff;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 26px;
  white-space: nowrap;
}

.detail-hero__badge-copy span {
  color: #fff;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 13px;
  white-space: nowrap;
}

.rtb-features-section {
  padding: 52px max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 76px;
}

.rtb-features {
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 69px);
}

.rtb-feature {
  display: grid;
  grid-template-columns: 406px minmax(0, 1fr);
  gap: clamp(20px, 2vw, 28px);
  align-items: center;
}

.rtb-feature__visual {
  position: relative;
  width: 406px;
  max-width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: var(--detail-image-radius);
}

.rtb-feature__visual img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.rtb-feature__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 20px 24px;
  color: #fff;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 600;
  line-height: 1.18;
}

.rtb-feature__title span {
  display: block;
}

body[data-locale="en"] .rtb-feature__title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.rtb-feature__copy {
  margin: 0;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  line-height: 28px;
}

body[data-locale="en"] .rtb-feature__copy {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.programmatic-platforms-section {
  --programmatic-gutter: max(100px, calc((var(--design-width, 100vw) - 1720px) / 2));
  padding: 0;
  overflow: visible;
}

.programmatic-platforms {
  width: 100%;
  margin: 0;
  padding-top: 100px;
}

.programmatic-platforms__divider {
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 0 auto;
  border-top: 1px solid rgba(22, 40, 67, 0.12);
}

.programmatic-platforms__divider--bottom {
  margin-top: 90px;
}

.programmatic-platforms__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-left: var(--programmatic-gutter);
  scroll-padding-right: var(--programmatic-gutter);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-x;
  padding-top: 100px;
  padding-bottom: 0;
}

.programmatic-platforms__viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}

.programmatic-platforms__viewport::-webkit-scrollbar {
  display: none;
}

.programmatic-platforms__track {
  display: flex;
  align-items: center;
  width: max-content;
  padding-left: var(--programmatic-gutter);
  padding-right: var(--programmatic-gutter);
}

.programmatic-platform {
  flex: 0 0 875px;
  width: 875px;
  min-width: 875px;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 406px minmax(0, 1fr);
  column-gap: 22px;
  align-items: center;
  box-sizing: border-box;
}

.programmatic-platform + .programmatic-platform {
  margin-left: 72px;
}

.programmatic-platform__visual {
  position: relative;
  width: 406px;
  height: 190px;
  overflow: hidden;
  border-radius: var(--detail-image-radius);
  flex-shrink: 0;
}

.programmatic-platform__visual img {
  display: block;
  width: 406px;
  height: 190px;
  object-fit: cover;
}

.programmatic-platform__label {
  position: absolute;
  left: 24px;
  bottom: 20px;
  color: #fff;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.programmatic-platform__copy {
  margin: 0;
  max-width: 400px;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}

body[data-locale="en"] .programmatic-platform__copy {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.programmatic-capabilities-section {
  padding: clamp(48px, 5vw, 68px) max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 76px;
}

.programmatic-capabilities {
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 0 auto;
  display: grid;
  gap: clamp(48px, 5vw, 68px);
}

.programmatic-capability {
  display: grid;
  grid-template-columns: minmax(280px, 844px) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 52px);
  align-items: center;
}

.programmatic-capability__visual {
  position: relative;
  min-height: clamp(220px, 22vw, 428px);
  overflow: hidden;
  border-radius: var(--detail-image-radius);
}

.programmatic-capability__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 22vw, 428px);
  object-fit: cover;
}

.programmatic-capability__image-title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 24px;
  color: #fff;
  text-align: center;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 3vw, 56px);
  font-weight: 800;
  line-height: 1.125;
  max-width: 572px;
  margin-inline: auto;
}

.programmatic-capability__copy h3 {
  margin: 0 0 16px;
  color: #162843;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 600;
  line-height: 1.05;
}

body[data-locale="zh"] .programmatic-capability__copy h3 {
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
}

.programmatic-capability__copy p {
  margin: 0;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

body[data-locale="en"] .programmatic-capability__copy p {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.about-layout-section {
  padding: 66px max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 100px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 672px) minmax(0, 1fr);
  gap: 48px 70px;
  align-items: stretch;
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 0 auto;
}

.about-layout__copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

.about-intro-section,
.about-vision-section {
  padding: 0;
}

.about-intro {
  width: 100%;
  margin: 0;
}

.about-intro__title {
  margin: 0 0 28px;
  color: #000;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
}

body[data-locale="en"] .about-intro__title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.about-intro__body {
  display: grid;
  gap: 24px;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

body[data-locale="en"] .about-intro__body {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.about-intro__body p {
  margin: 0;
}

.about-intro__lead {
  color: #162843;
}

.about-vision {
  width: 100%;
  margin: 0;
  padding: 36px 40px;
  border-radius: 14px;
  background: #f6f6f6;
}

.about-vision__list {
  margin: 0;
  display: grid;
  gap: 30px;
}

.about-vision__item {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

body[data-locale="en"] .about-vision__item {
  grid-template-columns: 5.25rem minmax(0, 1fr);
}

.about-vision__item dt,
.about-vision__item dd {
  margin: 0;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.about-vision__item dt {
  line-height: 28px;
  white-space: nowrap;
}

.about-vision__item dd {
  line-height: 1.4;
}

body[data-locale="en"] .about-vision__item dt,
body[data-locale="en"] .about-vision__item dd {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.about-layout__media {
  min-width: 0;
  min-height: 520px;
}

.about-layout__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

.detail-categories-section {
  display: grid;
  gap: 68px;
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 96px auto 156px;
  padding: 0 0;
}

.detail-categories__lead,
.detail-categories__outro {
  margin: 0;
  color: var(--detail-text-ink);
  font-size: var(--detail-body-size);
  line-height: 1.75;
  font-family: "PingFang SC Local", "PingFang SC", sans-serif;
  font-weight: 400;
}

body[data-locale="en"] .detail-categories__lead,
body[data-locale="en"] .detail-categories__outro {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.detail-categories__outro p + p {
  margin-top: var(--detail-gap-paragraph);
}

.detail-category {
  display: grid;
  grid-template-columns: minmax(280px, 844px) minmax(280px, 1fr);
  gap: 68px;
  align-items: center;
}

.detail-category__visual {
  position: relative;
  min-height: 428px;
  overflow: hidden;
  border-radius: var(--detail-image-radius);
}

.detail-category__visual img {
  width: 100%;
  height: 100%;
  min-height: 428px;
  object-fit: cover;
}

.detail-category__visual-title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 24px;
  color: var(--paper);
  text-align: center;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(32px, 2.92vw, 56px);
  font-weight: 600;
  line-height: 1.29;
}

body[data-locale="en"] .detail-category__visual-title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.detail-category__copy h3 {
  margin: 0 0 20px;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(28px, 2.19vw, 42px);
  font-weight: 600;
  line-height: 44px;
}

body[data-locale="en"] .detail-category__copy h3 {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.detail-category__copy p {
  margin: 0 0 28px;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  max-width: 642px;
}

body[data-locale="en"] .detail-category__copy p {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-tag {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  color: var(--brand-blue);
  background: rgba(20, 177, 255, 0.08);
  border: 1px solid var(--brand-blue);
  border-radius: 10px;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
}

body[data-locale="en"] .detail-tag {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.detail-page .contact-footer {
  margin-top: 0;
}

.detail-page--legal .contact-footer {
  margin-top: 0;
}

.contact-us-section {
  padding: 66px max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 100px;
}

.contact-us {
  display: grid;
  grid-template-columns: minmax(240px, 517px) minmax(0, 1fr);
  gap: 48px 60px;
  align-items: start;
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 0 auto;
}

.contact-us__aside {
  min-width: 0;
}

.contact-us__title {
  margin: 0 0 80px;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 28px;
}

body[data-locale="en"] .contact-us__title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.contact-us__info {
  display: flex;
  flex-direction: column;
  margin: 0;
  border-top: 1px solid rgba(22, 40, 67, 0.12);
}

.contact-us__info-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 30px 0;
  border-bottom: 1px solid rgba(22, 40, 67, 0.12);
  font-size: 16px;
  line-height: 20px;
}

.contact-us__info-label {
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  white-space: nowrap;
}

body[data-locale="en"] .contact-us__info-label {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.contact-us__info-value {
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

body[data-locale="en"] .contact-us__info-value {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.contact-us__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  min-width: 0;
  padding: 40px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.contact-us__field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 70px;
  padding: 0 24px;
  background: #f6f6f6;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.contact-us__field--full {
  grid-column: 1 / -1;
}

.contact-us__field--textarea {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-height: 180px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact-us__label {
  display: none;
}

.contact-us__field--textarea .contact-us__label {
  display: block;
  color: rgba(22, 40, 67, 0.7);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

body[data-locale="en"] .contact-us__field--textarea .contact-us__label {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.contact-us__field input,
.contact-us__field textarea,
.contact-us__field select {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: #162843;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

body[data-locale="en"] .contact-us__field input,
body[data-locale="en"] .contact-us__field textarea,
body[data-locale="en"] .contact-us__field select {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.contact-us__field input::placeholder,
.contact-us__field textarea::placeholder {
  color: rgba(22, 40, 67, 0.5);
}

.contact-us__field input:focus,
.contact-us__field input:focus-visible,
.contact-us__field textarea:focus,
.contact-us__field textarea:focus-visible,
.contact-us__field select:focus,
.contact-us__field select:focus-visible {
  outline: none;
}

.contact-us__field.is-invalid,
.contact-us__field:has([aria-invalid="true"]) {
  box-shadow: inset 0 0 0 1.5px #d64545;
}

.contact-us__select.is-invalid .contact-us__select-trigger {
  color: #d64545;
}

.contact-us__field--text:focus-within,
.contact-us__field--select:focus-within,
.contact-us__field--select:has(.contact-us__select.is-open),
.contact-us__field--textarea:focus-within {
  background: rgba(20, 177, 255, 0.06);
  border-color: #14b1ff;
}

.contact-us__field--textarea textarea {
  flex: 1;
  min-height: 100px;
  resize: vertical;
}

.contact-us__field--text,
.contact-us__field--select {
  position: relative;
  z-index: 1;
}

.contact-us__field--select:has(.contact-us__select.is-open) {
  z-index: 30;
}

.contact-us__field--text .contact-us__field-label,
.contact-us__field--select .contact-us__field-label {
  flex-shrink: 0;
  color: rgba(22, 40, 67, 0.7);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  white-space: nowrap;
  pointer-events: none;
}

body[data-locale="en"] .contact-us__field--text .contact-us__field-label,
body[data-locale="en"] .contact-us__field--select .contact-us__field-label {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  white-space: normal;
  max-width: 7.5rem;
}

.contact-us__field--text input {
  flex: 1;
  min-height: 66px;
  text-align: left;
}

.contact-us__select {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 66px;
}

.contact-us__select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 66px;
  padding: 0;
  color: rgba(22, 40, 67, 0.5);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.contact-us__select-trigger:focus,
.contact-us__select-trigger:focus-visible {
  outline: none;
}

.contact-us__select-value {
  flex: 1;
  min-width: 0;
  text-align: left;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: rgba(22, 40, 67, 0.5);
}

body[data-locale="en"] .contact-us__select-value {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.contact-us__select-value:not(.is-placeholder) {
  color: #162843;
}

.contact-us__select-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.15s ease;
}

.contact-us__select.is-open .contact-us__select-chevron {
  transform: rotate(180deg);
}

.contact-us__select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -26px;
  right: -26px;
  z-index: 40;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(22, 40, 67, 0.12);
}

.contact-us__select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #162843;
}

body[data-locale="en"] .contact-us__select-option {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.contact-us__select-option:hover {
  background: rgba(18, 168, 255, 0.06);
}

.contact-us__select-option.is-selected {
  background: rgba(18, 168, 255, 0.12);
}

.contact-us__select-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
}

.contact-us__select-option.is-selected .contact-us__select-check {
  opacity: 1;
}

.contact-us__actions {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-top: 10px;
}

.contact-us__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 260px;
  min-height: 62px;
  padding: 0 28px;
  color: #fff;
  background: var(--brand-blue);
  border: 0;
  border-radius: 10px;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  cursor: pointer;
  transition: filter 0.15s ease;
}

body[data-locale="en"] .contact-us__submit {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
}

.contact-us__submit:hover {
  filter: brightness(1.05);
}

.contact-us__submit img {
  width: 32px;
  height: 32px;
}

.contact-us__status {
  min-height: 20px;
  margin: 0;
  color: var(--brand-blue);
  text-align: center;
}

.detail-page--contact-us .contact-footer {
  margin-top: 0;
}

.detail-page--client-growth-results {
  padding-bottom: 0;
}

.detail-page--growth-case {
  padding-bottom: 0;
}

.growth-case-section {
  padding: 40px max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 80px;
}

.growth-case {
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 0 auto;
}

.growth-case__title {
  margin: 0 0 30px;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

body[data-locale="en"] .growth-case__title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.growth-case__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.growth-case__summary {
  margin: 0;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

body[data-locale="en"] .growth-case__summary {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.growth-case__details {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.growth-case__detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.growth-case__detail dt {
  margin: 0;
  flex-shrink: 0;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}

body[data-locale="en"] .growth-case__detail dt {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.growth-case__detail dd {
  margin: 0;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

body[data-locale="en"] .growth-case__detail dd {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.growth-case__divider {
  height: 2px;
  margin: 40px 0;
  background: rgba(22, 40, 67, 0.12);
}

.growth-case__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 79px;
}

.growth-case__metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
}

.growth-case__metric strong {
  color: var(--brand-blue);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(32px, 2.08vw, 40px);
  font-weight: 800;
  line-height: 1;
}

body[data-locale="en"] .growth-case__metric strong {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.growth-case__metric span {
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(24px, 1.56vw, 30px);
  font-weight: 800;
  line-height: 1.33;
}

body[data-locale="en"] .growth-case__metric span {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.growth-case__back {
  display: inline-block;
  margin-bottom: 24px;
  color: #162843;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.growth-case__back:hover {
  color: var(--brand-blue);
}

body[data-locale="en"] .growth-case__back {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.client-growth-results-section {
  padding: 20px max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 80px;
}

.client-growth-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 406px));
  gap: 32px;
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 0 auto;
}

.client-growth-results-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.client-growth-results-card__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--detail-image-radius);
}

.client-growth-results-card__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-growth-results-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.client-growth-results-card__logo {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.client-growth-results-card__logo img {
  max-width: 78%;
  max-height: 42%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-growth-results-card__logo--large img {
  max-width: 94%;
  max-height: 58%;
}

.client-growth-results-card__result,
.client-growth-results-card__excerpt {
  margin: 20px 0 0;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.client-growth-results-card.is-expanded .client-growth-results-card__excerpt {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  white-space: pre-line;
}

body[data-locale="en"] .client-growth-results-card__result,
body[data-locale="en"] .client-growth-results-card__excerpt {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.client-growth-results-card__link,
.client-growth-results-card__toggle {
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  color: var(--brand-blue);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}

body[data-locale="en"] .client-growth-results-card__link,
body[data-locale="en"] .client-growth-results-card__toggle {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.legal-content {
  padding: 36px max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 156px;
}

.legal-content__inner {
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 0 auto;
}

.legal-content__title {
  margin: 0 0 30px;
  color: #162843;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
}

.legal-content__meta {
  margin: -18px 0 30px;
  color: rgba(22, 40, 67, 0.56);
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.legal-content__meta p {
  margin: 0;
}

.legal-content__intro,
.legal-content__toc,
.legal-content__body {
  color: rgba(22, 40, 67, 0.56);
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.legal-content__intro {
  margin-bottom: 36px;
}

.legal-content__intro p {
  margin: 0;
}

.legal-content__toc {
  margin-bottom: 36px;
}

.legal-content__toc-title {
  margin: 0;
}

.legal-content__toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-content__toc-list li {
  margin: 0;
}

.legal-content__body {
  display: grid;
  gap: 0;
}

.legal-content__section {
  margin: 0;
}

.legal-content__section-heading,
.legal-content__subheading {
  margin: 0;
  color: rgba(22, 40, 67, 0.56);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.legal-content__body p {
  margin: 0;
}

.legal-content__spacer {
  height: 20px;
}

.legal-content__spacer--double {
  height: 40px;
}

.legal-content__section + .legal-content__section {
  margin-top: 20px;
}

.detail-hero--careers .detail-hero__banner {
  border-radius: var(--detail-image-radius);
}

.careers-jobs-section {
  padding: 40px max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 156px;
}

.careers-jobs {
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 0 auto;
}

.careers-jobs__heading {
  display: grid;
  gap: 12px;
  margin: 0 0 42px;
}

.careers-jobs__title {
  margin: 0;
  color: #162843;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 28px;
}

body[data-locale="zh"] .careers-jobs__title {
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
}

.careers-jobs__email {
  margin: 0;
  color: rgba(22, 40, 67, 0.56);
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

body[data-locale="zh"] .careers-jobs__email {
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.careers-jobs__email-label::after {
  content: " ";
}

.careers-jobs__email-link {
  color: #162843;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.careers-jobs__email-link:hover {
  color: var(--brand-blue, #14b1ff);
}

.careers-jobs__email-link:focus-visible {
  outline: 2px solid var(--brand-blue, #14b1ff);
  outline-offset: 3px;
}

.careers-jobs__list {
  display: grid;
  gap: 42px;
}

.careers-job-card {
  display: grid;
  gap: 24px;
  padding: 30px;
  background: #f6f6f6;
  border-radius: 16px;
}

.careers-job-card__title {
  margin: 0;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 44px;
}

body[data-locale="en"] .careers-job-card__title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.careers-job-card__type {
  margin: 0;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

body[data-locale="en"] .careers-job-card__type {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.careers-job-card__duties {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

body[data-locale="en"] .careers-job-card__duties {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.careers-job-card__duties li {
  margin: 0;
}

.careers-job-card__link {
  display: grid;
  gap: 24px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.careers-job-card__link:hover {
  transform: translateY(-2px);
}

.careers-job-card__link:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 4px;
  border-radius: 12px;
}

.careers-job-card__cta {
  color: var(--brand-blue);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

body[data-locale="en"] .careers-job-card__cta {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.career-detail-section {
  padding: 40px max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 76px;
}

.career-detail {
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.career-detail__back {
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.career-detail__back:hover {
  color: #162843;
}

body[data-locale="en"] .career-detail__back {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.career-detail__header {
  display: grid;
  gap: 8px;
}

.career-detail__title {
  margin: 0;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
}

body[data-locale="en"] .career-detail__title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.career-detail__type {
  margin: 0;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

body[data-locale="en"] .career-detail__type {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.career-detail__blocks {
  display: grid;
  gap: 28px;
}

.career-detail__block {
  display: grid;
  gap: 24px;
  padding: 20px 30px;
  background: #f6f6f6;
  border-radius: 16px;
}

.career-detail__block-title {
  margin: 0;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

body[data-locale="en"] .career-detail__block-title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.career-detail__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.career-detail__list--requirements {
  line-height: 28px;
}

body[data-locale="en"] .career-detail__list {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

.career-detail__list li {
  margin: 0;
}

.career-detail__actions {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

.career-detail__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--brand-blue);
  color: var(--paper);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.career-detail__apply:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

body[data-locale="en"] .career-detail__apply {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.career-detail__empty-desc {
  margin: 0;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

body[data-locale="en"] .career-detail__empty-desc {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.detail-services-section {
  padding: 40px max(100px, calc((var(--design-width, 100vw) - 1720px) / 2)) 156px;
}

.detail-services {
  width: min(1720px, calc(var(--design-width, 100vw) - 200px));
  margin: 0 auto;
}

.detail-service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.detail-service-tab {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  color: var(--brand-blue);
  background: rgba(20, 177, 255, 0.08);
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
}

.detail-service-tab:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.detail-service-tab--active {
  color: var(--paper);
  background: var(--brand-blue);
  border-color: #a0dfff;
}

body[data-locale="en"] .detail-service-tab {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.detail-services__title {
  margin: 0 0 20px;
  color: #162843;
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
}

body[data-locale="en"] .detail-services__title {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.detail-services__summary {
  margin: 0 0 40px;
  color: rgba(22, 40, 67, 0.56);
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  max-width: 1720px;
}

body[data-locale="en"] .detail-services__summary {
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
}

.detail-services-grid {
  display: grid;
  grid-template-columns: repeat(var(--service-cols, 4), minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.detail-service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.detail-service-card__visual {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 390px;
  padding: 30px 22px;
  color: var(--paper);
  border-radius: var(--detail-image-radius);
  overflow: hidden;
}

.detail-service-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.detail-service-card__number,
.detail-service-card__copy {
  position: relative;
  z-index: 1;
}

.detail-service-card__number {
  display: block;
  margin: 0;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(84px, 6.25vw, 120px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.detail-service-card__copy h3 {
  margin: 0 0 56px;
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: 0;
}

body[data-locale="en"] .detail-service-card__copy h3 {
  min-height: 120px;
}

body[data-locale="zh"] .detail-service-card__copy h3 {
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
}

.detail-service-card__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Plus Jakarta Sans Local", "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
}

body[data-locale="zh"] .detail-service-card__copy p {
  font-family: "PingFang SC Local", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}

/* Layout breakpoints disabled: site uses 1920px fixed-design-scale */
@media (max-width: 0px) {
  .detail-hero {
    padding-inline: 24px;
  }

  .detail-hero__banner {
    width: 100%;
    min-height: 360px;
  }

  .detail-intro-section,
  .about-layout-section,
  .detail-categories-section,
  .rtb-features-section,
  .programmatic-capabilities-section,
  .careers-jobs-section,
  .career-detail-section,
  .contact-us-section,
  .client-growth-results-section,
  .growth-case-section,
  .legal-content {
    padding-inline: 24px;
    width: 100%;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
  }

  .about-layout__media,
  .about-layout__image {
    min-height: 280px;
  }

  .about-vision {
    padding: 28px 24px;
  }

  .about-vision__item,
  body[data-locale="en"] .about-vision__item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .detail-intro,
  .about-intro,
  .about-vision,
  .careers-jobs,
  .career-detail,
  .contact-us,
  .legal-content__inner {
    width: 100%;
  }

  .detail-category {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .detail-category__visual {
    min-height: 280px;
  }

  .detail-category__visual img {
    min-height: 280px;
  }

  .detail-services-section {
    padding: 40px 24px 156px;
    width: 100%;
  }

  .detail-services {
    width: 100%;
  }

  .detail-services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rtb-features {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rtb-feature {
    grid-template-columns: 1fr;
  }

  .programmatic-platforms,
  .programmatic-capabilities {
    width: 100%;
  }

  .programmatic-platforms {
    padding-top: 64px;
    --programmatic-gutter: 24px;
  }

  .programmatic-platforms__divider {
    width: calc(100% - 48px);
  }

  .programmatic-platforms__divider--bottom {
    margin-top: 64px;
  }

  .programmatic-platforms__viewport {
    padding-top: 64px;
  }

  .programmatic-platform {
    flex: 0 0 min(320px, calc(var(--design-width, 100vw) - 48px));
    width: min(320px, calc(var(--design-width, 100vw) - 48px));
    min-width: min(320px, calc(var(--design-width, 100vw) - 48px));
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .programmatic-platform + .programmatic-platform {
    margin-left: 24px;
  }

  .programmatic-platform__visual,
  .programmatic-platform__visual img {
    width: 100%;
    height: auto;
    min-height: 150px;
    aspect-ratio: 406 / 190;
  }

  .programmatic-platform__copy {
    max-width: none;
    font-size: 18px;
    line-height: 24px;
  }

  .programmatic-capability {
    grid-template-columns: 1fr;
  }

  .detail-hero__badges {
    width: calc(100% - 32px);
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    min-height: 0;
    padding: 16px 20px;
  }

  .detail-hero__badge-copy strong,
  .detail-hero__badge-copy span {
    white-space: normal;
  }

  .detail-service-card__visual {
    min-height: 320px;
  }

  .contact-us__info {
    width: 100%;
  }

  .contact-us {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
  }

  .contact-us__title {
    margin-bottom: 32px;
  }

  .contact-us__form {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .contact-us__submit {
    width: 100%;
    font-size: 20px;
  }

  .client-growth-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 24px;
  }
}

/* Layout breakpoints disabled: site uses 1920px fixed-design-scale */
@media (max-width: 0px) {
  .client-growth-results-section {
    padding-inline: 24px;
    padding-bottom: 48px;
  }

  .client-growth-results-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

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

  .hero-video {
    display: none;
  }

  .hero-media {
    background: url("assets/img/bg.webp") center / cover no-repeat;
  }
}
