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

body {
  position: relative;
  margin: 0;
  min-width: 1000px;
  min-height: 100vh;
  padding-top: 77px;
  font-family:
    "Inter",
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
  color: var(--text);
  background-color: #f5f9ff;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1927 / 1010;
  background-image: url("./assets/hero-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-bg-grid {
  display: none;
}

.hero-bg-glow {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  isolation: isolate;
  padding: 18px 0;
  background: transparent;
}

/* 与 header2025 合并导航时仍保持 GEO 顶栏透明底，不套用主站 .header 实色背景 */
.site-header.site-header--xlb-menus {
  background: transparent;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(249, 252, 255, 0.6) 0%, rgba(247, 247, 255, 0.8) 100%);
  border-bottom: 1.5px solid rgba(250, 252, 255, 1);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  opacity: 0;
  transition: opacity 0.62s cubic-bezier(0.22, 0.78, 0.2, 1);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.site-header .container {
  position: relative;
  z-index: 1;
  width: calc(100% - 112px);
  max-width: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 100px;
  height: 32px;
  flex: 0 0 100px;
  flex-shrink: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  background: #e73331;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.brand-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #2f3a52;
}

.main-nav > a {
  width: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-text-16);
  line-height: var(--size-text-line-height-26);
  font-weight: var(--size-text-regular);
}

.main-nav .down {
  color: #93a0bc;
}

.main-nav .nav-icon {
  margin-left: 2px;
  font-size: 12px;
  color: #93a0bc;
  vertical-align: 1px;
}

.main-nav .nav-item-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.main-nav .nav-item-with-icon .nav-icon {
  width: 16px;
  height: 16px;
  margin-left: 0;
  font-size: 16px;
  line-height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.hero {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}

/* XLB 同款导航 + GEO 顶栏高度（含 padding）时首屏留白 */
body:has(.site-header.site-header--xlb-menus) .hero {
  padding-top: 110px;
}

@media screen and (max-width: 1650px) {
  body:has(.site-header.site-header--xlb-menus) .hero {
    padding-top: 108px;
  }
}

@media screen and (max-width: 1420px) {
  body:has(.site-header.site-header--xlb-menus) .hero {
    padding-top: 104px;
  }
}

.hero-main {
  text-align: center;
  margin-top: 0px;
  opacity: 1;
  transform: translateY(120px);
}

.hero-main.is-reveal-main {
  animation: heroMainEnter 1480ms cubic-bezier(0.35, 0.6, 0.4, 1) both;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-main .tag-row {
  --hero-tag-stagger: 70ms;
  --hero-tag-duration: 520ms;
  opacity: 1;
  animation: none;
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
}

.hero-main .tag-row .tag {
  opacity: 0;
  transform: none;
  will-change: opacity;
  animation: heroTagItemRevealLeft var(--hero-tag-duration) cubic-bezier(0.22, 0.74, 0.22, 1)
    both;
}

.hero-main .tag-row .tag:nth-child(1) {
  animation-delay: calc(var(--hero-tag-stagger) * 0);
}
.hero-main .tag-row .tag:nth-child(2) {
  animation-delay: calc(var(--hero-tag-stagger) * 1);
}
.hero-main .tag-row .tag:nth-child(3) {
  animation-delay: calc(var(--hero-tag-stagger) * 2);
}
.hero-main .tag-row .tag:nth-child(4) {
  animation-delay: calc(var(--hero-tag-stagger) * 3);
}
.hero-main .tag-row .tag:nth-child(5) {
  animation-delay: calc(var(--hero-tag-stagger) * 4);
}
.hero-main .tag-row .tag:nth-child(6) {
  animation-delay: calc(var(--hero-tag-stagger) * 5);
}

.hero-title .hero-title-char {
  display: inline-block;
  opacity: 0;
  filter: blur(9px);
  transform: translateY(12px);
  will-change: transform, opacity, filter;
}

.hero-title:not(.is-reveal-active) {
  opacity: 0;
}

.hero-title.is-reveal-active {
  opacity: 1;
}

.hero-title.is-reveal-active .hero-title-char {
  animation: heroTitleCharBlurIn 560ms cubic-bezier(0.2, 0.74, 0.2, 1) both;
  animation-delay: var(--hero-char-delay, 0ms);
}

.hero-subtitle,
.hero-actions {
  opacity: 0;
  transform: translateY(14px);
}

.hero-subtitle.is-reveal-subtitle,
.hero-actions.is-reveal-actions {
  animation: heroElementFadeUp 620ms cubic-bezier(0.2, 0.74, 0.2, 1) both;
}

.hero-subtitle.is-reveal-subtitle {
  animation: heroSubtitleFadeIn 820ms cubic-bezier(0.22, 0.78, 0.2, 1) both;
}

.hero-actions.is-reveal-actions {
  animation: heroActionsFadeUp 860ms cubic-bezier(0.22, 0.78, 0.2, 1) both;
}

.dashboard-card {
  opacity: 0;
  transform: translateY(40px);
}

.dashboard-card.is-reveal-dashboard {
  animation: heroDashboardSoftIn 820ms cubic-bezier(0.22, 0.78, 0.2, 1) both;
}

@keyframes heroTagItemRevealLeft {
  from {
    opacity: 0;
    transform: none;
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroTagRowBaseIn {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroTitleCharBlurIn {
  from {
    opacity: 0;
    filter: blur(9px);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroElementFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSubtitleFadeIn {
  from {
    opacity: 0;
    transform: none;
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroActionsFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDashboardSoftIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMainEnter {
  from {
    opacity: 1;
    transform: translateY(120px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDashboardFadeUp {
  from {
    opacity: 0.16;
    transform: translateY(32px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroDashboardSweep {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(620%);
  }
}

.tag {
  position: relative;
  height: auto;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.52) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 1px 4px rgba(70, 90, 140, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px) saturate(135%);
  -webkit-backdrop-filter: blur(10px) saturate(135%);
  color: var(--color-text-light-black);
  font-size: var(--size-text-14);
  line-height: var(--size-text-line-height-22);
  font-weight: var(--size-text-regular);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.tag::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 8px;
  right: 8px;
  height: 45%;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.platform-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.hero-title {
  margin: 22px 0 0;
  font-size: 60px;
  letter-spacing: 1px;
  line-height: 80px;
  font-weight: 600;
  color: var(--color-text-black);
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;

}

.highlight {
  display: inline-flex;
}

.highlight-char {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight-you {
  background-image: linear-gradient(135deg, #296dff 16%, #5653ff 81%);
}

.highlight-xian {
  background-image: linear-gradient(135deg, #5960ff 19%, #784eff 85%);
}

.highlight-tui {
  background-image: linear-gradient(135deg, #814ffc 19%, #b857ee 85%);
}

.highlight-jian {
  background-image: linear-gradient(135deg, #ba57ed 19%, #ff4de2 85%);
}

.hero-subtitle {
  margin: 14px 0 0;
  color: var(--color-text-black);
}

.subtitle-highlight {
  background-image: linear-gradient(101deg, #3276ff 4%, #794eff 49%, #ff61da 99%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-actions .btn {
  width: 160px;
  min-width: 160px;
  height: 52px;
}

.hero-actions .btn.btn-l {
  width: 160px;
  min-width: 160px;
  height: 52px;
}

/* 首屏「下载试用」「观看视频」均为 16px */
.hero-actions .btn-primary.btn-l,
.hero-actions .btn-tertiary.btn-l {
  font-size: var(--size-text-16);
  line-height: var(--size-text-line-height-26);
  gap: 6px;
}

/* 压过 .btn-primary.btn-l / .btn-l，保证两颗按钮同为 16px */
main.hero .hero-actions a#hero-download-trial.btn-primary.btn-l,
main.hero .hero-actions a#hero-watch-video.btn-tertiary.btn-l {
  font-size: var(--size-text-16);
  line-height: var(--size-text-line-height-26);
}

/* 首屏「观看视频」弹窗（短视频小窗） */
.hero-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(24px, 4vw);
  box-sizing: border-box;
}

.hero-video-lightbox[hidden] {
  display: none !important;
}

.hero-video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.55);
  cursor: pointer;
}

.hero-video-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-width: min(94vw, 960px);
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 24px 48px rgba(37, 41, 49, 0.22);
}

.hero-video-lightbox__video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.hero-video-lightbox__x {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-lightbox__x:hover {
  background: rgba(0, 0, 0, 0.65);
}

.panel-wrap {
  width: min(1200px, calc(100% - 96px));
  margin-top: 88px;
  padding-bottom: 36px;
}

.dashboard-card {
  position: relative;
  isolation: isolate;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -26%;
  width: 22%;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 45%,
    rgba(255, 255, 255, 0.52) 50%,
    rgba(255, 255, 255, 0.16) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translate3d(0, 0, 0);
  animation: none;
}

.dashboard-image {
  width: 96%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.insight-section {
  margin-top: 96px;
  padding: 36px 0 140px;
  background: linear-gradient(180deg, #f5f9ff 0%, #eef4ff 100%);
}

.insight-section .insight-scroll-item {
  opacity: 0;
  transform: translateY(22px);
}

.insight-section .insight-title.insight-scroll-item {
  opacity: 1;
  transform: none;
}

.insight-section .insight-title .insight-title-char {
  display: inline-block;
  opacity: 0;
  filter: blur(9px);
  transform: translateY(12px);
  will-change: transform, opacity, filter;
}

.insight-section .insight-scroll-item.is-inview {
  animation: insightElementIn 620ms cubic-bezier(0.2, 0.74, 0.2, 1) both;
  animation-delay: var(--insight-delay, 0ms);
}

.insight-section .insight-title.insight-scroll-item.is-inview {
  animation: none;
}

.insight-section .insight-title.insight-scroll-item.is-inview .insight-title-char {
  animation: heroTitleCharBlurIn 560ms cubic-bezier(0.2, 0.74, 0.2, 1) both;
  animation-delay: calc(var(--insight-delay, 0ms) + var(--insight-char-delay, 0ms));
}

@keyframes insightElementIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.insight-inner {
  width: calc(100% - 280px);
  max-width: none;
  text-align: center;
}

.insight-title {
  margin: 0;
  color: var(--color-text-black);
  font-size: clamp(var(--size-text-36), 2.9vw, var(--size-text-44));
  line-height: clamp(
    var(--size-text-line-height-44),
    3.4vw,
    var(--size-text-line-height-52)
  );
  font-weight: var(--size-text-bold);
}

.insight-subtitle {
  margin: 12px 0 0;
  color: var(--color-text-gray);
}

.insight-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 280px));
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.insight-column {
  width: 100%;
  min-width: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-card {
  width: 100%;
  min-width: 0;
  max-width: none;
  min-height: 204px;
  padding: 20px;
  border-radius: var(--s-radius-l);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-box-down-normal);
  text-align: left;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.feature-icon-image {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
}

.feature-icon-blue {
  color: #3276ff;
  background: linear-gradient(180deg, #edf3ff 0%, #f7faff 100%);
}

.feature-icon-violet {
  color: #6a56ff;
  background: linear-gradient(180deg, #f1edff 0%, #faf8ff 100%);
}

.feature-icon-indigo {
  color: #5f77ff;
  background: linear-gradient(180deg, #edf2ff 0%, #f8faff 100%);
}

.feature-icon-purple {
  color: #8f5cff;
  background: linear-gradient(180deg, #f5efff 0%, #fcf9ff 100%);
}

.insight-card h3 {
  margin: 0;
  color: var(--color-text-black);
}

.insight-card p {
  margin: 12px 0 0;
  color: var(--color-text-gray);
}

.metric-card {
  width: 100%;
  padding: 16px 18px 14px;
  border-radius: var(--s-radius-l);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-box-down-normal);
  text-align: center;
}

.metric-card strong {
  display: inline-block;
  color: #7653ff;
}

.metric-card strong.metric-gradient-text {
  display: inline-block;
  background-image: linear-gradient(104deg, #3276ff 5%, #794eff 49%, #ff61da 98%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.metric-card p {
  margin: 4px 0 0;
  color: var(--color-text-black);
}

.brand-expression-section {
  padding: 120px 0 120px;
  background: #fff;
}

.brand-expression-section .brand-scroll-item {
  opacity: 0;
  transform: translateY(24px);
}

.brand-expression-section .brand-expression-title.brand-scroll-item {
  opacity: 1;
  transform: none;
}

.brand-expression-section .brand-expression-title .brand-title-char {
  display: inline-block;
  opacity: 0;
  filter: blur(9px);
  transform: translateY(12px);
  will-change: transform, opacity, filter;
}

.brand-expression-section .brand-scroll-item.is-inview {
  animation: insightElementIn 640ms cubic-bezier(0.2, 0.74, 0.2, 1) both;
  animation-delay: var(--brand-delay, 0ms);
}

.brand-expression-section .brand-expression-title.brand-scroll-item.is-inview {
  animation: none;
}

.brand-expression-section .brand-expression-title.brand-scroll-item.is-inview .brand-title-char {
  animation: heroTitleCharBlurIn 560ms cubic-bezier(0.2, 0.74, 0.2, 1) both;
  animation-delay: calc(var(--brand-delay, 0ms) + var(--brand-char-delay, 0ms));
}

.brand-expression-inner {
  width: min(1188px, calc(100% - 96px));
  max-width: none;
  text-align: center;
}

.brand-expression-title {
  margin: 0;
  color: var(--color-text-black);
  font-size: clamp(var(--size-text-36), calc((100vw - 96px) * 0.037), var(--size-text-44));
  line-height: clamp(
    var(--size-text-line-height-44),
    calc((100vw - 96px) * 0.0438),
    var(--size-text-line-height-52)
  );
  font-weight: var(--size-text-bold);
}

.brand-expression-subtitle {
  margin: 12px 0 0;
  color: var(--color-text-gray);
}

.brand-expression-list {
  margin-top: 72px;
  display: grid;
  gap: 20px;
}

.expression-card {
  min-height: 308px;
  border-radius: var(--s-radius-xl);
  padding: 48px 48px;
  background:
    linear-gradient(180deg, rgba(244, 247, 255, 0.96) 0%, rgba(232, 240, 255, 0.96) 100%);
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  align-items: center;
  gap: 36px;
  overflow: hidden;
  position: relative;
}

.expression-card-left {
  grid-template-columns: 1fr 1.65fr;
  aspect-ratio: 75 / 31;
  min-height: auto;
  background-color: #fff;
  background-image: url("./assets/beijing2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.expression-card-right {
  aspect-ratio: 75 / 31;
  min-height: auto;
  background-color: #fff;
  background-image: url("./assets/beijing2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.expression-visual,
.expression-copy {
  position: relative;
  z-index: 1;
}

.expression-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.expression-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.expression-image-geo {
  max-width: none;
}

.expression-image-intent {
  max-width: none;
}

.expression-image-content {
  max-width: none;
}

.expression-image-publish {
  max-width: none;
}

.expression-image-knowledge {
  max-width: none;
}

.expression-copy {
  text-align: left;
}

.expression-card-right .expression-copy {
  width: 100%;
  max-width: none;
  transform: translateY(-24px);
}

.expression-card-left .expression-copy {
  width: 100%;
  max-width: none;
}

.expression-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 28px;
  padding: 0 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(101deg, #3276ff 4%, #794eff 49%, #ff61da 99%);
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.expression-heading {
  margin: 0;
  color: var(--color-text-black);
  font-size: clamp(var(--size-text-24), 2.1vw, var(--size-text-36));
  line-height: clamp(
    var(--size-text-line-height-32),
    2.7vw,
    var(--size-text-line-height-44)
  );
}

.expression-title-row {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
}

.expression-title-badge {
  width: auto;
  height: clamp(18px, 1.4vw, 26px);
  display: block;
  flex-shrink: 0;
  margin-top: 2px;
}

.expression-gradient-text {
  display: inline-block;
  background-image: linear-gradient(104deg, #3276ff 5%, #794eff 49%, #ff61da 98%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.expression-text {
  margin: 12px 0 0;
  color: var(--color-text-light-black);
}

.brand-expression-list .expression-text,
.brand-expression-list .expression-keywords {
  font-size: clamp(var(--size-text-14), 1.05vw, var(--size-text-18));
  line-height: clamp(
    var(--size-text-line-height-22),
    1.55vw,
    var(--size-text-line-height-26)
  );
}

.expression-keywords {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 24px;
  color: var(--color-text-light-black);
}

.monitor-section {
  padding: 100px 0 100px;
  background: linear-gradient(140deg, #f7f6fe -2%, #eef4fc 71%);
}

.monitor-section .monitor-scroll-item {
  opacity: 0;
  transform: translateY(22px);
}

.monitor-section .monitor-scroll-item.is-inview {
  animation: insightElementIn 620ms cubic-bezier(0.2, 0.74, 0.2, 1) both;
  animation-delay: var(--monitor-delay, 0ms);
}

.monitor-inner {
  width: min(1188px, calc(100% - 96px));
  max-width: none;
}

.monitor-title {
  margin: 0;
  text-align: center;
  color: var(--color-text-black);
  font-size: clamp(var(--size-text-36), calc((100vw - 96px) * 0.037), var(--size-text-44));
  line-height: clamp(
    var(--size-text-line-height-44),
    calc((100vw - 96px) * 0.0438),
    var(--size-text-line-height-52)
  );
  font-weight: var(--size-text-bold);
}

.monitor-title-highlight {
  background-image: linear-gradient(104deg, #3276ff 5%, #794eff 49%, #ff61da 98%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.monitor-tabs {
  margin: 36px auto 0;
  width: fit-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid #fff;
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 18px rgba(118, 140, 190, 0.05);
}

.monitor-tabs::before {
  content: "";
  position: absolute;
  left: var(--tab-indicator-x, 8px);
  top: var(--tab-indicator-y, 8px);
  width: var(--tab-indicator-w, 132px);
  height: var(--tab-indicator-h, 48px);
  border-radius: 999px;
  background: linear-gradient(90deg, #3276ff 0%, #794eff 99%);
  transition:
    left 280ms cubic-bezier(0.22, 0.75, 0.25, 1),
    width 280ms cubic-bezier(0.22, 0.75, 0.25, 1),
    top 280ms cubic-bezier(0.22, 0.75, 0.25, 1),
    height 280ms cubic-bezier(0.22, 0.75, 0.25, 1);
  z-index: 0;
  pointer-events: none;
}

.monitor-tab {
  border: 1px solid transparent;
  background: transparent;
  color: #3b4c70;
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  width: 132px;
  height: 48px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease;
}

.monitor-tab:focus {
  outline: none;
}

.monitor-tab:focus-visible {
  box-shadow: 0 0 0 2px rgba(93, 126, 226, 0.28);
}

.monitor-tab:not(.is-active) {
  font-size: var(--size-text-16);
  line-height: var(--size-text-line-height-24);
  font-weight: var(--size-text-regular);
}

.monitor-tab:hover:not(.is-active) {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
  background-image: linear-gradient(90deg, #3276ff 0%, #794eff 99%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.monitor-tab.is-active {
  color: #fff;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: translateY(0);
  -webkit-text-fill-color: currentColor;
}

.monitor-body {
  margin-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
  align-items: center;
  gap: 22px;
}

.monitor-body.is-switching-out .monitor-visual-stack,
.monitor-body.is-switching-out .monitor-aside {
  animation: contentFadeOut 140ms ease-in forwards;
}

.monitor-body.is-switching-in .monitor-visual-stack {
  animation: contentFadeIn 600ms ease-out both;
}

.monitor-body.is-switching-in .monitor-aside {
  animation: contentFadeIn 600ms ease-out both;
  animation-delay: 400ms;
}

@keyframes contentFadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.985);
  }
}

@keyframes contentFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-12px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.monitor-visual-stack {
  position: relative;
  width: min(100%, 758px);
  min-width: 500px;
  overflow: visible;
}

.monitor-visual-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(130, 148, 190, 0.1);
}

.monitor-overlay {
  position: absolute;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(107, 127, 174, 0.16));
}

.monitor-overlay-trend {
  top: calc(24% + 0px);
  right: calc(-5.6% + 24px);
  width: 50%;
}

.monitor-overlay-score {
  top: -2%;
  left: 12.4%;
  width: 30%;
  z-index: 3;
}

.monitor-aside {
  position: relative;
  top: -16px;
  padding-left: 40px;
  color: var(--color-text-black);
}

.monitor-point {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  color: var(--color-text-black);
  font-size: clamp(var(--size-text-18), 1.2vw, var(--size-text-20));
  line-height: clamp(var(--size-text-line-height-26), 1.6vw, var(--size-text-line-height-30));
  font-weight: var(--size-text-medium);
}

.monitor-point + .monitor-point {
  margin-top: 30px;
}

.monitor-section[data-monitor-style="citation"] .monitor-point:last-of-type {
  margin-top: 24px;
}

.monitor-point-icon {
  width: 26px;
  height: 26px;
  display: inline-block;
  flex-shrink: 0;
  background: url("./assets/checkmark.svg") center / contain no-repeat;
}

.monitor-point-icon::after {
  content: none;
}

.monitor-platforms {
  margin-top: 16px;
  margin-right: 0;
  margin-bottom: 32px;
  margin-left: 28px;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}

.monitor-point-with-platforms {
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 4px;
  align-items: start;
}

.monitor-point-with-platforms .monitor-platforms {
  grid-column: 2 / 3;
  width: auto;
  margin: 16px 0 0 0;
}

.monitor-platform-chip {
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #42557d;
  background: #f9fbff;
  box-shadow: 0 2px 6px rgba(89, 110, 156, 0.12);
}

.service-section {
  padding: 110px 0 120px;
  background: #fff;
}

.service-section .service-scroll-item {
  opacity: 0;
  transform: translateY(22px);
}

.service-section .service-scroll-item.is-inview {
  animation: insightElementIn 620ms cubic-bezier(0.2, 0.74, 0.2, 1) both;
  animation-delay: var(--service-delay, 0ms);
}

.service-section .service-grid.service-scroll-item .service-card {
  opacity: 0;
  transform: translateY(20px);
}

.service-section .service-grid.service-scroll-item.is-inview .service-card {
  animation: serviceCardCascadeIn 560ms cubic-bezier(0.2, 0.74, 0.2, 1) both;
}

.service-section .service-grid.service-scroll-item.is-inview > .service-card:nth-of-type(1) {
  animation-delay: calc(var(--service-delay, 0ms) + 0ms);
}

.service-section .service-grid.service-scroll-item.is-inview > .service-card:nth-of-type(2) {
  animation-delay: calc(var(--service-delay, 0ms) + 160ms);
}

.service-section
  .service-grid.service-scroll-item.is-inview
  > .service-stack
  > .service-card-small:first-child {
  animation-delay: calc(var(--service-delay, 0ms) + 320ms);
}

.service-section
  .service-grid.service-scroll-item.is-inview
  > .service-stack
  > .service-card-small:last-child {
  animation-delay: calc(var(--service-delay, 0ms) + 480ms);
}

@keyframes serviceCardCascadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-inner {
  width: min(1188px, calc(100% - 96px));
  max-width: none;
}

.service-title {
  margin: 0;
  text-align: center;
  color: var(--color-text-black);
  font-size: clamp(var(--size-text-36), calc((100vw - 96px) * 0.037), var(--size-text-44));
  line-height: clamp(
    var(--size-text-line-height-44),
    calc((100vw - 96px) * 0.0438),
    var(--size-text-line-height-52)
  );
  font-weight: var(--size-text-bold);
}

.service-title-highlight {
  background-image: linear-gradient(90deg, #3276ff 0%, #794eff 99%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.service-title-highlight .highlight-char:nth-child(1) {
  background-image: linear-gradient(314deg, #406eff 8%, #3276ff 85%);
}

.service-title-highlight .highlight-char:nth-child(2) {
  background-image: linear-gradient(314deg, #5b5fff 8%, #466bff 85%);
}

.service-title-highlight .highlight-char:nth-child(3) {
  background-image: linear-gradient(314deg, #6d54ff 8%, #5a60ff 85%);
}

.service-title-highlight .highlight-char:nth-child(4) {
  background-image: linear-gradient(314deg, #8a50fa 8%, #7152ff 85%);
}

.service-title-highlight .highlight-char:nth-child(5) {
  background-image: linear-gradient(314deg, #b055ef 8%, #9751ff 85%);
}

.service-title-highlight .highlight-char:nth-child(6) {
  background-image: linear-gradient(314deg, #ed66ff 8%, #a95eff 85%);
}

.service-title-highlight .highlight-char:nth-child(7) {
  background-image: linear-gradient(314deg, #ff50e3 8%, #e665ff 85%);
}

.service-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.service-stack {
  display: grid;
  gap: 10px;
}

.service-card {
  position: relative;
  border-radius: var(--s-radius-xl);
  padding: 32px;
  overflow: hidden;
  background: #f4f7ff;
}

.service-card h3 {
  margin: 0;
  color: var(--color-text-black);
  font-size: var(--size-text-24);
  line-height: var(--size-text-line-height-32);
  font-weight: var(--size-text-medium);
}

.service-stack .service-card-small:first-child h3 {
  font-size: clamp(var(--size-text-18), 1.8vw, var(--size-text-24));
  line-height: clamp(var(--size-text-line-height-26), 2.2vw, var(--size-text-line-height-32));
}

.service-grid > .service-card-large h3,
.service-stack .service-card-small:last-child h3 {
  font-size: clamp(var(--size-text-18), 1.8vw, var(--size-text-24));
  line-height: clamp(var(--size-text-line-height-26), 2.2vw, var(--size-text-line-height-32));
}

.service-card p {
  margin: 6px 0 0;
  color: var(--color-text-gray);
}

.service-card-large {
  min-height: 346px;
}

.service-grid > .service-card-large:first-child {
  min-height: clamp(420px, 40vw, 500px);
}

.service-card-small {
  min-height: 168px;
}

.service-visual {
  position: absolute;
  pointer-events: none;
}

.service-visual-advisor {
  width: 74%;
  right: -6px;
  bottom: -8px;
  opacity: 0.92;
}

.service-card-advisor .service-desc {
  max-width: 300px;
}

.service-visual-advisor-person {
  width: 72%;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.service-visual-advisor-compass {
  width: 17.5%;
  left: 4.6%;
  bottom: 56%;
  z-index: 2;
}

.service-visual-advisor-book {
  width: 22%;
  right: 6.2%;
  bottom: 40%;
  z-index: 2;
}

.service-visual-ai-service {
  width: 72%;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1;
}

.service-corner-icon {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: clamp(48px, 4vw, 60px);
  height: clamp(48px, 4vw, 60px);
  opacity: 0.9;
}

.side-menu {
  border-right: 1px solid var(--line);
  background: rgba(248, 251, 255, 0.92);
  padding: 18px 14px;
}

.side-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px 14px;
  border-bottom: 1px solid var(--line);
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  background: linear-gradient(120deg, #4a7bff, #7f5aff);
}

.muted {
  margin: 0;
  font-size: 12px;
  color: #5b6887;
}

.tiny {
  margin: 2px 0 0;
  font-size: 11px;
  color: #8c98b3;
}

.side-menu ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.side-menu li {
  border-radius: 10px;
  padding: 10px 12px;
  color: #566483;
  font-size: 13px;
}

.side-menu li.active {
  color: #3358c6;
  font-weight: 600;
  background: #edf3ff;
}

.panel-content {
  padding: 22px 24px;
}

.panel-content h2 {
  margin: 0;
  font-size: 24px;
}

.panel-tip {
  margin: 8px 0 0;
  font-size: 12px;
  color: #8a97b3;
}

.kpi-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.kpi-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
}

.kpi-item p {
  margin: 0;
  font-size: 12px;
  color: #7382a3;
}

.kpi-item strong {
  margin-top: 6px;
  display: block;
  font-size: 28px;
  color: #19253d;
}

.kpi-item small {
  margin-top: 4px;
  display: block;
  font-size: 12px;
  color: #d94f5c;
}

.chart-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.chart-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  padding: 12px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.chart-head h3 {
  margin: 0;
  font-size: 14px;
}

.chart-head span {
  color: #4b67ca;
  font-size: 12px;
  background: #edf3ff;
  border-radius: 999px;
  padding: 4px 9px;
}

canvas {
  width: 100%;
  height: auto;
  display: block;
}

.final-cta-section {
  padding: 160px 0 160px;
  background-color: #f6f8fe;
  background-image: url("./assets/final_cta_bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.final-cta-section .final-scroll-item {
  opacity: 0;
}

.final-cta-section .final-cta-badge.final-scroll-item {
  transform: translateY(14px) scale(0.9);
}

.final-cta-section .final-cta-title.final-scroll-item {
  transform: translateY(18px);
}

.final-cta-section .final-cta-subtitle.final-scroll-item {
  transform: translateY(14px);
}

.final-cta-section .final-cta-btn.final-scroll-item {
  transform: translateY(16px) scale(0.96);
}

.final-cta-section .final-cta-badge.final-scroll-item.is-inview {
  animation: finalCtaBadgeIn 760ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
  animation-delay: var(--final-delay, 0ms);
}

.final-cta-section .final-cta-title.final-scroll-item.is-inview {
  animation: finalCtaTitleIn 820ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
  animation-delay: var(--final-delay, 0ms);
}

.final-cta-section .final-cta-subtitle.final-scroll-item.is-inview {
  animation: finalCtaSubIn 840ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
  animation-delay: var(--final-delay, 0ms);
}

.final-cta-section .final-cta-btn.final-scroll-item.is-inview {
  animation: finalCtaBtnIn 860ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
  animation-delay: var(--final-delay, 0ms);
}

.final-cta-inner {
  width: min(1188px, calc(100% - 96px));
  margin: 0 auto;
  text-align: center;
}

.final-cta-badge {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(138deg, #3276ff 9%, #7a4eff 87%);
  box-shadow:
    0 10px 24px rgba(73, 105, 233, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  animation: none;
}

.final-cta-badge-star {
  font-size: 20px;
  line-height: 1;
}

.final-cta-title {
  margin: 32px 0 0;
  color: var(--color-text-black);
  font-size: clamp(var(--size-text-36), calc((100vw - 96px) * 0.037), var(--size-text-44));
  line-height: clamp(
    var(--size-text-line-height-44),
    calc((100vw - 96px) * 0.0438),
    var(--size-text-line-height-52)
  );
  font-weight: var(--size-text-bold);
  animation: none;
}

.final-cta-title .highlight-char.highlight-you {
  background-image: linear-gradient(142deg, #3f6fff 25%, #6857ff 77%);
}

.final-cta-title .highlight-char.highlight-xian {
  background-image: linear-gradient(147deg, #635aff 25%, #a354f3 76%);
}

.final-cta-title .highlight-char.highlight-tui {
  background-image: linear-gradient(142deg, #9e53f4 24%, #e45de1 77%);
}

.final-cta-subtitle {
  margin: 14px 0 0;
  color: var(--color-text-black);
  animation: none;
}

.final-cta-btn {
  margin-top: 32px;
  width: 160px;
  min-width: 160px;
  height: 52px;
  box-shadow: none;
  animation: none;
}

@keyframes finalCtaBadgeIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes finalCtaTitleIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes finalCtaSubIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes finalCtaBtnIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

