/* =========================================================
   FutureQuad Homepage
   ========================================================= */

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-ink: #1e1e1e;
  --color-night: #0b0d1a;
  --color-deep: #0a0128;
  --color-yellow: #e4e84b;
  --color-yellow-soft: #ebef5e;
  --color-blue: #334fee;
  --color-blue-soft: #5f6eff;
  --color-muted: #76788e;
  --color-line: #aaaaaa;
  --color-line-soft: rgba(170, 170, 170, 0.2);
  --color-stroke: #404040;
  --font-display: "Science Gothic", "Arial Narrow", sans-serif;
  --font-body: "Bai Jamjuree", "Noto Sans", sans-serif;
  --content-max: 1372px;
  --container: min(var(--content-max), calc(100vw * 1372 / 1920));
  --container-gutter: max(24px, calc((100vw - var(--container)) / 2));
  --design-width: 1920;
  --header-max: 1640px;
  --header-h: 80px;
  --page-frame-inset: calc(100vw * 100 / 1920);
  --page-frame-color: var(--color-line-soft);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.img-h5 {
  display: none;
}

.img-pc {
  display: block;
}

html {
  scroll-behavior: smooth;
}

html[data-fq-i18n-pending="1"] body {
  visibility: hidden !important;
  opacity: 0 !important;
}

body {
  position: relative;
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
}

/* ---------- Page frame lines (100px inset, full span) ---------- */

.page-frame {
  position: absolute;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  overflow: hidden;
}

.page-frame__line {
  position: absolute;
  background: var(--page-frame-color);
}

.page-frame__line--left,
.page-frame__line--right {
  top: 0;
  bottom: 0;
  width: 1px;
}

.page-frame__line--left {
  left: var(--page-frame-inset);
}

.page-frame__line--right {
  right: var(--page-frame-inset);
}

.page-frame__line--top,
.page-frame__line--bottom {
  left: 0;
  right: 0;
  height: 1px;
}

.page-frame__line--top {
  top: max(72px, var(--page-frame-inset));
}

.page-frame__line--bottom {
  bottom: 100px;
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  padding: 20px 0;
  transition: background 0.3s var(--ease-out), backdrop-filter 0.3s var(--ease-out);
}

@media (min-width: 769px) {
  .site-header {
    padding: min(36px, calc(100vw * 36 / 1920)) 0 min(23px, calc(100vw * 23 / 1920));
  }

  .page-frame__line--top {
    top: min(107px, calc(100vw * 107 / 1920));
  }
}

.site-header.is-scrolled {
  background: rgba(11, 13, 26, 0.82);
  backdrop-filter: blur(16px);
}

.site-header .header-inner {
  width: min(var(--header-max), calc(100vw * 1640 / 1920));
  max-width: var(--header-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 1.25vw, 24px);
}

.logo img {
  width: min(72px, calc(100vw * 72 / 1920));
  min-width: 48px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: max(28px, calc(100vw * 28 / 1920));
}

.primary-nav > a {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: max(30px, calc(100vw * 30 / 1920));
  padding: 0 max(14px, calc(100vw * 14 / 1920));
  border: 1px solid transparent;
  border-radius: max(20px, calc(100vw * 20 / 1920));
  color: var(--color-muted);
  font-size: max(16px, calc(100vw * 16 / 1920));
  line-height: 100%;
  text-align: center;
  transition: color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible {
  color: var(--color-white);
}

.primary-nav > a.is-active,
.primary-nav > a[aria-current="page"] {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.9);
}

.site-header--light .primary-nav > a {
  color: var(--color-muted);
}

.site-header--light .primary-nav > a:hover,
.site-header--light .primary-nav > a:focus-visible,
.site-header--light .primary-nav > a.is-active,
.site-header--light .primary-nav > a[aria-current="page"] {
  color: var(--color-ink);
}

.site-header--light .primary-nav > a.is-active,
.site-header--light .primary-nav > a[aria-current="page"] {
  border-color: var(--color-ink);
}

.lang-switch {
  position: relative;
  flex-shrink: 0;
}

.lang-switch__expand {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: max(4px, calc(100vw * 4 / 1920));
  min-height: max(23px, calc(100vw * 23 / 1920));
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: max(16px, calc(100vw * 16 / 1920));
  font-weight: 400;
  line-height: 100%;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease, gap 0.4s var(--ease-out);
}

.lang-switch.is-expanded .lang-switch__expand {
  gap: max(8px, calc(100vw * 8 / 1920));
}

.lang-switch__expand:hover,
.lang-switch__expand:focus-visible,
.lang-switch.is-expanded .lang-switch__expand {
  color: var(--color-white);
}

.site-header--light .lang-switch__expand {
  color: var(--color-muted);
}

.site-header--light .lang-switch__expand:hover,
.site-header--light .lang-switch__expand:focus-visible,
.site-header--light .lang-switch.is-expanded .lang-switch__expand {
  color: var(--color-ink);
}

.lang-switch__bra {
  flex-shrink: 0;
}

.lang-switch__opts {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: gap 0.4s var(--ease-out);
}

.lang-switch.is-expanded .lang-switch__opts {
  gap: max(8px, calc(100vw * 8 / 1920));
}

.lang-switch__opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.lang-switch:not(.is-expanded) .lang-switch__opt:not(.is-current) {
  display: none;
}

.lang-switch__opt.is-current {
  color: inherit;
}

.lang-switch.is-expanded .lang-switch__opt:not(.is-current) {
  color: var(--color-muted);
}

.lang-switch.is-expanded .lang-switch__opt.is-current,
.lang-switch.is-expanded .lang-switch__opt:hover,
.lang-switch.is-expanded .lang-switch__opt:focus-visible {
  color: var(--color-white);
}

.site-header--light .lang-switch.is-expanded .lang-switch__opt:not(.is-current) {
  color: var(--color-muted);
}

.site-header--light .lang-switch.is-expanded .lang-switch__opt.is-current,
.site-header--light .lang-switch.is-expanded .lang-switch__opt:hover,
.site-header--light .lang-switch.is-expanded .lang-switch__opt:focus-visible {
  color: var(--color-ink);
}

.site-header--light.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.menu-logo-h5 {
  display: none;
  width: 58px;
  height: 39px;
  object-fit: contain;
  pointer-events: none;
}

.menu-toggle {
  display: none;
  width: 30px;
  height: 21px;
  object-fit: contain;
  cursor: pointer;
}

.mobile-menu-foot {
  display: none;
}

/* ---------- Shared ---------- */

.section-num {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 36px);
  color: var(--color-blue);
  line-height: 1.6;
}

.section-num--light {
  color: var(--color-white);
  text-align: right;
}

.hero-section-num {
  position: absolute;
  top: 140px;
  right: max(16px, calc(var(--container-gutter) - (100vw * 72 / 1920)));
  z-index: 2;
  margin: 0;
}

.section-num--accent {
  color: var(--color-blue);
}

.section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(42px, 5.5vw, 86px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-ink);
}

.section-title--light {
  color: var(--color-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 28px;
  border: 1px solid var(--color-stroke);
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-out), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn img,
.btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--outline {
  color: var(--color-ink);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-ink);
  color: var(--color-white);
  border-color: var(--color-ink);
}

.btn--outline:hover img {
  filter: invert(1);
}

.btn--read-more {
  position: relative;
  overflow: hidden;
  container-type: inline-size;
  width: 300px;
  min-height: 78px;
  padding: 0;
  justify-content: center;
  border: 1px solid #404040;
  border-radius: 40px;
  background: transparent;
  color: #1e1e1e;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  transform: none;
  margin-top: 40px;
}

.btn--read-more .btn__label {
  --btn-label-out: calc(50cqw + 50% + 32px);
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  transform: translate(-50%, -50%) translateX(calc(-1 * var(--btn-label-out)));
  transition: transform 0.8s var(--ease-out);
  pointer-events: none;
}

.btn--read-more .btn__arrow {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out), filter 0.3s ease;
}

.btn--read-more .btn__arrow--default {
  --btn-arrow-out: calc(50cqw + 40px);
  position: relative;
  z-index: 1;
  transform: translateX(0);
  opacity: 1;
}

.btn--read-more.is-hovered,
.btn--read-more:focus-visible {
  background: #e1f664;
  border-color: #e1f664;
  color: #1e1e1e;
  transform: none;
}

.btn--read-more.is-hovered img,
.btn--read-more:focus-visible img {
  filter: none;
}

.btn--read-more.is-hovered .btn__label,
.btn--read-more:focus-visible .btn__label {
  transform: translate(-50%, -50%);
}

.btn--read-more.is-hovered .btn__arrow--default,
.btn--read-more:focus-visible .btn__arrow--default {
  transform: translateX(var(--btn-arrow-out));
  opacity: 0;
}

.btn--read-more.is-leaving .btn__label {
  transform: translate(-50%, -50%) translateX(var(--btn-label-out));
}

.btn--read-more.is-leaving .btn__arrow--default {
  animation: btn-arrow-enter-left 0.8s var(--ease-out) forwards;
}

@keyframes btn-arrow-enter-left {
  from {
    transform: translateX(calc(-1 * var(--btn-arrow-out, 200px)));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.btn--read-more.is-reset .btn__label,
.btn--read-more.is-reset .btn__arrow--default {
  transition: none !important;
  animation: none !important;
}

.cta .btn--get-in-touch .btn__arrow--default {
  filter: brightness(0) invert(1);
}

.cta .btn--get-in-touch.is-hovered .btn__arrow--default,
.cta .btn--get-in-touch:focus-visible .btn__arrow--default {
  filter: none;
}

.btn--light {
  color: var(--color-black);
  background: var(--color-white);
  border-color: var(--color-white);
}

.btn--ghost {
  min-height: 52px;
  padding: 0 22px;
  color: var(--color-ink);
  background: transparent;
  align-self: flex-start;
}

.btn--ghost:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans", var(--font-body), sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: var(--color-white);
  text-decoration: none;
}

.link-swap {
  display: block;
  overflow: hidden;
  height: 1.6em;
}

.link-swap__track {
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

a:hover .link-swap__track,
a:focus-visible .link-swap__track {
  transform: translateY(0);
}

.link-swap__text {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 1.6em;
  white-space: nowrap;
}


.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-night);
  overflow: hidden;
  --hero-title-mid: #bcb9d9;
  --hero-title-angle: 135deg;
  --hero-title-stop-a: 10%;
  --hero-title-stop-b: 50%;
  --hero-title-stop-c: 90%;
}

.hero[data-hero-slide="1"] {
  --hero-title-mid: #efdbec;
}

.hero[data-hero-slide="2"] {
  --hero-title-mid: #c3ead8;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg [data-hero-slide] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.1s var(--ease-out);
}

.hero-bg [data-hero-slide] img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg [data-hero-slide].is-active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px 0 80px;
  padding: 0.06em 0.12em;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(48px, 9.5vw, 200px);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  overflow: visible;
  animation: fade-up 0.9s var(--ease-out) both;
}

.hero-title > span {
  display: block;
  padding: 0.02em 0.08em;
  overflow: visible;
  background-image: linear-gradient(
    var(--hero-title-angle),
    #fff var(--hero-title-stop-a),
    var(--hero-title-mid) var(--hero-title-stop-b),
    #e2e7f2 var(--hero-title-stop-c)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-title > span:empty {
  display: none;
}

.hero-title__line {
  white-space: nowrap;
}

@media (min-width: 769px) {
  html[lang="zh-Hans"] .hero,
  html[lang="zh-Hant"] .hero {
    --hero-title-angle: 133deg;
    --hero-title-stop-a: 10%;
    --hero-title-stop-b: 49%;
    --hero-title-stop-c: 90%;
  }

  html[lang="zh-Hans"] .hero-title,
  html[lang="zh-Hant"] .hero-title {
    flex-direction: row;
    flex-wrap: nowrap;
    font-family: "Science Gothic", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: clamp(64px, calc(100vw * 180 / 1920), 180px);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: none;
    white-space: nowrap;
    -webkit-font-smoothing: auto;
  }

  html[lang="zh-Hant"] .hero-title {
    font-family: "Science Gothic", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  }

  html[lang="zh-Hans"] .hero-title > span,
  html[lang="zh-Hant"] .hero-title > span {
    white-space: nowrap;
  }

  html[lang="zh-Hans"] .hero-title > span:first-child,
  html[lang="zh-Hant"] .hero-title > span:first-child {
    padding-right: 0;
  }

  html[lang="zh-Hans"] .hero-title > span + span,
  html[lang="zh-Hant"] .hero-title > span + span {
    padding-left: 0;
  }
}

.hero-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-left: 50%;
}

.hero-copy {
  font-size: clamp(16px, 1.2vw, 20px);
  max-width: 502px;
  animation: fade-up 0.9s 0.12s var(--ease-out) both;
}

@media (max-width: 1699px) {
  .hero-copy {
    max-width: 400px;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 8px;
  animation: fade-up 0.9s 0.2s var(--ease-out) both;
}

.hero-badge {
  position: absolute;
  right: -72px;
  bottom: 0;
  width: clamp(120px, 12vw, 180px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: fade-in 1s 0.3s var(--ease-out) both;
}

.hero-badge__ring,
.hero-badge__arrow {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge__ring {
  animation: spin 18s linear infinite;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

.hero-badge__arrow {
  width: 46px;
  height: 46px;
  z-index: 1;
  pointer-events: none;
}

.hero-chrome {
  position: absolute;
  left: 100px;
  bottom: 100px;
  z-index: 1;
  width: min(672px, calc(100% - 200px));
}

.hero-pager {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 0 18px 40px;
}

.hero-pager button {
  width: 16px;
  height: 12px;
  padding: 0;
  border: 0;
  background: #ffffff;
  opacity: 0.2;
  clip-path: polygon(22.5% 0, 100% 0, 77.5% 100%, 0 100%);
  cursor: pointer;
  transition: opacity 0.35s var(--ease-out);
}

.hero-pager button.is-active,
.hero-pager button:hover {
  opacity: 1;
}

.hero-rule {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: transparent;
}

.hero-rule__progress {
  display: block;
  width: 100%;
  height: 100%;
  background: #d9d9d9;
  transform-origin: left center;
  transform: scaleX(1);
}

.hero-rule__progress.is-running {
  animation: hero-rule-countdown var(--hero-rule-ms, 5s) linear forwards;
}

@keyframes hero-rule-countdown {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

.hero-baseline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: var(--color-line-soft);
  pointer-events: none;
}

@media (min-width: 1921px) {
  .hero-chrome {
    left: calc(100vw * 100 / 1920);
    bottom: calc(100vw * 100 / 1920);
    width: min(
      calc(100vw * 672 / 1920),
      calc(100% - 100vw * 200 / 1920)
    );
  }

  .hero-baseline {
    bottom: calc(100vw * 100 / 1920);
  }
}

/* ---------- Intro ---------- */

.intro {
  position: relative;
  padding: 140px 0 120px;
}

.intro::after {
  content: "";
  position: absolute;
  left: var(--page-frame-inset);
  right: var(--page-frame-inset);
  bottom: 0;
  height: 1px;
  background: var(--color-line-soft);
  pointer-events: none;
}

.intro-grid {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(24px, calc(100vw * 68 / 1920), 68px);
}

.intro-left {
  flex: 0 0 clamp(168px, calc(100vw * 280 / 1920), 280px);
  max-width: clamp(168px, calc(100vw * 280 / 1920), 280px);
  min-width: 0;
}

.intro-left .section-num {
  margin: 0;
}

.intro-aside {
  margin: 24px 0 0;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
}

.intro-body {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: min(1024px, calc(100vw * 1024 / 1920));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: calc(clamp(24px, 2.2vw, 36px) * 1.6 + 24px);
}

.intro-lead {
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 600;
  line-height: 1.6;
}

/* ---------- Services ---------- */

.services {
  --service-scale: 1;
  --service-card-w: calc(660px * var(--service-scale));
  --service-card-h: calc(580px * var(--service-scale));
  --service-gap: calc(36px * var(--service-scale));
  --service-step-y: calc(60px * var(--service-scale));
  --service-card-count: 5;
  --service-stack-h: calc(
    var(--service-card-h) + var(--service-step-y) * (var(--service-card-count) - 1)
  );
  --service-section-gap: calc(120px * var(--service-scale));
  padding: 0;
  overflow: visible;
}

.services .section-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.25em;
  margin: 12px 0 56px;
  font-size: max(86px, calc(100vw * 86 / 1920));
  line-height: 120%;
}

html[lang="zh-Hans"] .services .section-title,
html[lang="zh-Hant"] .services .section-title {
  gap: 0;
}

.services-scroll {
  position: relative;
  width: 100%;
  margin-bottom: var(--service-section-gap);
  height: auto;
}

.services-pin {
  position: relative;
  width: 100%;
  padding-top: 120px;
  background: var(--color-white);
  z-index: 1;
  box-sizing: border-box;
  overflow: hidden;
}

.services-pin__head {
  margin-bottom: 0;
}

.services-carousel {
  position: relative;
  width: 100%;
  height: var(--service-stack-h);
  overflow: hidden;
}

.services-carousel__viewport {
  overflow: hidden;
  width: 100%;
  height: var(--service-stack-h);
  padding-left: var(--container-gutter);
}

.services-carousel__track {
  display: flex;
  align-items: flex-start;
  gap: var(--service-gap);
  width: max-content;
  min-height: var(--service-stack-h);
  height: var(--service-stack-h);
  will-change: transform;
}

.service-card {
  position: relative;
  flex: 0 0 var(--service-card-w);
  width: var(--service-card-w);
  height: var(--service-card-h);
  transform: translateY(calc(var(--service-stagger, 0) * var(--service-step-y)));
  opacity: 1;
  transition: none;
}

.service-card__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: inherit;
}

.service-card__media {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #d9d9d9;
}

.service-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s var(--ease-out);
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__glass {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 96px;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.service-card__action {
  position: absolute;
  right: 0;
  bottom: 40px;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  background: var(--color-yellow);
  z-index: 3;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  pointer-events: none;
}

.service-card:hover .service-card__action,
.service-card:focus-within .service-card__action {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-card__action img {
  width: 52px;
  height: 52px;
}

.service-card h3 {
  position: absolute;
  left: 40px;
  bottom: 32px;
  z-index: 2;
  width: 480px;
  max-width: calc(100% - 80px);
  height: 34px;
  color: var(--color-white);
  font-size: 28px;
  font-weight: 600;
  line-height: 34px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1919.98px) and (min-width: 769px) {
  .services {
    --service-scale: min(
      calc(100vw / 1920px),
      calc((100vw - var(--container-gutter)) / (660px * 3 + 36px * 2))
    );
  }

  .services-pin {
    padding-top: calc(120px * var(--service-scale));
  }

  .services .section-title {
    margin: calc(12px * var(--service-scale)) 0 calc(56px * var(--service-scale));
  }

  .services-carousel,
  .services-carousel__viewport,
  .services-carousel__track {
    height: var(--service-stack-h);
    min-height: var(--service-stack-h);
  }

  .service-card__glass {
    height: calc(96px * var(--service-scale));
  }

  .service-card__action {
    width: calc(112px * var(--service-scale));
    height: calc(112px * var(--service-scale));
    bottom: calc(40px * var(--service-scale));
  }

  .service-card__action img {
    width: calc(52px * var(--service-scale));
    height: calc(52px * var(--service-scale));
  }

  .service-card h3 {
    left: calc(40px * var(--service-scale));
    bottom: calc(32px * var(--service-scale));
    width: calc(480px * var(--service-scale));
    max-width: calc(100% - 80px * var(--service-scale));
    height: calc(34px * var(--service-scale));
    font-size: calc(28px * var(--service-scale));
    line-height: calc(34px * var(--service-scale));
  }
}

/* ---------- Careers ---------- */

.careers {
  position: relative;
  width: 100%;
  height: 800px;
  box-sizing: border-box;
  padding: 100px 0 120px;
  color: var(--color-white);
  background: url("../assets/careers-bg.png") center / cover no-repeat;
  overflow: hidden;
}

.careers-inner {
  position: relative;
  z-index: 1;
  height: 100%;
}

.careers-head {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin: 20px 0 0;
  padding-bottom: 95px;
}

.careers-head .section-title {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: max(86px, calc(100vw * 86 / 1920));
  line-height: 120%;
}

.careers-head p {
  font-size: clamp(18px, 1.4vw, 22px);
  width: 660px;
  margin-left: 80px;
}

.careers-rail {
  --careers-rail-w: max(0px, calc(var(--container-gutter) - var(--page-frame-inset)));
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--careers-rail-w);
  box-sizing: border-box;
  background-image: url("../assets/careers-rail-pattern.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: min(100%, 174px) auto;
  pointer-events: none;
}

.careers-arrow {
  --arrow-size: 32px;
  position: relative;
  display: block;
  width: var(--arrow-size);
  height: var(--arrow-size);
  margin: 0;
  flex-shrink: 0;
  pointer-events: none;
}

.careers-bottom-decor {
  display: none;
}

.job-grid {
  position: relative;
  display: flex;
  height: 300px;
  justify-content: space-between;
  align-items: center;
}

.job-grid::before,
.job-grid::after {
  content: "";
  position: absolute;
  left: calc(50% - 50vw + var(--page-frame-inset));
  right: calc(50% - 50vw + var(--page-frame-inset));
  height: 1px;
  background: var(--color-line-soft);
  pointer-events: none;
}

.job-grid::before {
  top: 0;
}

.job-grid::after {
  bottom: 0;
}

.job-card-wrap {
  box-sizing: border-box;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 min(48px, calc(100vw * 48 / 1920));
  border-right: 1px solid var(--color-line-soft);
}

.careers-rail + .job-card-wrap {
  border-left: 1px solid var(--color-line-soft);
}

.job-card {
  --job-motion: 0.46s;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(360px, calc(100vw * 360 / 1920));
  gap: 0;
  transition: gap var(--job-motion) var(--ease-out);
}

.job-card-wrap:hover .job-card,
.job-card-wrap:focus-within .job-card {
  gap: 10px;
}

.job-card__main {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, calc(100vw * 20 / 1920), 20px);
  width: 100%;
  flex-shrink: 0;
}

.job-card__icon {
  width: min(68px, calc(100vw * 68 / 1920));
  height: min(68px, calc(100vw * 68 / 1920));
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
}

.job-card__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.job-card__body {
  width: 272px;
}

@media (max-width: 1599px) {
  .job-card__body {
    width: 220px;
  }
}

.job-card__body h3 {
  color: var(--color-blue-soft);
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-card__body p {
  width: min(272px, calc(100vw * 272 / 1920));
  height: min(75px, calc(100vw * 75 / 1920));
  margin: 0;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: min(18px, calc(100vw * 18 / 1920));
  line-height: 140%;
  color: #76788e;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}

.job-card__action {
  width: min(240px, calc(100vw * 240 / 1600));
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--job-motion) var(--ease-out);
}

.job-card-wrap:hover .job-card__action,
.job-card-wrap:focus-within .job-card__action {
  max-height: 64px;
}

.job-card .btn--career-more {
  position: static;
  box-sizing: border-box;
  width: min(240px, calc(100vw * 240 / 1600));
  height: 60px;
  min-height: 60px;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(40px);
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  transition:
    opacity var(--job-motion) var(--ease-out),
    visibility var(--job-motion) var(--ease-out),
    transform var(--job-motion) var(--ease-out),
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.job-card-wrap:hover .job-card .btn--career-more,
.job-card-wrap:focus-within .job-card .btn--career-more {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.job-card .btn--career-more .btn__arrow {
  width: 23px;
  height: 23px;
  filter: brightness(0) invert(1);
}

.job-card .btn--career-more .btn__label {
  color: #000000;
}

.job-card .btn--career-more .btn__label .btn__arrow--lead {
  filter: none;
}

.job-card-wrap:hover .job-card .btn--career-more:hover,
.job-card-wrap:hover .job-card .btn--career-more:focus-visible,
.job-card-wrap:focus-within .job-card .btn--career-more:hover,
.job-card-wrap:focus-within .job-card .btn--career-more:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: translateY(0);
}

.job-card .btn--career-more:hover .btn__label,
.job-card .btn--career-more:focus-visible .btn__label {
  transform: translate(-50%, -50%);
}

.job-card .btn--career-more:hover .btn__arrow--default,
.job-card .btn--career-more:focus-visible .btn__arrow--default {
  filter: none;
  transform: translateX(180%);
  opacity: 0;
}

.job-card .btn--career-more:hover .btn__label .btn__arrow--lead,
.job-card .btn--career-more:focus-visible .btn__label .btn__arrow--lead {
  filter: none;
}

/* ---------- Marquee ---------- */

.marquee {
  width: 100%;
  max-width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("../assets/marquee-bg.png") center / cover no-repeat;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  contain: inline-size;
}

.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 48px;
  animation: marquee 22s linear infinite;
}

.marquee:has(.marquee__item em:hover) .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  margin-right: 48px;
  white-space: nowrap;
}

.marquee__item img {
  width: 42px;
  height: 42px;
}

.marquee__item em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-ink);
  border-radius: 80px;
  padding: clamp(20px, 2.1vw, 40px) clamp(40px, 4.2vw, 80px);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.3s var(--ease-out),
    background-color 0.3s var(--ease-out);
}

.marquee__item em:hover {
  color: #e4e84b;
  background: #1e1e1e;
}

@media (max-width: 960px) {
  .marquee {
    height: clamp(160px, 28vw, 320px);
  }
}

/* ---------- Why ---------- */

.why {
  padding: 140px 0;
  background: var(--color-white);
}

.why .section-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.25em;
  margin: 22px 0 94px;
  font-size: max(86px, calc(100vw * 86 / 1920));
  line-height: 120%;
}

.why-title__brand {
  display: inline-flex;
  flex-wrap: nowrap;
}

html[lang="zh-Hans"] .why-title__brand,
html[lang="zh-Hant"] .why-title__brand {
  display: none;
}

html[lang="zh-Hans"] .why .section-title,
html[lang="zh-Hant"] .why .section-title {
  gap: 0;
}

.why-layout {
  position: relative;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.why-item {
  position: relative;
  z-index: 0;
  box-sizing: content-box;
  display: grid;
  grid-template-columns: min(328px, 28%) minmax(0, 1fr) 32px;
  align-items: start;
  width: 100%;
  height: 54px;
  margin: 0;
  padding: 60px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--color-ink);
}

.why-item:first-child {
  padding-top: 0;
}

.why-item:last-child {
  padding-bottom: 0;
}

.why-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-line-soft);
  pointer-events: none;
}

.why-item__copy {
  display: contents;
}

.why-item__media {
  display: none;
}

.why-item h3 {
  grid-column: 1;
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  height: 54px;
  margin: 0;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: min(34px, calc(100vw * 34 / 1920));
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-ink);
  white-space: nowrap;
}

.why-item h3::before {
  content: "";
  position: absolute;
  inset: 2px 0;
  z-index: -1;
  background: transparent;
  transform: skewX(-18deg);
  pointer-events: none;
  transition: background 0.3s ease;
}

.why-item p {
  grid-column: 2;
  margin: 16px 0 0;
  font-family: var(--font-body);
  font-size: min(22px, calc(100vw * 22 / 1920));
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink);
  padding-left: 25px;
}

.why-item__arrow {
  grid-column: 3;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: 11px;
  color: var(--color-ink);
  transition: color 0.3s ease, transform 0.3s var(--ease-out);
}

.why-item__arrow svg {
  display: block;
  width: 32px;
  height: 32px;
}

.why-item.is-active {
  z-index: 2;
}

.why-item.is-leaving-down,
.why-item.is-leaving-up {
  z-index: 3;
}

.why-item.is-active h3::before,
.why-item:hover h3::before {
  background: var(--color-yellow);
}

.why-item.is-active .why-item__arrow,
.why-item:hover .why-item__arrow {
  color: var(--color-yellow);
  transform: translate(2px, -2px);
}

.why-item__preview {
  position: absolute;
  top: 50%;
  right: 60px;
  z-index: 1;
  display: block;
  width: 240px;
  height: 280px;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #d3d3d3;
  --why-preview-shift: 0px;
  transform: translateY(calc(-50% + var(--why-preview-shift)));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.why-item.is-active .why-item__preview {
  --why-preview-shift: 0px;
  opacity: 1;
}

.why-item.is-leaving-down .why-item__preview {
  --why-preview-shift: 36px;
  opacity: 0;
}

.why-item.is-leaving-up .why-item__preview {
  --why-preview-shift: -36px;
  opacity: 0;
}

.why-item.is-from-up .why-item__preview {
  --why-preview-shift: -24px;
  opacity: 0;
  transition: none;
}

.why-item.is-from-down .why-item__preview {
  --why-preview-shift: 24px;
  opacity: 0;
  transition: none;
}

.why-item__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- CTA ---------- */

.cta {
  position: relative;
  container-type: inline-size;
  box-sizing: border-box;
  height: 1000px;
  padding: 140px 0 120px;
  color: var(--color-white);
  background: var(--color-night);
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta .section-num {
  align-self: flex-end;
}

.cta-title {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: max(86px, calc(100vw * 86 / 1920));
  letter-spacing: -0.02em;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 1173px;
}

@media (min-width: 769px) {
  html[lang="zh-Hans"] body .section-title,
  html[lang="zh-Hans"] body .contact-main__title,
  html[lang="zh-Hans"] body .cta-title {
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: auto;
  }

  html[lang="zh-Hant"] body .section-title,
  html[lang="zh-Hant"] body .contact-main__title,
  html[lang="zh-Hant"] body .cta-title {
    font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: auto;
  }
}

.cta-title::after {
  content: "";
  position: absolute;
  top: calc(100% + 54px);
  left: calc(50% - 50cqw + var(--page-frame-inset));
  width: calc(100cqw - 2 * var(--page-frame-inset));
  height: 1px;
  background: var(--color-line-soft);
  pointer-events: none;
}

.cta-title__line {
  white-space: nowrap;
}

.cta-title__br-h5 {
  display: none;
}

.cta-title [data-i18n="home.cta.title1b"]:empty {
  display: none;
}

.cta-copy {
  width: 1020px;
  font-size: clamp(18px, 1.8vw, 32px);
  line-height: 1.6;
  margin-top: 83px;
}

/* ---------- 首页 marqueeTop 跑马灯（不随 page-bridge 复用） ---------- */

.bridge-marquee {
  width: 100%;
  max-width: 100%;
  height: 280px;
  overflow: hidden;
  box-sizing: border-box;
  contain: inline-size;
}

.bridge-marquee__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: bridge-marquee 60s linear infinite reverse;
  will-change: transform;
}

.bridge-marquee__track img {
  display: block;
  flex-shrink: 0;
  height: 280px;
  width: auto;
}

@keyframes bridge-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333333%); }
}

/* ---------- Page Bridge（idea-banner + footer-top-banner，承上启下） ---------- */

.page-bridge {
  position: relative;
  z-index: 90;
  display: block;
  margin: 0;
  padding: 0;
}

.idea-banner {
  display: flex;
  align-items: center;
  background: var(--color-yellow);
  padding: 36px 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  contain: inline-size;
}

.idea-banner__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: bridge-marquee 60s linear infinite;
  will-change: transform;
}

.idea-banner__track p,
.idea-banner > p {
  flex-shrink: 0;
  margin: 0;
  padding: 0 60px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 78px);
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  color: #000000;
  white-space: nowrap;
}

.footer-top-banner {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
}

.footer-top-banner img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 0 0 112px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 47px,
      rgba(0, 0, 0, 0.035) 47px,
      rgba(0, 0, 0, 0.035) 48px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 47px,
      rgba(0, 0, 0, 0.035) 47px,
      rgba(0, 0, 0, 0.035) 48px
    );
}

.site-footer .footer-inner {
  box-sizing: border-box;
  width: calc(100% - 200px);
  max-width: none;
  margin-inline: auto;
  padding-top: 40px;
}

.footer-nav {
  --footer-nav-inset: max(
    var(--page-frame-inset),
    calc(100vw * 100 / 1920)
  );
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  gap: max(20px, calc(100vw * 20 / 1920));
  flex-wrap: wrap;
  width: calc(100vw - 2 * var(--footer-nav-inset));
  margin: 0 0 150px calc(50% - 50vw + var(--footer-nav-inset));
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 max(20px, calc(100vw * 20 / 1920));
  font-size: max(14px, calc(100vw * 14 / 1920));
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.6;
  color: inherit;
  text-decoration: none;
}

.footer-brand {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.footer-wordmark-wrap {
  position: relative;
  left: -77px;
  width: fit-content;
  max-width: calc(100% + 77px);
}

.footer-wordmark {
  width: calc(100vw * 902 / 1920);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-follow {
  position: absolute;
  right: calc(-1 * max(40px, 100vw * 40 / 1920) - max(0px, (1920px - 100vw) * 60 / 320));
  bottom: 0;
  display: block;
  line-height: 0;
}

.footer-follow img {
  display: block;
  width: calc(100vw * 342 / 1920);
  max-width: 100%;
  height: auto;
}

.footer-meta {
  padding-right: max(40px, calc(100vw * 40 / 1920));
  text-align: right;
}

.footer-meta p,
.footer-meta .footer-address {
  max-width: max(324px, calc(100vw * 324 / 1920));
  margin: 0;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: max(20px, calc(100vw * 20 / 1920));
  line-height: 160%;
  text-align: right;
  color: #1e1e1e;
}

.footer-meta .copyright {
  margin-top: max(140px, calc(100vw * 140 / 1920));
  font-size: max(14px, calc(100vw * 14 / 1920));
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
}

/* ---------- About ---------- */

.page-about {
  --about-logo-right: calc(
    (100vw - min(var(--header-max), calc(100vw * 1640 / 1920))) / 2 +
      clamp(48px, calc(100vw * 72 / 1920), 72px)
  );
}

.about-hero {
  position: relative;
  width: 100%;
  height: min(640px, 56vw);
  overflow: hidden;
  background: transparent;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro {
  padding: 200px 0 60px;
  background: var(--color-white);
}

.container.about-intro__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-left: var(--about-logo-right);
  padding-right: min(274px, calc(100vw * 274 / 1920));
}

.about-intro .section-title {
  margin-bottom: 32px;
  width: 850px;
}

p.about-intro__copy {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  color: var(--color-ink);
  width: 850px;
}

.about-intro__gap {
  display: block;
  height: 12px;
}

.about-mid {
  position: relative;
  z-index: 90;
  width: 100%;
  overflow: hidden;
}

.about-mid img {
  width: 100%;
  object-fit: cover;
}

.about-vm {
  padding: 100px 0;
  background: var(--color-white);
}

.container.about-vm__grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns:
    min(502px, calc(100vw * 502 / 1920))
    min(502px, calc(100vw * 502 / 1920));
  column-gap: calc(100vw * 20 / 1920);
  width: max-content;
  max-width: none;
  margin-left: calc(100vw * 622 / 1920);
  margin-right: auto;
  justify-content: start;
}

.about-vm article {
  box-sizing: border-box;
  width: 100%;
  max-width: 502px;
  min-width: 0;
}

.about-vm h2 {
  margin: 0;
  max-width: 100%;
  font-family: "Science Gothic", var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 52px;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--color-ink);
}

.about-vm p {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink);
}

.about-values {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 740px;
  padding: 100px 0;
  color: var(--color-white);
  overflow: hidden;
}

.about-values__bg {
  position: absolute;
  inset: 0;
}

.about-values__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 26, 0.82);
}

.container.about-values__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  align-items: stretch;
  gap: max(93px, calc(100vw * 93 / 1920));
  width: auto;
  max-width: none;
  margin-left: var(--about-logo-right);
  margin-right: auto;
  padding: 0;
}

.about-values__title {
  flex: 0 0 auto;
  align-self: flex-start;
  margin: 0;
  padding-top: 28px;
  color: #fff;
  font-family: "Science Gothic", var(--font-display);
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
}

.about-values__list {
  flex: 0 1 auto;
  align-self: center;
  list-style: none;
  width: min(1198px, calc(100vw * 1198 / 1920));
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-values__list li {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: min(240px, calc(100vw * 240 / 1920)) minmax(0, 1fr);
  column-gap: 0;
  align-items: center;
  width: min(1100px, calc(100vw * 1100 / 1920));
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-line-soft);
}

.about-values__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-values__list h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.about-values__list p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

/* ---------- Legal / Privacy ---------- */

.page-legal {
  background: var(--color-white);
}

.legal-page {
  padding: max(220px, calc(100vw * 220 / 1920)) 0 max(100px, calc(100vw * 100 / 1920));
}

.container.legal-page__inner {
  width: max(var(--container), calc(100vw * 1372 / 1920));
}

.legal-page__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: max(32px, calc(100vw * 32 / 1920));
  margin-bottom: max(32px, calc(100vw * 32 / 1920));
}

.legal-page__head .section-title {
  margin: 0;
  color: #1e1e1e;
  font-family: "Science Gothic", var(--font-display);
  font-size: max(42px, calc(100vw * 86 / 1920));
  font-style: italic;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.legal-tabs {
  display: flex;
  align-items: center;
  gap: max(32px, calc(100vw * 32 / 1920));
  flex-shrink: 0;
  margin-bottom: max(10px, calc(100vw * 10 / 1920));
}

.legal-tabs__btn {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Noto Sans", "Noto Sans SC", var(--font-body), sans-serif;
  font-size: max(16px, calc(100vw * 16 / 1920));
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: var(--color-ink);
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.legal-tabs__btn.is-active,
.legal-tabs__btn:hover,
.legal-tabs__btn:focus-visible {
  opacity: 1;
}

.legal-panel__body {
  max-width: max(1373px, calc(100vw * 1373 / 1920));
  font-size: max(clamp(18px, 1.4vw, 22px), calc(100vw * 22 / 1920));
  line-height: 1.6;
  color: var(--color-ink);
}

.legal-panel__body p,
.legal-panel__body ul {
  margin: 0 0 1.2em;
}

.legal-panel__body a {
  color: var(--color-blue);
  text-decoration: underline;
}

.legal-panel[hidden] {
  display: none !important;
}

.idea-banner--legal {
  height: 160px;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.idea-banner--legal .idea-banner__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: bridge-marquee 60s linear infinite;
  will-change: transform;
}

.idea-banner--legal .idea-banner__track p {
  padding: 0;
}

.idea-banner--legal .idea-banner__row--clone {
  display: flex;
}

.idea-banner__row {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 60px);
  width: max-content;
  padding-left: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.idea-banner--legal p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-black);
  white-space: nowrap;
}

.idea-banner__row img {
  width: clamp(36px, 3.4vw, 52px);
  height: clamp(36px, 3.4vw, 52px);
  flex-shrink: 0;
}

.page-bridge--footer-only {
  margin-top: 0;
}

.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;
}

/* ---------- Shared sub-page hero ---------- */

.sub-hero {
  position: relative;
  width: 100%;
  height: min(640px, 56vw);
  overflow: hidden;
  background: transparent;
}

.sub-hero__bg {
  position: absolute;
  inset: 0;
}

.sub-hero__bg img,
.sub-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-hero--careers .sub-hero__img--top {
  position: absolute;
  inset: 0;
  mix-blend-mode: normal;
}

/* ---------- Services page ---------- */

.services-page {
  padding: 200px 0 180px;
  background: var(--color-white);
}

.services-page__title {
  margin: 0 0 80px;
}

.svc-block {
  display: grid;
  grid-template-columns: minmax(0, 660fr) minmax(0, 640fr);
  gap: min(72px, calc(100vw * 72 / 1920));
  align-items: center;
  margin-bottom: min(100px, calc(100vw * 100 / 1920));
}

.svc-block:last-child {
  margin-bottom: 0;
}

.svc-block--media-right {
  grid-template-columns: minmax(0, 640fr) minmax(0, 660fr);
}

.svc-block__media {
  margin: 0;
  width: 100%;
  aspect-ratio: 660 / 480;
  border-radius: 12px;
  overflow: hidden;
}

.svc-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-block__copy {
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  min-width: 0;
}

.svc-block__copy h2 {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ink);
}

.svc-block__copy p {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink);
}

.svc-block__copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink);
}

.career-role__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  color: var(--color-ink);
}

.legal-panel__body ul {
  padding: 0;
  list-style: none;
}

.svc-block__copy li,
.career-role__body li,
.legal-panel__body li {
  position: relative;
  padding-left: 1.15em;
}

.svc-block__copy li::before,
.career-role__body li::before,
.legal-panel__body li::before {
  content: "";
  position: absolute;
  left: 0.1em;
  top: 0.8em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1e1e1e;
  transform: translateY(-50%);
}

.svc-block__copy li + li,
.career-role__body li + li,
.legal-panel__body li + li {
  margin-top: 2px;
}

.legal-panel__body li::before {
  width: max(5px, calc(100vw * 5 / 1920));
  height: max(5px, calc(100vw * 5 / 1920));
}

.careers-page {
  padding: 200px 0 130px;
  background: var(--color-white);
}

.careers-page__intro {
  max-width: 1372px;
  margin-bottom: 72px;
}

.careers-page__intro .section-title {
  margin: 0 0 32px;
}

.careers-page__intro p {
  margin: 0;
  max-width: 1024px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  color: var(--color-ink);
}

.careers-roles {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.career-role {
  display: grid;
  grid-template-columns: 112px minmax(0, 850px);
  gap: clamp(32px, 4vw, 62px);
  align-items: start;
}

.career-role__icon {
  width: 112px;
  height: 112px;
  display: block;
}

.career-role__body h2 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ink);
}

.career-role__body > p {
  margin: 0 0 12px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  color: var(--color-ink);
}

.btn--apply {
  width: 240px;
  min-height: 60px;
  margin-top: 30px;
  font-size: 18px;
  justify-content: center;
  align-items: center;
}

.btn--apply .btn__arrow {
  width: 23px;
  height: 23px;
}

.btn--apply .btn__arrow--default {
  display: block;
  margin: 0 auto;
}

.careers-apply {
  position: relative;
  container-type: inline-size;
  min-height: min(840px, 90vw);
  padding: 140px 0 100px;
  overflow: hidden;
  background: var(--color-night);
  color: var(--color-white);
  text-align: center;
}

.careers-apply__bg {
  position: absolute;
  inset: 0;
}

.careers-apply__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.careers-apply__inner {
  position: relative;
  z-index: 1;
  max-width: 882px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.careers-apply__title {
  margin: 0 0 34px;
  color: #fff;
  text-align: center;
  font-family: "Science Gothic", var(--font-display);
  font-size: 86px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.72px;
  text-transform: uppercase;
}

.careers-apply__lead,
.careers-apply__note {
  margin: 0;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  text-align: center;
}

.careers-apply__lead {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 50px;
}

.careers-apply__lead::after {
  content: "";
  position: absolute;
  left: calc(50% - 50cqw + var(--page-frame-inset));
  bottom: 0;
  width: calc(100cqw - 2 * var(--page-frame-inset));
  height: 1px;
  background: var(--color-line-soft);
  pointer-events: none;
}

p.careers-apply__note {
  margin-top: 40px;
}
.careers-apply__lead a {
  color: var(--color-yellow);
  text-decoration: none;
}

.careers-apply__lead a:hover,
.careers-apply__lead a:focus-visible {
  text-decoration: underline;
}

.careers-apply__badge {
  display: grid;
  place-items: center;
  width: clamp(120px, 12vw, 180px);
  aspect-ratio: 1;
  margin-top: 80px;
  transition: transform 0.4s var(--ease-out);
}

.careers-apply__badge-ring,
.careers-apply__badge-arrow {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  display: block;
}

.careers-apply__badge-ring {
  animation: spin 18s linear infinite;
}

.careers-apply__badge-arrow {
  width: 46px;
  height: 46px;
  z-index: 1;
  pointer-events: none;
}

.careers-apply__badge:hover {
  transform: scale(1.04);
}

.contact-page {
  padding: 160px 0 120px;
  background: var(--color-white);
  overflow: visible;
}

@media (min-width: 769px) {
  .page-contact .container.contact-page__layout {
    box-sizing: border-box;
    width: min(var(--header-max), calc(100vw * 1640 / 1920));
    max-width: var(--header-max);
    margin-left: auto;
    margin-right: auto;
  }

  .page-contact .contact-aside {
    --contact-aside-top: min(460px, calc(100vw * 460 / 1920));
    --contact-aside-bottom-safe: 20px;
    --contact-page-pad-top: 160px;
    --contact-aside-h: 680px;
    --contact-aside-sticky-top: max(
      160px,
      min(
        var(--contact-aside-top),
        calc(100vh - var(--contact-aside-bottom-safe) - var(--contact-aside-h))
      )
    );
    position: sticky;
    top: var(--contact-aside-sticky-top);
    margin-top: max(0px, calc(var(--contact-aside-sticky-top) - var(--contact-page-pad-top)));
    align-self: start;
    z-index: 1;
  }
}

.contact-page__layout {
  display: grid;
  grid-template-columns:
    min(460px, calc(100vw * 460 / 1920))
    min(838px, calc(100vw * 838 / 1920));
  justify-content: space-between;
  gap: clamp(40px, calc(100vw * 196 / 1920), 196px);
  align-items: start;
  overflow: visible;
}

.contact-aside {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(460px, calc(100vw * 460 / 1600));
  margin-top: clamp(120px, 18vw, 300px);
  min-width: 0;
}

.contact-main {
  width: 100%;
  min-width: 0;
  max-width: 838px;
}

.contact-card {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 20px 40px 28px;
}

.contact-card--email {
  min-height: min(480px, calc(100vw * 480 / 1920));
}

.contact-card--address {
  min-height: min(180px, calc(100vw * 180 / 1920));
}

.contact-card__pin {
  position: absolute;
  right: 40px;
  top: 28px;
  width: 32px;
  height: 32px;
}

.contact-card--address .contact-card__pin {
  top: 32px;
}

.contact-card h2 {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ink);
}

.contact-emails {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-emails dt {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-ink);
}

.contact-emails dd {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
}

.contact-emails a {
  color: var(--color-ink);
  text-decoration: none;
}

.contact-emails a:hover,
.contact-emails a:focus-visible {
  text-decoration: underline;
}

.contact-card--address p {
  margin: 0;
  max-width: 324px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-ink);
}

.contact-main__title {
  margin: 0 0 32px;
  color: #1e1e1e;
  font-family: "Science Gothic", var(--font-display);
  font-size: clamp(42px, calc(100vw * 86 / 1920), 86px);
  font-style: italic;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.contact-main__title-line {
  white-space: nowrap;
}

.contact-main__br-h5 {
  display: none;
}

.contact-main__title-step:has([data-i18n="contact.title2b"]:empty) {
  display: none;
}

.contact-main__lead {
  margin: 0 0 60px;
  width: 100%;
  max-width: 100%;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  color: var(--color-ink);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 100%;
}

.contact-field {
  display: block;
  border-bottom: 1px solid #eeeeee;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 0 10px;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  color: var(--color-ink);
  resize: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.contact-field--message {
  padding-top: 0;
}

.contact-field--message textarea {
  min-height: 110px;
}

.contact-enquiry {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-enquiry legend {
  margin: 0 0 16px;
  padding: 0;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  color: #000;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 40px;
  border: 1px solid #eeeeee;
  border-radius: 30px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-chip__label {
  display: inline-grid;
  overflow: hidden;
  height: 1.6em;
  line-height: 1.6em;
}

.contact-chip__track {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}

.contact-chip__text {
  display: block;
  height: 1.6em;
  line-height: 1.6em;
  white-space: nowrap;
}

.contact-chip:hover .contact-chip__track,
.contact-chip:focus-visible .contact-chip__track {
  transform: translateY(-50%);
}

.contact-chip img {
  opacity: 0.35;
  transition: opacity 0.25s ease;
  flex-shrink: 0;
}

.contact-chip.is-active,
.contact-chip:hover,
.contact-chip:focus-visible {
  border-color: var(--color-ink);
}

.contact-chip.is-active img {
  opacity: 1;
}

.contact-form .btn--apply {
  margin-top: 20px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal[hidden] {
  display: none !important;
}

.contact-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 26, 0.72);
  backdrop-filter: blur(4px);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(446px, 100%);
  min-height: 200px;
  padding: 64px 28px 40px;
  background: #fff;
  color: #161616;
  text-align: center;
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.contact-modal__close img {
  width: 24px;
  height: 24px;
  display: block;
}

.contact-modal__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  color: #161616;
}

.contact-modal__desc {
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 40px;
  color: #808080;
}

body.contact-modal-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

/* ---------- Animations ---------- */

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.site-footer.reveal,
.site-footer.reveal.is-visible {
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1779px) {
  .why-item {
    height: auto;
    min-height: 54px;
    align-items: center;
  }

  .why-item p {
    width: 546px;
    margin-top: 0;
    padding-left: 0;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .why-item__arrow {
    margin-top: 0;
  }
}

@media (max-width: 1659px) {
  .why-item__preview {
    width: 192px;
    height: 224px;
  }
}

@media (max-width: 1200px) {
  .why-item__preview {
    width: min(200px, 22vw);
    height: auto;
    aspect-ratio: 240 / 280;
    right: 40px;
  }

  .why-item {
    grid-template-columns: minmax(140px, 30%) minmax(0, 1fr) 32px;
  }

  .why-item h3 {
    white-space: normal;
    padding: 0 12px;
  }
}

@media (max-width: 960px) {
  :root {
    --page-frame-inset: 24px;
    --container: calc(100% - 48px);
    --container-gutter: 24px;
  }

  .page-frame__line--bottom {
    bottom: var(--page-frame-inset);
  }

  .site-header {
    width: 100%;
    max-width: 100%;
  }

  .site-header .header-inner {
    width: min(100% - 48px, calc(100vw * 1640 / 1920));
    max-width: 100%;
    min-width: 0;
  }

  .hero-chrome {
    left: 24px;
    bottom: 40px;
    width: min(672px, calc(100% - 48px));
  }

  .hero-baseline {
    bottom: 40px;
  }

  .hero-pager {
    margin-left: 0;
  }

  .site-header > #menu-toggle {
    display: block;
    position: fixed;
    top: 29px;
    right: max(20px, var(--page-frame-inset, 20px));
    left: auto;
    margin: 0;
    width: 30px;
    height: 21px;
    z-index: 300;
    object-fit: contain;
    pointer-events: auto;
  }

  #site-header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 200;
  }

  .site-header .header-inner {
    overflow: visible;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 180;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(11, 13, 26, 0.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a {
    height: auto;
    font-size: 28px;
    color: var(--color-white);
  }

  .hero {
    padding: 120px 0 48px;
  }

  .hero-title {
    margin-bottom: 48px;
  }

  .hero-bottom {
    padding-left: 0;
    gap: 20px;
  }

  .hero-badge {
    position: static;
    align-self: flex-end;
    width: 120px;
    margin-top: 8px;
  }

  .intro-grid {
    flex-direction: column;
    gap: 16px;
  }

  .intro-left {
    flex: none;
    max-width: none;
  }

  .intro-body {
    padding-top: 0;
    max-width: none;
  }

  .job-card__main {
    width: 100%;
    max-width: 360px;
  }

  .careers-head p {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .cta-copy {
    width: 100%;
    max-width: 100%;
  }

  .cta-title__line {
    white-space: normal;
  }

  .service-card h3 {
    width: auto;
    max-width: calc(100% - 24px);
    white-space: normal;
  }

  .footer-follow {
    position: static;
    right: auto;
    margin-top: 24px;
  }

  .job-card__icon {
    width: clamp(40px, 12vw, 68px);
    height: clamp(40px, 12vw, 68px);
  }

  .why-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
  }

  .why-item__preview {
    display: none;
  }

  .why-item {
    grid-template-columns: 1fr 32px;
    height: auto;
    min-height: 54px;
    row-gap: 4px;
  }

  .why-item h3 {
    grid-column: 1;
  }

  .why-item p {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
    padding-right: 0;
  }

  .why-item__arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
    align-self: center;
  }

  .why-item:not(:last-child)::after {
    bottom: 0;
  }

  .site-footer .footer-inner {
    width: calc(100% - 48px);
  }

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

  .footer-meta {
    text-align: left;
  }

  .footer-top-banner {
    height: clamp(180px, 30vw, 380px);
  }

  .about-vm__grid,
  .container.about-vm__grid {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .about-values__list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .legal-page__head {
    flex-direction: column;
    gap: 20px;
  }

  .legal-tabs {
    margin-top: 0;
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .idea-banner__row {
    padding-left: 24px;
  }

  .svc-block,
  .svc-block--media-right {
    grid-template-columns: 1fr;
  }

  .svc-block--media-right .svc-block__media {
    order: -1;
  }

  .career-role {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px;
  }

  .career-role__icon {
    width: 72px;
    height: 72px;
  }

  .contact-page {
    padding-top: 120px;
  }

  .contact-aside {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    order: 2;
  }

  .contact-card--email,
  .contact-card--address {
    height: auto;
    min-height: 0;
  }

  .contact-card__pin {
    right: 20px;
    top: 20px;
  }

  .contact-form {
    gap: 36px;
  }

  .contact-chip {
    padding: 8px 20px;
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 32px);
    --container-gutter: 16px;
  }

  .site-footer .footer-inner {
    width: calc(100% - 32px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .btn {
    width: 100%;
  }

  .intro .btn--read-more {
    width: min(300px, 100%);
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-frame-inset: 20px;
    --container: min(100% - 80px, 100vw - 80px);
    --container-gutter: 40px;
    --header-max: 100%;
    --h5-w: calc(100vw - 80px);
    --h5-u: calc(var(--h5-w) / 310);
  }

  .img-pc {
    display: none;
  }

  .img-h5 {
    display: block;
  }

  .page-frame__line--top {
    display: none;
  }

  .page-frame__line--bottom {
    bottom: var(--page-frame-inset);
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: none;
  }

  .page-bridge,
  .idea-banner,
  .idea-banner--legal,
  .bridge-marquee,
  .marquee,
  .site-footer,
  main {
    max-width: 100%;
    overflow-x: clip;
    touch-action: pan-y;
  }

  #primary-nav.primary-nav {
    width: 100%;
    max-width: 100%;
  }

  #site-header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 200;
  }

  #site-header .container.header-inner {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    min-width: 0;
    box-sizing: border-box;
  }

  #site-header .logo {
    position: fixed;
    top: 20px;
    left: 40px;
    z-index: 300;
    line-height: 0;
  }

  .logo img {
    display: block;
    width: 58px;
    min-width: 58px;
    height: 39px;
    object-fit: contain;
  }

  #site-header .container.header-inner::before {
    content: "";
    display: block;
    width: 58px;
    height: 39px;
    flex-shrink: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .site-header > #menu-toggle {
    display: block;
    position: fixed;
    top: 29px;
    right: 40px;
    left: auto;
    width: 30px;
    height: 21px;
    margin: 0;
    z-index: 300;
  }

  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    z-index: 220;
    background: #fff;
    backdrop-filter: none;
  }

  body.menu-open #site-header .logo {
    visibility: visible;
    z-index: 300;
  }

  body.menu-open #menu-logo-h5.menu-logo-h5 {
    display: none;
  }

  /* Full-screen mobile navigation. */
  #primary-nav.primary-nav {
    --menu-h: 844;
    position: fixed;
    inset: 0;
    z-index: 180;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    max-width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    padding:
      calc(132 / var(--menu-h) * 100dvh)
      0
      calc(41 / var(--menu-h) * 100dvh);
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity 0.3s var(--ease-out), visibility 0.3s;
    overflow: hidden;
    overscroll-behavior: none;
  }

  #primary-nav.primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #primary-nav.primary-nav > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: auto;
    margin: 0 0 calc(46 / var(--menu-h) * 100dvh);
    padding: 2px 14px;
    border: 1px solid transparent;
    border-radius: 20px;
    color: #1e1e1e;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
  }

  #primary-nav.primary-nav > a:last-of-type {
    margin-bottom: calc(46 / var(--menu-h) * 100dvh);
  }

  #primary-nav.primary-nav > .lang-switch {
    flex-shrink: 0;
    margin: 0;
  }

  #primary-nav.primary-nav > a:hover,
  #primary-nav.primary-nav > a:focus-visible {
    color: #1e1e1e;
  }

  #primary-nav.primary-nav > a.is-active,
  #primary-nav.primary-nav > a[aria-current="page"] {
    color: #1e1e1e;
    border-color: #1e1e1e;
  }

  .site-header--light #primary-nav.primary-nav > a,
  .site-header--light #primary-nav.primary-nav > a:hover,
  .site-header--light #primary-nav.primary-nav > a:focus-visible,
  .site-header--light #primary-nav.primary-nav > a.is-active,
  .site-header--light #primary-nav.primary-nav > a[aria-current="page"] {
    color: #1e1e1e;
  }

  .site-header--light #primary-nav.primary-nav > a.is-active,
  .site-header--light #primary-nav.primary-nav > a[aria-current="page"] {
    border-color: #1e1e1e;
  }

  .lang-switch__expand {
    width: 162px;
    max-width: 100%;
    color: #1e1e1e;
    font-size: 18px;
  }

  .lang-switch__expand:hover,
  .lang-switch__expand:focus-visible,
  .lang-switch.is-expanded .lang-switch__expand {
    color: #1e1e1e;
  }

  .lang-switch.is-expanded .lang-switch__opts {
    gap: 20px;
  }

  .lang-switch.is-expanded .lang-switch__opt:not(.is-current) {
    color: var(--color-muted);
  }

  .lang-switch__opt.is-current,
  .lang-switch.is-expanded .lang-switch__opt.is-current,
  .lang-switch.is-expanded .lang-switch__opt:hover,
  .lang-switch.is-expanded .lang-switch__opt:focus-visible {
    color: #1e1e1e;
  }

  #primary-nav .mobile-menu-foot {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-shrink: 0;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-top: auto;
    padding-top: 0;
  }

  #primary-nav .mobile-menu-foot__decor {
    display: block;
    width: 100%;
    max-width: 100%;
    height: calc(120 / var(--menu-h) * 100dvh);
    margin-left: 0;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
  }

  #primary-nav .mobile-menu-foot__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: calc(64 / var(--menu-h) * 100dvh);
    margin-top: calc(26 / var(--menu-h) * 100dvh);
    padding: 0 20px;
  }

  #primary-nav .mobile-menu-foot__links a {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .section-num {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    color: #334fee;
  }

  #intro .section-num,
  #services .section-num,
  #careers .section-num,
  #why .section-num {
    font-size: calc(36 * var(--h5-u));
  }

  .section-num--light {
    color: #fff;
  }

  .hero {
    min-height: 100svh;
    padding: 100px 0 48px;
    --hero-title-angle: 91.26deg;
    --hero-title-stop-a: 4.99%;
    --hero-title-stop-b: 45.25%;
    --hero-title-stop-c: 86.48%;
  }

  .hero-section-num {
    top: 80px;
    right: 40px;
    left: auto;
    color: #fff;
  }

  .hero-title {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 48px;
  }

  .hero-title__line {
    white-space: normal;
  }

  html[lang="zh-Hans"] .hero-title,
  html[lang="zh-Hant"] .hero-title {
    flex-direction: column;
    flex-wrap: nowrap;
    font-family: "Science Gothic", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-style: normal;
    font-weight: 800;
    white-space: normal;
    text-transform: none;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: auto;
  }

  html[lang="zh-Hant"] .hero-title {
    font-family: "Science Gothic", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    font-size: 18px;
    line-height: 1.6;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 100px;
    column-gap: 15px;
    row-gap: 55px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }

  .hero-bottom > .hero-copy {
    grid-column: 1 / -1;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    align-self: center;
    gap: 20px;
    margin-top: 0;
  }

  .hero .text-link {
    font-size: 16px;
    letter-spacing: 0.2em;
    white-space: nowrap;
  }

  .hero-badge {
    position: static;
    align-self: center;
    justify-self: end;
    width: 100px;
    height: 100px;
    margin: 0;
    right: auto;
    bottom: auto;
  }

  .hero-badge__ring,
  .hero-badge__arrow {
    width: 100%;
    height: auto;
  }

  .hero-badge__arrow {
    width: 30px;
    height: 30px;
  }

  .hero-chrome {
    left: 40px;
    bottom: 40px;
    width: calc(100% - 80px);
  }

  .hero-pager {
    margin-left: 0;
  }

  .hero-baseline {
    bottom: 40px;
  }

  .page-frame__line--left,
  .page-frame__line--right {
    background: var(--color-line-soft);
  }

  .intro {
    padding: calc(80 * var(--h5-u)) 0;
  }

  .intro-grid {
    flex-direction: column;
    gap: calc(40 * var(--h5-u));
  }

  .intro-aside {
    margin: calc(24 * var(--h5-u)) 0 0;
    font-size: calc(22 * var(--h5-u));
    line-height: 1.6;
  }

  .intro-body {
    gap: calc(20 * var(--h5-u));
  }

  .intro-lead {
    font-size: calc(28 * var(--h5-u));
    font-weight: 600;
    line-height: 1.4;
  }

  #intro .btn--read-more {
    width: calc(300 * var(--h5-u));
    max-width: 100%;
    min-height: calc(78 * var(--h5-u));
    margin-top: calc(40 * var(--h5-u));
    font-size: calc(22 * var(--h5-u));
    border-radius: calc(40 * var(--h5-u));
  }

  #intro .btn--read-more .btn__arrow {
    width: calc(31 * var(--h5-u));
    height: calc(31 * var(--h5-u));
  }

  .services {
    --svc-w: var(--h5-w);
    --svc-u: var(--h5-u);
    --service-card-w: var(--svc-w);
    --service-card-h: calc(220 * var(--svc-u));
    --service-gap: calc(20 * var(--svc-u));
    --service-step-y: 0px;
    --service-card-count: 1;
    --service-section-gap: 40px;
    padding: calc(80 * var(--h5-u)) 0 calc(110 * var(--h5-u));
  }

  .services .section-title,
  .services .section-title.reveal,
  .services .section-title.reveal.is-visible {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: calc(12 * var(--h5-u)) 0 60px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: calc(46 * var(--h5-u));
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #1e1e1e;
  }

  .services-scroll {
    margin-bottom: 0;
  }

  .services-pin {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding-top: 0;
  }

  .services-carousel {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    overflow: visible;
  }

  .services-carousel__viewport {
    width: 100%;
    height: auto;
    overflow: visible;
    padding-left: 0;
  }

  .services .services-carousel__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--service-gap);
    width: 100%;
    height: auto;
    transform: none;
    transition: none;
  }

  .services .service-card {
    flex: none;
    width: var(--svc-w);
    max-width: var(--svc-w);
    height: var(--service-card-h);
    margin-inline: auto;
    transform: none;
  }

  .services .service-card__media {
    width: 100%;
    height: 100%;
    border-radius: calc(12 * var(--svc-u));
  }

  .services .service-card__media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .services .service-card__glass {
    display: none;
  }

  .services .service-card__action {
    width: calc(50 * var(--svc-u));
    height: calc(50 * var(--svc-u));
    right: 0;
    bottom: calc(18 * var(--svc-u));
    opacity: 1;
    transform: none;
    pointer-events: none;
  }

  .services .service-card__action img {
    width: calc(24 * var(--svc-u));
    height: calc(24 * var(--svc-u));
  }

  .services .service-card h3 {
    left: calc(10 * var(--svc-u));
    bottom: calc(12 * var(--svc-u));
    width: calc(100% - 70 * var(--svc-u));
    max-width: none;
    height: auto;
    font-size: calc(16 * var(--svc-u));
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .job-grid {
    flex-direction: column;
  }

  .job-card__main {
    width: 100%;
    max-width: none;
  }

  #careers.careers {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    min-height: calc(1260 * var(--h5-u));
    padding: calc(65 * var(--h5-u)) 0 0;
    margin: 0;
    overflow: hidden;
    background-image: url("../assets/h5/careers_h5-bg.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
  }

  #careers .container.careers-inner {
    position: relative;
    box-sizing: border-box;
    display: block;
    width: var(--h5-w);
    max-width: var(--h5-w);
    min-width: 0;
    height: auto;
    min-height: calc(1135 * var(--h5-u));
    margin: 0 auto;
    padding: 0;
  }

  #careers .section-num {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
  }

  #careers .careers-head {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: calc(40 * var(--h5-u));
    width: 100%;
    margin: calc(40 * var(--h5-u)) 0 0;
    padding: 0 0 calc(40 * var(--h5-u));
  }

  #careers .careers-head::after {
    display: block;
    content: "";
    position: absolute;
    left: calc(50% - 50vw + var(--page-frame-inset));
    right: auto;
    bottom: 0;
    width: calc(100vw - 2 * var(--page-frame-inset));
    height: 1px;
    background: var(--color-line-soft);
    pointer-events: none;
  }

  #careers .careers-head .section-title {
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: calc(46 * var(--h5-u));
    line-height: 100%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
  }

  #careers .careers-head p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-family: var(--font-body);
    font-size: calc(22 * var(--h5-u));
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
  }
  #careers .job-grid {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    gap: 0;
  }

  #careers .job-grid::before,
  #careers .job-grid::after {
    display: none;
  }

  #careers .job-card-wrap {
    position: relative;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    height: calc(180 * var(--h5-u));
    padding: calc(30 * var(--h5-u)) 0;
    border: none;
    justify-content: center;
    align-items: center;
  }

  #careers .job-card-wrap:first-of-type {
    border: none;
  }

  #careers .job-card-wrap::before,
  #careers .job-card-wrap::after {
    content: "";
    position: absolute;
    left: calc(50% - 50vw + var(--page-frame-inset));
    width: calc(100vw - 2 * var(--page-frame-inset));
    height: 1px;
    background: var(--color-line-soft);
    pointer-events: none;
  }

  #careers .job-card-wrap::before {
    top: 0;
  }

  #careers .job-card-wrap::after {
    bottom: 0;
  }

  #careers .job-card-wrap:first-of-type::before,
  #careers .job-card-wrap + .job-card-wrap::before {
    display: none;
  }

  /* Figma 164:2369：job-card 390 稿 310×120，随屏等比 */
  #careers .job-card,
  #careers .job-card.reveal,
  #careers .job-card.reveal.is-visible {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    height: calc(120 * var(--h5-u));
    min-height: calc(120 * var(--h5-u));
    max-height: calc(120 * var(--h5-u));
    margin: 0;
    gap: 0;
  }

  #careers .job-card__main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    height: calc(120 * var(--h5-u));
    min-height: calc(120 * var(--h5-u));
    gap: calc(10 * var(--h5-u));
  }

  #careers .job-card__icon {
    width: calc(56 * var(--h5-u));
    height: calc(56 * var(--h5-u));
    min-width: calc(56 * var(--h5-u));
    min-height: calc(56 * var(--h5-u));
    flex-shrink: 0;
  }

  #careers .job-card__body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    gap: calc(10 * var(--h5-u));
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    height: calc(114 * var(--h5-u));
    max-height: calc(114 * var(--h5-u));
  }

  #careers .job-card__body h3 {
    margin: 0;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 600;
    font-size: calc(24 * var(--h5-u));
    line-height: 1;
    color: #5f6eff;
    width: 100%;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #careers .job-card__body p {
    width: 100%;
    max-width: none;
    height: calc(75 * var(--h5-u));
    max-height: calc(75 * var(--h5-u));
    margin: 0;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: calc(18 * var(--h5-u));
    line-height: 1.4;
    color: #76788e;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
  }

  #careers .job-card__action {
    display: none;
  }

  /* 底部装饰：左右通到 20px；斜线间距按稿 350×140，勿压密 */
  #careers .careers-bottom-decor {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: calc(100vw - 2 * var(--page-frame-inset));
    max-width: none;
    height: calc(140 * var(--h5-u));
    margin: 0 0 0 calc(50% - 50vw + var(--page-frame-inset));
    padding: 0;
    background-image: url("../assets/h5/careers-bottom-pattern.png");
    background-repeat: repeat-x;
    background-position: center;
    background-size: calc(350 * var(--h5-u)) calc(140 * var(--h5-u));
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }

  #careers .careers-bottom-decor__arrow {
    display: block;
    width: calc(32 * var(--h5-u));
    height: calc(32 * var(--h5-u));
    flex-shrink: 0;
    object-fit: contain;
  }

  #careers .careers-bottom-decor::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--color-line-soft);
    pointer-events: none;
  }

  #careers .careers-rail,
  #careers .careers-arrow {
    display: none;
  }

  #careers + .marquee {
    margin-top: 0;
  }

  /* H5 跑马灯：盖过左右 20px 细线；全部常驻 PC 悬停高亮态 — Figma 164:2677 黑底黄字 */
  .marquee {
    position: relative;
    z-index: 90;
    height: 134px;
  }

  .marquee__track {
    position: relative;
    z-index: 1;
    gap: 30px;
  }

  .marquee__item {
    gap: 30px;
    margin-right: 30px;
  }

  .marquee__item img {
    width: 40px;
    height: 40px;
  }

  .marquee__item em,
  .marquee__item em:hover {
    padding: 10px 26px;
    border-radius: 80px;
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 600;
    font-size: 34px;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
    color: #e4e84b;
    background: #1e1e1e;
  }

  .why {
    /* 距上方跑马灯 60px — Figma 164:2681 */
    padding: calc(60 * var(--h5-u)) 0 calc(80 * var(--h5-u));
  }

  .why .section-title,
  .why .section-title.reveal,
  .why .section-title.reveal.is-visible {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: calc(22 * var(--h5-u)) 0 calc(40 * var(--h5-u));
    font-size: calc(46 * var(--h5-u));
    font-weight: 700;
    line-height: 1;
  }

  .why .why-title__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  html[lang="zh-Hans"] .why .why-title__brand,
  html[lang="zh-Hant"] .why .why-title__brand {
    display: none;
  }

  /* Figma 164:2682：纵列卡片 + 线；左右 40 固定，内容按 310 等比 */
  #why .why-layout {
    display: block;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  #why .why-item__preview {
    display: none;
  }

  #why .why-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    gap: 0;
  }

  #why .why-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: calc(40 * var(--h5-u)) 0;
    grid-template-columns: none;
  }

  #why .why-item:first-child {
    padding-top: 0;
  }

  #why .why-item:last-child {
    padding-bottom: 0;
  }

  #why .why-item:not(:last-child)::after {
    left: calc(50% - 50vw + var(--page-frame-inset));
    right: auto;
    bottom: 0;
    width: calc(100vw - 2 * var(--page-frame-inset));
    height: 1px;
    background: var(--color-line-soft);
  }

  #why .why-item__media {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: calc(210 * var(--h5-u));
    margin: 0;
    border-radius: calc(12 * var(--h5-u));
    overflow: hidden;
    background: #d3d3d3;
  }

  #why .why-item__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  #why .why-item__copy {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: none;
    margin-top: calc(20 * var(--h5-u));
    padding-right: 0;
    box-sizing: border-box;
  }

  #why .why-item h3 {
    grid-column: auto;
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
    padding-right: calc(40 * var(--h5-u));
    box-sizing: border-box;
    font-size: calc(28 * var(--h5-u));
    font-weight: 600;
    line-height: 1.2;
    white-space: normal;
    color: #1e1e1e;
  }

  #why .why-item h3::before {
    display: none;
  }

  #why .why-item p {
    grid-column: auto;
    grid-row: auto;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    font-size: calc(22 * var(--h5-u));
    font-weight: 400;
    line-height: 1.6;
    color: #1e1e1e;
  }

  #why .why-item__arrow {
    position: absolute;
    top: calc(5 * var(--h5-u));
    right: 0;
    grid-column: auto;
    grid-row: auto;
    width: calc(28 * var(--h5-u));
    height: calc(28 * var(--h5-u));
    margin: 0;
    align-self: auto;
    color: #1e1e1e;
  }

  #why .why-item__arrow svg {
    width: 100%;
    height: 100%;
  }

  #why .why-item.is-active .why-item__arrow,
  #why .why-item:hover .why-item__arrow {
    color: #1e1e1e;
    transform: none;
  }

  .cta#contact {
    height: 1120px;
    padding: 60px 0 80px;
  }

  .btn.btn--read-more {
    width: 300px;
    max-width: 100%;
  }

  /* H5 has no hover state: keep animated buttons in one stable, tappable layout. */
  .btn:hover,
  .btn:focus-visible {
    transform: none;
  }

  .btn.btn--read-more,
  .btn.btn--read-more.is-hovered,
  .btn.btn--read-more.is-leaving,
  .btn.btn--read-more:focus-visible {
    background: transparent;
    border-color: #404040;
    color: #1e1e1e;
    transform: none;
  }

  .btn.btn--read-more .btn__label,
  .btn.btn--read-more.is-hovered .btn__label,
  .btn.btn--read-more.is-leaving .btn__label,
  .btn.btn--read-more:focus-visible .btn__label {
    transform: translate(-50%, -50%);
    transition: none;
  }

  .btn.btn--read-more .btn__arrow,
  .btn.btn--read-more .btn__arrow--default {
    transition: none;
    animation: none;
  }

  .btn.btn--read-more .btn__arrow--default {
    display: none;
  }

  .btn.btn--read-more.btn--apply,
  .btn.btn--read-more.btn--apply:focus-visible,
  .btn.btn--read-more.btn--get-in-touch,
  .btn.btn--read-more.btn--get-in-touch:focus-visible {
    background: #e1f664;
    border-color: #e1f664;
    color: #1e1e1e;
  }

  #intro .btn.btn--outline,
  #intro .btn.btn--outline:hover,
  #intro .btn.btn--outline:focus-visible {
    background: transparent;
    border-color: #404040;
    color: #1e1e1e;
  }

  #intro .btn.btn--outline img,
  #intro .btn.btn--outline:hover img,
  #intro .btn.btn--outline:focus-visible img {
    filter: none;
  }

  .page-contact .contact-chip:hover .contact-chip__track,
  .page-contact .contact-chip:focus-visible .contact-chip__track {
    transform: none;
  }

  .cta#contact .cta-title {
    max-width: 100%;
    font-family: "Science Gothic", var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
  }

  .cta#contact .cta-title::after {
    top: calc(100% + 60px);
    left: calc(50% - 50cqw + var(--page-frame-inset));
    width: calc(100cqw - 2 * var(--page-frame-inset));
    height: 1px;
    background: var(--color-line-soft);
  }

  .cta#contact .cta-title__br-h5 {
    display: block;
  }

  .cta#contact .cta-title:has([data-i18n="home.cta.title1b"]:empty) .cta-title__br-h5 {
    display: none;
  }

  .cta#contact [data-i18n="home.cta.title1b"] {
    white-space: nowrap;
  }

  .cta#contact .cta-title__line {
    white-space: normal;
  }

  .cta#contact .cta-copy {
    width: 100%;
    max-width: 310px;
    margin-top: 72px;
    font-family: "Bai Jamjuree", var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.6;
    text-align: center;
    color: #ffffff;
  }

  .bridge-marquee {
    position: relative;
    z-index: 90;
    height: 180px;
  }

  .bridge-marquee__track img {
    height: 180px;
  }

  .page-bridge .idea-banner:not(.idea-banner--legal) {
    box-sizing: border-box;
    height: 134px;
    padding: 0;
  }

  .page-bridge .idea-banner:not(.idea-banner--legal) .idea-banner__track p {
    font-size: 52px;
    padding: 0 40px;
  }

  /* legal 黄条公共：134px；字体见 Figma 164:3008；PC/H5 同 60s 向左 */
  .idea-banner.idea-banner--legal {
    box-sizing: border-box;
    height: 134px;
    padding: 0;
  }

  .idea-banner--legal .idea-banner__row {
    gap: 40px;
    padding-left: 40px;
  }

  .idea-banner--legal p,
  .idea-banner--legal .idea-banner__track p {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 52px;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #1e1e1e;
  }

  .idea-banner--legal .idea-banner__row img {
    width: 40px;
    height: 40px;
  }

  .footer-top-banner {
    height: auto;
  }

  .footer-top-banner .img-h5 {
    width: 100%;
    height: auto;
    object-fit: unset;
  }

  .site-footer {
    padding: 26px 0 52px;
    background: #ffffff;
  }

  .site-footer .footer-inner {
    margin-inline: auto;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-footer .footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 0 56px;
    padding: 0 4px;
    gap: 12px;
  }

  .site-footer .footer-nav a {
    box-sizing: border-box;
    width: calc(50% - 6px);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    white-space: nowrap;
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
    color: #1e1e1e;
    padding: 0 4px;
  }

  .site-footer .link-swap {
    width: 100%;
    overflow: visible;
    height: auto;
  }

  .site-footer .link-swap__track {
    transform: none;
    transition: none;
  }

  .site-footer .link-swap__text[aria-hidden="true"] {
    display: none;
  }

  .site-footer .link-swap__text {
    height: auto;
    justify-content: center;
  }

  .hero .link-swap {
    overflow: visible;
    height: auto;
  }

  .hero .link-swap__track {
    transform: none;
    transition: none;
  }

  .hero .link-swap__text[aria-hidden="true"] {
    display: none;
  }

  .hero .link-swap__text {
    height: auto;
  }

  .site-footer .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .site-footer .footer-wordmark-wrap {
    position: relative;
    z-index: 90;
    left: -24px;
    width: 100%;
    margin: 0 auto;
  }

  .site-footer .footer-wordmark {
    width: 100%;
    max-width: 360px;
    height: auto;
  }

  .site-footer .footer-follow {
    display: none;
  }

  .site-footer .footer-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 102px;
    padding: 0;
    text-align: center;
  }

  .site-footer .footer-meta .footer-address {
    max-width: 324px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    color: #1e1e1e;
  }

  .site-footer .footer-meta .copyright {
    margin-top: 36px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    color: #000000;
  }

  .page-about .about-hero {
    height: 300px;
  }

  .page-about .about-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 59px;
  }

  .page-about .about-vm {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 0 104px;
    background: #ffffff;
  }

  .page-about .container.about-intro__inner,
  .page-about .container.about-vm__grid,
  .page-about .container.about-values__inner {
    box-sizing: border-box;
    width: var(--h5-w);
    max-width: var(--h5-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .page-about .about-intro .section-title {
    margin-bottom: 28px;
    font-size: 46px;
    width: 100%;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }

  .page-about .about-intro__copy {
    max-width: 310px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    color: #1e1e1e;
  }

  .page-about .about-mid {
    width: 100%;
  }

  .page-about .about-mid img {
    width: 100%;
    object-fit: cover;
  }

  .page-about .container.about-vm__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 42px;
  }

  .page-about .about-vm article {
    width: 100%;
    max-width: 310px;
  }

  .page-about .about-vm h2 {
    margin: 0;
    font-family: "Science Gothic", var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 52px;
    line-height: 1.6;
    text-transform: uppercase;
    color: #1e1e1e;
  }

  .page-about .about-vm p {
    margin: 0;
    max-width: 310px;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    color: #1e1e1e;
  }

  .page-about .container.about-values__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .page-about .about-values {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 73px 0 50px;
    overflow: hidden;
  }

  .page-about .about-values__bg img {
    filter: none;
    transform: none;
  }

  .page-about .about-values::before {
    background: rgba(11, 13, 26, 0.7);
  }

  .page-about .about-values__title {
    margin: 0 0 37px;
    padding: 0;
    font-family: "Science Gothic", var(--font-display);
    font-style: normal;
    font-weight: 600;
    font-size: 52px;
    line-height: 1.6;
    text-transform: uppercase;
    color: #ffffff;
  }

  .page-about .about-values__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    max-width: 310px;
    margin: 0;
    gap: 0;
  }

  .page-about .about-values__list li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    max-width: 310px;
    margin: 0;
    padding: 30px 0;
    gap: 0;
    grid-template-columns: none;
    border-bottom: 0;
  }

  .page-about .about-values__list li:first-child {
    padding-top: 0;
  }

  .page-about .about-values__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(50% - 50vw + var(--page-frame-inset));
    right: auto;
    bottom: 0;
    width: calc(100vw - 2 * var(--page-frame-inset));
    height: 1px;
    background: var(--color-line-soft);
    transform: none;
    pointer-events: none;
  }

  .page-about .about-values__list li:last-child {
    border-bottom: 0;
  }

  .page-about .about-values__list h3 {
    width: 100%;
    max-width: 240px;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
  }

  .page-about .about-values__list p {
    width: 100%;
    max-width: 310px;
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
  }

  .page-services .sub-hero--services {
    height: 300px;
  }

  .page-services .services-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(80 * var(--h5-u)) 0;
  }

  .page-services .services-page > .container {
    box-sizing: border-box;
    width: var(--h5-w);
    max-width: var(--h5-w);
    margin-left: auto;
    margin-right: auto;
  }

  .page-services .services-page__title {
    margin-bottom: 40px;
    font-family: "Science Gothic", var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: calc(46 * var(--h5-u));
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #1e1e1e;
  }

  .page-services .svc-block,
  .page-services .svc-block--media-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: calc(40 * var(--h5-u));
    width: 100%;
    margin: 0 0 calc(60 * var(--h5-u));
    grid-template-columns: none;
  }

  .page-services .svc-block:last-child {
    margin-bottom: 0;
  }

  .page-services .svc-block--media-right .svc-block__copy {
    order: 2;
  }

  .page-services .svc-block--media-right .svc-block__media {
    order: 1;
  }

  .page-services .svc-block__media {
    width: 100%;
    max-width: none;
    height: calc(220 * var(--h5-u));
    aspect-ratio: auto;
    border-radius: calc(12 * var(--h5-u));
    overflow: hidden;
  }

  .page-services .svc-block__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .page-services .svc-block__copy {
    width: 100%;
    max-width: none;
  }

  .page-services .svc-block__copy h2 {
    margin: 0 0 calc(20 * var(--h5-u));
    font-size: min(calc(28 * var(--h5-u)), 28px);
    font-weight: 600;
    line-height: 1.2;
    color: #1e1e1e;
  }

  .page-services .svc-block__copy p,
  .page-services .svc-block__copy ul {
    margin: 0;
    font-size: min(calc(22 * var(--h5-u)), 22px);
    font-weight: 400;
    line-height: 1.6;
    color: #1e1e1e;
  }

  .page-services .svc-block__copy p {
    margin-bottom: min(calc(16 * var(--h5-u)), 16px);
  }

  .page-services .svc-block__copy li + li {
    margin-top: 0;
  }

  .page-services .svc-block__copy li::before {
    width: calc(5 * var(--h5-u));
    height: calc(5 * var(--h5-u));
  }

  .page-careers .sub-hero--careers {
    height: 300px;
  }

  .page-careers .careers-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 114px;
  }

  .page-careers .container.careers-page__intro,
  .page-careers .container.careers-roles {
    box-sizing: border-box;
    width: var(--h5-w);
    max-width: var(--h5-w);
    margin-left: auto;
    margin-right: auto;
  }

  .page-careers .careers-page__intro {
    margin-bottom: 69px;
  }

  .page-careers .careers-page__intro .section-title {
    margin: 0 0 28px;
    font-family: "Science Gothic", var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 46px;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #1e1e1e;
  }

  .page-careers .careers-page__intro p {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    color: #1e1e1e;
  }

  .page-careers .careers-roles {
    gap: 80px;
  }

  .page-careers .career-role {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    grid-template-columns: none;
  }

  .page-careers .career-role__icon {
    width: 112px;
    height: 112px;
  }

  .page-careers .career-role__body {
    width: 100%;
  }

  .page-careers .career-role__body h2 {
    margin: 0 0 12px;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
    color: #1e1e1e;
  }

  .page-careers .career-role__body > p,
  .page-careers .career-role__body ul {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    color: #1e1e1e;
  }

  .page-careers .btn.btn--read-more.btn--apply {
    width: 240px;
    min-height: 60px;
    margin-top: 30px;
    font-size: 18px;
  }

  .page-careers .careers-apply {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 100px 0 80px;
  }

  .page-careers .container.careers-apply__inner {
    box-sizing: border-box;
    width: 310px;
    max-width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-careers .careers-apply__title {
    width: 100%;
    max-width: 355px;
    margin: 0 0 44px;
    font-size: 58px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .page-careers .careers-apply__lead,
  .page-careers .careers-apply__note {
    width: 100%;
    max-width: 310px;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.6;
    text-align: center;
    color: var(--color-white);
  }

  .page-careers .careers-apply__lead {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 40px;
    border-bottom: 0;
  }

  .page-careers .careers-apply__lead::after {
    content: "";
    position: absolute;
    left: calc(50% - 50vw + var(--page-frame-inset));
    bottom: 0;
    width: calc(100vw - 2 * var(--page-frame-inset));
    height: 1px;
    background: var(--color-line-soft);
    pointer-events: none;
  }

  .page-careers .careers-apply__note {
    margin-top: 40px;
  }

  .page-careers .careers-apply__badge {
    width: 180px;
    height: 180px;
    margin-top: 50px;
  }

  .page-careers .careers-apply__badge-arrow {
    width: 46px;
    height: 46px;
  }

  /* ---------- Contact H5（Figma 164:3003 / 164:3017，390）— 不影响 PC ---------- */
  .page-contact .contact-page {
    padding: 180px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-contact .container.contact-page__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--h5-w);
    max-width: var(--h5-w);
    margin-left: auto;
    margin-right: auto;
    gap: 0;
  }

  .page-contact .contact-aside {
    display: flex;
    flex-direction: column;
    order: 2;
    position: static;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin-top: calc(75 * var(--h5-u));
    margin-bottom: calc(60 * var(--h5-u));
    gap: calc(20 * var(--h5-u));
  }

  .page-contact .contact-card {
    width: 100%;
    padding: calc(20 * var(--h5-u));
    border-radius: calc(12 * var(--h5-u));
  }

  .page-contact .contact-card--email {
    min-height: calc(480 * var(--h5-u));
  }

  .page-contact .contact-card--address {
    min-height: calc(194 * var(--h5-u));
  }

  .page-contact .contact-card__pin {
    display: none;
  }

  .page-contact .contact-card h2 {
    margin: 0 0 calc(20 * var(--h5-u));
    font-size: calc(34 * var(--h5-u));
    font-weight: 600;
    line-height: 1.2;
  }

  .page-contact .contact-emails {
    gap: calc(14 * var(--h5-u));
  }

  .page-contact .contact-emails dt {
    width: calc(180 * var(--h5-u));
    font-size: calc(20 * var(--h5-u));
    font-weight: 600;
    line-height: 1.6;
  }

  .page-contact .contact-emails dd {
    width: calc(260 * var(--h5-u));
    font-size: calc(20 * var(--h5-u));
    font-weight: 400;
    line-height: 1.6;
  }

  .page-contact .contact-card--address p {
    max-width: calc(290 * var(--h5-u));
    font-size: calc(20 * var(--h5-u));
    font-weight: 400;
    line-height: 1.6;
  }

  .page-contact .contact-main__title {
    width: 100%;
    max-width: 310px;
    margin: 0 0 28px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--color-ink);
  }

  .page-contact .contact-main__title-line {
    white-space: normal;
  }

  .page-contact .contact-main__br-h5 {
    display: block;
  }

  .page-contact .contact-main__lead {
    width: 100%;
    max-width: 310px;
    margin: 0 0 72px;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-ink);
  }

  .page-contact .contact-form {
    width: 100%;
    max-width: 310px;
    gap: 60px;
  }

  .page-contact .contact-field {
    border-bottom-color: #eeeeee;
  }

  .page-contact .contact-field input,
  .page-contact .contact-field textarea {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    padding: 0 0 10px;
  }

  .page-contact .contact-field--message textarea {
    min-height: 180px;
  }

  .page-contact .contact-enquiry legend {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
  }

  .page-contact .contact-chips {
    gap: 10px 20px;
  }

  .page-contact .contact-chip {
    padding: 10px 40px;
    font-size: 20px;
    line-height: 1.6;
    border-radius: 30px;
  }

  .page-contact .contact-form .btn.btn--read-more.btn--apply {
    width: 240px;
    min-height: 60px;
    height: 60px;
    margin-top: -10px;
    margin-bottom: 0;
    align-self: flex-start;
    font-size: 18px;
  }

  /* ---------- Privacy H5：标题 / tabs / 正文间距 ---------- */
  .page-legal .legal-page {
    padding: 160px 0 100px;
  }

  .page-legal .legal-page__inner {
    box-sizing: border-box;
    width: var(--h5-w);
    max-width: var(--h5-w);
    margin-left: auto;
    margin-right: auto;
  }

  .page-legal .legal-page__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: calc(48 * var(--h5-u));
    margin-bottom: calc(56 * var(--h5-u));
  }

  .page-legal .legal-page__head .section-title {
    margin: 0;
    color: #1e1e1e;
    font-family: "Science Gothic", var(--font-display);
    font-size: calc(46 * var(--h5-u));
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }

  .page-legal .legal-tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: calc(32 * var(--h5-u));
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-badge__ring,
  .careers-apply__badge-ring,
  .hero-rule__progress,
  .hero-bg [data-hero-slide],
  .marquee__track,
  .bridge-marquee__track,
  .idea-banner__track,
  .reveal,
  .service-card__media > img,
  .services-carousel__track,
  .service-card,
  .contact-chip__track {
    animation: none !important;
    transition: none !important;
  }
}
