﻿:root {
  --primary: #366cff;
  --primary-deep: #2556df;
  --primary-soft: #dfe9ff;
  --ink-900: #1f2e47;
  --ink-700: #52637f;
  --ink-500: #7f8da7;
  --line: rgba(49, 89, 189, 0.12);
  --surface: #ffffff;
  --surface-soft: #f5f8ff;
  --shadow-lg: 0 32px 80px rgba(20, 44, 92, 0.12);
  --shadow-md: 0 18px 48px rgba(24, 48, 103, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --header-fg: rgba(255, 255, 255, 0.92);
  --header-muted: rgba(255, 255, 255, 0.52);
  --header-border: rgba(255, 255, 255, 0.18);
}

body[data-ui-theme="light"] {
  --header-fg: #243654;
  --header-muted: rgba(36, 54, 84, 0.4);
  --header-border: rgba(36, 54, 84, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  background: var(--surface-soft);
}

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

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

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

.site-grid {
  display: none;
}

.container {
  width: min(1280px, calc(100vw - 180px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.section,
.site-footer {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 0px;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.reveal:target {
  opacity: 1;
  transform: translateY(0);
}

.section.reveal,
.site-footer.reveal {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding: 20px 0 0;
  transition:
    padding 0.25s ease,
    transform 0.25s ease;
}

.site-header.is-solid .site-header__inner {
  background: rgba(10, 18, 34, 0.48);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(10, 18, 34, 0.14);
}

body[data-ui-theme="light"] .site-header.is-solid .site-header__inner {
  background: rgba(255, 255, 255, 0.78);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1360px, calc(100vw - 24px));
  min-height: 68px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.site-logo__mark {
  position: relative;
  display: block;
  width: 140px;
  height: 32px;
}

.site-logo__img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: auto;
  transition: opacity 0.25s ease;
}

.site-logo__img--dark {
  opacity: 0;
}

body[data-ui-theme="light"] .site-logo__img--light {
  opacity: 0;
}

body[data-ui-theme="light"] .site-logo__img--dark {
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav__item {
  position: relative;
  color: var(--header-fg);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.site-nav__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.site-nav__item:hover,
.site-nav__item.is-active {
  color: var(--header-fg);
  opacity: 1;
}

.site-nav__item:not(.is-active) {
  opacity: 0.62;
}

.site-nav__item.is-active::after {
  width: 18px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 50%;
  border: 1px solid var(--header-border);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.mobile-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--header-fg);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

.mobile-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: 100svh;
  background: #0b1628;
  color: #fff;
}

.hero__backdrop,
.hero__glow,
.about__bg,
.advantage__backdrop {
  position: absolute;
  inset: 0;
}

.hero__backdrop {
  background:
    /* linear-gradient(90deg, rgba(6, 13, 25, 0.88) 0%, rgba(9, 17, 31, 0.82) 28%, rgba(10, 19, 34, 0.34) 72%, rgba(10, 19, 34, 0.62) 100%), */ url("../image/hero-bg.jpg")
    no-repeat;
  background-position: inherit;
  background-size: cover;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 70% 24%,
      rgba(82, 132, 255, 0.18),
      transparent 28%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 25%);
}

.hero__glow {
  background: radial-gradient(
    circle at 72% 50%,
    rgba(52, 96, 255, 0.12),
    transparent 30%
  );
  filter: blur(10px);
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 150px 0 110px;
}

.hero__copy {
  /* max-width: 860px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__eyebrow,
.intro-card__eyebrow,
.scene-carousel__eyebrow,
.advantage__intro > p:first-child,
.section-heading > p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.hero h1 {
  margin: 22px 0 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  /* font-size: clamp(54px, 7.3vw, 98px); */
  font-size: 120px;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  margin-left: 1em;
}

.hero h1 span:nth-child(3) {
  margin-left: 2em;
}

.hero__text {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* min-width: 150px; */
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  line-height: 36px;
  text-align: center;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #4d83ff);
  box-shadow: 0 18px 40px rgba(45, 97, 255, 0.36);
}

.button--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.button--footer {
  margin-top: 28px;
}

.section-scroll {
  position: absolute;
  right: 68px;
  bottom: 172px;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* .section-scroll span {
  font-size: 11px;
  letter-spacing: 0.22em;
} */

.section-scroll img {
  width: 20px;
  height: 33px;
}

.section-scroll--light span {
  color: rgba(255, 255, 255, 0.76);
}

.section-scroll--dark span {
  color: rgba(36, 54, 84, 0.45);
}

.intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 100svh;
  /* background: #091322; */
}

.intro-card {
  position: relative;
  overflow: hidden;
}

.intro-card__bg,
.intro-card__mask {
  position: absolute;
  inset: 0;
}

/* .intro-card__bg {
  background-position: center;
  background-size: cover;
  transition: transform 0.8s ease;
} */

/* .intro-card:hover .intro-card__bg {
  transform: scale(1.04);
} */

.intro-card__mask {
  /* background: linear-gradient(
    180deg,
    rgba(7, 12, 24, 0.28),
    rgba(7, 12, 24, 0.72)
  ); */
}

.intro-card__mask--blue {
  /* background: linear-gradient(
    180deg,
    rgba(50, 92, 255, 0.26),
    rgba(33, 64, 179, 0.84)
  ); */
}

.intro-card__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 180px 78px 80px;
  color: #fff;
}

.intro-card__eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.intro-card h2 {
  margin: 22px 0 0;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.08;
}

.intro-card__lead {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.8;
}

.intro-card__body {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.95;
}

.intro-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.intro-card__tags span,
.scene-carousel__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
}

.intro-card__tags span {
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.scenes,
.ecosystem,
.about {
  background: linear-gradient(180deg, #fbfcff, #f3f7ff);
}

.scenes,
.ecosystem,
.advantage,
.about {
  padding: 120px 0 120px;
}

.section-heading {
  text-align: center;
}

.section-heading--left {
  text-align: left;
}

.section-heading > p {
  color: #c2cddd;
}

.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.18;
  color: #2a3a55;
}

.section-heading__text {
  max-width: 920px;
  margin: 22px auto 0;
  color: var(--ink-700);
  font-size: 18px;
  line-height: 1.95;
}

.section-heading--left .section-heading__text {
  margin-left: 0;
}

.scene-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  margin-top: 56px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.scene-carousel__media {
  position: relative;
  min-height: 660px;
  background:
    /* linear-gradient(90deg, rgba(8, 17, 33, 0.62), rgba(8, 17, 33, 0.08)), */ url("../image/service-bg.jpg")
    center / cover no-repeat;
  transition: background-image 0.35s ease;
}

.scene-carousel__card {
  position: absolute;
  left: 56px;
  bottom: 56px;
  z-index: 2;
  width: min(460px, calc(100% - 112px));
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.scene-carousel__card > p:first-child {
  margin: 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.scene-carousel__card h3 {
  margin: 16px 0 0;
  color: #253552;
  font-size: 34px;
  line-height: 1.2;
}

.scene-carousel__card p:last-child {
  margin: 18px 0 0;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.9;
}

.scene-carousel__content {
  padding: 78px 70px 64px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 255, 1)),
    url("../image/shape-bg.png") top right / 320px auto no-repeat;
}

.scene-carousel__eyebrow {
  color: var(--primary);
}

.scene-carousel__content h3 {
  margin: 22px 0 0;
  font-size: 36px;
  line-height: 1.28;
  color: #253552;
}

.scene-carousel__copy {
  margin: 22px 0 0;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.95;
}

.scene-carousel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.scene-carousel__chips span {
  color: #2a4cac;
  background: rgba(53, 108, 255, 0.08);
  border: 1px solid rgba(53, 108, 255, 0.16);
}

.scene-carousel__footer {
  margin-top: 44px;
}

.scene-carousel__pager {
  display: flex;
  align-items: center;
  gap: 14px;
}

.scene-carousel__button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(52, 89, 167, 0.18);
  color: #27417d;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(24, 48, 103, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.scene-carousel__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(24, 48, 103, 0.14);
}

.scene-carousel__counter {
  min-width: 58px;
  color: #2e4dd4;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.scene-carousel__counter small {
  margin-left: 8px;
  color: #8091b1;
  font-size: 18px;
  font-weight: 600;
}

.scene-carousel__progress {
  position: relative;
  height: 2px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(88, 112, 162, 0.16);
  overflow: hidden;
}

.scene-carousel__progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #7fa6ff);
  transition: width 0.28s ease;
}

.ecosystem {
  background:
    linear-gradient(180deg, #f6f9ff, #eef4ff),
    radial-gradient(
      circle at 20% 80%,
      rgba(92, 130, 255, 0.08),
      transparent 35%
    );
}

.advantage {
  background: #f6f8fd;
}

.advantage__backdrop {
  top: 0;
  bottom: auto;
  height: 320px;
  background:
    linear-gradient(180deg, rgba(17, 28, 44, 0.32), rgba(17, 28, 44, 0.12)),
    url("../image/advantage-bg.jpg") center top / cover no-repeat;
}

.advantage__panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  margin-top: 130px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.advantage__intro {
  padding: 56px 40px 52px;
  color: #fff;
  background: linear-gradient(180deg, #3468ff, #2b5de7);
}

.advantage__intro > p:first-child {
  color: rgba(255, 255, 255, 0.28);
}

.advantage__intro h2 {
  margin: 22px 0 0;
  font-size: 56px;
  line-height: 1.18;
}

.advantage__line {
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.advantage__intro-text {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 2;
}

.advantage__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(54, 108, 255, 0.08);
}

.advantage-card {
  min-height: 260px;
  padding: 48px 44px;
  background: rgba(255, 255, 255, 0.94);
}

.advantage-card img {
  width: 60px;
  height: 60px;
}

.advantage-card h3 {
  margin: 22px 0 0;
  color: #2a3a55;
  font-size: 34px;
}

.advantage-card p {
  margin: 18px 0 0;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.95;
}

.about {
  background:
    linear-gradient(180deg, rgba(251, 252, 255, 1), rgba(245, 248, 255, 1)),
    radial-gradient(
      circle at 85% 80%,
      rgba(84, 121, 255, 0.06),
      transparent 28%
    );
}

.about__bg {
  background:
    /* linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74)), */ url("../image/about-bg.jpg")
    right bottom / contain no-repeat;
  /* opacity: 0.34; */
}

.about__summary {
  position: relative;
  z-index: 2;
  /* max-width: 1020px; */
  margin: 30px 0 0;
  color: var(--ink-700);
  font-size: 18px;
  line-height: 2;
}

.about__values {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}

.about__value {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 16px;
}
.about__value:nth-child(3),
.about__value:nth-child(4) {
  margin-left: 4em;
}

.about__value span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #4c82ff);
}

.about__value p {
  margin: 0;
  padding-bottom: 12px;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.75;
  border-bottom: 2px solid rgba(54, 108, 255, 0.18);
}

.about__highlights {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 72px;
}

.about__highlight {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(20, 44, 92, 0.06);
}

.about__highlight strong {
  display: block;
  color: var(--primary-deep);
  font-size: 26px;
}

.about__highlight span {
  display: block;
  margin-top: 14px;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.9;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(21, 28, 38, 0.98), rgba(26, 34, 47, 0.98)),
    radial-gradient(
      circle at 15% 10%,
      rgba(67, 100, 204, 0.18),
      transparent 22%
    );
  color: rgba(255, 255, 255, 0.84);
  padding: 76px 0 30px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1.1fr) 220px;
  gap: 40px;
  align-items: start;
}

.site-footer__brand img {
  width: 105px;
  height: 24px;
}

.site-footer__brand h2 {
  margin: 26px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
}

.site-footer__brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.9;
}

.site-footer__contact h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 44px;
  font-size: 16px;
}

.site-footer__contact-grid article {
  padding-bottom: 28px;
  display: flex;
  align-items: center;
}

.site-footer__contact-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__contact-grid a,
.site-footer__contact-grid p {
  margin: 12px 0 0;
  color: #fff;
  line-height: 1.85;
}

.site-footer__contact-grid p {
  margin-top: 12px;
}

.site-footer__address {
  font-size: 16px;
  white-space: nowrap;
}

.site-footer__qr {
  justify-self: end;
}

.site-footer__qr-frame {
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.site-footer__qr-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.site-footer__qr p {
  max-width: 164px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.85;
}

.site-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__meta a {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1440px) {
  .container {
    width: min(1200px, calc(100vw - 130px));
  }

  .intro-card__content,
  .scene-carousel__content {
    padding-left: 54px;
    padding-right: 54px;
  }

  .advantage__intro h2 {
    font-size: 48px;
  }
}

@media (max-width: 1200px) {
  .container {
    width: calc(100vw - 72px);
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav__item {
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(52px, 6vw, 88px);
  }

  .scene-carousel {
    grid-template-columns: 1fr;
  }

  .scene-carousel__media {
    min-height: 520px;
  }

  .advantage__panel {
    grid-template-columns: 1fr;
  }

  .about__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__qr {
    justify-self: start;
  }
}

@media (max-width: 960px) {
  .site-grid,
  .site-nav {
    display: none;
  }

  .container {
    width: calc(100vw - 40px);
  }

  .site-header {
    padding-top: 16px;
  }

  .site-header__inner {
    width: calc(100vw - 20px);
    min-height: 58px;
    padding: 0 18px;
  }

  .site-logo__mark {
    width: 140px;
    height: 32px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    z-index: 5;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
    background: rgba(9, 17, 31, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  body[data-ui-theme="light"] .mobile-nav {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(36, 54, 84, 0.1);
  }

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

  .mobile-nav a {
    padding: 10px 0;
    color: var(--header-fg);
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  body[data-ui-theme="light"] .mobile-nav a {
    border-bottom-color: rgba(36, 54, 84, 0.08);
  }

  .section-scroll {
    display: none;
  }

  .hero__inner,
  .intro-card__content {
    padding-top: 136px;
  }

  .hero__inner {
    min-height: auto;
    padding-bottom: 88px;
  }

  .hero__copy,
  .intro-card__content {
    max-width: none;
  }

  .hero__text {
    font-size: 16px;
  }

  .intro {
    grid-template-columns: 1fr;
  }

  .intro-card {
    min-height: 680px;
  }

  .scene-carousel__content {
    padding: 44px 28px 36px;
  }

  .scene-carousel__card {
    left: 22px;
    right: 22px;
    width: auto;
    bottom: 22px;
    padding: 24px;
  }

  .scene-carousel__card h3,
  .scene-carousel__content h3,
  .site-footer__contact h3 {
    font-size: 28px;
  }

  .advantage__panel {
    margin-top: 72px;
  }

  .advantage__intro,
  .advantage-card {
    padding: 34px 26px;
  }

  .advantage__grid {
    grid-template-columns: 1fr;
  }

  .about__values,
  .about__highlights,
  .site-footer__contact-grid {
    grid-template-columns: 1fr;
  }

  .about__value {
    grid-template-columns: 1fr;
  }

  .site-footer__brand h2 {
    font-size: 32px;
  }

  .site-footer__meta {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100vw - 28px);
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 64px);
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .button {
    width: 100%;
  }

  .intro-card {
    min-height: 580px;
  }

  .intro-card__content {
    padding: 122px 24px 44px;
  }

  .intro-card__lead,
  .section-heading__text,
  .about__summary {
    font-size: 16px;
  }

  .scene-carousel__media {
    min-height: 420px;
  }

  .scene-carousel__counter {
    min-width: 74px;
    font-size: 17px;
  }

  .advantage__intro h2,
  .section-heading h2,
  .site-footer__brand h2 {
    font-size: 30px;
  }

  .about__highlight strong {
    font-size: 22px;
  }

  .site-footer {
    padding-top: 60px;
  }
}

/* Intro empowerment restoration from the provided visual reference. */
#intro.intro {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 100svh;
  padding: 0;
  background: url("../image/plan-bg.jpg") center / cover no-repeat #101820;
}

#intro .intro-card {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: transparent;
}

/* #intro .intro-card__bg {
  display: none;
}

#intro .intro-card--enterprise .intro-card__bg {
  filter: none;
}

#intro .intro-card--worker .intro-card__bg {
  filter: none;
}

#intro .intro-card:hover .intro-card__bg {
  transform: none;
} */

/* #intro .intro-card__mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 12, 0.62), rgba(8, 13, 18, 0.48)),
    linear-gradient(180deg, rgba(4, 8, 12, 0.54), rgba(4, 9, 15, 0.82));
} */

/* #intro .intro-card__mask--blue {
  background:
    linear-gradient(90deg, rgba(58, 101, 255, 0.92), rgba(56, 97, 242, 0.88)),
    linear-gradient(180deg, rgba(74, 116, 255, 0.9), rgba(39, 79, 224, 0.91));
} */

#intro .intro-card__content {
  position: absolute;
  z-index: 2;
  /* width: 368px; */
  max-width: none;
  padding: 0;
  color: #fff;
}

#intro .intro-card--enterprise .intro-card__content {
  top: 26.8%;
  left: 36.5%;
  right: auto;
}

#intro .intro-card--worker .intro-card__content {
  top: 26.8%;
  left: 8.2%;
}

#intro .intro-card__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.25);
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
 font-family: D-DIN Exp-DINExp, D-DIN Exp-DINExp;
  font-weight: bold;
}

#intro .intro-card h2 {
  margin: 20px 0 0;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  font-family:
    Alimama ShuHeiTi,
    Alimama ShuHeiTi;
  font-weight: bold;
}

#intro .intro-card__lead {
  margin: 72px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 60px;
}

#intro .intro-card__body {
  max-width: 388px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 32px;
}

#intro .intro-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 80px;
}

#intro .intro-card__tags span {
  padding: 12px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  font-size: 16px;
  line-height: 1;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
}

#intro .section-scroll {
  right: 68px;
  bottom: 93px;
}

@media (max-width: 960px) {
  #intro.intro {
    grid-template-columns: 1fr;
  }

  #intro .intro-card {
    min-height: 620px;
  }

  #intro .intro-card__content {
    top: 128px;
    left: 40px;
    right: auto;
    width: min(420px, calc(100vw - 80px));
  }
}

@media (max-width: 640px) {
  #intro .intro-card {
    min-height: 580px;
  }

  #intro .intro-card__content {
    top: 110px;
    left: 24px;
    width: calc(100vw - 48px);
  }

  #intro .intro-card__eyebrow {
    font-size: 22px;
  }

  #intro .intro-card h2 {
    font-size: 26px;
  }

  #intro .intro-card__lead {
    margin-top: 32px;
    font-size: 16px;
  }
}

/* Application scenarios restoration from the provided visual reference. */
#scenes.scenes {
  min-height: 100svh;
  padding: 0;
  background: #fff;
}

#scenes .container {
  /* width: min(720px, calc(100vw - 72px)); */
  min-height: max(657px, 100svh);
}

#scenes .section-heading {
  position: relative;
  z-index: 3;
  padding-top: 96px;
  text-align: left;
}

#scenes .section-heading > p:first-child {
  margin: 0;
  letter-spacing: 0;
  font-family:
    D-DIN Exp-DINExp,
    D-DIN Exp-DINExp;
  font-weight: bold;
  font-size: 48px;
  color: #a3b0bc;
  line-height: 48px;
}

#scenes .section-heading h2 {
  margin: 20px 0 0;
  letter-spacing: 0;
  font-family:
    Alimama ShuHeiTi,
    Alimama ShuHeiTi;
  font-weight: bold;
  font-size: 48px;
  color: #2c3e50;
  line-height: 64px;
}

#scenes .section-heading__text {
  max-width: none;
  margin: 40px 0;
  color: #758498;
  font-weight: 400;
  font-size: 20px;
  color: #687988;
  line-height: 20px;
}

#scenes .scene-carousel {
  position: relative;
  display: block;
  width: 100vw;
  min-height: 430px;
  margin: 22px 0 0 calc((100% - 100vw) / 2);
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding-bottom: 80px;
}

#scenes .scene-carousel__media {
  position: relative;
  min-height: 460px;
  background:
    /* linear-gradient(90deg, rgba(8, 12, 22, 0.82), rgba(8, 12, 22, 0.54) 45%, rgba(8, 12, 22, 0.42)), */ url("../image/decor-strip.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: initial;
  transition: background-image 0.35s ease;
}

#scenes .scene-carousel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(3, 9, 19, 0.18); */
  pointer-events: none;
}

#scenes .scene-carousel__card {
  position: absolute;
  left: max(36px, calc((100vw - 600px) / 4));
  bottom: -80px;
  z-index: 2;
  width: 600px;
  /* min-height: 300px; */
  padding: 44px;
  padding-bottom: 20px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 50, 85, 0.1);
}
/* 
#scenes .scene-carousel__card::after {
  content: "→";
  position: absolute;
  left: 24px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #31455e;
  font-size: 14px;
  line-height: 1;
  border: 1px dashed rgba(49, 69, 94, 0.42);
} */

#scenes .scene-carousel__card > p:first-child {
  margin: 0;
  font-family:
    D-DIN Exp-DINExp,
    D-DIN Exp-DINExp;
  font-weight: bold;
  font-size: 14px;
  color: #3263ff;
  line-height: 16px;
  letter-spacing: 0;
  margin-bottom: 20px;
}

#scenes .scene-carousel__card h3 {
  margin: 0px;
  color: #2a3b54;
  font-weight: 600;
  font-size: 24px;
  color: #2c3e50;
  line-height: 24px;
}

#scenes .scene-carousel__card :nth-child(3) {
  margin: 35px 0 20px;
  font-weight: 400;
  font-size: 20px;
  color: #687988;
  line-height: 40px;
}

#scenes .scene-carousel__content {
  display: none;
}

#scenes .scene-carousel__footer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 365px;
  height: 154px;
  margin: 0 0 0 max(36px, calc((100vw - 604px) / 2 + 452px));
}

#scenes .scene-carousel__pager {
  display: flex;
  align-items: center;
  gap: 7px;
}

#scenes .scene-carousel__button {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 0;
  border: 1px dashed rgba(49, 69, 94, 0.42);
  color: #33465e;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  line-height: 1;
  transition: none;
}

#scenes .scene-carousel__button:last-child {
  border-radius: 50%;
}

#scenes .scene-carousel__button:hover {
  transform: none;
  box-shadow: none;
}

#scenes .scene-carousel__arrow {
  transform: rotate(180deg);
}

#scenes .scene-carousel__counter {
  /* min-width: auto; */
  color: #2f65ff;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

#scenes .scene-carousel__counter small {
  margin-left: 0;
  color: #263a54;
  font-size: 13px;
  font-weight: 900;
}

#scenes .scene-carousel__counter small::before {
  content: " - ";
  color: #263a54;
}

#scenes .scene-carousel__progress {
  position: relative;
  width: 216px;
  height: 1px;
  margin: 0;
  border-radius: 0;
  background: #d9e1eb;
  overflow: visible;
}

#scenes .scene-carousel__progress span {
  display: block;
  /* width: 24px !important; */
  height: 1px;
  border-radius: 0;
  background: #293b54;
  transition: none;
}

#scenes .section-scroll {
  right: 68px;
  bottom: 145px;
}

@media (max-width: 960px) {
  #scenes .container {
    width: calc(100vw - 40px);
    min-height: auto;
  }

  #scenes .section-heading {
    padding-top: 74px;
  }

  #scenes .scene-carousel {
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }

  #scenes .scene-carousel__media {
    min-height: 430px;
  }

  #scenes .scene-carousel__card {
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
  }

  #scenes .scene-carousel__footer {
    width: 100%;
    height: 96px;
    margin-left: 0;
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  #scenes .section-heading > p:first-child {
    font-size: 23px;
  }

  #scenes .section-heading h2 {
    font-size: 25px;
  }

  #scenes .section-heading__text {
    font-size: 16px;
  }

  #scenes .scene-carousel__footer {
    gap: 18px;
  }

  #scenes .scene-carousel__progress {
    width: 120px;
  }
}

/* About/contact restoration from the provided visual reference. */
#about.about {
  min-height: 100svh;
  padding: 100px 0 50px;
  background: #f5f8fc;
}

/* #about .container {
  width: min(1035px, calc(100vw - 170px));
} */

#about .about__bg {
  background:
    /* linear-gradient(
      90deg,
      rgba(245, 248, 252, 0.98) 0%,
      rgba(245, 248, 252, 0.92) 36%,
      rgba(245, 248, 252, 0.52) 62%,
      rgba(245, 248, 252, 0.16) 100%
    ), */
    url("../image/about-bg.jpg") right 0px bottom / auto 100% no-repeat;
  opacity: 1;
}

#about .section-heading {
  text-align: left;
  font-weight: bold;
}

#about .section-scroll {
  bottom: 200px;
}
#about .section-heading > p {
  font-family: D-DIN Exp-DINExp, D-DIN Exp-DINExp;
  font-size: 48px;
  margin: 0;
  color: #a3b0bc;
  line-height: 1;
  letter-spacing: 0;
}

#about .section-heading h2 {
  margin: 20px 0 0;
  color: #2c3e50;
  line-height: 1;
  font-size: 48px;
}

#about .about__summary {
  /* max-width: 935px; */
  margin: 80px 0 0;
  /* color: #7c8b9b;
  font-size: 14px;
  line-height: 2.05;
  font-weight: 600; */

  font-weight: 400;
  font-size: 20px;
  color: #687988;
  line-height: 40px;
}

#about .about__values {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px 118px;
  /* max-width: 935px; */
  margin-top: 92px;
}

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

#about .about__value span {
  /* min-width: 82px; */
  /* min-height: 32px; */
  /* padding: 0 14px; */
  border-radius: 999px;
  background: linear-gradient(135deg, #376fff 0%, #2d60ff 100%);
  box-shadow: none;
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  white-space: nowrap;
}

#about .about__value p {
  min-height: 32px;
  margin: 0;
  padding: 0 0 7px;
  border-bottom: 2px solid rgba(55, 111, 255, 0.28);
  color: #7f8da0;
  font-size: 16px;
  line-height: 32px;
  white-space: nowrap;
}

#about .about__highlights {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 86px;
}

#about .about__highlight {
  min-height: 78px;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

#about .about__highlight strong {
  display: block;
  color: #3263ff;
  font-size: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

#about .about__highlight strong::before {
  font-size: 48px;
  line-height: 1;
}
.about__highlight:nth-child(1) strong::before,
.about__highlight:nth-child(2) strong::before,
.about__highlight:nth-child(3) strong::before {
  font-size: 58px !important;
}

#about .about__highlight strong::after {
  margin-left: 4px;
  font-size: 22px;
  line-height: 1;
  vertical-align: 0.45em;
}

#about .about__highlight span {
  display: block;
  margin-top: 8px;
  color: #aeb9c5;
  font-size: 0;
  line-height: 1.45;
  font-weight: 500;
}

#about .about__highlight span::before {
  font-size: 18px;
  white-space: pre-line;
}

#about .about__highlight:nth-child(1) strong::before {
  content: "17";
}

#about .about__highlight:nth-child(1) strong::after {
  content: "年";
}

#about .about__highlight:nth-child(1) span::before {
  content: "超17年公共服务\A行业经验";
}

#about .about__highlight:nth-child(2) strong::before {
  content: "300";
}

#about .about__highlight:nth-child(2) strong::after {
  content: "个+";
}

#about .about__highlight:nth-child(2) span::before {
  content: "超300个公共服务\A行业案例";
}

#about .about__highlight:nth-child(3) strong::before {
  content: "200";
}

#about .about__highlight:nth-child(3) strong::after {
  content: "个+";
}

#about .about__highlight:nth-child(3) span::before {
  content: "完全自主知识产权\A全面适配国产化";
}

#about .about__highlight:nth-child(4) strong::before,
#about .about__highlight:nth-child(5) strong::before,
#about .about__highlight:nth-child(6) strong::before {
  content: "亿";
}

#about .about__highlight:nth-child(4) strong::after,
#about .about__highlight:nth-child(5) strong::after,
#about .about__highlight:nth-child(6) strong::after {
  content: "级";
}

#about .about__highlight:nth-child(4) span::before {
  content: "积累超亿条\A公共服务原始数据";
}

#about .about__highlight:nth-child(5) span::before {
  content: "公共服务\A私域语料数据";
}

#about .about__highlight:nth-child(6) span::before {
  content: "服务企业和\A群众超亿次";
}

#contact.site-footer {
  padding: 52px 0 18px;
  background: #3d484f;
  color: rgba(255, 255, 255, 0.82);
}

#contact .site-footer__inner {
  display: grid;
  /* grid-template-columns: 382px minmax(0, 1fr) 132px; */
  gap: 68px;
  align-items: start;
}

#contact .site-footer__brand img {
  width: 105px;
  height: 24px;
}

#contact .site-footer__brand h2 {
  margin: 22px 0 0;
  padding-top: 33px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 20px;
  line-height: 1.3;

  font-family:
    Alimama ShuHeiTi,
    Alimama ShuHeiTi;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

#contact .site-footer__brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 16px;
  line-height: 1.7;
}

#contact .site-footer__contact h3 {
  margin: 0;
  padding: 0 0 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

#contact .site-footer__contact-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 0.8fr);
  gap: 17px 44px;
  padding-top: 34px;
  font-size: 14px;
}

#contact .site-footer__contact-grid article {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 0;
}

#contact .site-footer__contact-grid article:nth-child(3) {
  grid-column: 1 / -1;
}

#contact .site-footer__contact-grid span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.44);
  font-size: 16px;
  line-height: 1.7;
  white-space: nowrap;
}

#contact .site-footer__contact-grid a,
#contact .site-footer__contact-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

#contact .site-footer__address {
  white-space: nowrap;
}

#contact .site-footer__qr {
  justify-self: end;
  text-align: center;
}

#contact .site-footer__qr-frame {
  width: 112px;
  height: 112px;
  padding: 4px;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
}

#contact .site-footer__qr-image {
  border-radius: 0;
}

#contact .site-footer__qr p {
  /* max-width: 96px; */
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

#contact .site-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 58px;
  padding-top: 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 16px;
  line-height: 1.5;
}

#contact .site-footer__meta a {
  color: rgba(255, 255, 255, 0.58);
  &:hover {
    color: rgba(255, 255, 255, 1);
  }
}

@media (max-width: 1200px) {
  #about .container {
    width: calc(100vw - 72px);
  }

  #about .about__values {
    column-gap: 72px;
  }

  #contact .site-footer__inner {
    grid-template-columns: 320px minmax(0, 1fr) 112px;
    gap: 38px;
  }
}

@media (max-width: 960px) {
  #about.about {
    padding: 84px 0 70px;
  }

  #about .container {
    width: calc(100vw - 40px);
  }

  #about .about__summary {
    max-width: none;
    margin-top: 34px;
  }

  #about .about__values {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 44px;
  }

  #about .about__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 10px;
    margin-top: 54px;
  }

  #contact.site-footer {
    padding-top: 48px;
  }

  #contact .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  #contact .site-footer__contact-grid {
    grid-template-columns: 1fr;
  }

  #contact .site-footer__qr {
    justify-self: start;
  }

  #contact .site-footer__address {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  #about .container {
    width: calc(100vw - 28px);
  }

  #about .section-heading > p {
    font-size: 28px;
  }

  #about .section-heading h2 {
    font-size: 30px;
  }

  #about .about__value {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about__value:nth-child(3),
  .about__value:nth-child(4) {
    margin-left: 0;
  }
  #about .about__value p {
    white-space: normal;
  }

  #about .about__highlights {
    grid-template-columns: 1fr;
  }

  #contact .site-footer__brand h2 {
    font-size: 24px;
  }

  #contact .site-footer__contact-grid article {
    display: grid;
    gap: 4px;
  }

  #contact .site-footer__meta {
    flex-direction: column;
    margin-top: 42px;
  }
}

/* Advantage restoration from the provided visual reference. */
#advantage.advantage {
  min-height: 600px;
  padding: 0 0 120px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 253, 0.92)),
    #f6f9fd;
}

#advantage .advantage__backdrop {
  top: 0;
  height: 372px;
  background:
    /* linear-gradient(180deg, rgba(63, 80, 100, 0.5), rgba(119, 137, 158, 0.45)), */ url("../image/advantage-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: initial;
}

/* #advantage .container {
  width: min(1280px, calc(100vw - 156px));
} */

#advantage .advantage__panel {
  display: grid;
  /* grid-template-columns: 265px minmax(0, 1fr); */
  column-gap: 122px;
  align-items: start;
  /* margin-top: 20px; */
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

#advantage .section-scroll {
  bottom: 135px;
}

/* #advantage .advantage__panel::before {
  content: "";
  position: absolute;
  left: -95px;
  top: 118px;
  width: 205px;
  height: 390px;
  pointer-events: none;
  background:
    radial-gradient(circle at 0 65%, rgba(255, 255, 255, 0.95) 0 28px, transparent 29px),
    url("../image/decor-strip.jpg") left center / contain no-repeat;
  opacity: 0.46;
} */

#advantage .advantage__intro {
  min-width: 380px;
  padding: 40px;
  color: #fff;
  background: #3263ff;
  /* width: 266px; */
  height: 580px;
  /* margin-top: 60px; */
}

#advantage .advantage__intro > p:first-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
  /* letter-spacing: 0; */
  font-family:
    D-DIN Exp-DINExp,
    D-DIN Exp-DINExp;
  font-weight: bold;
  font-size: 48px;
  /* color: #FFFFFF; */
  line-height: 48px;
}

#advantage .advantage__intro h2 {
  margin: 20px 0 0;
  color: #fff;
  font-size: 48px;
  line-height: 1.52;
  font-weight: bold;
  /* letter-spacing: 0; */
}

#advantage .advantage__line {
  width: 60px;
  height: 3px;
  margin: 80px 0px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
}

#advantage .advantage__intro-text {
  color: rgba(255, 255, 255, 0.36);
  font-size: 20px;
  line-height: 2;
}

#advantage .advantage__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 50px;
  margin-top: 295px;
  background: transparent;
}

#advantage .advantage-card {
  position: relative;
  min-height: 126px;
  padding: 0 86px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-width: 450px;
}

#advantage .advantage-card::before {
  content: "compliance advantage";
  display: block;
  margin-bottom: 7px;
  color: #b8c3cf;
  font-size: 16px;
  line-height: 1.2;
}

#advantage .advantage-card img {
  position: absolute;
  top: -18px;
  right: 0;
  width: 100px;
  height: 100px;
  /* padding: 10px; */
  /* border: 1px dashed rgba(86, 96, 111, 0.55); */
  object-fit: contain;
}

#advantage .advantage-card h3 {
  margin: 0;
  color: #2c3e50;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}

#advantage .advantage-card p {
  margin: 6px 0 0;
  color: #687988;
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
}

@media (max-width: 1200px) {
  #advantage .container {
    width: min(822px, calc(100vw - 72px));
  }
}

@media (max-width: 960px) {
  #advantage.advantage {
    padding: 0 0 70px;
  }

  #advantage .container {
    width: calc(100vw - 40px);
  }

  #advantage .advantage__panel {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }

  #advantage .advantage__intro {
    width: min(350px, 100%);
  }

  #advantage .advantage__grid {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  #advantage .container {
    width: calc(100vw - 28px);
  }

  #advantage .advantage__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* Advantage card title row restoration. */
#advantage .advantage-card {
  min-width: 0;
  min-height: 0;
  padding: 0;
}

#advantage .advantage-card::before {
  display: none;
}

#advantage .advantage-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 100px;
}

#advantage .advantage-card__head p {
  color: #a3b0bc;
  margin:0;
  margin-bottom: 16px;
  line-height: 16px;
  font-family: D-DIN, D-DIN;
}

#advantage .advantage-card img {
  position: static;
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
}

#advantage .advantage-card h3 {
  flex: 1 1 auto;
}

#advantage .advantage-card p {
  /* margin-top: 22px; */
}

@media (max-width: 640px) {
  #advantage .advantage-card__head {
    gap: 14px;
    min-height: 82px;
  }

  #advantage .advantage-card img {
    flex-basis: 82px;
    width: 82px;
    height: 82px;
  }
}

/* Ecosystem structured layout. */
#ecosystem.ecosystem {
  min-height: 108svh;
  padding: 0;
  padding-top: 100px;
  padding-bottom: 170px;
  /* background:
    radial-gradient(circle at 20% 50%, rgba(91, 131, 255, 0.12), transparent 23%),
    radial-gradient(circle at 82% 50%, rgba(91, 131, 255, 0.12), transparent 23%),
    linear-gradient(180deg, #eef7ff 0%, #f6fbff 52%, #edf6fb 100%); */
  background:
      /* linear-gradient(180deg, rgba(239, 247, 255, 0.18), rgba(239, 247, 255, 0.05) 34%, rgba(239, 247, 255, 0.86) 82%, rgba(239, 247, 255, 0.98)), */ url("../image/service-bg.jpg")
    center bottom / cover no-repeat;
}

#ecosystem.ecosystem::before {
  content: none;
}

/* #ecosystem .ecosystem__service-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 210px;
  bottom: -36px;
  z-index: 0;
  opacity: 0.34;
  filter: saturate(0.62) brightness(1.18);
  pointer-events: none;
} */

/* #ecosystem .container {
  min-height: max(657px, 100svh);
} */

#ecosystem .section-heading {
  position: relative;
  z-index: 2;
  /* padding-top: 96px; */
  text-align: center;
}

#ecosystem .section-heading > p:first-child {
  /* position: absolute;
  top: 50px;
  left: 50%; */
  /* width: 100%; */
  margin-bottom: 20px;
  letter-spacing: 0;
  /* white-space: nowrap; */
  /* transform: translateX(-50%); */
  font-family:
    D-DIN Exp-DINExp,
    D-DIN Exp-DINExp;
  font-weight: bold;
  font-size: 48px;
  color: #dfe6ea;
  line-height: 48px;
}

#ecosystem .section-heading h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  letter-spacing: 0;

  font-family:
    Alimama ShuHeiTi,
    Alimama ShuHeiTi;
  font-weight: bold;
  font-size: 48px;
  color: #2c3e50;
  line-height: 48px;
}

#ecosystem .section-heading__text {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 40px auto 0;

  font-weight: 400;
  font-size: 20px;
  color: #687988;
  line-height: 20px;
  text-align: center;
}

.ecosystem-map {
  position: relative;
  z-index: 2;
  height: 470px;
  margin-top: 66px;
}

.ecosystem-map::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

/* .ecosystem-map::before {
  top: 30px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(121, 150, 184, 0.04), rgba(121, 150, 184, 0.16) 20%, rgba(121, 150, 184, 0.16) 86%, rgba(121, 150, 184, 0.04));
} */

.ecosystem-map::after {
  left: 50%;
  top: 186px;
  width: 1060px;
  height: 360px;
  border-bottom: 2px dashed rgba(69, 113, 255, 0.34);
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
}

.ecosystem-map__bg {
  position: absolute;
  left: 50%;
  top: 78px;
  z-index: 0;
  width: 766px;
  height: 222px;
  background: url("../image/shape-bg.png") center / contain no-repeat;
  transform: translateX(-50%);
}

.ecosystem-map__bg::before,
.ecosystem-map__bg::after {
  content: "";
  position: absolute;
  top: -44px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    rgba(94, 137, 255, 0.13),
    rgba(94, 137, 255, 0.05) 48%,
    transparent 70%
  );
  /* background: linear-gradient( 90deg, rgba(235,240,255,0) 0%, #EBF0FF 100%); */
  filter: blur(2px);
}

.ecosystem-map__bg::before {
  left: -270px;
}

.ecosystem-map__bg::after {
  right: -270px;
  background: linear-gradient(
    270deg,
    rgba(94, 137, 255, 0.13),
    rgba(94, 137, 255, 0.05) 48%,
    transparent 74%
  );
}

.ecosystem-map__exchange {
  /* position: absolute;
  left: 50%;
  top: 74px;
  z-index: 1;
  width: 640px;
  height: 184px;
  background:
    linear-gradient(90deg, rgba(211, 224, 255, 0.78), rgba(244, 248, 255, 0.88) 50%, rgba(211, 224, 255, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(194, 213, 255, 0.2));
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
  transform: translateX(-50%); */
}

.ecosystem-map__role {
  position: absolute;
  top: 121px;
  z-index: 3;
  /* width: 150px; */
  color: #30445e;
}

.ecosystem-map__role--enterprise {
  left: 100px;
}

.ecosystem-map__role--worker {
  right: 100px;
}

.ecosystem-map__role h3 {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  color: #2c3e50;
  line-height: 36px;
  text-align: center;
}

.ecosystem-map__role ul {
  display: grid;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.ecosystem-map__role li {
  font-weight: 400;
  font-size: 18px;
  color: #2c3e50;
  line-height: 24px;
  text-align: center;
}

.ecosystem-map__platform {
  position: absolute;
  left: 50%;
  top: 46px;
  z-index: 4;
  width: 650px;
  height: 286px;
  transform: translateX(-50%);
}

.ecosystem-map__core {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 5;
  width: 290px;
  height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  background: url("../image/circle-core.png") center / cover no-repeat;
  /* box-shadow:
    0 24px 62px rgba(52, 101, 240, 0.34),
    inset 0 0 24px rgba(255, 255, 255, 0.18); */
  transform: translateX(-50%);
}

.ecosystem-map__core span {
  display: block;
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
}

.ecosystem-map__core strong {
  display: block;
  margin-top: 15px;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 800;
}

.ecosystem-map__flow {
  position: absolute;
  top: 85px;
  z-index: 6;
  display: grid;
  /* gap: 28px; */
  /* width: 140px; */

  font-weight: 400;
  font-size: 18px;
  color: #687988;
  line-height: 60px;
  text-align: center;
}

.ecosystem-map__flow--left {
  left: 0px;
}

.ecosystem-map__flow--right {
  right: 20px;
}

.ecosystem-map__flow > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ecosystem-map__flow--right {
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 7px;
  row-gap: 22px;
}

.ecosystem-map__flow--right > span:nth-child(3) {
  grid-column: 1;
  line-height: 30px;
  justify-self: flex-end;
}

.ecosystem-map__arrow {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background: url("../image/arrow-decor.png") center / contain no-repeat;
}

.ecosystem-map__arrow--left {
  transform: rotate(180deg);
}

.ecosystem-map__arrow--right {
  transform: none;
}

/* .ecosystem-map__invoice::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px dashed rgba(50, 107, 255, 0.72);
  background: rgba(255, 255, 255, 0.32) url("../image/arrow-decor.png") center / 12px auto no-repeat;
} */

.ecosystem-map__tax {
  position: absolute;
  left: 50%;
  top: 328px;
  z-index: 5;
  /* width: 282px; */
  text-align: center;
  transform: translateX(-50%);
}

.ecosystem-map__tax > span {
  position: absolute;
  left: 50%;
  top: 12px;
  /* width: 98px; */
  height: 109px;
  padding-top: 38px;
  text-align: center;
  background: url("../image/arrow-bg.png") center / contain no-repeat;
  transform: translateX(-50%);
  font-weight: 400;
  font-size: 18px;
  color: #687988;
  line-height: 24px;
}

.ecosystem-map__tax-panel {
  margin: 125px 0 0;
  padding: 16px 24px;
  /* width: 326px; */
  /* height: 116px; */
  background: linear-gradient(360deg, rgba(235, 240, 255) 0%, #ebf0ff 100%);
  /* background: linear-gradient(90deg, rgba(235, 240, 255, 0) 0%, #ebf0ff 100%); */
  border-radius: 8px 8px 8px 8px;
}

.ecosystem-map__tax h3 {
  margin: 0;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 24px;
  color: #2c3e50;
  line-height: 36px;
  text-align: center;
  font-style: normal;
}

.ecosystem-map__tax p {
  display: inline-grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 24px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #2c3e50;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

@media (max-width: 960px) {
  #ecosystem.ecosystem {
    padding: 0 0 70px;
  }

  #ecosystem .container {
    width: calc(100vw - 40px);
    min-height: auto;
  }

  #ecosystem .section-heading {
    padding-top: 70px;
  }

  .ecosystem-map {
    height: auto;
    margin-top: 36px;
    display: grid;
    gap: 22px;
  }

  .ecosystem-map::before,
  .ecosystem-map::after,
  .ecosystem-map__bg,
  .ecosystem-map__exchange {
    display: none;
  }

  .ecosystem-map__platform,
  .ecosystem-map__role,
  .ecosystem-map__tax {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .ecosystem-map__platform {
    order: 1;
    height: 330px;
  }

  .ecosystem-map__role {
    padding: 24px 26px;
    border: 1px solid rgba(78, 116, 190, 0.14);
    background: rgba(255, 255, 255, 0.66);
  }

  .ecosystem-map__role--enterprise {
    order: 2;
  }

  .ecosystem-map__role--worker {
    order: 3;
  }

  .ecosystem-map__tax {
    order: 4;
    padding-top: 96px;
  }

  .ecosystem-map__tax > span {
    top: 0;
  }
}

@media (max-width: 640px) {
  #ecosystem .container {
    width: calc(100vw - 28px);
  }

  #ecosystem .section-heading > p:first-child {
    font-size: 20px;
  }

  #ecosystem .section-heading h2 {
    font-size: 24px;
  }

  .ecosystem-map__platform {
    height: 390px;
  }

  .ecosystem-map__core {
    top: 34px;
    width: 170px;
    height: 170px;
  }

  .ecosystem-map__core span {
    font-size: 26px;
  }

  .ecosystem-map__core strong {
    font-size: 19px;
  }

  .ecosystem-map__flow {
    top: 244px;
    width: calc(50% - 18px);
    /* width: auto; */
    gap: 16px;
  }

  .ecosystem-map__flow--right > span:nth-child(1) {
    justify-self: flex-end;
  }

  .ecosystem-map__flow--left {
    left: 0;
  }

  .ecosystem-map__flow--right {
    right: 0;
  }
}

/* Mobile launch compatibility overrides. Keep desktop styles untouched. */
@media (max-width: 960px) {
  html,
  body {
    overflow-x: hidden;
  }

  .section,
  .site-footer {
    scroll-margin-top: 0;
  }

  .site-header {
    padding-top: 12px;
  }

  .site-header__inner {
    width: calc(100vw - 24px);
    min-height: 56px;
    padding: 0 16px;
  }

  .mobile-nav {
    top: 72px;
    left: 12px;
    right: 12px;
    border-radius: 16px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__inner {
    min-height: 100svh;
    padding: 116px 0 72px;
  }

  .hero h1 {
    align-items: center;
    font-size: clamp(40px, 10vw, 68px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .hero h1 span:nth-child(2),
  .hero h1 span:nth-child(3) {
    margin-left: 0;
  }

  #intro.intro {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  #intro .intro-card {
    min-height: auto;
  }

  #intro .intro-card__content {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    min-height: 560px;
    padding: 110px 40px 64px;
  }

  #intro .intro-card--enterprise .intro-card__content,
  #intro .intro-card--worker .intro-card__content {
    top: auto;
    left: auto;
  }

  #intro .intro-card__eyebrow,
  #scenes .section-heading > p:first-child,
  #ecosystem .section-heading > p:first-child,
  #about .section-heading > p {
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1.1;
  }

  #intro .intro-card h2,
  #scenes .section-heading h2,
  #ecosystem .section-heading h2,
  #about .section-heading h2 {
    font-size: clamp(30px, 7vw, 42px);
    line-height: 1.24;
  }

  #intro .intro-card__lead {
    margin-top: 36px;
    font-size: clamp(20px, 5vw, 26px);
    line-height: 1.65;
  }

  #intro .intro-card__body {
    max-width: none;
    font-size: 15px;
    line-height: 1.9;
  }

  #intro .intro-card__tags {
    margin-top: 34px;
    gap: 10px;
  }

  #intro .intro-card__tags span {
    min-height: 34px;
    padding: 9px 12px;
    font-size: 14px;
  }

  #scenes .container,
  #ecosystem .container,
  #about .container,
  #contact .container {
    width: calc(100vw - 40px);
  }

  #scenes .section-heading,
  #ecosystem .section-heading {
    padding-top: 76px;
    text-align: left;
  }

  #scenes .section-heading__text,
  #ecosystem .section-heading__text {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }

  #scenes .scene-carousel {
    width: 100%;
    margin: 32px 0 0;
    padding-bottom: 28px;
  }

  #scenes .scene-carousel__media {
    min-height: 520px;
    border-radius: 8px;
    overflow: hidden;
  }

  #scenes .scene-carousel__card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    min-height: auto;
    padding: 24px;
  }

  #scenes .scene-carousel__card :nth-child(3) {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 1.8;
  }

  #scenes .scene-carousel__footer {
    width: 100%;
    height: auto;
    margin: 26px 0 0;
    justify-content: space-between;
    gap: 18px;
  }

  #scenes .scene-carousel__progress {
    flex: 1;
    width: auto;
    min-width: 120px;
  }

  #ecosystem.ecosystem {
    min-height: 0;
    padding: 78px 0 82px;
    background-position: center bottom;
  }

  .ecosystem-map {
    height: auto;
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ecosystem-map::after,
  .ecosystem-map__bg,
  .ecosystem-map__exchange {
    display: none;
  }

  .ecosystem-map__platform,
  .ecosystem-map__role,
  .ecosystem-map__tax {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .ecosystem-map__platform {
    order: 2;
    height: 360px;
    border-radius: 8px;
    background: rgba(235, 240, 255, 0.58);
  }

  .ecosystem-map__role {
    padding: 22px 24px;
    border: 1px solid rgba(78, 116, 190, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
  }

  .ecosystem-map__role--enterprise {
    order: 1;
  }

  .ecosystem-map__role--worker {
    order: 3;
  }

  .ecosystem-map__role h3,
  .ecosystem-map__role li {
    text-align: left;
  }

  .ecosystem-map__role ul {
    gap: 12px;
    margin-top: 18px;
  }

  .ecosystem-map__core {
    top: 34px;
    width: 210px;
    height: 210px;
  }

  .ecosystem-map__flow {
    top: 260px;
    width: calc(50% - 18px);
    font-size: 14px;
    line-height: 1.45;
  }

  .ecosystem-map__flow--left {
    left: 18px;
  }

  .ecosystem-map__flow--right {
    right: 18px;
  }

  .ecosystem-map__tax {
    order: 4;
    padding-top: 96px;
  }

  .ecosystem-map__tax > span {
    top: 0;
    font-size: 15px;
  }

  .ecosystem-map__tax-panel {
    margin-top: 24px;
    padding: 18px 16px;
  }

  .ecosystem-map__tax p {
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 15px;
  }

  #advantage.advantage {
    padding: 0 0 76px;
  }

  #advantage .container {
    width: calc(100vw - 40px);
  }

  #advantage .advantage__panel {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  #advantage .advantage__intro {
    min-width: 0;
    width: 100%;
    height: auto;
    padding: 34px 28px;
  }

  #advantage .advantage__intro > p:first-child,
  #advantage .advantage__intro h2 {
    font-size: clamp(30px, 7vw, 42px);
    line-height: 1.25;
  }

  #advantage .advantage__line {
    margin: 36px 0;
  }

  #advantage .advantage__intro-text {
    font-size: 16px;
    line-height: 1.9;
  }

  #advantage .advantage__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 0;
  }

  #advantage .advantage-card {
    min-width: 0;
  }

  #about.about {
    min-height: 0;
    padding: 76px 0;
  }

  #about .about__bg {
    background:
      /* linear-gradient(
        180deg,
        rgba(245, 248, 252, 0.95),
        rgba(245, 248, 252, 0.9)
      ), */
      url("../image/about-bg.jpg") center bottom / cover no-repeat;
  }

  #about .about__summary {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.9;
  }

  #about .about__values {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 38px;
  }

  #about .about__value {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #about .about__value p {
    white-space: normal;
  }

  #about .about__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
    margin-top: 46px;
  }

  #contact .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #contact .site-footer__brand h2 {
    text-align: left;
    line-height: 1.35;
  }

  #contact .site-footer__contact-grid {
    grid-template-columns: 1fr;
  }

  #contact .site-footer__contact-grid article {
    display: grid;
    gap: 4px;
  }

  #contact .site-footer__address {
    white-space: normal;
  }

  #contact .site-footer__qr {
    justify-self: start;
  }

  #contact .site-footer__meta {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .container,
  #scenes .container,
  #ecosystem .container,
  #advantage .container,
  #about .container,
  #contact .container {
    width: calc(100vw - 28px);
  }

  .site-logo__mark {
    width: 120px;
    height: 28px;
  }

  .hero__inner {
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .hero__actions {
    width: 100%;
  }

  .button {
    min-width: 0;
    width: 100%;
  }

  #intro .intro-card__content {
    min-height: 560px;
    padding: 96px 22px 46px;
  }

  #intro .intro-card__eyebrow {
    font-size: 24px;
  }

  #intro .intro-card h2,
  #scenes .section-heading h2,
  #ecosystem .section-heading h2,
  #about .section-heading h2 {
    font-size: 28px;
  }

  #intro .intro-card__lead {
    margin-top: 28px;
    font-size: 18px;
  }

  #scenes .scene-carousel__media {
    min-height: 470px;
  }

  #scenes .scene-carousel__card {
    left: 12px;
    right: 12px;
    padding: 20px;
  }

  #scenes .scene-carousel__footer {
    align-items: center;
  }

  .ecosystem-map__platform {
    height: 390px;
  }

  .ecosystem-map__core {
    width: 170px;
    height: 170px;
  }

  .ecosystem-map__core span {
    font-size: 24px;
  }

  .ecosystem-map__core strong {
    font-size: 17px;
  }

  .ecosystem-map__flow {
    top: 238px;
    width: calc(50% - 16px);
    font-size: 13px;
  }

  .ecosystem-map__flow--left {
    left: 12px;
  }

  .ecosystem-map__flow--right {
    right: 12px;
  }

  .ecosystem-map__arrow {
    width: 18px;
    height: 18px;
  }

  #advantage .advantage-card__head {
    gap: 12px;
    min-height: 76px;
  }

  #advantage .advantage-card img {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  #about .about__highlights {
    grid-template-columns: 1fr;
  }
}
