/* =========================================
   1. 全局样式重置与变量
   ========================================= */

:root {
  --color-white: #ffffff;
  --color-black: #161616;
  --color-grey-third: #acacac;
  --color-grey-secondary: #808080;
  --color-border: #e6e6e6;
  --color-error: #eb4f4e;
  --color-placeholder: lightblue;
  --font-sans-sc: 'Noto Sans SC', 'Noto Serif SC', 'Noto Serif TC', sans-serif;
  --font-sans-tc: 'Noto Sans TC', 'Noto Sans SC', 'Noto Serif TC', sans-serif;
  --font-sans: 'Noto Sans SC', 'Noto Serif SC', 'Noto Serif TC', sans-serif;
  --font-inter: 'Inter', 'Noto Sans SC', sans-serif;
  --font-inter-tight: 'Inter Tight', 'Inter', 'Noto Sans SC', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  list-style: none;
}

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

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

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  color: var(--color-black);
  background: var(--color-white);
  word-break: normal;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

/* 英文优先：全局切到 Inter Tight（由 html[lang="en"] 驱动） */
html[lang='en'] {
  --font-sans: var(--font-inter-tight);
}

@media (min-width: 769px) {
  html {
    min-width: 1440px;
  }

  body {
    min-width: 1440px;
  }
}

.page {
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  background: var(--color-white);
}

.img-placeholder {
  background-color: var(--color-placeholder);
}

/* PC / H5 媒体显隐（默认显示 PC） */
.media-h5 {
  display: none !important;
}

@media (max-width: 768px) {
  html[lang='zh-CN'] {
    --font-sans: var(--font-sans-sc);
  }

  html[lang='zh-TW'] {
    --font-sans: var(--font-sans-tc);
  }

  html {
    font-size: calc(100vw / 3.9);
  }

  .media-pc {
    display: none !important;
  }

  .media-h5 {
    display: block !important;
  }

  .media-h5.media-h5--flex {
    display: flex !important;
  }

  .media-h5.media-h5--inline-flex {
    display: inline-flex !important;
  }
}

/* =========================================
   1b. 滚动出现（PC / H5 共用）
   首屏 Banner 用 CSS 进场；其余区块随滚动出现
   滚动选择器需与 js/main.js 中 REVEAL_* 保持一致
   ========================================= */

@keyframes revealEnter {
  from {
    opacity: 0;
    translate: 0 40px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes revealEnterDesc {
  from {
    opacity: 0;
    translate: 0 40px;
  }

  to {
    opacity: 0.6;
    translate: 0 0;
  }
}

@keyframes revealEnterImg {
  from {
    opacity: 0;
    scale: 1.08;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

@media (max-width: 768px) {
  @keyframes revealEnter {
    from {
      opacity: 0;
      translate: 0 0.28rem;
    }

    to {
      opacity: 1;
      translate: 0 0;
    }
  }

  @keyframes revealEnterDesc {
    from {
      opacity: 0;
      translate: 0 0.28rem;
    }

    to {
      opacity: 0.8;
      translate: 0 0;
    }
  }
}

@media (prefers-reduced-motion: no-preference) {
  .banner__title {
    animation: revealEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .banner__desc {
    animation: revealEnterDesc 0.9s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .about-banner__title,
  .service-banner__title,
  .career-banner__title,
  .contact-banner__title,
  .privacy-banner__title {
    animation: revealEnter 0.9s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .about-banner__bg,
  .service-banner__bg,
  .career-banner__bg,
  .contact-banner__bg,
  .privacy-banner__bg {
    animation: revealEnterImg 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  /* 内页 Banner 下方会露出的首屏内容：随页面进场，避免未滚动时露出空白 */
  @media (min-width: 769px) {
    .about-who__main,
    .service-intro__content,
    .career-join__word,
    .contact-main__left,
    .privacy-content__block:first-child {
      animation: revealEnter 0.9s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .about-who__side,
    .contact-main__right {
      animation: revealEnter 0.9s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .service-intro__photo,
    .career-join__photo {
      animation: revealEnterImg 1.2s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
  }
}

html.has-js :is(
  .about__text,
  .about__capability-label,
  .about__list-item,
  .about .btn,
  .why__header,
  .service__header,
  .service__item,
  .career__top,
  .career__card,
  .career__btn,
  .career__intro--bottom,
  .contact__header,
  .contact__actions,
  .about-who__main,
  .about-who__side,
  .about-mission__content,
  .about-values__eyebrow,
  .about-values__card,
  .service-intro__content,
  .service-list__item,
  .career-join__word,
  .career-join__text,
  .career-position__eyebrow,
  .career-position__job,
  .contact-main__left,
  .contact-main__right,
  .privacy-content__block,
  .footer__info,
  .footer__brand-text,
  .about__thumb,
  .about-mission__bg,
  .service-intro__photo,
  .career-join__photo,
  .career__bg,
  .service__photos,
  .footer__brand-bg
) {
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    translate 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    scale 1s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: no-preference) {
  html.has-js :is(
    .about__text,
    .about__capability-label,
    .about__list-item,
    .about .btn,
    .why__header,
    .service__header,
    .service__item,
    .career__top,
    .career__card,
    .career__btn,
    .career__intro--bottom,
    .contact__header,
    .contact__actions,
    .about-who__main,
    .about-who__side,
    .about-mission__content,
    .about-values__eyebrow,
    .about-values__card,
    .service-intro__content,
    .service-list__item,
    .career-join__word,
    .career-join__text,
    .career-position__eyebrow,
    .career-position__job,
    .contact-main__left,
    .contact-main__right,
    .privacy-content__block,
    .footer__info,
    .footer__brand-text
  ):not(.is-inview) {
    opacity: 0;
    translate: 0 40px;
  }

  html.has-js :is(
    .about__thumb,
    .about-mission__bg,
    .service-intro__photo,
    .career-join__photo,
    .career__bg,
    .service__photos,
    .footer__brand-bg
  ):not(.is-inview) {
    opacity: 0;
    translate: 0 36px;
    scale: 1.06;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  html.has-js :is(
    .about__text,
    .about__capability-label,
    .about__list-item,
    .about .btn,
    .why__header,
    .service__header,
    .service__item,
    .career__top,
    .career__card,
    .career__btn,
    .career__intro--bottom,
    .contact__header,
    .contact__actions,
    .about-who__main,
    .about-who__side,
    .about-mission__content,
    .about-values__eyebrow,
    .about-values__card,
    .service-intro__content,
    .service-list__item,
    .career-join__word,
    .career-join__text,
    .career-position__eyebrow,
    .career-position__job,
    .contact-main__left,
    .contact-main__right,
    .privacy-content__block,
    .footer__info,
    .footer__brand-text
  ):not(.is-inview) {
    translate: 0 0.28rem;
  }

  html.has-js :is(
    .about__thumb,
    .about-mission__bg,
    .service-intro__photo,
    .career-join__photo,
    .career__bg,
    .service__photos,
    .footer__brand-bg
  ):not(.is-inview) {
    translate: 0 0.24rem;
    scale: 1.04;
  }
}

/* PC：内页 Banner 下方露出的内容不要等滚动，改由上方 CSS 进场 */
@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
  html.has-js :is(
    .about-who__main,
    .about-who__side,
    .service-intro__content,
    .career-join__word,
    .contact-main__left,
    .contact-main__right,
    .privacy-content__block:first-child
  ):not(.is-inview) {
    opacity: 1;
    translate: 0;
  }

  html.has-js :is(
    .service-intro__photo,
    .career-join__photo
  ):not(.is-inview) {
    opacity: 1;
    translate: 0;
    scale: 1;
  }
}

/* =========================================
   2. 通用按钮
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn > span:first-child {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--color-black);
  padding: 10px 32px;
  line-height: normal;
}

.btn--dark > span:first-child {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.btn--border > span:first-child {
  background: transparent;
  color: var(--color-black);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--light > span:first-child {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
  padding: 8px 32px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--lg > span:first-child {
  padding: 20px 48px;
  font-size: 20px;
}

.btn__arrow {
  display: block;
  width: 32px;
  height: 16px;
  position: relative;
  margin-left: -2px;
  flex-shrink: 0;
}

/* 图片箭头（联系页提交 / 首页关于更多 / 更多联系管道 共用） */
.contact-form__submit-arrow {
  display: block;
  width: 32px;
  height: 16px;
  margin-left: -16px;
  object-fit: contain;
  flex-shrink: 0;
}

/* 浅色按钮箭头切换：默认白 / 悬停与点击黑 */
.btn__arrow-swap {
  position: relative;
  display: block;
  width: 32px;
  height: 16px;
  margin-left: -16px;
  flex-shrink: 0;
}

.btn__arrow-swap .contact-form__submit-arrow {
  margin-left: 0;
}

.btn__arrow-swap__black {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.btn__arrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--color-black);
  transform: translateY(-50%);
}

.btn__arrow::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  transform: translateY(-50%) rotate(45deg);
}

.btn__arrow--light::before {
  background: var(--color-white);
}

.btn__arrow--light::after {
  border-color: var(--color-white);
}

.btn:hover {
  opacity: 0.85;
}

.btn--border:hover,
.btn--border:active,
.btn--border:focus-visible {
  opacity: 1;
}

.btn--border:hover > span:first-child,
.btn--border:active > span:first-child,
.btn--border:focus-visible > span:first-child {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.btn--light:hover,
.btn--light:active,
.btn--light:focus-visible {
  opacity: 1;
}

.btn--light:hover > span:first-child,
.btn--light:active > span:first-child,
.btn--light:focus-visible > span:first-child {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.btn--light:hover .btn__arrow-swap__white,
.btn--light:active .btn__arrow-swap__white,
.btn--light:focus-visible .btn__arrow-swap__white {
  opacity: 0;
  visibility: hidden;
}

.btn--light:hover .btn__arrow-swap__black,
.btn--light:active .btn__arrow-swap__black,
.btn--light:focus-visible .btn__arrow-swap__black {
  opacity: 1;
  visibility: visible;
}

/* =========================================
   3. Banner
   ========================================= */

.banner {
  position: relative;
  width: 100%;
  height: 1060px;
  overflow: hidden;
}

/* PC：首屏随视口高度全屏，适配不同分辨率 */
@media (min-width: 769px) {
  .banner {
    height: 100vh;
    height: 100dvh;
    min-height: 800px;
  }
}

.banner__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.banner__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.banner__slide--active {
  opacity: 1;
  z-index: 2;
}

/* 离场时保持放大尺度，避免切走瞬间缩回造成顿挫 */
.banner__slide--leaving {
  opacity: 0;
  z-index: 1;
}

.banner__slide-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  box-shadow: none;
  filter: none;
  will-change: transform, opacity;
}

.banner__slide--active .banner__slide-img {
  animation: bannerZoomIn 5s ease-out forwards;
}

.banner__slide--leaving .banner__slide-img {
  animation: none;
}

@keyframes bannerZoomIn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* PC：文案贴底 80px，随全屏高度变化仍保持间距 */
.banner__copy {
  position: absolute;
  left: 200px;
  bottom: 80px;
  z-index: 2;
  max-width: 1265px;
}

.banner__desc {
  font-size: 20px;
  line-height: 30px;
  color: var(--color-white);
  opacity: 0.6;
  text-align: left;
}

.banner__title {
  margin-top: 32px;
  /* 按字面左缘对齐描述，数值由首页脚本写入 */
  margin-left: var(--banner-title-ink-shift, 0px);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 145px;
  line-height: 1.2;
  color: var(--color-white);
  text-align: left;
}

.banner__pagination {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.banner__pagination-item {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
  transition: width 0.35s ease;
}

.banner__pagination-item--active {
  width: 40px;
}

.banner__pagination-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 4px;
  background: var(--color-white);
}

.banner__pagination-item--active .banner__pagination-progress {
  animation: bannerProgress 5s linear forwards;
}

@keyframes bannerProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.banner__peel {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 300px;
  height: 300px;
  pointer-events: auto;
  cursor: pointer;
}

.banner__peel-art {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 300px;
  overflow: visible;
  pointer-events: none;
  transform-origin: 100% 100%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.banner__peel:hover .banner__peel-art,
.banner__peel:focus-visible .banner__peel-art {
  transform: scale(1.7);
}

.banner__peel-art--back {
  z-index: 1;
}

.banner__peel-art--front {
  z-index: 3;
}

.banner__peel-reveal {
  pointer-events: none;
}

.banner__peel-lip,
.banner__peel-crease {
  pointer-events: none;
}

.banner__cta-mask {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  -webkit-clip-path: polygon(100% 50%, 100% 100%, 50% 100%);
  clip-path: polygon(100% 50%, 100% 100%, 50% 100%);
  transition: clip-path 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-clip-path 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.banner__peel:hover .banner__cta-mask,
.banner__peel:focus-visible .banner__cta-mask {
  -webkit-clip-path: polygon(100% 15%, 100% 100%, 15% 100%);
  clip-path: polygon(100% 15%, 100% 100%, 15% 100%);
}

.banner__cta {
  position: absolute;
  right: 22px;
  bottom: 28px;
  left: auto;
  top: auto;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.banner__cta-text {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.banner__cta-icon {
  display: block;
  width: 27px;
  height: 10px;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
}

html[lang='en'] .banner__cta {
  right: 16px;
  bottom: 22px;
  font-size: 15px;
  gap: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .banner__peel-art,
  .banner__cta-mask {
    transition: none;
  }

  .banner__peel:hover .banner__peel-art,
  .banner__peel:focus-visible .banner__peel-art {
    transform: none;
  }

  .banner__peel:hover .banner__cta-mask,
  .banner__peel:focus-visible .banner__cta-mask {
    -webkit-clip-path: polygon(100% 50%, 100% 100%, 50% 100%);
    clip-path: polygon(100% 50%, 100% 100%, 50% 100%);
  }
}

/* =========================================
   5. About
   ========================================= */

.about {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 120px 200px;
  background: var(--color-white);
  width: 100%;
}

.about__intro {
  position: relative;
  width: 100%;
  min-height: 454px;
}

.about__intro::after {
  content: '';
  display: table;
  clear: both;
}

.about__thumb {
  float: left;
  width: 300px;
  height: 248px;
  margin: 0 50px 14px 0;
  object-fit: cover;
  display: block;
}

.about__text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 64px;
  line-height: 80px;
  color: var(--color-black);
  padding-top: 182px;
  word-break: normal;
  overflow-wrap: break-word;
}

.about__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.about__capability {
  display: flex;
  align-items: center;
  gap: 64px;
}

.about__capability-label {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
  white-space: nowrap;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about__list-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about__list-num {
  font-family: var(--font-inter-tight);
  font-size: 16px;
  color: var(--color-grey-third);
  width: 20px;
  flex-shrink: 0;
}

.about__list-text {
  font-family: var(--font-inter);
  font-size: 20px;
  line-height: 30px;
  color: var(--color-grey-secondary);
  white-space: nowrap;
}

/* =========================================
   6. Why Solvanta
   ========================================= */

.why {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 48px 0;
  background: var(--color-white);
  width: 100%;
  /*
   * 注意：不要在本元素上设 overflow-x/hidden/clip。
   * ScrollTrigger pin 作用在 #why 上，overflow 会导致提前 fixed、盖住上方区块。
   */
}

.why__header {
  display: flex;
  justify-content: center;
  width: 100%;
}

.why__label {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
  white-space: nowrap;
}

.why__content {
  position: relative;
  width: 100%;
  height: 420px;
  /* 裁切背景大字与卡片横向溢出；放在子级，避免破坏 pin */
  overflow: hidden;
}

/*
 * PC：卡片阴影需要溢出显示，但不能用 clip-path + overflow:visible——
 * clip-path 只做视觉裁切，大字仍会撑开文档宽度，导致整页右侧出现间隙。
 * 横向裁切改由 .why__bg-title 自身 overflow:hidden 完成。
 */
@media (min-width: 769px) {
  .why__content {
    overflow: visible;
  }
}

.why__bg-title {
  position: absolute;
  left: 0;
  top: 50%;
  /*
   * W 比 ? 宽：纯居中时同样像素裁切会让 ? 看起来被切更多。
   * 略缩小字号并微微左移，使两端视觉遮挡接近且都只挡一点点。
   * 宽度锁在 100% + overflow:hidden，避免撑开整页。
   */
  transform: translateY(-50%);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  font-family: var(--font-inter-tight);
  font-weight: 900;
  font-size: 14.1vw;
  line-height: normal;
  color: var(--color-black);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.why__bg-title .media-pc {
  display: inline-block;
  transform: translateX(-0.3vw);
}

.why__stack {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.why__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: var(--color-white);
  box-shadow: 0 10px 24px rgba(22, 22, 22, 0.1);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.why__card--1 {
  z-index: 1;
}

.why__card--2 {
  z-index: 2;
}

.why__card--3 {
  z-index: 3;
}

.why__card--4 {
  z-index: 4;
}

.why__card--front {
  z-index: 10;
}

.why__card-photo {
  width: 100%;
  height: 240px;
  flex-shrink: 0;
  object-fit: cover;
}

.why__card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.why__card-title {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-black);
  line-height: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.why__card-desc {
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-grey-secondary);
  overflow-wrap: break-word;
  word-break: normal;
}

/* =========================================
   7. Service
   ========================================= */

.service {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 120px 200px;
  background: var(--color-white);
  width: 100%;
}

.service__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.service__side {
  font-family: var(--font-inter-tight);
  font-size: 16px;
  line-height: 20px;
  color: var(--color-grey-third);
  width: 330px;
  flex-shrink: 0;
}

.service__side--right {
  text-align: right;
}

.service__label {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
  white-space: nowrap;
}

.service__list-wrap {
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: visible;
}

.service__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.service__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  width: 100%;
  overflow: visible;
  transition: background-color 0.25s ease;
}

.service__item-link {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 108px;
  padding: 0 248px;
  cursor: pointer;
}

.service__item-text {
  position: relative;
  z-index: 3;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -1px;
  text-align: center;
  color: var(--color-black);
  white-space: nowrap;
  line-height: normal;
  transition: color 0.25s ease;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

html[lang="en"] .service__item-text {
  font-size: 52px;
}

.service__item--active {
  background: var(--color-black);
}

.service__item--active .service__item-text {
  color: var(--color-white);
}

.service__photos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.service__photo {
  position: absolute;
  right: -64px;
  width: 300px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: none;
  box-shadow: none;
  filter: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.service__photo--active {
  opacity: 1;
  visibility: visible;
}

.service__photo[data-service="1"] {
  top: 54px;
  transform: translateY(-50%) rotate(3deg);
}

.service__photo[data-service="2"] {
  top: 162px;
  transform: translateY(-50%) rotate(-3deg);
}

.service__photo[data-service="3"] {
  top: 270px;
  transform: translateY(-50%) rotate(3deg);
}

.service__photo[data-service="4"] {
  top: 378px;
  transform: translateY(-50%) rotate(-3deg);
}

.service__photo[data-service="5"] {
  top: 486px;
  transform: translateY(-50%) rotate(3deg);
}

/* =========================================
   8. Career
   ========================================= */

.career {
  padding: 96px 200px;
  background: var(--color-white);
  width: 100%;
}

.career__panel {
  position: relative;
  width: 100%;
  min-height: 780px;
  overflow: hidden;
  background: none;
}

.career__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  background: none;
  box-shadow: none;
  filter: none;
  pointer-events: none;
}

.career__top {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 2;
  color: var(--color-white);
  font-family: var(--font-inter-tight);
  font-size: 16px;
  line-height: 20px;
}

.career__tag {
  white-space: nowrap;
  flex-shrink: 0;
}

.career__intro {
  width: 460px;
  flex-shrink: 0;
}

.career__card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 680px;
  background: var(--color-white);
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
}

.career__card-title-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 24px 0;
}

.career__card-title {
  font-weight: 700;
  font-size: 64px;
  color: var(--color-black);
  white-space: nowrap;
  line-height: normal;
}

.career__job {
  border-top: 1px solid transparent;
}

.career__job + .career__job {
  border-top-color: var(--color-border);
}

.career__job-header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
}

.career__job-arrow {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.career__job-arrow::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid var(--color-black);
  transform: translate(-50%, -50%) rotate(90deg);
}

.career__job--open .career__job-arrow::before,
.career__job-arrow--down::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.career__job-name {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-black);
  white-space: nowrap;
}

.career__job-body {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px 20px 50px;
}

.career__job-body-inner {
  display: contents;
}

.career__job--open .career__job-body {
  display: flex;
}

.career__job-desc {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-black);
  opacity: 0.8;
}

.career__job-reqs {
  list-style: disc;
  padding-left: 22px;
  color: var(--color-grey-secondary);
  font-size: 15px;
}

.career__job-reqs li {
  list-style: disc;
  line-height: 20px;
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .career__card .career__job-reqs li + li {
    margin-top: 4px;
  }
}

.career__btn {
  position: absolute;
  left: 50%;
  top: 685px;
  transform: translateX(-50%);
  z-index: 3;
}

/* =========================================
   9. Contact
   ========================================= */

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 200px;
  background: var(--color-white);
  width: 100%;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.contact__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  text-align: center;
}

.contact__title {
  font-weight: 700;
  font-size: 96px;
  line-height: 64px;
  color: var(--color-black);
  white-space: nowrap;
}

.contact__desc {
  width: 100%;
  max-width: 100%;
  font-size: 24px;
  line-height: 36px;
  color: var(--color-grey-secondary);
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.contact__actions {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* =========================================
   10. About 页面 - Banner
   ========================================= */

.about-banner {
  position: relative;
  width: 100%;
  height: min(820px, calc(100vh - 180px));
  height: min(820px, calc(100dvh - 180px));
  overflow: hidden;
}

.about-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-banner__title {
  position: absolute;
  left: 50%;
  top: 36.6%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-white);
}

.about-banner__eyebrow {
  width: 100%;
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  opacity: 0.8;
}

.about-banner__heading {
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 110px;
  line-height: normal;
}

/* =========================================
   12. About 页面 - Who / Vision
   ========================================= */

.about-who {
  position: relative;
  width: 100%;
  min-height: 658px;
  padding: 96px 200px;
  background: var(--color-white);
}

.about-who__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 880px;
  max-width: 100%;
}

.about-who__eyebrow {
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: var(--color-black);
}

.about-who__headline {
  font-weight: 700;
  font-size: 56px;
  line-height: 76px;
  color: var(--color-black);
}

.about-who__side {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 496px;
  max-width: 100%;
  margin-left: auto;
  margin-top: 48px;
}

.about-who__desc,
.about-who__vision-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--color-grey-secondary);
}

.about-who__vision {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.about-who__vision-label {
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: var(--color-black);
}

/* =========================================
   13. About 页面 - Mission
   ========================================= */

.about-mission {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: none;
}

.about-mission__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: none;
}

.about-mission__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-mission__content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 1200px;
  max-width: calc(100% - 400px);
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-white);
}

.about-mission__eyebrow {
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
}

.about-mission__text {
  width: 100%;
  font-weight: 500;
  font-size: 40px;
  line-height: 58px;
}

/* =========================================
   14. About 页面 - Values
   ========================================= */

.about-values {
  display: flex;
  align-items: flex-start;
  gap: 186px;
  width: 100%;
  min-height: 679px;
  padding: 96px 200px;
  background: var(--color-white);
}

.about-values__eyebrow {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: var(--color-black);
  white-space: nowrap;
}

.about-values__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 17px;
  row-gap: 32px;
  flex: 1;
  min-width: 0;
}

.about-values__card {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  min-height: 141px;
  padding: 24px 48px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.about-values__icon {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: none;
}

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

.about-values__icon-img--hover {
  display: none;
}

.about-values__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.about-values__num {
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 15px;
  line-height: normal;
  color: var(--color-grey-secondary);
}

.about-values__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.about-values__title {
  font-weight: 700;
  font-size: 26px;
  line-height: normal;
  color: var(--color-black);
}

.about-values__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-grey-secondary);
}

/* 仅 hover 时显示深色背景与文案/图标变化，默认无高亮 */
.about-values__card:hover {
  background: var(--color-black);
}

.about-values__card:hover .about-values__title,
.about-values__card:hover .about-values__desc {
  color: var(--color-white);
}

.about-values__card:hover .about-values__num {
  color: var(--color-grey-secondary);
}

.about-values__card:hover .about-values__icon-img--default {
  display: none;
}

.about-values__card:hover .about-values__icon-img--hover {
  display: block;
}

/* =========================================
   15. Service 页面 - Banner
   ========================================= */

.service-banner {
  position: relative;
  width: 100%;
  height: min(820px, calc(100vh - 180px));
  height: min(820px, calc(100dvh - 180px));
  overflow: hidden;
}

.service-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-banner__title {
  position: absolute;
  left: 50%;
  top: 36.6%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-white);
}

.service-banner__eyebrow {
  width: 100%;
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  opacity: 0.8;
}

.service-banner__heading {
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 110px;
  line-height: normal;
}

/* =========================================
   16. Service 页面 - Intro
   ========================================= */

.service-intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  min-height: 628px;
  padding: 96px 200px;
  background: var(--color-white);
}

.service-intro__content {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: auto;
  max-width: 880px;
  min-width: 0;
}

.service-intro__eyebrow {
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: var(--color-black);
  margin-bottom: 98px;
}

.service-intro__headline {
  font-weight: 500;
  font-size: 48px;
  line-height: 64px;
  color: var(--color-black);
}

.service-intro__photo {
  position: relative;
  flex-shrink: 0;
  width: 496px;
  height: 372px;
  object-fit: cover;
  display: block;
}

/* =========================================
   17. Service 页面 - Accordion List
   ========================================= */

.service-list {
  width: 100%;
  padding: 0 200px 96px;
  background: var(--color-white);
}

.service-list__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.service-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 140px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
  overflow: hidden;
  transition:
    height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s ease;
}

/* 滚动出现的 transition 会盖掉 height，PC 展开时高度瞬间撑开导致内容上跳 */
@media (min-width: 769px) {
  html.has-js .service-list__item {
    transition:
      height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
      border-color 0.35s ease,
      opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
      translate 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
      scale 1s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  }
}

.service-list__bg,
.service-list__dim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-list__bg {
  display: block;
  object-fit: cover;
  object-position: center;
}

.service-list__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  min-height: 140px;
  padding: 0 24px 0 32px;
  margin-bottom: 0;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  font: inherit;
  color: inherit;
}

.service-list__left {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

.service-list__num {
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: var(--color-grey-secondary);
  opacity: 1;
  white-space: nowrap;
  transition: color 0.35s ease, opacity 0.35s ease;
}

.service-list__name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 28px;
  line-height: normal;
  color: var(--color-black);
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: break-word;
  transition: color 0.35s ease;
}

.service-list__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.service-list__summary {
  width: 560px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: var(--color-grey-secondary);
  opacity: 1;
  text-align: right;
  word-break: normal;
  overflow-wrap: break-word;
  transition: color 0.35s ease, opacity 0.35s ease;
}

.service-list__icon {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-list__icon::before,
.service-list__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-black);
  transform: translate(-50%, -50%);
  transition: background-color 0.35s ease;
}

.service-list__icon::before {
  width: 12px;
  height: 1.5px;
}

.service-list__icon::after {
  width: 1.5px;
  height: 12px;
}

.service-list__bullets {
  display: flex;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 64px;
  gap: 16px;
  align-items: center;
  justify-content: center;
  list-style: none;
  opacity: 0;
  pointer-events: none;
}

.service-list__bullet {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  word-break: normal;
  overflow-wrap: break-word;
}

.service-list__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-white);
}

.service-list__item--open {
  height: 300px;
  border-bottom-color: transparent;
}

.service-list__item--open .service-list__bg,
.service-list__item--open .service-list__dim {
  opacity: 1;
}

.service-list__item--open .service-list__num {
  color: var(--color-white);
  opacity: 0.7;
}

.service-list__item--open .service-list__name {
  color: var(--color-white);
}

.service-list__item--open .service-list__summary {
  color: var(--color-white);
  opacity: 0.7;
}

.service-list__item--open .service-list__icon {
  transform: rotate(45deg);
}

.service-list__item--open .service-list__icon::before,
.service-list__item--open .service-list__icon::after {
  background: var(--color-white);
}

.service-list__item--open .service-list__bullets {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 769px) {
  .service-list__item--open .service-list__bullets {
    padding-top: 24px;
  }
}

/* =========================================
   18. Career 页面 - Banner
   ========================================= */

.career-banner {
  position: relative;
  width: 100%;
  height: min(820px, calc(100vh - 180px));
  height: min(820px, calc(100dvh - 180px));
  overflow: hidden;
}

.career-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.career-banner__title {
  position: absolute;
  left: 50%;
  top: 36.6%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-white);
}

.career-banner__eyebrow {
  width: 100%;
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  opacity: 0.8;
}

.career-banner__heading {
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 110px;
  line-height: normal;
}

/* =========================================
   19. Career 页面 - Join
   ========================================= */

.career-join {
  --career-join-word-inset: 250px;
  --career-join-word-shift: 0px;
  /* 1920 稿：左右大字外沿距中心 710px，大屏随居中图片保持叠字 */
  --career-join-word-from-center: 710px;
  position: relative;
  width: 100%;
  height: 956px;
  overflow: hidden;
  background: var(--color-white);
}

.career-join__photo {
  position: absolute;
  left: 50%;
  top: 112px;
  width: 520px;
  height: 540px;
  transform: translateX(-50%);
  z-index: 1;
  display: block;
  object-fit: cover;
  background: none;
}

.career-join__word {
  position: absolute;
  z-index: 2;
  font-family: var(--font-inter-tight);
  font-weight: 900;
  font-size: 200px;
  line-height: normal;
  color: var(--color-black);
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
}

.career-join__word--left {
  left: max(
    var(--career-join-word-inset),
    calc(50% - var(--career-join-word-from-center))
  );
  right: auto;
  top: 164px;
  transform: translateX(calc(-1 * var(--career-join-word-shift)));
}

.career-join__word--right {
  right: max(
    var(--career-join-word-inset),
    calc(50% - var(--career-join-word-from-center))
  );
  left: auto;
  top: 358px;
  transform: translateX(var(--career-join-word-shift));
}

.career-join__text {
  position: absolute;
  left: 50%;
  top: 700px;
  width: 1520px;
  max-width: calc(100% - 400px);
  transform: translateX(-50%);
  text-align: center;
  font-weight: 500;
  font-size: 48px;
  line-height: 64px;
  color: var(--color-black);
}

/* =========================================
   20. Career 页面 - Positions
   ========================================= */

.career-position {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 64px 200px;
  background: var(--color-white);
  overflow: hidden;
}

.career-position__eyebrow {
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: var(--color-black);
}

.career-position__list {
  width: 100%;
  padding: 0 128px;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
}

.career-position__job {
  width: 100%;
  border-top: 1px solid var(--color-border);
}

.career-position__job:first-child {
  border-top: none;
}

.career-position__job-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding: 32px 24px;
  transition: padding-right 0.32s ease;
}

.career-position__job--open .career-position__job-inner {
  padding-right: 160px;
}

.career-position__job-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.career-position__job--open .career-position__job-main {
  gap: 24px;
}

.career-position__job-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.career-position__arrow {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.career-position__arrow::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid var(--color-black);
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.32s ease;
}

.career-position__job-title {
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: var(--color-black);
}

.career-position__job-body {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  padding: 0 24px;
  opacity: 0;
  transition: grid-template-rows 0.32s ease, opacity 0.24s ease;
}

.career-position__job-body-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 0;
}

.career-position__job--open .career-position__job-body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.career-position__job-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-black);
  opacity: 0.8;
}

.career-position__job-reqs {
  list-style: none;
  padding-left: 24px;
  color: var(--color-grey-secondary);
  font-size: 16px;
  line-height: 24px;
}

.career-position__job-reqs li {
  position: relative;
  list-style: none;
  padding-left: 0;
}

.career-position__job-reqs li::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.career-position__apply {
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-flex;
  flex-shrink: 0;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.career-position__job--open .career-position__apply {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.career-position__apply-arrow {
  display: block;
  width: 32px;
  height: 16px;
  margin-left: -16px;
  object-fit: contain;
  flex-shrink: 0;
}

.career-position__job--open .career-position__arrow::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.career-position__apply-list {
  width: 100%;
  list-style: disc;
  padding-left: 30px;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: var(--color-black);
}

.career-position__apply-list li {
  list-style: disc;
}

.career-position__mail {
  text-decoration: underline;
  text-underline-position: from-font;
}

/* =========================================
   21. Privacy 页面 - Banner
   ========================================= */

.privacy-banner {
  position: relative;
  width: 100%;
  height: min(820px, calc(100vh - 180px));
  height: min(820px, calc(100dvh - 180px));
  overflow: hidden;
}

.privacy-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.privacy-banner__title {
  position: absolute;
  left: 50%;
  top: 36.6%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-white);
}

.privacy-banner__eyebrow {
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  opacity: 0.8;
  white-space: nowrap;
}

.privacy-banner__heading {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 110px;
  line-height: normal;
  white-space: nowrap;
}

/* =========================================
   22. Privacy 页面 - Content
   ========================================= */

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  padding: 96px 200px;
  background: var(--color-white);
  overflow: hidden;
}

.privacy-content__block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.privacy-content__eyebrow {
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: var(--color-black);
}

.privacy-content__body {
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: var(--color-black);
}

.privacy-content__body p {
  margin-bottom: 0;
}

.privacy-content__body p + p,
.privacy-content__body p + ul,
.privacy-content__body ul + p {
  margin-top: 0;
}

.privacy-content__body ul {
  list-style: none;
  padding-left: 24px;
}

.privacy-content__body li {
  position: relative;
  list-style: none;
}

.privacy-content__body li::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 14px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.privacy-content__mail {
  text-decoration: underline;
  text-underline-position: from-font;
}

/* =========================================
   23. Contact 页面 - Banner
   ========================================= */

.contact-banner {
  position: relative;
  width: 100%;
  height: min(820px, calc(100vh - 180px));
  height: min(820px, calc(100dvh - 180px));
  overflow: hidden;
}

.contact-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-banner__title {
  position: absolute;
  left: 50%;
  top: 36.6%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-white);
}

.contact-banner__eyebrow {
  width: 100%;
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  opacity: 0.8;
}

.contact-banner__heading {
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 110px;
  line-height: normal;
}

/* =========================================
   24. Contact 页面 - Main
   ========================================= */

.contact-main {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 144px;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  min-height: 1089px;
  padding: 96px 200px 120px;
  background: var(--color-white);
  overflow: visible;
}

.contact-main__left {
  flex: 0 0 496px;
  width: 496px;
  max-width: 100%;
}

.contact-main__right {
  flex: 1 1 880px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 880px;
  max-width: 100%;
  min-width: 0;
  /* 与左侧 eyebrow 错开，贴近原绝对定位视觉 */
  padding-top: 56px;
}

.contact-main__eyebrow {
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: var(--color-black);
}

.contact-main__headline {
  width: 100%;
  font-weight: 500;
  font-size: 48px;
  line-height: 64px;
  color: var(--color-black);
  overflow-wrap: break-word;
  word-break: normal;
}

.contact-main__info {
  display: flex;
  flex-direction: column;
  gap: 96px;
  width: 100%;
  margin-top: 64px;
}

.contact-main__info-group {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.contact-main__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.contact-main__label {
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: var(--color-grey-secondary);
}

.contact-main__value {
  font-family: var(--font-inter-tight);
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  color: var(--color-black);
  white-space: nowrap;
}

.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 48px;
  width: 100%;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.contact-form__row {
  display: flex;
  gap: 48px;
  width: 100%;
  align-items: flex-start;
}

.contact-form__row--message {
  width: 100%;
}

.contact-field {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-field--spacer {
  visibility: hidden;
  pointer-events: none;
}

.contact-field__label {
  display: block;
  height: 14px;
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: var(--color-black);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}

.contact-field--filled > .contact-field__label,
.contact-field--focus > .contact-field__label {
  opacity: 0.3;
}

.contact-field__input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 0 16px;
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: var(--color-black);
  border-bottom: 1px solid var(--color-black);
  resize: none;
}

.contact-field__input::placeholder {
  color: var(--color-black);
  opacity: 0.3;
}

.contact-field--focus .contact-field__input::placeholder,
.contact-field__input:focus::placeholder {
  opacity: 0;
  color: transparent;
}

.contact-field__textarea {
  min-height: 96px;
  padding-top: 0;
}

.contact-field--error .contact-field__input {
  border-bottom-color: var(--color-error);
}

.contact-field--select.contact-field--error .contact-field__select-trigger {
  border-bottom-color: var(--color-error);
}

.contact-field__error {
  display: none;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--color-error);
  overflow-wrap: break-word;
  word-break: normal;
}

.contact-field--error .contact-field__error {
  display: block;
}

.contact-field--select {
  z-index: 5;
}

.contact-field__select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0 24px 16px 0;
  border-bottom: 1px solid var(--color-black);
  text-align: left;
  cursor: pointer;
}

.contact-field__select-placeholder {
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: var(--color-black);
  opacity: 0.3;
  pointer-events: none;
}

.contact-field--select.contact-field--filled .contact-field__select-placeholder,
.contact-field--select.contact-field--focus .contact-field__select-placeholder {
  display: none;
}

.contact-field__select-value {
  display: none;
  font-family: var(--font-inter-tight);
  font-size: 18px;
  color: var(--color-black);
}

.contact-field--select.has-value .contact-field__select-value {
  display: block;
}

.contact-field__select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -8px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid var(--color-black);
  transform: translateY(-50%) rotate(180deg);
  opacity: 0.7;
}

.contact-field--select.is-open .contact-field__select-arrow {
  transform: translateY(-50%) rotate(0deg);
}

.contact-field__dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 416px;
  max-width: 100%;
  max-height: 300px;
  overflow: auto;
  background: var(--color-white);
  box-shadow:
    0 0 53.193px rgba(0, 0, 0, 0.04),
    0 0 13.607px rgba(0, 0, 0, 0.03);
  z-index: 10;
  padding: 8px 0;
}

.contact-field--select.is-open .contact-field__dropdown {
  display: block;
}

.contact-field__option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-black);
  cursor: pointer;
}

.contact-field__option:hover {
  background: #f4f4f4;
}

.contact-field__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-field__checkbox {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.contact-field__option.is-checked .contact-field__checkbox::before {
  content: '';
  position: absolute;
  left: 4.5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--color-black);
  border-bottom: 1.5px solid var(--color-black);
  transform: rotate(40deg);
}

.contact-form__submit {
  flex-shrink: 0;
}

.contact-form__submit > span:first-child {
  padding: 8px 32px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-form__submit.btn:hover {
  opacity: 1;
}

.contact-form__submit:hover > span:first-child {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

/* =========================================
   Contact 成功弹窗
   ========================================= */

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__mask {
  position: absolute;
  inset: 0;
  background: #111111;
  opacity: 0.6;
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: 446px;
  min-height: 200px;
  max-width: calc(100% - 48px);
  background: var(--color-white);
  overflow: hidden;
}

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

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

.contact-modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-height: 200px;
  padding: 48px 24px 32px;
  text-align: center;
}

.contact-modal__title {
  width: 100%;
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  color: var(--color-black);
}

.contact-modal__desc {
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-grey-secondary);
}

body.contact-modal-open {
  overflow: hidden;
}

/* =========================================
   25. 笔记本适配 1440px
   ========================================= */

@media (max-width: 1440px) {
  .page {
    max-width: 1440px;
  }

  .banner__copy {
    left: 120px;
    max-width: 960px;
  }

  .banner__desc {
    font-size: 18px;
    line-height: 28px;
  }

  .banner__title {
    font-size: 105px;
  }

  .banner__peel,
  .banner__peel-art {
    width: 256px;
    height: 256px;
  }

  .banner__cta {
    right: 18px;
    bottom: 24px;
    font-size: 18px;
  }

  html[lang='en'] .banner__cta {
    right: 14px;
    bottom: 20px;
    font-size: 14px;
  }

  .about,
  .service,
  .career,
  .contact {
    padding-left: 120px;
    padding-right: 120px;
  }

  .about__text {
    font-size: 48px;
    line-height: 64px;
    padding-top: 140px;
  }

  .about__thumb {
    width: 260px;
    height: 215px;
    margin-right: 30px;
  }

  .about__intro {
    min-height: 360px;
  }

  .about__list-text {
    white-space: normal;
  }

  .service__item-link {
    padding: 0 168px;
  }

  .service__item-text {
    font-size: 40px;
  }

  html[lang="en"] .service__item-text {
    font-size: 36px;
  }

  .service__photo {
    right: -40px;
    width: 200px;
    height: 134px;
  }

  .service__photo[data-service="1"] {
    top: 54px;
  }

  .service__photo[data-service="2"] {
    top: 162px;
  }

  .service__photo[data-service="3"] {
    top: 270px;
  }

  .service__photo[data-service="4"] {
    top: 378px;
  }

  .service__photo[data-service="5"] {
    top: 486px;
  }

  .career__card {
    width: 600px;
  }

  .career__card-title {
    font-size: 52px;
  }

  .career__btn {
    top: auto;
    bottom: 48px;
  }

  .contact__title {
    font-size: 72px;
    line-height: 1;
  }

  .contact__desc {
    line-height: 1.4;
  }

  .about-banner__heading {
    font-size: 88px;
  }

  .about-who {
    min-height: auto;
    padding: 80px 120px;
  }

  .about-who__main {
    width: 720px;
  }

  .about-who__headline {
    font-size: 44px;
    line-height: 60px;
  }

  .about-who__side {
    width: 420px;
  }

  .about-mission__content {
    max-width: calc(100% - 240px);
  }

  .about-mission__text {
    font-size: 32px;
    line-height: 48px;
  }

  .about-values {
    gap: 64px;
    min-height: auto;
    padding: 80px 120px;
  }

  .about-values__cards {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
  }

  .about-values__card {
    padding: 24px 32px;
  }

  .about-values__desc {
    white-space: normal;
  }

  .service-banner__heading {
    font-size: 88px;
  }

  .service-intro {
    min-height: auto;
    padding: 80px 120px;
  }

  .service-intro__content {
    max-width: 640px;
  }

  .service-intro__eyebrow {
    margin-bottom: 64px;
  }

  .service-intro__headline {
    font-size: 36px;
    line-height: 50px;
  }

  .service-intro__photo {
    width: 400px;
    height: 300px;
  }

  .service-list {
    padding: 0 120px 80px;
  }

  .service-list__left {
    gap: 24px;
  }

  .service-list__name {
    font-size: 22px;
    white-space: normal;
  }

  .service-list__summary {
    width: 420px;
  }

  .service-list__bullets {
    flex-wrap: wrap;
    padding: 0 32px;
    row-gap: 16px;
  }

  .service-list__bullet {
    flex: 1 1 40%;
    font-size: 16px;
  }

  .career-banner__heading {
    font-size: 88px;
  }

  .career-join {
    --career-join-word-inset: 120px;
    height: 820px;
  }

  .career-join__photo {
    width: 400px;
    height: 420px;
    top: 96px;
  }

  .career-join__word {
    font-size: 140px;
  }

  .career-join__word--left {
    top: 140px;
  }

  .career-join__word--right {
    top: 300px;
  }

  .career-join__text {
    top: 600px;
    max-width: calc(100% - 240px);
    font-size: 36px;
    line-height: 50px;
  }

  .career-position {
    padding: 56px 120px;
  }

  .career-position__list {
    padding: 0 48px;
  }

  .career-position__job-title {
    font-size: 22px;
  }

  .career-position__job-desc {
    white-space: normal;
    line-height: 1.4;
  }

  .career-position__apply-list {
    font-size: 18px;
    line-height: 1.6;
  }

  .privacy-banner__title {
    max-width: calc(100% - 240px);
  }

  .privacy-banner__heading {
    font-size: 72px;
    white-space: normal;
  }

  .privacy-content {
    padding: 80px 120px;
    gap: 64px;
  }

  .privacy-content__body {
    font-size: 18px;
    line-height: 30px;
  }

  .contact-banner__heading {
    font-size: 88px;
  }

  .contact-main {
    min-height: auto;
    gap: 120px;
    padding: 80px 120px 96px;
  }

  .contact-main__left {
    flex-basis: 400px;
    width: 400px;
  }

  .contact-main__right {
    flex-basis: 640px;
    width: 640px;
    padding-top: 40px;
    gap: 48px;
  }

  .contact-main__headline {
    font-size: 36px;
    line-height: 50px;
  }

  .contact-form__row {
    gap: 32px;
  }

  .contact-field__dropdown {
    width: 100%;
    max-width: 360px;
  }

  .contact-modal__title {
    font-size: 28px;
    line-height: 1.3;
  }

  .contact-modal__desc {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* 联系页 H5 见 css/pages/contact.css */
