/* Mobile layout — 375 design from assets/phone-ui, only when html[data-device="phone"]. */

html[data-device="phone"] {
  --pu: calc(100vw / 375);
  --header-height: calc(48 * var(--pu));
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --phone-vh: 100vh;
  --phone-design-h: calc(812 * var(--pu));
  --header-offset: calc(var(--header-height) + var(--safe-top));
  --phone-gutter: calc(24 * var(--pu));
  --c-header-bg: #f3f3f3;
}

html[data-device="phone"],
html[data-device="phone"] body {
  overflow-x: hidden;
}

html[data-device="phone"] body {
  font-size: calc(13 * var(--pu));
}

.phone-only { display: none; }
html[data-device="phone"] .phone-only { display: block; }
html[data-device="phone"] span.phone-only { display: inline; }
html[data-device="phone"] br.phone-only { display: block; }
html[data-device="phone"] .desktop-only { display: none !important; }
html[data-device="desktop"] .phone-only { display: none !important; }

html[data-device="phone"] .container {
  width: 100%;
  max-width: none;
  padding-inline: var(--phone-gutter);
}

/* ---------- header + full-screen menu ---------- */

html[data-device="phone"] .site-header {
  box-sizing: border-box;
  height: var(--header-offset);
  padding-top: var(--safe-top);
  background: #f3f3f3;
}

html[data-device="phone"] body[data-page="home"] .site-header {
  background: rgb(255 255 255 / 0.68);
}

html[data-device="phone"] body[data-page="home"] .site-header.is-scrolled {
  background: rgb(245 238 236 / 0.92);
}

html[data-device="phone"].is-nav-open .site-header,
html[data-device="phone"].is-nav-open body[data-page="home"] .site-header,
html[data-device="phone"].is-nav-open body[data-page="home"] .site-header.is-scrolled {
  background: #fff;
}

html[data-device="phone"] body:not([data-page="home"]) {
  padding-top: var(--header-offset);
}

html[data-device="phone"] .site-header__inner {
  justify-content: space-between;
  gap: 0;
}

html[data-device="phone"] .site-header__logo picture { display: none; }
html[data-device="phone"] .site-header__logo-phone {
  display: block;
  width: calc(72 * var(--pu));
  height: calc(28 * var(--pu));
}

html[data-device="phone"] .site-header__toggle {
  display: grid;
  place-items: center;
  order: 2;
  width: calc(32 * var(--pu));
  height: calc(32 * var(--pu));
  border: 0;
  background: none;
}

html[data-device="phone"] .site-header__toggle-bar { display: none; }
html[data-device="phone"] .site-header__toggle-icon {
  display: block;
  width: calc(14 * var(--pu));
  height: calc(12 * var(--pu));
}
html[data-device="phone"] .site-header__toggle-icon--close { display: none; width: calc(16 * var(--pu)); height: calc(16 * var(--pu)); }
html[data-device="phone"] [aria-expanded='true'] .site-header__toggle-icon--menu { display: none; }
html[data-device="phone"] [aria-expanded='true'] .site-header__toggle-icon--close { display: block; }

html[data-device="phone"] .site-header .site-nav,
html[data-device="phone"] .site-header .site-nav.is-open {
  position: fixed;
  inset: var(--header-offset) 0 0;
  order: 3;
  display: flex;
  flex-direction: column;
  max-height: none;
  overflow: auto;
  background: #fff;
  transform: translateX(100%);
  transition: transform 280ms var(--ease-out);
  box-shadow: none;
}

html[data-device="phone"] .site-header .site-nav.is-open {
  transform: translateX(0);
}

html[data-device="phone"] .site-nav__slider { display: none; }

html[data-device="phone"] .site-nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

html[data-device="phone"] .site-nav__item {
  border-bottom: 1px solid #eeeeee;
}

html[data-device="phone"] .site-nav__link {
  justify-content: flex-start;
  width: auto;
  padding: calc(18 * var(--pu)) var(--phone-gutter);
}

html[data-device="phone"] .site-nav__label {
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: baseline;
  gap: calc(10 * var(--pu));
}

html[data-device="phone"] .site-nav__cn {
  font-size: calc(16 * var(--pu));
  font-weight: var(--fw-medium);
  color: #111;
}

html[data-device="phone"] .site-nav__en {
  font-size: calc(13 * var(--pu));
  color: #6a6a6a;
}

html[data-device="phone"] .site-nav__item.is-current .site-nav__cn,
html[data-device="phone"] .site-nav__item.is-current .site-nav__en {
  color: var(--c-red);
}

html[data-device="phone"] .site-nav__list::before {
  content: '';
  display: block;
  height: 1px;
  background: #eeeeee;
}

html[data-device="phone"] .phone-nav-extra {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(4 * var(--pu));
  margin-top: auto;
  padding: calc(18 * var(--pu)) 0 calc(12 * var(--pu));
  text-align: center;
}

html[data-device="phone"] .phone-nav-extra__name {
  margin: 0;
  font-size: calc(32 * var(--pu));
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
}

html[data-device="phone"] .phone-nav-extra__company,
html[data-device="phone"] .phone-nav-extra__tag {
  margin: 0;
  color: #111;
  font-size: calc(12 * var(--pu));
  line-height: 1.7;
}

html[data-device="phone"] .phone-nav-extra__tag { color: #555; }

html[data-device="phone"] .phone-nav-extra__contact {
  box-sizing: border-box;
  width: 100%;
  margin: calc(18 * var(--pu)) 0 0;
  padding: calc(16 * var(--pu)) var(--phone-gutter) 0;
  border-top: 1px solid #dfdfdf;
  color: #111;
  font-size: calc(11 * var(--pu));
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
}

html[data-device="phone"] .phone-nav-extra__phone {
  margin: calc(6 * var(--pu)) 0 0;
  color: #111;
  font-size: calc(13 * var(--pu));
}

html[data-device="phone"] .phone-nav-extra__social {
  position: relative;
  z-index: 2;
  display: flex;
  gap: calc(16 * var(--pu));
  margin: calc(12 * var(--pu)) 0 0;
  padding: 0;
  list-style: none;
}

html[data-device="phone"] .phone-nav-extra__social li {
  display: grid;
  place-items: center;
  width: calc(42 * var(--pu));
  height: calc(42 * var(--pu));
  border: 1px solid #b8b8b8;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

html[data-device="phone"] .phone-nav-extra__social a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

html[data-device="phone"] .phone-nav-extra__social img {
  width: calc(20 * var(--pu));
  height: auto;
  filter: none;
}

html[data-device="phone"] .phone-nav-extra__copy {
  box-sizing: border-box;
  width: 100%;
  margin: calc(12 * var(--pu)) 0 0;
  padding: calc(10 * var(--pu)) var(--phone-gutter) 0;
  border-top: 1px solid #dfdfdf;
  color: #8a8a8a;
  font-size: calc(10 * var(--pu));
  line-height: 1.6;
}

html[data-device="phone"].is-nav-open,
html[data-device="phone"].is-nav-open body {
  overflow: hidden;
}

/* ---------- footer ---------- */

html[data-device="phone"] .site-footer {
  padding: calc(36 * var(--pu)) 0 calc(20 * var(--pu) + var(--safe-bottom));
  background: #fff;
}

html[data-device="phone"] .site-footer__brand picture { display: none; }

html[data-device="phone"] .site-footer__wordmark-phone {
  display: block;
  width: calc(200 * var(--pu));
  height: auto;
  margin-inline: auto;
}

html[data-device="phone"] .site-footer__company {
  display: block;
  margin: calc(10 * var(--pu)) 0 0;
  font-size: calc(13 * var(--pu));
  color: #111;
}

html[data-device="phone"] .site-footer__tagline {
  margin-top: calc(6 * var(--pu));
  font-size: calc(11 * var(--pu));
  color: #737373;
}

html[data-device="phone"] .site-footer__rule {
  width: 100vw;
  max-width: none;
  height: 1px;
  margin: calc(14 * var(--pu)) 0 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #dfdfdf;
}

html[data-device="phone"] .site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(8 * var(--pu));
  margin-top: calc(18 * var(--pu));
  padding: 0;
  text-align: center;
}

html[data-device="phone"] .site-footer__contact-title {
  margin: 0;
  color: #111;
  font-size: calc(12 * var(--pu));
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
}

html[data-device="phone"] .site-footer__phone {
  display: flex;
  gap: 0.4em;
  margin: 0;
  font-size: calc(13 * var(--pu));
}

html[data-device="phone"] .site-footer__divider {
  display: none;
}

html[data-device="phone"] .site-footer__social {
  display: flex;
  gap: calc(16 * var(--pu));
  margin: calc(16 * var(--pu)) 0 0;
}

html[data-device="phone"] .site-footer__social-item--xiaohongshu { order: 2; }
html[data-device="phone"] .site-footer__social-item--douyin { order: 3; }

html[data-device="phone"] .site-footer__qr { display: none; }

html[data-device="phone"] .site-footer__social-item {
  display: grid;
  place-items: center;
  width: calc(44 * var(--pu));
  height: calc(44 * var(--pu));
  border: 1px solid #b8b8b8;
  border-radius: 50%;
  background: transparent;
}

html[data-device="phone"] .site-footer__social-link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

html[data-device="phone"] .site-footer__social-item picture { display: none; }

html[data-device="phone"] .site-footer__social-phone {
  display: block;
  width: calc(20 * var(--pu));
  height: auto;
  filter: none;
}

html[data-device="phone"] .site-footer__copyright {
  display: block;
  max-width: calc(300 * var(--pu));
  margin: calc(14 * var(--pu)) auto 0;
  font-size: calc(10 * var(--pu));
  color: #6a6a6a;
  line-height: 1.7;
  text-align: center;
}

html[data-device="phone"] .site-footer__copy-desktop { display: none !important; }

html[data-device="phone"] span.site-footer__copy-phone {
  display: inline;
}

/* ---------- home: hero ---------- */

html[data-device="phone"] .hero {
  container-type: normal;
  width: 100%;
  height: var(--phone-design-h);
  min-height: var(--phone-design-h);
  max-height: none;
  aspect-ratio: auto;
  margin-top: 0;
  overflow: hidden;
}

html[data-device="phone"] .hero::before { display: none; }

html[data-device="phone"] .hero__media,
html[data-device="phone"] .hero__media img,
html[data-device="phone"] .hero__media video,
html[data-device="phone"] .hero__media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

html[data-device="phone"] .hero__media picture,
html[data-device="phone"] .hero__media img {
  z-index: 0;
}

html[data-device="phone"] .hero__media video {
  z-index: 1;
}

html[data-device="phone"] .hero__words {
  z-index: 2;
  display: grid;
  place-items: center;
  padding-top: calc(28 * var(--pu));
}

html[data-device="phone"] .hero__words-art {
  position: relative;
  top: auto;
  left: auto;
  width: calc(318 * var(--pu));
  height: auto;
  transform: none;
}

html[data-device="phone"] .hero__word--mark,
html[data-device="phone"] .hero__word--script {
  display: none;
}

html[data-device="phone"] .hero__word--mark-phone,
html[data-device="phone"] .hero__word--script-phone {
  position: relative;
  left: auto;
  top: auto;
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  translate: none;
}

html[data-device="phone"] .hero__word--script-phone {
  margin-top: calc(2 * var(--pu));
}

html[data-device="phone"] .hero__ripple { display: none; }

/* ---------- home: about ---------- */

html[data-device="phone"] .about {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  min-height: var(--phone-design-h);
  overflow: visible;
  padding: calc(148 * var(--pu)) 0 0;
  background: #f5f6f7;
}

html[data-device="phone"] .about .section__bg picture,
html[data-device="phone"] .about .section__bg img {
  display: none;
}

html[data-device="phone"] .about .section__bg {
  background: var(--phone-bg, url('/assets/phone/about-bg.png')) top center / 100% auto no-repeat;
}

html[data-device="phone"] .about__fan:not(.about__fan--phone),
html[data-device="phone"] .about video.about__fan {
  display: none !important;
}

html[data-device="phone"] .about__fan--phone {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  object-position: bottom center;
  opacity: 1;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

html[data-device="phone"] .about__inner {
  position: relative;
  z-index: 1;
  width: calc(327 * var(--pu));
  max-width: calc(327 * var(--pu));
  margin-inline: auto;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  translate: none;
}

html[data-device="phone"] .about__title {
  color: var(--c-red);
  font-size: calc(28 * var(--pu));
  font-weight: var(--fw-bold);
}

html[data-device="phone"] .about__body {
  max-width: none;
  margin-top: calc(14 * var(--pu));
  font-size: calc(13 * var(--pu));
  line-height: 2.05;
}

html[data-device="phone"] .about__body-en {
  display: none;
}

/* ---------- home: business ---------- */

html[data-device="phone"] .business {
  min-height: var(--phone-design-h);
  height: auto;
  overflow: visible;
  padding: 0;
  background: #1c1c1c;
}

html[data-device="phone"] .business__stage {
  --stage-h: auto;
  position: relative;
  width: 100%;
  height: var(--phone-design-h);
  min-height: var(--phone-design-h);
  aspect-ratio: auto;
  padding: 0;
  overflow: visible;
}

html[data-device="phone"] .business__bg {
  position: absolute;
  inset: 0;
  background: var(--phone-bg, url('/assets/phone/business-bg.png')) top center / 100% auto no-repeat;
}

html[data-device="phone"] .business__bg img,
html[data-device="phone"] .business__bg video,
html[data-device="phone"] .business__bg picture {
  display: none;
}

html[data-device="phone"] .business__heading,
html[data-device="phone"] .business__heading-en {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  transform: none;
}

html[data-device="phone"] .business__heading {
  top: calc(74 * var(--pu));
  z-index: 4;
  font-size: calc(22 * var(--pu));
  font-weight: var(--fw-bold);
  line-height: 1;
}

html[data-device="phone"] .business__heading-en {
  top: calc(107 * var(--pu));
  z-index: 4;
  color: #8a8a8a;
  font-size: calc(11 * var(--pu));
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

html[data-device="phone"] .business__infinity,
html[data-device="phone"] .business__ring,
html[data-device="phone"] .business__mark {
  display: none;
}

html[data-device="phone"] .business__infinity-phone,
html[data-device="phone"] .business__ring-phone,
html[data-device="phone"] .business__mark-phone,
html[data-device="phone"] .business__words {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

html[data-device="phone"] .business__ring-phone {
  top: calc(330 * var(--pu));
  z-index: 1;
  width: calc(273 * var(--pu));
  height: auto;
}

html[data-device="phone"] .business__infinity-phone {
  top: calc(189 * var(--pu));
  z-index: 1;
  width: calc(259 * var(--pu));
  height: auto;
  opacity: 1;
}

html[data-device="phone"] .business__mark-phone {
  top: calc(436 * var(--pu));
  z-index: 2;
  width: calc(99 * var(--pu));
  height: auto;
}

html[data-device="phone"] .business__words {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  font-size: calc(16 * var(--pu));
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  line-height: 1.32;
  white-space: nowrap;
}

html[data-device="phone"] .business__words span {
  display: block;
  margin: 0;
  letter-spacing: 0.28em;
  text-indent: 0.14em;
}

html[data-device="phone"] .business__words span:first-child::after {
  content: none;
}

html[data-device="phone"] .business__words--left {
  top: calc(295 * var(--pu));
}

html[data-device="phone"] .business__words--right {
  top: calc(570 * var(--pu));
}

html[data-device="phone"] .business__grid {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  z-index: 3;
}

/*
 * Item top-left is the cutout image top; --cx/--cy are the glass-circle
 * centre in 375 space. Desktop assets include shadow, so --iw is the full
 * width that yields a ~50px visible circle and --icy is that circle's
 * centre from the top of the scaled image.
 */
html[data-device="phone"] .business__item {
  --iw: 90;
  --icy: 40;
  --cr: 27;
  position: absolute;
  display: block;
  left: calc(var(--cx) * var(--pu));
  top: calc((var(--cy) - var(--icy)) * var(--pu));
  width: calc(var(--iw) * var(--pu));
  height: auto;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
}

html[data-device="phone"] .business__item--digital {
  --iw: 72;
  --icy: 32;
  --cx: 78;
  --cy: 258;
}

html[data-device="phone"] .business__item--exhibition { --cx: 140; --cy: 196; }
html[data-device="phone"] .business__item--campaign { --cx: 235; --cy: 196; }
html[data-device="phone"] .business__item--commercial { --cx: 297; --cy: 258; }
html[data-device="phone"] .business__item--aigc { --cx: 114; --cy: 688; }
html[data-device="phone"] .business__item--spatial { --cx: 261; --cy: 688; }

html[data-device="phone"] .business__icon {
  left: auto;
  width: auto;
  margin: 0;
}

html[data-device="phone"] .business__icon {
  position: relative;
  top: auto;
  transform: none;
}

html[data-device="phone"] .business__icon {
  display: block;
  width: 100%;
}

html[data-device="phone"] .business__icon img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

html[data-device="phone"] .business__label,
html[data-device="phone"] .business__item--aigc .business__label,
html[data-device="phone"] .business__item--spatial .business__label {
  position: absolute;
  left: 50%;
  top: auto;
  width: max-content;
  margin: 0;
  white-space: nowrap;
  text-align: center;
  transform: translateX(-50%);
}

html[data-device="phone"] .business__label b {
  display: block;
  margin: 0;
  font-size: calc(13 * var(--pu));
  font-weight: var(--fw-medium);
  line-height: 1.15;
}

html[data-device="phone"] .business__label i,
html[data-device="phone"] .business__item--aigc .business__label i,
html[data-device="phone"] .business__item--spatial .business__label i {
  position: static;
  left: auto;
  top: auto;
  display: block;
  margin-top: calc(2 * var(--pu));
  color: #8a8a8a;
  font-size: calc(9 * var(--pu));
  font-style: normal;
  line-height: 1.15;
  transform: none;
}

html[data-device="phone"] .business__item--digital .business__label,
html[data-device="phone"] .business__item--exhibition .business__label,
html[data-device="phone"] .business__item--campaign .business__label,
html[data-device="phone"] .business__item--commercial .business__label {
  bottom: calc(100% - (var(--icy) - var(--cr) - 5) * var(--pu));
  top: auto;
}

html[data-device="phone"] .business__item--aigc .business__label,
html[data-device="phone"] .business__item--spatial .business__label {
  top: calc((var(--icy) + var(--cr) + 16) * var(--pu));
  bottom: auto;
}

/* ---------- home: creative ---------- */

html[data-device="phone"] .creative {
  background: #000;
  color: #fff;
  min-height: var(--phone-design-h);
  height: auto;
  overflow: visible;
  padding: 0;
}

html[data-device="phone"] .creative__stage {
  --stage-h: auto;
  aspect-ratio: auto;
  position: relative;
  display: block;
  grid-template-columns: none;
  grid-template-areas: none;
  width: 100%;
  height: var(--phone-design-h);
  min-height: var(--phone-design-h);
  padding: 0;
  overflow: visible;
}

html[data-device="phone"] .creative__face--left,
html[data-device="phone"] .creative__face--right,
html[data-device="phone"] .creative__driven {
  display: none;
}

html[data-device="phone"] .creative__stage > .stage__layer,
html[data-device="phone"] .creative__face-phone,
html[data-device="phone"] .creative__driven-phone {
  position: absolute;
  grid-area: auto;
  margin: 0;
  opacity: 1;
}

html[data-device="phone"] .creative__face-phone {
  display: block;
  object-fit: contain;
  -webkit-mask-image: none;
  mask-image: none;
}

html[data-device="phone"] .creative__face-phone--left {
  top: 0;
  left: 0;
  width: calc(300 * var(--pu));
  height: calc(307 * var(--pu));
}

html[data-device="phone"] .creative__face-phone--right {
  top: calc(505 * var(--pu));
  left: calc(76 * var(--pu));
  right: auto;
  width: calc(299 * var(--pu));
  height: calc(307 * var(--pu));
}

html[data-device="phone"] .creative__stage > .creative__pillar {
  z-index: 2;
  top: calc(149 * var(--pu));
  left: 50%;
  right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  font-size: calc(36 * var(--pu));
  font-weight: var(--fw-bold);
  line-height: 1;
  text-align: center;
  transform: translateX(-50%);
}

html[data-device="phone"] .creative__stage > .creative__pillar b {
  display: block;
  font-size: calc(36 * var(--pu));
  line-height: calc(26 * var(--pu));
}

html[data-device="phone"] .creative__stage > .creative__pillar--right {
  top: calc(581 * var(--pu));
}

html[data-device="phone"] .creative__pillar i {
  display: block;
  margin: calc(8 * var(--pu)) 0;
  font-size: calc(9 * var(--pu));
  font-style: normal;
  letter-spacing: 0.14em;
  line-height: calc(9 * var(--pu));
}

html[data-device="phone"] .creative__driven-phone {
  top: calc(378 * var(--pu));
  left: 50%;
  right: auto;
  z-index: 2;
  display: block;
  width: calc(147 * var(--pu));
  height: auto;
  transform: translateX(-50%);
}

html[data-device="phone"] .creative__stage > .creative__copy {
  top: calc(422 * var(--pu));
  left: 50%;
  right: auto;
  z-index: 2;
  width: max-content;
  max-width: calc(351 * var(--pu));
  text-align: center;
  font-size: calc(12 * var(--pu));
  line-height: calc(18 * var(--pu));
  white-space: nowrap;
  transform: translateX(-50%);
}

html[data-device="phone"] .creative__copy-l2 {
  display: block;
  margin-top: 0;
  white-space: nowrap;
  transform: none;
}

/* ---------- home: global ---------- */

html[data-device="phone"] .global {
  height: auto;
  min-height: var(--phone-vh);
  padding: calc(117 * var(--pu)) 0 calc(24 * var(--pu));
  background: #d6d6d6;
}

html[data-device="phone"] .global__intro {
  padding: 0 calc(40 * var(--pu));
  text-align: center;
}

html[data-device="phone"] .global__intro .section-title,
html[data-device="phone"] .global__intro .global__lead {
  opacity: 1;
  translate: none;
  transition: none;
}

html[data-device="phone"] .global .section-title {
  font-size: calc(22 * var(--pu));
  font-weight: var(--fw-bold);
  line-height: 1;
}

html[data-device="phone"] .global__lead {
  position: static;
  top: auto;
  max-width: none;
  margin: calc(18 * var(--pu)) auto 0;
  font-size: calc(12 * var(--pu));
  line-height: calc(18 * var(--pu));
}

html[data-device="phone"] .global__composition {
  display: block;
  margin-top: calc(89 * var(--pu));
}

html[data-device="phone"] .global__map {
  position: relative;
  width: calc(338 * var(--pu));
  height: auto;
  margin: 0 auto;
}

html[data-device="phone"] .global__basemap,
html[data-device="phone"] .global__pins { display: none !important; }

html[data-device="phone"] .global__basemap-phone {
  display: block;
  width: 100%;
  height: auto;
}

html[data-device="phone"] .global__pins-phone {
  position: absolute;
  left: 50%;
  top: 48%;
  width: calc(240 * var(--pu));
  height: auto;
  transform: translate(-50%, -50%);
}

html[data-device="phone"] .global__guides,
html[data-device="phone"] .global__labels { display: none !important; }

html[data-device="phone"] .global__regions {
  margin: calc(70 * var(--pu)) 0 0;
  padding: 0;
  border: 0;
  list-style: none;
  text-align: left;
}

html[data-device="phone"] .global__regions li {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: start;
  box-sizing: border-box;
  width: 100%;
  padding: calc(8 * var(--pu)) calc(40 * var(--pu));
  border: 0;
  border-bottom: 1px solid #c6c6c6;
  font-size: calc(12 * var(--pu));
  line-height: calc(16 * var(--pu));
  letter-spacing: calc(-0.7 * var(--pu));
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: normal;
}

html[data-device="phone"] .global__regions li:first-child {
  padding-top: 0;
}

html[data-device="phone"] .global__regions b {
  margin-right: 0;
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

html[data-device="phone"] .global__countries {
  min-width: 0;
}

html[data-device="phone"] .global__country {
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
}

/* ---------- home: clients ---------- */

html[data-device="phone"] .clients {
  height: auto;
  min-height: var(--phone-vh);
  overflow: visible;
  padding: calc(100 * var(--pu)) 0 calc(24 * var(--pu));
  background: #e0e0e0;
}

html[data-device="phone"] .clients__title {
  position: relative;
  top: auto;
  padding-inline: var(--phone-gutter);
  text-align: center;
  font-size: calc(22 * var(--pu));
  font-weight: var(--fw-bold);
  line-height: 1;
}

html[data-device="phone"] .clients__lead {
  display: block;
  margin-top: calc(14 * var(--pu));
  color: #111;
  font-size: calc(13 * var(--pu));
  font-weight: var(--fw-regular);
  line-height: 1;
}

html[data-device="phone"] .clients__cards {
  position: relative;
  top: auto;
  left: auto;
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  gap: calc(22 * var(--pu));
  width: calc(300 * var(--pu));
  margin: calc(34 * var(--pu)) auto 0;
  padding-inline: 0;
  box-sizing: border-box;
  transform: none;
}

html[data-device="phone"] .client-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: none;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  overflow: visible;
  padding: 0;
  background: transparent;
}

html[data-device="phone"] .client-card .stage__layer {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  transform: none;
}

html[data-device="phone"] .client-card__en { display: none; }

html[data-device="phone"] .client-card__cn {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  transform: none;
  order: -1;
  margin: 0 0 calc(8 * var(--pu));
  padding-left: calc(4 * var(--pu));
  text-align: center;
  font-size: calc(13 * var(--pu));
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: calc(4 * var(--pu));
  white-space: nowrap;
}

html[data-device="phone"] .client-card__cn::after {
  content: '';
  position: static;
  display: block;
  left: auto;
  top: auto;
  width: calc(70 * var(--pu));
  height: 2px;
  margin: calc(6 * var(--pu)) auto 0;
  background: #e7a8a8;
  transform: none;
}

html[data-device="phone"] .client-card__wall { display: none; }

html[data-device="phone"] .client-card__wall-phone {
  order: 2;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 300 / var(--wall-h);
  background: transparent;
}

html[data-device="phone"] .client-card__wall-phone img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: calc(var(--wall-top) / 300 * -100%);
}

html[data-device="phone"] .client-card__names { display: none; }

/* ---------- category ---------- */

html[data-device="phone"] .cat-hero {
  display: grid;
  place-items: center;
  height: var(--phone-design-h);
  min-height: var(--phone-design-h);
  overflow: hidden;
  padding: calc(24 * var(--pu)) var(--phone-gutter) calc(48 * var(--pu));
  color: #fff;
}

html[data-device="phone"] .cat-hero__titles,
html[data-device="phone"] .cat-hero__bg {
  opacity: 1;
  scale: 1;
  translate: none;
  transition: none;
}

html[data-device="phone"] .cat-hero__bg,
html[data-device="phone"] .cat-hero__bg picture,
html[data-device="phone"] .cat-hero__bg img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

html[data-device="phone"] .cat-hero__bg picture { opacity: 0; }
html[data-device="phone"] .cat-hero__bg {
  inset: 0;
  background: var(--phone-hero, url('/assets/phone/hero-digital.png')) top center / 100% auto no-repeat;
}

html[data-device="phone"] .cat-hero__titles {
  position: relative;
  inset: auto;
  width: 100%;
  text-align: center;
  transform: none;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

html[data-device="phone"] .cat-hero__cn,
html[data-device="phone"] .cat-hero__en,
html[data-device="phone"] .cat-hero__sub-cn,
html[data-device="phone"] .cat-hero__sub-en {
  color: #fff;
  -webkit-text-fill-color: #fff;
  --track: 0;
  letter-spacing: 0;
  text-indent: 0;
}

html[data-device="phone"] .cat-hero__cn {
  font-size: calc(36 * var(--pu));
  font-weight: var(--fw-bold);
}

html[data-device="phone"] .cat-hero__en {
  margin-top: calc(8 * var(--pu));
  font-size: calc(16 * var(--pu));
}

html[data-device="phone"] .cat-hero__sub-cn {
  margin-top: calc(20 * var(--pu));
  font-size: calc(13 * var(--pu));
  letter-spacing: 0.22em;
}

html[data-device="phone"] .cat-hero__sub-en {
  margin-top: calc(8 * var(--pu));
  font-size: calc(11 * var(--pu));
  letter-spacing: 0.08em;
}

html[data-device="phone"] body[data-page="campaign"] .cat-hero__sub-cn,
html[data-device="phone"] body[data-page="aigc"] .cat-hero__sub-cn {
  letter-spacing: 0.42em;
}

html[data-device="phone"] .cat-body.stage--reflow,
html[data-device="phone"] .cat-body.stage--flow {
  height: auto !important;
  min-height: 0 !important;
  padding: calc(28 * var(--pu)) var(--phone-gutter) calc(40 * var(--pu));
}

html[data-device="phone"] .cat-block {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  height: auto !important;
  transform: none !important;
}

html[data-device="phone"] .cat-block + .cat-block {
  margin-top: calc(28 * var(--pu));
}

html[data-device="phone"] .cat-media,
html[data-device="phone"] .cat-media img,
html[data-device="phone"] .cat-media video {
  width: 100%;
  height: auto;
  translate: none;
}

html[data-device="phone"] .cat-reel__play,
html[data-device="phone"] .cat-reel__cursor {
  display: none !important;
}

html[data-device="phone"] .cat-block--landscape .cat-prose {
  margin-top: calc(14 * var(--pu));
}

html[data-device="phone"] .cat-block--portrait .cat-prose {
  width: auto;
  margin: 0;
}

html[data-device="phone"] .cat-block--portrait .cat-prose__title {
  margin-top: calc(14 * var(--pu));
}

html[data-device="phone"] .cat-prose__body,
html[data-device="phone"] .cat-block--portrait .cat-prose__body {
  margin-top: calc(10 * var(--pu));
}

html[data-device="phone"] .cat-caption {
  margin-top: calc(10 * var(--pu));
  color: #111;
  font-size: calc(13 * var(--pu));
  font-weight: var(--fw-bold);
  white-space: normal;
}

html[data-device="phone"] .cat-caption__area { margin-left: 0.4em; }

html[data-device="phone"] .cat-caption-sub {
  margin-top: calc(4 * var(--pu));
  color: #8a8a8a;
  font-size: calc(11 * var(--pu));
}

html[data-device="phone"] .cat-body {
  overflow-x: hidden;
}

html[data-device="phone"] .cat-carousel {
  overflow: visible;
  touch-action: pan-y;
}

html[data-device="phone"] .cat-carousel.is-swiping {
  touch-action: none;
}

html[data-device="phone"] .cat-carousel__slide img {
  pointer-events: none;
  -webkit-user-drag: none;
}

html[data-device="phone"] .cat-carousel__track {
  gap: calc(8 * var(--pu));
}

html[data-device="phone"] .cat-carousel__slide {
  flex: 0 0 calc(327 * var(--pu));
}

html[data-device="phone"] .cat-carousel__nav { display: none; }

html[data-device="phone"] body[data-page="spatial"] {
  background: #000;
}

html[data-device="phone"] .cat-body--dark {
  background: #000;
  padding-bottom: calc(48 * var(--pu));
}

html[data-device="phone"] body[data-page="spatial"] .site-footer {
  background: #fff;
}

html[data-device="phone"] .cat-body--dark .cat-caption {
  color: #fff;
  text-align: center;
}

html[data-device="phone"] .cat-block[data-scroll-scale] {
  scale: 1;
}

html[data-device="phone"] .cat-media--vr {
  position: relative;
}

html[data-device="phone"] .cat-media--vr > video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: url('/assets/phone/vr-screen-mask.png');
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: url('/assets/phone/vr-screen-mask.png');
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
}

html[data-device="phone"] .cat-media__vr-shell {
  display: none;
}

html[data-device="phone"] .cat-media__vr-shell-phone {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

html[data-device="phone"] .cat-media--vr + .cat-caption {
  translate: none;
}

/* ---------- back to top ---------- */

.phone-top {
  display: none;
}

html[data-device="phone"] .phone-top {
  position: fixed;
  right: calc(12 * var(--pu));
  bottom: calc(20 * var(--pu) + var(--safe-bottom));
  z-index: 80;
  display: grid;
  place-items: center;
  width: calc(40 * var(--pu));
  height: calc(40 * var(--pu));
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

html[data-device="phone"] .phone-top img {
  width: 100%;
  height: 100%;
}

html[data-device="phone"] .phone-top.is-on {
  opacity: 1;
  pointer-events: auto;
}

html[data-device="phone"] .phone-top.is-on.is-scrolling {
  opacity: 0;
  pointer-events: none;
}

html[data-device="phone"] .fx-blur__w {
  filter: none;
  opacity: 1;
  transform: none;
}
