@font-face {
  font-family: "Alibaba PuHuiTi 3.0";
  src:
    local("Alibaba PuHuiTi 3.0 VF"),
    local("AlibabaPuHuiTi-3-VF"),
    local("阿里巴巴普惠体 3.0 VF");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alibaba PuHuiTi 3.0";
  src:
    local("AlibabaPuHuiTi-3-45-Light"),
    local("Alibaba PuHuiTi 3.0 45 Light"),
    local("阿里巴巴普惠体 3.0 45 Light");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alibaba PuHuiTi 3.0";
  src:
    local("AlibabaPuHuiTi-3-55-Regular"),
    local("Alibaba PuHuiTi 3.0 55 Regular"),
    local("阿里巴巴普惠体 3.0 55 Regular");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alibaba PuHuiTi 3.0";
  src:
    local("AlibabaPuHuiTi-3-65-Medium"),
    local("Alibaba PuHuiTi 3.0 65 Medium"),
    local("阿里巴巴普惠体 3.0 65 Medium");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alibaba PuHuiTi 3.0";
  src:
    local("AlibabaPuHuiTi-3-75-SemiBold"),
    local("Alibaba PuHuiTi 3.0 75 SemiBold"),
    local("阿里巴巴普惠体 3.0 75 SemiBold");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alibaba PuHuiTi 3.0";
  src:
    local("AlibabaPuHuiTi-3-85-Bold"),
    local("Alibaba PuHuiTi 3.0 85 Bold"),
    local("阿里巴巴普惠体 3.0 85 Bold");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #008cff;
  --green: #00e89d;
  --ink: #333333;
  --text: #363636;
  --muted: #797979;
  --line: #d9d9d9;
  --panel: #f6f6f6;
  --footer: #000;
  --container: min(1200px, calc(100vw - 64px));
  --header-offset: 100px;
  --module-radius: 30px;
  --module-body-size: 20px;
  --hero-cta-weight: 400;
  --module-body-weight: var(--hero-cta-weight);
  --module-body-line-height: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    "Alibaba PuHuiTi 3.0", "AlibabaPuHuiTi-3",
    "Alibaba PuHuiTi", "阿里巴巴普惠体 3.0",
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

main {
  padding-top: calc(var(--header-offset) - 47px);
}

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

.media-zoom {
  overflow: hidden;
}

.media-zoom img,
.media-zoom video {
  transform: scale(1);
  transition: transform 0.45s ease;
  will-change: transform;
}

@media (hover: hover) {
  .media-zoom:hover img,
  .media-zoom:hover video {
    transform: scale(1.08);
  }

  .hero:hover .hero__visual img {
    transform: translateY(8px) scale(1.08);
  }
}

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  display: flex;
  align-items: center;
  gap: 96px;
  padding-inline: max(32px, calc((100vw - 1200px) / 2 + 30px));
  overflow: visible;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  isolation: isolate;
  transition:
    background-color 0.24s ease,
    backdrop-filter 0.24s ease,
    -webkit-backdrop-filter 0.24s ease;
}

.site-header.is-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.site-header.is-glass.is-scrolling-down {
  background: rgba(255, 255, 255, 0.7);
}

.site-header.is-glass .main-nav a,
.site-header.is-glass .main-nav a:hover,
.site-header.is-glass .main-nav a:focus-visible,
.site-header.is-glass .main-nav a[aria-current="true"],
.site-header.is-glass .language-switcher__button,
.site-header.is-glass .language-switcher__button:hover,
.site-header.is-glass .language-switcher__button:focus-visible,
.site-header.is-glass .language-switcher__icon,
.site-header.is-glass .language-switcher__chevron {
  color: #5d5d5d;
}

.experience-modal,
.partnership-modal {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.experience-modal.is-open,
.partnership-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.experience-modal__backdrop,
.partnership-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.experience-modal__panel,
.partnership-modal__panel {
  position: relative;
  z-index: 1;
  padding: 36px 32px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.24s ease;
}

.experience-modal__panel {
  width: min(360px, calc(100vw - 48px));
  text-align: center;
}

.partnership-modal__panel {
  width: min(520px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  text-align: left;
}

.experience-modal.is-open .experience-modal__panel,
.partnership-modal.is-open .partnership-modal__panel {
  transform: translateY(0) scale(1);
}

.experience-modal__close,
.partnership-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #5d5d5d;
  background: rgba(255, 255, 255, 0.55);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.experience-modal__close:hover,
.experience-modal__close:focus-visible,
.partnership-modal__close:hover,
.partnership-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.85);
}

.experience-modal__title,
.partnership-modal__title {
  margin: 0 0 20px;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.partnership-modal__title {
  text-align: center;
}

.experience-modal__qr {
  display: block;
  width: min(280px, 100%);
  height: auto;
  margin-inline: auto;
  border-radius: 12px;
}

.partnership-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.partnership-form__label {
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.partnership-form input,
.partnership-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  color: #333333;
  background: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.partnership-form textarea {
  resize: vertical;
  min-height: 108px;
}

.partnership-form input:focus,
.partnership-form textarea:focus {
  outline: none;
  border-color: rgba(1, 232, 158, 0.65);
  background: rgba(255, 255, 255, 0.88);
}

.partnership-form__submit {
  margin-top: 4px;
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: #333333;
  background: #01e89e;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.15s ease;
}

@media (hover: hover) {
  .partnership-form__submit:hover,
  .partnership-form__submit:focus-visible {
    background: #5af8c5;
    box-shadow: 0 0 12px rgba(90, 248, 197, 0.45);
  }
}

.partnership-form__submit:active {
  transform: scale(0.98);
}

.partnership-form__success {
  margin: 0;
  padding: 24px 8px 8px;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.nav-cursor-mask {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.nav-cursor {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  border-radius: 44% 56% 62% 38% / 42% 48% 52% 58%;
  background:
    radial-gradient(
      ellipse 46% 34% at 40% 46%,
      rgba(0, 232, 157, 0.29) 0 24%,
      rgba(0, 232, 157, 0.15) 48%,
      rgba(0, 232, 157, 0.06) 72%,
      rgba(0, 232, 157, 0) 100%
    ),
    radial-gradient(
      ellipse 32% 42% at 62% 60%,
      rgba(0, 232, 157, 0.2) 0 22%,
      rgba(0, 232, 157, 0.1) 54%,
      rgba(0, 232, 157, 0) 100%
    );
  background-repeat: no-repeat;
  background-size:
    92% 84%,
    76% 68%;
  background-position:
    42% 48%,
    58% 56%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.18s ease;
  animation: nav-cursor-breathe 3.2s ease-in-out infinite;
}

.nav-cursor.is-visible {
  opacity: 1;
}

@keyframes nav-cursor-breathe {
  0% {
    border-radius: 26% 74% 68% 32% / 58% 28% 72% 42%;
    background-position:
      28% 58%,
      72% 38%;
    filter: blur(2px) saturate(1);
    transform: translate(-50%, -50%) rotate(-10deg) scale(0.9);
  }

  35% {
    border-radius: 50%;
    background-position:
      50% 50%,
      50% 50%;
    filter: blur(8px) saturate(1.2);
    transform: translate(-50%, -50%) rotate(0deg) scale(1.12);
  }

  62% {
    border-radius: 76% 24% 34% 66% / 27% 73% 38% 62%;
    background-position:
      72% 34%,
      28% 70%;
    filter: blur(12px) saturate(1.26);
    transform: translate(-50%, -50%) rotate(13deg) scale(1.02);
  }

  100% {
    border-radius: 26% 74% 68% 32% / 58% 28% 72% 42%;
    background-position:
      28% 58%,
      72% 38%;
    filter: blur(2px) saturate(1);
    transform: translate(-50%, -50%) rotate(-10deg) scale(0.9);
  }
}

.brand {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.brand img {
  width: 182px;
  height: 80px;
  object-fit: contain;
}

.main-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 96px;
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.main-nav a {
  display: inline-block;
  color: #333333;
  font-weight: 400;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
  transform-origin: center;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="true"] {
  color: #333333;
}

.main-nav a:hover {
  transform: scale(1.16);
}

.language-switcher {
  position: relative;
  z-index: 12;
  flex: 0 0 auto;
}

.language-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 88px;
  height: 28px;
  padding: 0;
  border: 0;
  color: #333333;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
  transition: color 0.22s ease, transform 0.15s ease;
}

.language-switcher__button:hover,
.language-switcher__button:focus-visible {
  color: #333333;
}

.language-switcher__button:active {
  transform: scale(0.94);
}

.language-switcher__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #333333;
}

.language-switcher__land {
  fill: currentColor;
  stroke: none;
}

.language-switcher__current {
  min-width: 36px;
}

.language-switcher__chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
  color: #333333;
}

.language-switcher.is-open .language-switcher__chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-switcher__button:focus-visible,
.language-switcher__menu button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(1, 232, 158, 0.3);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 26px);
  right: -18px;
  width: 128px;
  padding: 10px 0;
  background: #fff;
  box-shadow: 14px 18px 28px rgba(0, 0, 0, 0.12);
}

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

.language-switcher__menu button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 0;
  border: 0;
  color: #333333;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
  transition:
    color 0.22s ease,
    background-color 0.15s ease,
    transform 0.15s ease;
}

.language-switcher__menu button:hover,
.language-switcher__menu button:focus-visible {
  color: #01e89e;
}

.language-switcher__menu button:active {
  transform: scale(0.97);
  background-color: rgba(1, 232, 158, 0.12);
}

.language-switcher__menu button[aria-selected="true"] {
  color: #333333;
}

.hero {
  position: relative;
  min-height: 744px;
  padding-top: 0;
  color: #fff;
  overflow: hidden;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.64),
    rgba(0, 0, 0, 0.18) 58%,
    transparent
  );
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(8px);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--container);
  min-height: 744px;
  margin-inline: auto;
  padding-top: 0;
}

.hero h1 {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 0 0 30px;
  max-width: 520px;
  font-size: 56px;
  font-weight: 600;
  line-height: 88px;
  letter-spacing: -0.03em;
}

.hero-title__brand {
  color: var(--green);
}

.hero-actions,
.app-entry__actions {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  max-width: 1420px;
}

.hero-actions {
  position: absolute;
  right: 30px;
  bottom: 87px;
  left: 30px;
  margin-top: 0;
}

.app-entry__actions {
  margin-top: 288px;
}

.hero-actions a,
.app-entry__actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  min-height: 48px;
  border-radius: 999px;
  color: #fff;
  line-height: 20px;
}

.hero-actions a {
  width: 198px;
  min-height: 38.4px;
  padding-right: 14.4px;
  border: 1.5px solid #01e89e;
  background: rgba(0, 0, 0, 0.08);
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.15s ease,
    transform 0.24s ease;
  transform-origin: center;
}

.hero-actions a:nth-child(2) {
  width: 268.8px;
}

.hero-actions a::after,
.app-entry__actions a::after {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero-actions a::before,
.app-entry__actions a::before {
  content: "";
  position: absolute;
  right: 48px;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  z-index: 1;
}

.hero-actions a::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 38px;
  height: 38px;
  margin-left: 0;
  transform: translateY(-50%);
  transition: background-color 0.24s ease;
}

.hero-actions a::before {
  right: 14px;
  width: 10px;
  height: 10px;
  border-color: #222222;
}

@media (hover: hover) {
  .hero-actions a:hover,
  .hero-actions a:focus-visible {
    color: #333333;
    border-color: #5af8c5;
    background: #5af8c5;
    box-shadow: 0 0 12px rgba(90, 248, 197, 0.45);
    transform: scale(1.08);
  }

  .hero-actions a:hover::after,
  .hero-actions a:focus-visible::after {
    background: #5af8c5;
  }
}

.hero-actions a:active,
.app-entry__actions a:active {
  transform: scale(0.96);
  box-shadow: 0 0 8px rgba(90, 248, 197, 0.3);
}

.hero-actions a:active {
  border-color: #5af8c5;
  background: rgba(1, 232, 158, 0.22);
}

@media (hover: hover) {
  .hero-actions a:hover:active,
  .hero-actions a:focus-visible:active,
  .app-entry__actions a:hover:active,
  .app-entry__actions a:focus-visible:active {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(90, 248, 197, 0.4);
    filter: brightness(0.94);
  }
}

.section {
  padding-block: 60px 0;
}

.section-about {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * var(--module-radius) + 5px);
  padding-top: calc(50px + var(--module-radius));
  border-radius: var(--module-radius) var(--module-radius) 0 0;
  background: #fff;
}

.section-about .section-title {
  line-height: 96px;
}

.section-about .about-card__media,
.section-about .about-card__body {
  opacity: 0;
  transform: translateY(-28px);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path, opacity, transform, height;
}

.section-about.is-revealed .about-card__media,
.section-about.is-revealed .about-card__body {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.section-about.is-revealed .about-card__body {
  transition-delay: 0.14s;
}

.section-about:not(.is-revealed) .about-card__body {
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .section-about .about-card__media,
  .section-about .about-card__body {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
}

.section-title {
  margin: 0 0 15px 30px;
  font-size: 36px;
  font-weight: 600;
  line-height: 88px;
  letter-spacing: -0.03em;
}

.about-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--module-radius);
  background: var(--panel);
}

.about-card__media {
  position: relative;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
}

.about-card__media .about-card__video {
  transform: scale(1);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (hover: hover) {
  .about-card__media:hover .about-card__video {
    transform: scale(1.08);
  }
}

.about-card__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-card__body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  min-height: 418px;
  padding: 39px 92px 48px;
}

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

.about-card__body::after {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 50%;
  width: 1px;
  background: var(--line);
  pointer-events: none;
}

.about-card .about-copy h3 {
  margin: 0;
  color: var(--blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 68px;
}

.about-list h3 {
  margin: 0 0 3px;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  line-height: 44px;
}

.hero-actions a,
.app-entry__actions a,
.about-copy p,
.about-list li,
.product-lead,
.city-status__desc,
.news-card h3,
.news-card p,
.site-footer p,
.footer-record p {
  font-size: var(--module-body-size);
  font-weight: var(--module-body-weight);
}

.about-copy p,
.about-list li {
  margin: 0;
  color: var(--text);
}

.section-about .about-copy p,
.section-about .about-list li {
  line-height: 44px;
}

.about-copy--primary p {
  white-space: nowrap;
}

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

.about-list li::before {
  content: "·";
  margin-right: 8px;
}

.section-cities {
  padding-top: 60px;
}

.section-cities .section-title {
  margin-bottom: 15px;
}

.city-layout {
  display: grid;
  grid-template-columns: 721px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  max-width: 100%;
}

.section-cities .city-map,
.section-cities .city-copy {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path, opacity, transform;
}

.section-cities .city-map {
  clip-path: inset(0 100% 0 0 round var(--module-radius));
}

.section-cities.is-revealed .city-map,
.section-cities.is-revealed .city-copy {
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
}

.section-cities.is-revealed .city-map {
  clip-path: inset(0 0 0 0 round var(--module-radius));
}

.section-cities.is-revealed .city-copy {
  transition-delay: 0.14s;
}

.section-cities:not(.is-revealed) .city-copy {
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .section-cities .city-map,
  .section-cities .city-copy {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
}

.city-map {
  position: relative;
  overflow: hidden;
  border-radius: var(--module-radius);
}

.city-map img {
  display: block;
  width: 721px;
  max-width: 100%;
  height: 542px;
  border-radius: var(--module-radius);
  object-fit: cover;
  object-position: calc(42% - 13px) calc(46% - 10px);
  transform: translateY(-31px) scale(1.155);
}

@media (hover: hover) {
  .city-map.media-zoom:hover img {
    transform: translateY(-31px) scale(1.155);
  }
}

.city-map__marker {
  position: absolute;
  z-index: 1;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  transform: translate(-50%, calc(-50% - 31px)) scale(1);
  transform-origin: center;
  animation: city-marker-breathe 1.8s ease-in-out infinite;
  transition: transform 0.24s ease;
  pointer-events: none;
}

.city-map__marker--blue {
  background: #0074ff;
  box-shadow: 0 0 12px rgba(0, 116, 255, 0.65);
}

.city-map__marker--green {
  background: #01e89e;
  box-shadow: 0 0 12px rgba(1, 232, 158, 0.7);
}

.city-map__marker--yellow {
  background: #ffcf22;
  box-shadow: 0 0 12px rgba(255, 207, 34, 0.7);
}

.city-map__marker--orange {
  background: #ff8a00;
  box-shadow: 0 0 12px rgba(255, 138, 0, 0.7);
}

.city-map__marker--wuhan {
  top: 67.8%;
  left:58%;
}

.city-map__marker--changsha {
  top: 65.5%;
  left: 62%;
  animation-delay: 0.3s;
}

.city-map__marker--hongkong {
  top: 84%;
  left: 68%;
  animation-delay: 0.75s;
}

.city-map__marker--shenzhen {
  top: 82%;
  left: 66%;
  animation-delay: 0.9s;
}

.city-map__marker--liyang {
  top: 62.3%;
  left: 75%;
  animation-delay: 0.15s;
}

.city-map__marker--guangzhou {
  top: 65.8%;
  left: 74%;
  animation-delay: 0.45s;
}

.city-map__marker--changzhou {
  top: 86%;
  left: 65%;
  animation-delay: 0.6s;
}

.city-map__marker--shanghai {
  top: 66%;
  left: 78%;
  animation-delay: 1.05s;
}

@keyframes city-marker-breathe {
  0%,
  100% {
    transform: translate(-50%, calc(-50% - 31px)) scale(0.82);
    opacity: 0.78;
  }

  50% {
    transform: translate(-50%, calc(-50% - 31px)) scale(1.28);
    opacity: 1;
  }
}

.city-copy {
  padding-top: 0;
}

.city-eyebrow {
  margin: 0;
  color: #333333;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.city-copy h3 {
  margin: 0 0 46px;
  color: #333333;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
}

.city-status {
  display: grid;
  gap: 4px;
  margin: 0;
}

.city-status__row {
  display: flex;
  align-items: center;
  column-gap: 19px;
  min-height: 60px;
}

.city-status__tags {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 12px;
}

.city-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 32px;
  padding: 0 8px;
  border-radius: 24px;
  color: #333333;
  font-size: calc(var(--module-body-size) - 2px);
  font-weight: var(--module-body-weight);
  line-height: 1;
  text-align: center;
}

.city-tag--mint {
  background: #61f4cf;
}

.city-tag--yellow {
  background: #fbd960;
}

.city-tag--orange {
  background: #ffbe78;
}

.city-tag--blue {
  background: #87cbff;
}

.city-status__desc {
  margin: 0;
  color: #333333;
  line-height: 60px;
}

.section-product {
  padding-top: 60px;
}

.product-lead {
  margin: 0 30px 32px;
  color: #333333;
  line-height: var(--module-body-line-height);
}

.product-lead__prefix {
  color: var(--blue);
}

.product-video {
  position: relative;
  overflow: hidden;
  border-radius: var(--module-radius);
}

.product-image {
  display: block;
  width: 100%;
  height: 645px;
  object-fit: cover;
  object-position: center;
}

.section-news {
  overflow: hidden;
  padding-top: 60px;
}

.section-news .section-title {
  margin: 0 0 15px 30px;
}

.section-news .news-card__media,
.section-news .news-card h3,
.section-news .news-card p,
.section-news .news-card > .news-card__action {
  opacity: 0;
  transform: translateX(-28px);
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path, opacity, transform;
}

.section-news .news-card__media {
  clip-path: inset(0 100% 0 0 round var(--module-radius));
}

.section-news.is-revealed .news-card__media {
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0 round var(--module-radius));
}

.section-news.is-revealed .news-card h3,
.section-news.is-revealed .news-card p,
.section-news.is-revealed .news-card > .news-card__action {
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
}

.section-news.is-revealed .news-card:nth-child(1) .news-card__media {
  transition-delay: 0s;
}

.section-news.is-revealed .news-card:nth-child(1) h3,
.section-news.is-revealed .news-card:nth-child(1) p,
.section-news.is-revealed .news-card:nth-child(1) > .news-card__action {
  transition-delay: 0.12s;
}

.section-news.is-revealed .news-card:nth-child(2) .news-card__media {
  transition-delay: 0.08s;
}

.section-news.is-revealed .news-card:nth-child(2) h3,
.section-news.is-revealed .news-card:nth-child(2) p,
.section-news.is-revealed .news-card:nth-child(2) > .news-card__action {
  transition-delay: 0.2s;
}

.section-news.is-revealed .news-card:nth-child(3) .news-card__media {
  transition-delay: 0.16s;
}

.section-news.is-revealed .news-card:nth-child(3) h3,
.section-news.is-revealed .news-card:nth-child(3) p,
.section-news.is-revealed .news-card:nth-child(3) > .news-card__action {
  transition-delay: 0.28s;
}

.section-news.is-revealed .news-card:nth-child(4) .news-card__media {
  transition-delay: 0.24s;
}

.section-news.is-revealed .news-card:nth-child(4) h3,
.section-news.is-revealed .news-card:nth-child(4) p,
.section-news.is-revealed .news-card:nth-child(4) > .news-card__action {
  transition-delay: 0.36s;
}

.section-news:not(.is-revealed) .news-card__media,
.section-news:not(.is-revealed) .news-card h3,
.section-news:not(.is-revealed) .news-card p,
.section-news:not(.is-revealed) .news-card > .news-card__action {
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .section-news .news-card__media,
  .section-news .news-card h3,
  .section-news .news-card p,
  .section-news .news-card > .news-card__action {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
}

.news-carousel {
  --news-card-width: 270px;
  --news-card-gap: 69px;
  --news-media-height: 240px;
  --news-fade-width: calc(var(--news-card-width) * 0.5 + 24px);
  position: relative;
  width: 100%;
  margin-top: 2px;
}

.news-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scrollbar-width: none;
}

.news-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.news-carousel__fade {
  position: absolute;
  z-index: 2;
  top: 0;
  width: var(--news-fade-width);
  height: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.news-carousel__fade--right {
  right: 0;
  background: linear-gradient(
    to left,
    #fff 36%,
    rgba(255, 255, 255, 0) 100%
  );
}

.news-carousel.can-scroll:not(.is-at-end) .news-carousel__fade--right {
  opacity: 1;
  visibility: visible;
}

.news-carousel__fade--left {
  left: 0;
  background: linear-gradient(
    to right,
    #fff 36%,
    rgba(255, 255, 255, 0) 100%
  );
}

.news-carousel.can-scroll:not(.is-at-start) .news-carousel__fade--left {
  opacity: 1;
  visibility: visible;
}

.news-carousel__hint {
  position: absolute;
  z-index: 3;
  top: calc(var(--news-media-height) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.news-carousel__hint-arrow {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0;
  object-fit: contain;
  pointer-events: none;
}

.news-carousel__hint--prev .news-carousel__hint-arrow {
  transform: scaleX(-1);
}

.news-carousel__hint--next {
  right: 12px;
}

.news-carousel__hint--prev {
  left: 12px;
}

.news-carousel__hint:hover {
  transform: translateY(-50%) scale(1.05);
}

.news-carousel__hint:active {
  transform: translateY(-50%) scale(0.92);
}

.news-carousel__hint[hidden] {
  display: none;
}

.news-row {
  display: flex;
  gap: var(--news-card-gap);
  width: max-content;
  margin: 0;
  padding: 0 0 8px;
  scroll-snap-type: x proximity;
}

.news-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: var(--news-card-width);
  scroll-snap-align: start;
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.news-card:active {
  transform: scale(0.95);
  transition-duration: 0.12s;
  transition-timing-function: ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .news-card {
    transition: none;
  }

  .news-card:active {
    transform: none;
  }
}

.news-card__media {
  overflow: hidden;
  width: var(--news-card-width);
  height: var(--news-media-height);
  border-radius: var(--module-radius);
}

.news-card__media img {
  display: block;
  width: var(--news-card-width);
  height: var(--news-media-height);
  object-fit: cover;
  object-position: center;
}

.news-card h3 {
  margin: 0 0 0 20px;
  color: #333333;
  line-height: 88px;
}

.news-card p {
  margin: -20px 0 0 20px;
  max-width: 236px;
  color: #797979;
  font-size: calc(var(--module-body-size) - 4px);
  line-height: var(--module-body-line-height);
}

html:lang(en) .about-card__body {
  min-height: auto;
  padding: 48px 64px;
}

html:lang(en) .about-card__body::after {
  top: 48px;
  bottom: 48px;
}

html:lang(en) .about-card__col {
  gap: 25px;
}

html:lang(en) .about-copy--primary p {
  white-space: normal;
}

html:lang(en) .about-card .about-copy h3 {
  line-height: calc(1.25em + 8px);
}

html:lang(en) .about-list h3 {
  margin-bottom: 16px;
  line-height: calc(1.35em + 8px);
}

html:lang(en) .about-copy p,
html:lang(en) .about-list li {
  line-height: calc(1.55em + 8px);
}

html:lang(en) .city-eyebrow {
  line-height: 1.3;
}

html:lang(en) .city-copy h3 {
  margin-bottom: 28px;
  line-height: 1.35;
}

html:lang(en) .city-status {
  gap: 8px;
}

html:lang(en) .city-status__row {
  align-items: flex-start;
  min-height: auto;
  padding-block: 6px;
}

html:lang(en) .city-status__desc {
  line-height: 1.45;
}

html:lang(en) .news-card h3 {
  padding-top: 8px;
  line-height: 1.35;
}

html:lang(en) .news-card p {
  max-width: none;
  margin-top: 8px;
  line-height: 1.5;
}

.news-card__action {
  --news-action-width: 28px;
  --news-action-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --news-action-duration: 0.4s;
  position: relative;
  display: block;
  width: var(--news-action-width);
  height: 28px;
  margin: 19px 0 0 20px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #222222;
  text-decoration: none;
  overflow: hidden;
  transition:
    width var(--news-action-duration) var(--news-action-ease),
    border-radius var(--news-action-duration) var(--news-action-ease),
    transform 0.15s ease;
}

.section-news .news-card > .news-card__action {
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    width var(--news-action-duration) var(--news-action-ease),
    border-radius var(--news-action-duration) var(--news-action-ease);
}

.news-card__action-graphic {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  width: 70px;
  height: 28px;
}

.news-card__action-arrow {
  display: block;
  width: 70px;
  height: 28px;
  overflow: visible;
}

.news-card__action-stem {
  fill: #fff;
  d: path("M8.4 13.25 H19.6 V14.75 H8.4 Z");
  transition: d var(--news-action-duration) var(--news-action-ease);
}

.news-card__action-chevron {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  d: path("M13.236 7.636 L19.6 14 L13.236 20.364");
  transition: d var(--news-action-duration) var(--news-action-ease);
}

@media (hover: hover) {
  .news-card:hover .news-card__action,
  .news-card:focus-within .news-card__action {
    --news-action-width: 70px;
    border-radius: 50px;
  }

  .news-card:hover .news-card__action-stem,
  .news-card:focus-within .news-card__action-stem {
    d: path("M8.4 13.25 H53.2 V14.75 H8.4 Z");
  }

  .news-card:hover .news-card__action-chevron,
  .news-card:focus-within .news-card__action-chevron {
    d: path("M46.836 7.636 L53.2 14 L46.836 20.364");
  }
}

.app-entry {
  position: relative;
  min-height: 738px;
  margin-top: 60px;
  color: #fff;
  background: #fff;
  overflow: hidden;
}

.app-entry__visual {
  position: absolute;
  z-index: 0;
  top: 103px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.app-entry__visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.app-entry__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-8px) scale(1.14);
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.app-entry__content {
  position: relative;
  z-index: 1;
  width: var(--container);
  height: 738px;
  margin-inline: auto;
  padding-top: 0;
  pointer-events: none;
}

.app-entry__content h2,
.app-entry__content .app-entry__headline,
.app-entry__content .app-entry__subhead,
.app-entry__content .app-entry__actions,
.app-entry__content .app-entry__actions a {
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .app-entry__visual img {
    transform: translateY(-8px);
    transition: none;
  }
}

.app-entry h2 {
  position: absolute;
  top: 0;
  left: 30px;
  margin: 0;
  padding-top: 0;
  color: #333333;
  font-size: 36px;
  font-weight: 600;
  line-height: 88px;
  white-space: nowrap;
}

.app-entry .app-entry__headline,
.app-entry .app-entry__subhead {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path, opacity, transform;
}

.app-entry:not(.is-revealed) .app-entry__headline,
.app-entry:not(.is-revealed) .app-entry__subhead {
  transform: translateX(calc(-50% - 28px));
}

.app-entry.is-revealed .app-entry__headline,
.app-entry.is-revealed .app-entry__subhead {
  opacity: 1;
  transform: translateX(-50%);
  clip-path: inset(0 0 0 0);
  transition-delay: 0s;
}

.app-entry:not(.is-revealed) .app-entry__headline,
.app-entry:not(.is-revealed) .app-entry__subhead {
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .app-entry .app-entry__headline,
  .app-entry .app-entry__subhead {
    opacity: 1;
    transform: translateX(-50%);
    clip-path: none;
    transition: none;
  }
}

.app-entry__headline {
  position: absolute;
  top: 183px;
  left: 50%;
  margin: 0;
  width: 585px;
  font-size: 51.2px;
  font-weight: 500;
  line-height: 70.4px;
  letter-spacing: -0.05em;
  text-align: center;
}

.app-entry__subhead {
  position: absolute;
  top: 257px;
  left: 50%;
  margin: 0;
  width: 608px;
  font-size: 28.8px;
  font-weight: 500;
  line-height: 70.4px;
  text-align: center;
}

.app-entry__actions {
  position: absolute;
  top: 623px;
  left: 30px;
  right: 30px;
  width: auto;
  margin-top: 0;
  gap: 0;
  justify-content: space-between;
  max-width: none;
}

.app-entry__actions a {
  width: 233px;
  min-height: 38.4px;
  border: 2px solid #01e89e;
  border-radius: var(--module-radius);
  color: #333333;
  background: #01e89e;
  text-align: center;
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.15s ease,
    transform 0.24s ease;
  transform-origin: center;
}

.app-entry__actions a::before,
.app-entry__actions a::after {
  display: none;
}

@media (hover: hover) {
  .app-entry__actions a:hover,
  .app-entry__actions a:focus-visible {
    border-color: #5af8c5;
    background: #5af8c5;
    box-shadow: 0 0 12px rgba(90, 248, 197, 0.45);
    transform: scale(1.08);
  }
}

.site-footer {
  min-height: 240px;
  margin-top: 0;
  color: #fff;
  background: var(--footer);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  min-height: 240px;
  align-items: center;
  padding-block: 0;
  padding-inline: 30px;
}

.site-footer h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 72px;
}

.site-footer p {
  margin: 0;
  color: #fff;
  font-size: calc(var(--module-body-size) - 2px);
  font-weight: 300;
  line-height: var(--module-body-line-height);
}

.footer-record {
  padding-top: 72px;
  text-align: right;
}

.footer-record p {
  color: #a7a7a7;
}

@media (max-width: 1500px) {
  :root {
    --container: min(1200px, calc(100vw - 64px));
  }

  .site-header {
    gap: 56px;
  }

  .main-nav {
    gap: 64px;
  }

}

@media (max-width: 1100px) {
  :root {
    --container: min(900px, calc(100vw - 40px));
  }

  .site-header {
    height: auto;
    min-height: 96px;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }

  .brand img {
    width: 144px;
    height: 63px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    overflow-x: auto;
    font-size: 16px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    padding-top: 0;
  }

  .hero__content {
    padding-top: 0;
  }

  .hero-actions,
  .app-entry__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 96px;
  }

  .about-card__body,
  .city-layout,
  .footer-layout {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .about-card__col {
    padding: 48px;
  }

  .about-copy--primary p {
    white-space: normal;
  }

  .about-card__body::after {
    display: none;
  }

  .city-layout {
    gap: 32px;
  }

  .city-map img {
    width: 100%;
    height: auto;
    aspect-ratio: 721 / 600;
  }

  .city-copy {
    padding-top: 0;
  }

  .city-status__row {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .city-status__desc {
    line-height: 1.5;
  }

  .product-image {
    height: auto;
  }

  .app-entry__headline,
  .app-entry__subhead {
    margin-left: 0;
  }

  .footer-record {
    padding-top: 0;
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100vw - 32px);
    --module-body-size: 18px;
    --module-body-line-height: 1.65;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.35;
  }

  .section-title,
  .app-entry h2 {
    font-size: 36px;
    line-height: 1.35;
  }

  .section-about .section-title {
    line-height: calc(1.35em + 8px);
  }

  .about-copy p,
  .about-list li,
  .product-lead,
  .news-card p,
  .site-footer p {
    line-height: var(--module-body-line-height);
  }

  .section-about .about-copy p,
  .section-about .about-list li {
    line-height: calc(1.65em + 8px);
  }

  .city-eyebrow {
    font-size: 28px;
    line-height: 1.35;
  }

  .city-copy h3 {
    margin-bottom: 32px;
    font-size: 22px;
    line-height: 1.45;
  }

  .city-tag {
    min-width: 56px;
    height: 28px;
  }

  .news-carousel {
    --news-card-width: min(270px, calc(100vw - 80px));
    --news-card-gap: 32px;
    --news-media-height: calc(var(--news-card-width) * 240 / 270);
  }

  .news-carousel__hint {
    width: 48px;
    height: 48px;
  }

  .news-carousel__hint-arrow {
    width: 36px;
    height: 36px;
  }

  .news-card h3,
  .news-card p,
  .news-card__action {
    margin-left: 20px;
  }

  .news-card p {
    margin-top: -20px;
  }

  .news-carousel__hint--next {
    right: 8px;
  }

  .news-carousel__hint--prev {
    left: 8px;
  }

  .news-card__media img {
    width: 100%;
    height: 100%;
  }

  .news-card h3 {
    line-height: 1.45;
    padding-top: 16px;
  }

  .news-card p {
    max-width: none;
  }

  .app-entry__headline {
    font-size: 48px;
    line-height: 1.1;
  }

  .app-entry__subhead {
    font-size: 28px;
    line-height: 1.35;
  }
}

/* Article detail (news secondary pages) */

.article-page {
  background: #fff;
  color: var(--text);
}

.article-detail {
  padding-top: calc(var(--header-offset) + 45px);
  padding-bottom: 100px;
}

.article-detail__inner {
  max-width: var(--container);
}

.article-detail__title {
  margin: 0 0 72px;
  text-align: center;
  color: var(--ink);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.article-section {
  margin-bottom: 72px;
}

.article-section:last-child {
  margin-bottom: 0;
}

.article-section__heading {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.article-section p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: var(--module-body-size);
  font-weight: var(--module-body-weight);
  line-height: var(--module-body-line-height);
  text-align: justify;
  text-justify: inter-ideograph;
}

.article-section p strong {
  font-weight: 600;
}

.article-detail__lead {
  margin: 0 0 48px;
  color: var(--text);
  font-size: var(--module-body-size);
  font-weight: var(--module-body-weight);
  line-height: var(--module-body-line-height);
  text-align: justify;
  text-justify: inter-ideograph;
}

.article-detail__lead p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: var(--module-body-size);
  font-weight: var(--module-body-weight);
  line-height: var(--module-body-line-height);
  text-align: justify;
  text-justify: inter-ideograph;
}

.article-detail__lead p:last-child {
  margin-bottom: 0;
}

.article-detail__lead strong {
  font-weight: 600;
}

.article-intro,
.article-outro {
  margin: 0 0 24px;
  color: var(--text);
  font-size: var(--module-body-size);
  font-weight: var(--module-body-weight);
  line-height: var(--module-body-line-height);
  text-align: justify;
  text-justify: inter-ideograph;
}

.article-intro strong,
.article-outro strong {
  font-weight: 600;
}

.article-detail__inner > .article-figure {
  margin: 0 0 72px;
}

.article-detail__inner > .article-figure:has(+ .article-figure__caption) {
  margin-bottom: 16px;
}

.article-detail__inner > .article-figure__caption {
  margin: 0 0 72px;
}

.article-section .article-figure {
  margin: 40px 0 0;
}

.article-section .article-figure:has(+ p) {
  margin-bottom: 56px;
}

.article-section .article-figure + p {
  line-height: 42px;
}

.article-section .article-detail__lead {
  margin-bottom: 48px;
}

.article-section .article-intro {
  margin: 0 0 24px;
  color: var(--text);
  font-size: var(--module-body-size);
  font-weight: var(--module-body-weight);
  line-height: var(--module-body-line-height);
  text-align: justify;
  text-justify: inter-ideograph;
}

.article-section .article-intro strong {
  font-weight: 600;
}

.article-section .article-outro {
  margin: 40px 0 0;
  color: var(--text);
  font-size: var(--module-body-size);
  font-weight: var(--module-body-weight);
  line-height: var(--module-body-line-height);
  text-align: justify;
  text-justify: inter-ideograph;
}

.article-section .article-outro strong {
  font-weight: 600;
}

.article-section .article-figure:has(+ .article-figure__caption) {
  margin-bottom: 0;
}

.article-figure__caption {
  margin: 16px 0 0;
  padding: 0;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.article-section .article-figure__caption,
.article-section p.article-figure__caption {
  margin: 16px 0 0;
  padding: 0;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-justify: auto;
}

.article-section p:last-child {
  margin-bottom: 0;
}

html:lang(en) .article-section p,
html:lang(en) .article-detail__lead p,
html:lang(en) .article-intro,
html:lang(en) .article-outro,
html:lang(en) .article-section .article-intro,
html:lang(en) .article-section .article-outro {
  line-height: 1.65;
}

html:lang(en) .article-section__heading {
  line-height: 1.4;
}

.article-figure {
  overflow: hidden;
  border-radius: 40px;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.news-card--linked {
  position: relative;
}

.news-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card__link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: var(--module-radius);
}

@media (max-width: 768px) {
  .article-detail {
    padding-top: calc(var(--header-offset) + 24px);
    padding-bottom: 68px;
  }

  .article-detail__title {
    margin-bottom: 40px;
    font-size: 32px;
  }

  .article-section {
    margin-bottom: 48px;
  }

  .article-section__heading {
    font-size: 22px;
  }

  .article-figure {
    margin-top: 24px;
    border-radius: var(--module-radius);
  }
}
