﻿:root {
  --green: #9B5CFF;
  --green-hover: #B06CFF;
  --purple-deep: #7A4BD9;
  --purple-light: #D18BFF;
  --brand-gradient: linear-gradient(135deg, #7A4BD9 0%, #9B5CFF 48%, #D18BFF 100%);
  --text: #111;
  --muted: rgba(17, 17, 17, .86);
  --soft: #f7f8fa;
  --paper: #fff;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  color: var(--text);
  background: #f9faf9;
  font-family: PingFang SC, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  height: 60px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.header-inner {
  width: 1200px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.brand-logo {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}
.brand-mark {
  color: var(--green);
  font-weight: 900;
  font-size: 29px;
  letter-spacing: 0;
  line-height: 1;
}
.brand-text { font-size: 22px; font-weight: 500; }
.nav { display: flex; align-items: center; gap: 34px; margin-left: auto; margin-right: 26px; height: 100%; }
.nav-link, .nav-item { position: relative; font-size: 16px; color: rgba(0,0,0,.87); display: flex; align-items: center; height: 100%; }
.nav-link:hover, .nav-item:hover { color: var(--green); }
.chevron {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.mega-menu {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 260px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.has-menu:hover .mega-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-menu a {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 15px;
}
.mega-menu a:hover { background: rgba(0,0,0,.04); color: var(--green); }
.nav-icon { width: 20px; height: 20px; background-size: 20px 20px; flex: 0 0 20px; }
.icon-6 { background-image: url(assets/nav-6.svg); }
.icon-5 { background-image: url(assets/nav-5.svg); }
.icon-4 { background-image: url(assets/nav-4.svg); }
.icon-0 { background-image: url(assets/nav-0.svg); }
.icon-2 { background-image: url(assets/nav-2.svg); }
.icon-3 { background-image: url(assets/nav-3.svg); }
.icon-1 { background-image: url(assets/nav-1.svg); }
.icon-7 { background-image: url(assets/nav-2.svg); }
.icon-8 { background-image: url(assets/desktop-8.svg); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.login { color: var(--green); font-size: 16px; font-weight: 500; }
.pill {
  min-width: 120px;
  height: 44px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  color: #fff;
  background: var(--brand-gradient);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(155, 92, 255, .24);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pill:hover { background: linear-gradient(135deg, #8D55EC 0%, #B06CFF 52%, #E0A7FF 100%); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(155, 92, 255, .32); }
.pill.small { min-width: 100px; height: 36px; font-size: 16px; padding: 0 20px; }
.pill.small.promo-cta { min-width: 118px; padding: 0 22px; font-size: 16px; }
.hero-actions-stack {
  margin-top: 86px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.pill.hero-cta { width: 150px; height: 56px; font-size: 24px; margin-top: 0; }
.pill.promo-hero-cta { font-size: 22px; }
.pill.medium { width: 120px; }
.pill.inverse { background: #fff; color: var(--green); box-shadow: none; }
.pill.footer-promo-pill {
  background: #f2e8ff;
  color: #7f45e8;
  box-shadow: 0 10px 26px rgba(126, 69, 232, .16);
}
.pill.footer-promo-pill:hover {
  background: #ead8ff;
  box-shadow: 0 12px 30px rgba(126, 69, 232, .22);
}

.hero { background: #fff; }
.hero-inner {
  width: 1200px;
  height: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
}
.hero-copy h1 {
  width: 620px;
  margin: 0;
  font-size: 46px;
  line-height: 1.45;
  font-weight: 600;
}
.hero-art img { width: 792px; height: 550px; object-fit: contain; display: block; }

.metrics {
  height: 284px;
  min-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: var(--soft);
  overflow: hidden;
}
.metric-card {
  width: 300px;
  height: 204px;
  display: grid;
  grid-template-rows: 42px 72px 64px;
  align-content: start;
  text-align: center;
  padding-top: 60px;
}
.metric-card strong { color: var(--green); font-size: 30px; font-weight: 500; }
.metric-card h3 {
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 500;
}
.metric-card p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 16px;
  line-height: 32px;
}

.section-white { background: #fff; }
.product-slider {
  position: relative;
  height: 700px;
  padding-top: 100px;
  overflow: hidden;
}
.product-track { position: relative; width: 1200px; height: 600px; margin: 0 auto; }
.product-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 28px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .5s ease, transform .5s ease;
}
.product-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.slide-copy h2 { margin: 0 0 20px; font-size: 48px; font-weight: 500; line-height: 1.18; }
.slide-copy p { margin: 0 0 16px; font-size: 18px; line-height: 32px; color: var(--muted); }
.product-slide img { width: 792px; height: 550px; object-fit: cover; }
.vertical-dots {
  position: absolute;
  left: calc(50% - 630px);
  top: 255px;
  z-index: 3;
  width: 8px;
  display: grid;
  gap: 8px;
}
.vertical-dots button {
  width: 8px;
  height: 140px;
  border-radius: 4px;
  background: rgba(0,0,0,.2);
}
.vertical-dots button.active { background: var(--green); }

.solutions {
  background: #fff;
  padding: 64px 0 100px;
}
.deep-solutions {
  padding-top: 0;
}
.solutions > h2, .seven-days > h2, .services > h2, .voice > h2 {
  margin: 0 0 40px;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
}
.solution-grid {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 340px);
  justify-content: space-between;
}
.solution-card {
  height: 460px;
  padding: 32px 32px 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  transition: transform .25s ease, box-shadow .25s ease;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.solution-card h3 { margin: 0 32px 26px; font-size: 24px; font-weight: 500; }
.solution-card img { width: 270px; height: 160px; object-fit: contain; display: block; }
.solution-card p { height: 120px; margin: 20px 0 0; font-size: 16px; line-height: 32px; color: var(--muted); }
.solution-card a { display: inline-flex; align-items: center; margin-top: 20px; color: var(--green); font-size: 16px; font-weight: 500; }
.solution-card span { display: inline-block; margin-left: 6px; transition: transform .25s ease; font-size: 24px; line-height: 16px; }
.solution-card a:hover span { transform: translateX(8px); }

.core-clients .solution-grid {
  grid-template-columns: repeat(4, 270px);
}

.core-clients .solution-card {
  padding: 32px 28px 28px;
}

.core-clients .solution-card h3 {
  margin: 0 0 26px;
  text-align: center;
}

.core-clients .solution-card img {
  width: 214px;
  height: 150px;
  margin: 0 auto;
}

.seven-days { padding: 70px 0 90px; }
.feature-row {
  width: 1200px;
  height: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.feature-row img { width: 551px; height: 444px; object-fit: contain; }
.feature-row div { width: 500px; }
.feature-row h3 { margin: 0 0 20px; font-size: 48px; font-weight: 500; }
.feature-row p { margin: 0 0 20px; font-size: 18px; line-height: 32px; color: var(--muted); }
.check { color: var(--green); font-weight: 700; margin-right: 6px; }

.qa-section {
  width: 1080px;
  margin: 0 auto;
  display: block;
}

.qa-section h2 {
  margin: 0 0 44px;
  text-align: center;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0;
}

.qa-list {
  border-top: 1px solid rgba(17, 17, 17, .12);
}

.qa-item {
  border-bottom: 1px solid rgba(17, 17, 17, .12);
}

.qa-question {
  width: 100%;
  min-height: 92px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  background: transparent;
  color: #222;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.qa-question span {
  font-size: 22px;
  line-height: 1.42;
  font-weight: 500;
}

.qa-question i {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  position: relative;
  opacity: .58;
}

.qa-question i::before,
.qa-question i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.qa-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .24s ease, opacity .24s ease;
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .28s ease, opacity .2s ease;
}

.qa-answer p {
  margin: -6px 84px 34px 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(17, 17, 17, .52);
}

.qa-item.active .qa-question span {
  color: var(--green);
}

.qa-item.active .qa-question i::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.qa-item.active .qa-answer {
  max-height: 520px;
  opacity: 1;
}

.wide-image { background: #fff; display: flex; justify-content: center; overflow: hidden; }
.wide-image picture { width: 100%; max-width: 1440px; display: block; }
.wide-image img { width: 100%; display: block; object-fit: cover; }

.services { padding: 70px 0 100px; }
.service-grid {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 384px);
  justify-content: center;
}
.service-grid article { height: 360px; padding: 0 20px; }
.service-grid img { width: 97px; height: 97px; object-fit: contain; }
.service-grid h3 { margin: 32px 0 12px; color: var(--green); font-size: 24px; font-weight: 500; }
.service-grid p { margin: 0; color: var(--muted); line-height: 32px; font-size: 16px; }

.voice {
  height: 800px;
  padding-top: 40px;
  background: #f7f8fa url(assets/voice-bg.png) center / cover no-repeat;
}
.voice h2 { margin-bottom: 80px; }
.voice-stage {
  width: min(1382px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60px minmax(0, 1212px) 60px;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.voice-window { position: relative; height: 460px; overflow: hidden; }
.voice-track {
  display: flex;
  gap: 30px;
  height: 100%;
  transform: translateX(0);
  transition: transform .48s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.voice-card {
  flex: 0 0 384px;
  height: 442px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 30px 30px 10px;
  background: #fff;
  border-radius: 40px 8px 8px 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.voice-card .quote { width: 94px; height: 94px; margin-top: 0; }
.voice-card p { height: 165px; margin: 0 0 0 20px; font-size: 18px; line-height: 32px; color: var(--muted); }
.voice-card div { display: flex; align-items: center; margin-left: 10px; }
.voice-card div img { width: 80px; height: 80px; object-fit: cover; margin-right: 10px; }
.voice-card strong { font-size: 18px; font-weight: 500; }
.voice-arrow {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background-size: cover;
  transition: box-shadow .2s ease;
}
.voice-arrow:hover { box-shadow: 0 2px 10px #e1e1e2; }
.voice-arrow.prev { background-image: url(assets/left-icon.svg); }
.voice-arrow.next { background-image: url(assets/right-icon.svg); }

.footer-cta {
  position: relative;
  height: 330px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer-cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(122, 75, 217, .72), rgba(176, 108, 255, .64));
}
.footer-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}
.footer-cta h2 { margin: 0 0 26px; font-size: 40px; font-weight: 500; }
.footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 200px;
}
.footer-qr-box {
  display: grid;
  justify-items: center;
  gap: 8px;
}
.footer-qr {
  width: 112px;
  height: 112px;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}
.footer-qr-box p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.footer-main {
  min-width: 1200px;
  min-height: 360px;
  background: #fff;
  padding: 64px calc((100% - 1200px) / 2) 28px;
  text-align: center;
}
.footer-brand { margin-bottom: 40px; justify-content: center; }
.footer-links { display: flex; gap: 56px; justify-content: center; }
.footer-links div { min-width: 132px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-links h4 { margin: 0 0 10px; font-size: 18px; }
.footer-links a { color: rgba(17,17,17,.56); cursor: pointer; }
.footer-links a:hover { color: rgba(17,17,17,.86); }
.record {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(17,17,17,.56);
  font-size: 12px;
  margin-top: 50px;
}
.record p { margin: 0; }
.record a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(17,17,17,.56);
}
.record .beian-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex: 0 0 14px;
}

.reveal { opacity: 0; transform: translate3d(0, 70px, 0); }
.reveal.fade { transform: none; }
.reveal.in-view { animation: fadeInUp 1s both; }
.reveal.fade.in-view { animation-name: fadeIn; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 70px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.35);
}
.modal.open { display: grid; }
.modal-panel {
  width: 420px;
  padding: 36px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 80px rgba(0,0,0,.2);
  position: relative;
}
.modal-panel h3 { margin: 0 0 10px; font-size: 28px; }
.modal-panel p { margin: 0 0 24px; color: var(--muted); }
.modal-panel input {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 28px;
  padding: 0 20px;
  outline: none;
  font-size: 16px;
}
.modal-panel input:focus { border-color: var(--green); }
.modal-submit { margin-top: 20px; width: 100%; }
.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: transparent;
  font-size: 30px;
  color: rgba(0,0,0,.45);
}
.snackbar {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -12px);
  z-index: 10001;
  width: 358px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(154,154,154,.5);
  color: rgba(0,0,0,.87);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.snackbar.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) {
  .site-header { height: 64px; }
  .header-inner { width: 100%; padding: 0 16px; justify-content: flex-start; }
  .brand-mark { font-size: 28px; }
  .brand-logo { width: 30px; height: 30px; }
  .brand-text { font-size: 19px; }
  .nav, .header-actions { display: none; }
  .hero-inner {
    width: 100%;
    height: auto;
    min-height: 626px;
    padding: 38px 0 30px;
    display: block;
    overflow: hidden;
  }
  .hero-copy { text-align: center; }
  .hero-copy h1 {
    width: calc(100vw - 32px);
    max-width: 420px;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.68;
    text-align: center;
  }
  .hero-actions-stack { margin-top: 22px; align-items: center; gap: 12px; }
  .pill.hero-cta { width: 120px; min-width: 120px; height: 44px; padding: 0; font-size: 18px; }
  .hero-art { margin-top: 42px; margin-left: 28px; width: 610px; }
  .hero-art img { width: 610px; height: auto; }

  .metrics {
    min-width: 0;
    height: 238px;
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    background: #fff;
    padding: 20px 0 20px 16px;
  }
  .metric-card {
    flex: 0 0 276px;
    height: 168px;
    grid-template-rows: 38px 50px 48px;
    margin-right: 16px;
    padding: 26px 18px 0;
    background: var(--soft);
    border-radius: 8px;
  }
  .metric-card strong { font-size: 30px; }
  .metric-card h3 { font-size: 20px; margin: 0; }
  .metric-card p { font-size: 14px; line-height: 24px; }

  .product-slider { height: auto; padding: 58px 20px 40px; }
  .vertical-dots { display: none; }
  .product-track { width: 100%; height: 660px; }
  .product-slide { display: block; }
  .slide-copy { text-align: center; }
  .slide-copy h2 { font-size: 24px; margin-bottom: 8px; }
  .slide-copy p {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 32px;
    overflow-wrap: anywhere;
  }
  .product-slide img { width: 100%; height: auto; margin-top: 28px; object-fit: contain; }
  .solutions { padding: 48px 20px; }
  .solutions > h2, .seven-days > h2, .services > h2, .voice > h2 { font-size: 24px; margin-bottom: 40px; }
  .solution-grid { width: 100%; display: flex; flex-direction: column; gap: 20px; align-items: center; }
  .solution-card { width: 340px; }
  .seven-days { padding: 52px 20px; }
  .feature-row { width: 100%; height: auto; display: block; text-align: left; }
  .feature-row img { width: 100%; height: auto; }
  .feature-row div { width: 100%; }
  .feature-row h3 { font-size: 24px; margin-top: 24px; }
  .feature-row p { font-size: 16px; }
  .qa-section { width: 100%; }
  .qa-section h2 { margin-bottom: 24px; font-size: 28px; }
  .qa-question { min-height: 78px; gap: 18px; }
  .qa-question span { font-size: 18px; line-height: 1.42; }
  .qa-question i { width: 20px; height: 20px; }
  .qa-question i::before,
  .qa-question i::after { width: 18px; }
  .qa-answer p { margin: -4px 0 26px; font-size: 15px; line-height: 1.75; }
  .services { padding: 48px 20px 80px; }
  .service-grid { width: 100%; display: block; }
  .service-grid article { height: auto; margin-bottom: 44px; padding: 0; }
  .service-grid img { width: 40px; height: 40px; float: left; margin-right: 10px; }
  .service-grid h3 { font-size: 20px; margin: 0 0 20px; padding-top: 8px; }
  .service-grid p { clear: both; font-size: 14px; line-height: 24px; }
  .voice { height: 522px; padding: 40px 0 50px; overflow: hidden; }
  .voice-stage { width: 100%; display: block; }
  .voice-arrow { display: none; }
  .voice-window { height: 360px; overflow-x: auto; padding-left: 16px; }
  .voice-track {
    display: flex;
    gap: 16px;
    transform: none;
    transition: none;
  }
  .voice-card {
    width: 276px;
    height: 330px;
    flex: 0 0 276px;
    padding: 20px 20px 0;
  }
  .voice-clone { display: none; }
  .voice-card .quote { width: 70px; height: 70px; margin-left: -10px; }
  .voice-card p { height: 100px; margin-left: 0; font-size: 14px; line-height: 24px; }
  .voice-card div { margin-left: -8px; margin-top: 40px; }
  .voice-card div img { width: 68px; height: 68px; }
  .voice-card strong { font-size: 16px; }
  .footer-cta { height: 360px; padding: 0 20px; text-align: center; }
  .footer-cta h2 { font-size: 26px; line-height: 1.35; }
  .footer-cta-row { flex-wrap: wrap; gap: 16px; }
  .footer-cta-actions { flex-wrap: wrap; justify-content: center; }
  .footer-qr { width: 96px; height: 96px; }
  .footer-main { min-width: 0; padding: 44px 20px 28px; }
  .footer-links { gap: 26px; flex-wrap: wrap; justify-content: center; }
  .modal-panel { width: calc(100vw - 32px); }
}

.nav-item.active,
.nav-link.active,
.mega-menu a.active {
  color: var(--green);
}

.about-page {
  background: #fff;
}

.about-hero {
  position: relative;
  min-width: 1200px;
  height: 420px;
  background:
    radial-gradient(circle at 18% 18%, rgba(209, 139, 255, .16), transparent 34%),
    radial-gradient(circle at 84% 26%, rgba(155, 92, 255, .14), transparent 30%),
    #fff;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  width: 1180px;
  height: 260px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(247, 248, 250, 0), #f7f8fa);
  border-radius: 50%;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.15;
  font-weight: 600;
}

.about-hero p:not(.eyebrow) {
  width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 36px;
}

.about-intro {
  width: 1200px;
  margin: 0 auto;
  padding: 86px 0 92px;
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 72px;
  align-items: center;
}

.about-intro-copy h2,
.team-copy h2,
.timeline-section h2,
.map-copy h2 {
  margin: 0 0 24px;
  font-size: 42px;
  line-height: 1.24;
  font-weight: 600;
}

.about-intro-copy p:not(.eyebrow),
.team-copy p,
.timeline article p,
.map-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 34px;
}

.about-photo-grid {
  height: 520px;
  display: grid;
  grid-template-columns: 1fr 260px;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.about-photo-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .08);
}

.about-photo-grid .photo-large {
  grid-row: 1 / 3;
}

.about-values {
  min-width: 1200px;
  padding: 76px 0;
  background: var(--soft);
  display: grid;
  grid-template-columns: repeat(4, 270px);
  justify-content: center;
  gap: 30px;
}

.value-card {
  min-height: 250px;
  padding: 30px 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(155, 92, 255, .14);
}

.value-card strong {
  color: var(--green);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.value-card h3 {
  margin: 28px 0 14px;
  font-size: 24px;
  font-weight: 600;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 30px;
}

.team-section {
  width: 1200px;
  margin: 0 auto;
  padding: 92px 0 96px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.team-visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(155, 92, 255, .08), rgba(209, 139, 255, .14));
  overflow: hidden;
}

.team-visual > img:first-child {
  position: absolute;
  top: 28px;
  left: 34px;
  width: 92px;
}

.team-visual > img:last-child {
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: 92px;
}

.team-logo-row {
  width: 80%;
  height: auto;
  filter: invert(46%) sepia(66%) saturate(1847%) hue-rotate(232deg) brightness(104%) contrast(96%);
  opacity: .58;
}

.timeline-section {
  min-width: 1200px;
  padding: 88px 0 110px;
  text-align: center;
  background: #fff;
}

.timeline {
  position: relative;
  width: 980px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 100px;
  right: 100px;
  height: 2px;
  background: linear-gradient(90deg, rgba(155, 92, 255, .18), rgba(155, 92, 255, .85), rgba(209, 139, 255, .2));
}

.timeline article {
  position: relative;
  z-index: 1;
  padding: 0 18px;
}

.timeline article span {
  width: 68px;
  height: 68px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-gradient);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(155, 92, 255, .28);
}

.timeline article h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
}

.contact-hero {
  height: 390px;
}

.contact-panel {
  position: relative;
  width: 1200px;
  min-height: 430px;
  margin: -56px auto 90px;
  padding: 56px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 58px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(155, 92, 255, .9), rgba(209, 139, 255, .72));
  box-shadow: 0 22px 60px rgba(155, 92, 255, .2);
  overflow: hidden;
}

.contact-panel::before,
.contact-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}

.contact-panel::before {
  width: 360px;
  height: 360px;
  left: -110px;
  top: -160px;
}

.contact-panel::after {
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: -130px;
}

.contact-card-main,
.contact-info-list {
  position: relative;
  z-index: 1;
}

.contact-card-main {
  color: #fff;
}

.contact-card-main .eyebrow {
  color: rgba(255, 255, 255, .76);
}

.contact-card-main h2 {
  margin: 0 0 22px;
  font-size: 48px;
  font-weight: 600;
}

.contact-card-main p:not(.eyebrow) {
  margin: 0 0 46px;
  font-size: 20px;
  line-height: 36px;
}

.contact-info-list {
  display: grid;
  gap: 18px;
}

.contact-info-list article {
  min-height: 104px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background-color: rgba(155, 92, 255, .12);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  filter: hue-rotate(84deg) saturate(1.65);
}

.contact-icon.mail {
  background-image: url(assets/about/contact-mail.svg);
}

.contact-icon.location {
  background-image: url(assets/about/contact-location.svg);
}

.contact-info-list h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.contact-info-list p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.map-section {
  width: 1200px;
  margin: 0 auto;
  padding: 0 0 110px;
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 70px;
  align-items: center;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-tags span {
  height: 36px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 20px;
  color: var(--green);
  background: rgba(155, 92, 255, .1);
  font-weight: 500;
}

.map-card {
  position: relative;
  height: 430px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 58% 48%, rgba(155, 92, 255, .2), transparent 24%),
    linear-gradient(135deg, #f9f7ff, #fff);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155, 92, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 92, 255, .12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000, transparent 75%);
}

.map-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  height: 210px;
  transform: translate(-50%, -50%) rotate(-12deg);
  border: 2px dashed rgba(155, 92, 255, .35);
  border-radius: 50%;
}

.map-marker {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  width: 210px;
  padding: 22px;
  transform: translate(-50%, -50%);
  text-align: center;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(155, 92, 255, .18);
}

.map-marker span {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  display: block;
  border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 0 0 12px rgba(155, 92, 255, .13);
}

.map-marker strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
}

.map-marker p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .about-hero,
  .about-values,
  .timeline-section {
    min-width: 0;
  }

  .about-hero {
    height: auto;
    padding: 72px 18px 64px;
  }

  .about-hero-inner,
  .about-intro,
  .team-section,
  .map-section,
  .contact-panel {
    width: auto;
  }

  .about-hero-inner {
    height: auto;
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-hero p:not(.eyebrow) {
    width: auto;
    font-size: 17px;
    line-height: 30px;
  }

  .about-intro,
  .team-section,
  .map-section {
    padding: 54px 18px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-intro-copy h2,
  .team-copy h2,
  .timeline-section h2,
  .map-copy h2 {
    font-size: 32px;
  }

  .about-photo-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .about-photo-grid .photo-large {
    grid-row: auto;
  }

  .about-photo-grid img {
    height: 260px;
  }

  .about-values {
    padding: 48px 18px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .timeline {
    width: auto;
    margin: 38px 18px 0;
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .contact-panel {
    margin: -40px 18px 54px;
    padding: 32px 22px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-card-main h2 {
    font-size: 36px;
  }

  .map-card {
    height: 320px;
  }
}

.clone-about {
  background: #fff;
}

.clone-about .site-header {
  position: sticky;
}

.company-clone-main {
  width: 1200px;
  margin: 0 auto;
  padding: 126px 0 80px;
  background: #fff;
}

.company-intro-block {
  display: grid;
  grid-template-columns: 430px 1fr;
  column-gap: 192px;
  align-items: start;
}

.company-intro-block h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.18;
  font-weight: 500;
}

.company-intro-text {
  padding-top: 2px;
}

.company-intro-text p {
  margin: 0 0 54px;
  color: rgba(17, 17, 17, .86);
  font-size: 18px;
  line-height: 32px;
}

.company-gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 486px 690px;
  column-gap: 24px;
  align-items: start;
}

.company-gallery img {
  display: block;
  object-fit: cover;
}

.gallery-tall {
  width: 486px;
  height: 648px;
}

.company-gallery-right > img:first-child {
  width: 690px;
  height: 461px;
  margin-top: 74px;
}

.company-gallery-right .gallery-large {
  width: 490px;
  height: 651px;
  margin-top: 24px;
}

.quote-copy {
  width: 404px;
  margin-top: 110px;
}

.quote-mark {
  height: 82px;
  color: rgba(17, 17, 17, .06);
  font-family: Georgia, serif;
  font-size: 128px;
  line-height: 1;
}

.quote-copy p,
.company-note p,
.company-team-clone p,
.history-list p {
  margin: 0;
  color: rgba(17, 17, 17, .86);
  font-size: 18px;
  line-height: 32px;
}

.company-note {
  width: 480px;
  margin: 56px 0 0 10px;
}

.company-note img:first-child {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.company-note img:last-child {
  width: 48px;
  height: 48px;
  margin-top: 12px;
  margin-left: auto;
}

.company-team-clone {
  margin-top: 76px;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 340px 1fr;
  column-gap: 90px;
  border-top: 1px solid rgba(17, 17, 17, .08);
}

.company-team-clone h2,
.company-investor h2,
.company-history h2 {
  margin: 0 0 28px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
}

.company-team-clone p {
  grid-column: 2;
}

.company-team-clone img {
  grid-column: 2;
  width: 100%;
  height: 100px;
  margin-top: 26px;
  object-fit: contain;
}

.company-investor {
  padding: 82px 0 60px;
  text-align: center;
}

.investor-card {
  width: 760px;
  height: 104px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  color: var(--green);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.company-history {
  padding: 10px 0 60px;
  text-align: center;
}

.history-list {
  width: 900px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.history-list article {
  padding: 28px 24px 30px;
  border-radius: 8px;
  background: var(--soft);
  text-align: left;
}

.history-list strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 30px;
  font-weight: 700;
}

.contact-clone-main {
  min-height: calc(100vh - 60px);
  background: #fff;
}

.contact-green-band {
  height: 310px;
  background: var(--brand-gradient);
}

.contact-white-card {
  width: 1200px;
  height: 380px;
  margin: -160px auto 0;
  padding: 98px 102px;
  display: grid;
  grid-template-columns: 430px 1fr;
  column-gap: 110px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.contact-left-list {
  display: grid;
  gap: 34px;
  align-content: start;
}

.contact-row {
  display: flex;
  align-items: center;
  color: #111;
  font-size: 18px;
  line-height: 24px;
}

.contact-link {
  padding: 0;
  color: var(--green);
  background: transparent;
  font-size: 18px;
}

.contact-black-icon {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

.contact-black-icon.headset {
  background-image: url(assets/about/contact-customer.svg);
  filter: brightness(0);
}

.contact-black-icon.mail {
  background-image: url(assets/about/contact-mail.svg);
  filter: brightness(0);
}

.contact-black-icon.location {
  background-image: url(assets/about/contact-location.svg);
  filter: brightness(0);
}

.copy-mini {
  width: 14px;
  height: 17px;
  margin-left: 10px;
}

.qr-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 40px;
}

.qr-list article {
  width: 128px;
  text-align: center;
}

.qr-list img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.qr-list p {
  margin: 12px 0 0;
  color: rgba(17, 17, 17, .76);
  font-size: 14px;
  line-height: 20px;
}

.qr-list.single-qr {
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

.qr-list.single-qr article {
  width: 168px;
}

.qr-list.single-qr img {
  width: 132px;
  height: 132px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.qr-list.single-qr p {
  margin-top: 14px;
  font-size: 16px;
}

.qr-list.single-qr .qr-contact {
  color: rgba(17, 17, 17, .86);
  font-size: 15px;
  white-space: nowrap;
}

.contact-footer-clone {
  width: 1200px;
  margin: 98px auto 0;
  padding-bottom: 78px;
}

.footer-brand-title {
  float: left;
  width: 230px;
  margin-right: 82px;
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
}

.contact-footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 42px;
  min-height: 230px;
}

.contact-footer-links h4 {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}

.contact-footer-links a {
  display: block;
  margin-bottom: 16px;
  color: rgba(17, 17, 17, .56);
  font-size: 14px;
  line-height: 20px;
}

.contact-record {
  clear: both;
  margin-top: 58px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, .12);
  color: rgba(17, 17, 17, .56);
  text-align: center;
  font-size: 12px;
  line-height: 24px;
}

.contact-record p {
  margin: 0;
}

@media (max-width: 900px) {
  .company-clone-main {
    width: auto;
    padding: 72px 18px 54px;
  }

  .company-intro-block,
  .company-gallery,
  .company-team-clone,
  .history-list,
  .contact-white-card,
  .contact-footer-links {
    grid-template-columns: 1fr;
  }

  .company-intro-block h1 {
    font-size: 40px;
    margin-bottom: 28px;
  }

  .company-intro-text p {
    margin-bottom: 26px;
  }

  .company-gallery {
    margin-top: 44px;
  }

  .gallery-tall,
  .company-gallery-right > img:first-child,
  .company-gallery-right .gallery-large {
    width: 100%;
    height: auto;
    margin-top: 18px;
  }

  .quote-copy,
  .company-note,
  .history-list,
  .investor-card {
    width: auto;
  }

  .company-team-clone p,
  .company-team-clone img {
    grid-column: auto;
  }

  .contact-green-band {
    height: 260px;
  }

  .contact-white-card {
    width: auto;
    height: auto;
    margin: -120px 18px 0;
    padding: 42px 28px;
    gap: 36px;
  }

  .qr-list {
    padding-top: 0;
    gap: 16px;
  }

  .contact-footer-clone {
    width: auto;
    margin: 60px 18px 0;
  }

  .footer-brand-title {
    float: none;
    width: auto;
    margin: 0 0 32px;
  }
}


/* Company page: fbmms.cn compatible team, investor and history sections */
.fbmms-like-team {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 90px;
  padding: 78px 0 86px;
  background: #f5f6f8;
}

.fbmms-team-copy {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  column-gap: 130px;
  align-items: start;
}

.fbmms-team-copy h2,
.fbmms-like-investor h2,
.fbmms-like-history h2 {
  margin: 0;
  color: #111;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

.fbmms-team-copy h2 { text-align: left; }

.fbmms-team-copy p {
  margin: 0 0 52px;
  color: rgba(17, 17, 17, .86);
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}

.fbmms-team-copy img {
  width: 640px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: .5;
}

.fbmms-like-investor {
  width: 1200px;
  margin: 94px auto 0;
  text-align: center;
}

.investor-logo-grid {
  width: 820px;
  margin: 68px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  row-gap: 58px;
  column-gap: 74px;
}

.investor-logo {
  min-width: 168px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.investor-logo.sequoia { font-size: 31px; letter-spacing: 5px; }
.investor-logo.jinsha { font-size: 28px; font-weight: 600; }
.investor-logo.redpoint { gap: 10px; font-size: 30px; }
.investor-logo.redpoint i {
  width: 54px;
  height: 28px;
  display: inline-block;
  clip-path: polygon(0 100%, 78% 0, 100% 100%);
  background: #d7182a;
}
.investor-logo.shunwei {
  width: 70px;
  min-width: 70px;
  height: 70px;
  color: #d2a94a;
  background: #111;
  font-size: 24px;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}
.investor-logo.miracle { color: #2b71e8; font-size: 27px; }
.investor-logo.future {
  width: 138px;
  min-width: 138px;
  height: 64px;
  color: #fff;
  background: #cc2535;
  font-size: 15px;
  font-weight: 500;
}
.investor-logo.leonis { font-size: 27px; line-height: .92; text-align: left; }

.fbmms-like-history {
  width: 1200px;
  margin: 94px auto 0;
  padding-bottom: 0;
}

.company-footer-clone {
  margin-top: 92px;
}

.about-join-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 88px;
}

.about-join-band.contact-clone-main {
  min-height: auto;
}

.about-join-card {
  margin-bottom: 0;
}

.history-axis {
  position: relative;
  width: 860px;
  margin: 56px auto 0;
  padding: 4px 0 10px;
}

.history-axis::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 24px;
  left: 50%;
  width: 1px;
  transform: translateX(-.5px);
  background: rgba(17, 17, 17, .16);
}

.history-node {
  position: relative;
  min-height: 122px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.history-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid var(--green);
  background: #fff;
  z-index: 2;
}

.history-card {
  width: 326px;
  min-height: 96px;
  padding: 20px 24px 18px;
  border-radius: 4px;
  background: rgba(155, 92, 255, .055);
  text-align: left;
}

.history-node.left .history-card { grid-column: 1; justify-self: end; margin-right: 38px; }
.history-node.right .history-card { grid-column: 2; justify-self: start; margin-left: 38px; }

.history-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.history-card p {
  margin: 0;
  color: rgba(17, 17, 17, .86);
  font-size: 19px;
  line-height: 30px;
  font-weight: 600;
}

.mini-icon,
.mini-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
}

.mini-icon {
  width: 22px;
  height: 22px;
  border: 2px solid var(--green);
  border-radius: 4px;
  line-height: 1;
}

.mini-icon.flask,
.mini-icon.bot,
.mini-icon.video {
  border: 0;
  font-size: 20px;
}

.mini-logo {
  min-width: 44px;
  height: 20px;
  color: #fff;
  background: var(--green);
  border-radius: 2px;
  font-size: 10px;
}

.mini-logo.red { background: #d7182a; }
.mini-logo.purple { background: var(--brand-gradient); min-width: 60px; }

/* Product promotion page */
.promo-page {
  background: #fff;
}

.promo-page .site-header {
  top: 32px;
}

.promo-topbar {
  position: sticky;
  top: 0;
  z-index: 10000;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  font-size: 13px;
  background: var(--brand-gradient);
  overflow: hidden;
}

.promo-topbar::before,
.promo-topbar::after {
  content: "";
  position: absolute;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.promo-topbar::before { left: 14%; top: -62px; }
.promo-topbar::after { right: 11%; top: -48px; }

.promo-topbar a {
  position: relative;
  z-index: 1;
  height: 22px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--green);
  font-weight: 600;
}

.promo-hero {
  min-width: 1200px;
  height: 860px;
  background:
    radial-gradient(circle at 82% 18%, rgba(209, 139, 255, .16), transparent 22%),
    radial-gradient(circle at 12% 86%, rgba(155, 92, 255, .08), transparent 30%),
    #fff;
}

.promo-hero-inner {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding-top: 132px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.promo-hero-title p {
  margin: 0 0 18px;
  color: rgba(17, 17, 17, .5);
  font-size: 18px;
}

.promo-hero-title h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: 0;
}

.promo-hero-copy {
  padding-top: 28px;
}

.promo-hero-copy p {
  width: 470px;
  margin: 0 0 32px;
  color: rgba(17, 17, 17, .62);
  font-size: 18px;
  line-height: 1.8;
}

.promo-hero-copy a,
.promo-fit a,
.promo-case-grid a,
.process-panels a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
}

.promo-hero-copy a span {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: transparent;
}

.promo-wave {
  height: 560px;
  margin-top: -120px;
  background:
    linear-gradient(168deg, #f5f6f8 0 64%, transparent 64%),
    radial-gradient(ellipse at 76% 72%, rgba(209, 139, 255, .26), transparent 46%),
    linear-gradient(96deg, rgba(122, 75, 217, .12), rgba(209, 139, 255, .34));
  filter: saturate(1.05);
}

.promo-definition,
.promo-fit,
.promo-advantage,
.promo-process,
.promo-result,
.promo-cases,
.promo-faq {
  width: 1200px;
  margin: 0 auto;
  padding: 98px 0;
}

.promo-section-head {
  display: grid;
  grid-template-columns: 420px 1fr;
  column-gap: 80px;
  align-items: start;
  margin-bottom: 52px;
}

.promo-section-head > span,
.promo-faq-title > span {
  color: rgba(17, 17, 17, .42);
  font-size: 18px;
}

.promo-section-head h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.22;
  font-weight: 500;
}

.promo-section-head p,
.promo-lead {
  margin: 24px 0 0;
  color: rgba(17, 17, 17, .62);
  font-size: 18px;
  line-height: 1.85;
}

.promo-lead {
  width: 760px;
  margin: -22px 0 52px 500px;
}

.promo-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(17, 17, 17, .1);
  border-left: 1px solid rgba(17, 17, 17, .1);
}

.promo-capability-grid article {
  min-height: 380px;
  padding: 34px 28px;
  border-right: 1px solid rgba(17, 17, 17, .1);
  border-bottom: 1px solid rgba(17, 17, 17, .1);
  transition: background .24s ease, transform .24s ease;
}

.promo-capability-grid article:hover {
  background: rgba(155, 92, 255, .05);
  transform: translateY(-4px);
}

.promo-capability-grid i,
.promo-result-grid strong {
  display: block;
  margin-bottom: 42px;
  color: var(--green);
  font-style: normal;
  font-size: 22px;
  font-weight: 700;
}

.promo-capability-grid h3,
.promo-fit h3,
.promo-advantage h3,
.promo-result h3,
.promo-case-grid h3 {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.32;
  font-weight: 500;
}

.promo-capability-grid p,
.promo-fit p,
.promo-advantage p,
.promo-result p,
.promo-case-grid p {
  margin: 0;
  color: rgba(17, 17, 17, .58);
  font-size: 16px;
  line-height: 1.8;
}

.promo-capability-grid ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(17, 17, 17, .72);
  font-size: 15px;
}

.promo-capability-grid li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  vertical-align: middle;
}

.promo-fit {
  min-width: 1200px;
  width: 100%;
  padding-left: calc((100% - 1200px) / 2);
  padding-right: calc((100% - 1200px) / 2);
  background: #f5f6f8;
}

.promo-fit-grid,
.promo-advantage-grid,
.promo-result-grid,
.promo-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.promo-fit-grid article {
  min-height: 280px;
  padding: 42px 38px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 12px 34px rgba(30, 24, 48, .06);
}

.promo-fit-grid a {
  margin-top: 44px;
}

.promo-advantage-grid article,
.promo-result-grid article,
.promo-case-grid article {
  min-height: 270px;
  padding: 38px 32px;
  border: 1px solid rgba(17, 17, 17, .1);
  border-radius: 4px;
  background: #fff;
}

.promo-advantage-grid b {
  display: inline-flex;
  height: 28px;
  padding: 0 12px;
  margin-bottom: 28px;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-gradient);
  font-size: 14px;
}

.promo-process {
  width: 100%;
  min-width: 1200px;
  padding-left: calc((100% - 1200px) / 2);
  padding-right: calc((100% - 1200px) / 2);
  background: #f5f6f8;
}

.process-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid rgba(17, 17, 17, .14);
}

.process-tabs button {
  height: 74px;
  padding: 0 16px;
  color: rgba(17, 17, 17, .46);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 18px;
  text-align: left;
}

.process-tabs button.active {
  color: var(--green);
  border-color: var(--green);
}

.process-panels {
  position: relative;
  min-height: 360px;
  padding-top: 48px;
}

.process-panels article {
  display: none;
  width: 760px;
  min-height: 300px;
  padding: 42px 50px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(30, 24, 48, .08);
}

.process-panels article.active {
  display: block;
  animation: fadeUp .32s ease both;
}

.process-panels h3 {
  margin: 0 0 20px;
  font-size: 34px;
  font-weight: 500;
}

.process-panels p {
  margin: 0 0 28px;
  color: rgba(17, 17, 17, .62);
  font-size: 17px;
  line-height: 1.85;
}

.process-panels dl {
  margin: 0 0 28px;
}

.process-panels dt {
  color: rgba(17, 17, 17, .38);
  font-size: 14px;
}

.process-panels dd {
  margin: 8px 0 0;
  font-size: 16px;
}

.promo-cases {
  width: 100%;
  min-width: 1200px;
  padding-left: calc((100% - 1200px) / 2);
  padding-right: calc((100% - 1200px) / 2);
  background: #f5f6f8;
}

.promo-case-grid small {
  display: block;
  margin-bottom: 56px;
  color: var(--green);
  font-size: 15px;
}

.promo-case-grid a {
  margin-top: 34px;
}

.promo-faq {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 76px;
}

.promo-faq-title h2 {
  margin: 22px 0 86px;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 500;
}

.promo-faq-title a {
  color: var(--green);
  font-size: 17px;
  font-weight: 600;
}

.promo-faq-title a span {
  width: 22px;
  height: 22px;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-gradient);
}

.promo-faq-list {
  border-top: 1px solid rgba(17, 17, 17, .14);
}

.promo-faq-list article {
  border-bottom: 1px solid rgba(17, 17, 17, .14);
}

.promo-faq-list button {
  width: 100%;
  min-height: 104px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.promo-faq-list button span {
  font-size: 24px;
  font-weight: 500;
}

.promo-faq-list i {
  width: 22px;
  height: 22px;
  position: relative;
}

.promo-faq-list i::before,
.promo-faq-list i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: rgba(17, 17, 17, .5);
  transform: translate(-50%, -50%);
}

.promo-faq-list i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.promo-faq-list p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(17, 17, 17, .5);
  font-size: 17px;
  line-height: 1.8;
  transition: max-height .28s ease, margin .28s ease;
}

.promo-faq-list article.active button span {
  color: var(--green);
}

.promo-faq-list article.active i::after {
  display: none;
}

.promo-faq-list article.active p {
  max-height: 180px;
  margin: -12px 72px 36px 0;
}

.promo-contact {
  min-width: 1200px;
  height: 520px;
  padding-top: 92px;
  background: var(--brand-gradient);
}

.promo-contact-card {
  width: 1200px;
  height: 330px;
  margin: 0 auto;
  padding: 58px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 42px rgba(42, 28, 86, .12);
}

.promo-contact-card span {
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
}

.promo-contact-card h2 {
  margin: 18px 0;
  font-size: 38px;
  font-weight: 500;
}

.promo-contact-card p {
  margin: 0;
  color: rgba(17, 17, 17, .58);
  font-size: 18px;
}

.promo-contact-card img {
  width: 150px;
  height: 150px;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.promo-footer .footer-main {
  padding-top: 62px;
}

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

@media (max-width: 900px) {
  .promo-page .site-header { top: 32px; }
  .promo-topbar { padding: 0 12px; font-size: 12px; }
  .promo-hero,
  .promo-fit,
  .promo-process,
  .promo-cases,
  .promo-contact { min-width: 0; }
  .promo-hero { height: auto; padding: 72px 20px 140px; }
  .promo-hero-inner {
    width: 100%;
    height: auto;
    padding-top: 0;
    display: block;
  }
  .promo-hero-title h1 { font-size: 42px; }
  .promo-hero-copy p { width: auto; font-size: 16px; }
  .promo-wave { height: 260px; margin-top: -70px; }
  .promo-definition,
  .promo-fit,
  .promo-advantage,
  .promo-process,
  .promo-result,
  .promo-cases,
  .promo-faq {
    width: auto;
    padding: 56px 20px;
  }
  .promo-section-head,
  .promo-faq {
    display: block;
  }
  .promo-section-head h2,
  .promo-faq-title h2 { font-size: 30px; }
  .promo-lead { width: auto; margin: 0 0 34px; }
  .promo-capability-grid,
  .promo-fit-grid,
  .promo-advantage-grid,
  .promo-result-grid,
  .promo-case-grid {
    display: block;
  }
  .promo-capability-grid article,
  .promo-fit-grid article,
  .promo-advantage-grid article,
  .promo-result-grid article,
  .promo-case-grid article {
    min-height: 0;
    margin-bottom: 18px;
  }
  .process-tabs {
    display: flex;
    overflow-x: auto;
  }
  .process-tabs button {
    flex: 0 0 160px;
    font-size: 15px;
  }
  .process-panels article {
    width: auto;
    padding: 30px 22px;
  }
  .promo-faq-title h2 { margin-bottom: 24px; }
  .promo-faq-list button span { font-size: 18px; }
  .promo-faq-list article.active p { margin: -4px 0 28px; font-size: 15px; }
  .promo-contact { height: auto; padding: 56px 20px; }
  .promo-contact-card {
    width: auto;
    height: auto;
    display: block;
    padding: 34px 24px;
  }
  .promo-contact-card h2 { font-size: 28px; }
  .promo-contact-card img { margin-top: 28px; }
}

@media (max-width: 900px) {
  .fbmms-like-team,
  .fbmms-like-investor,
  .fbmms-like-history,
  .fbmms-team-copy,
  .history-axis {
    width: auto;
  }

  .fbmms-like-team { margin-top: 54px; padding: 48px 18px; }
  .fbmms-team-copy { grid-template-columns: 1fr; gap: 28px; }
  .fbmms-team-copy p { text-align: left; }
  .fbmms-team-copy img { width: 100%; }
  .fbmms-like-investor { margin: 58px 18px 0; }
  .investor-logo-grid { width: auto; grid-template-columns: 1fr; gap: 30px; }
  .fbmms-like-history { margin: 58px 18px 0; }
  .history-axis::before { left: 12px; }
  .history-node { min-height: 0; margin-bottom: 20px; display: block; padding-left: 38px; }
  .history-node::before { left: 12px; }
  .history-card,
  .history-node.left .history-card,
  .history-node.right .history-card { width: auto; margin: 0; }
}

/* Product promotion page - GrowthMan fidelity pass */
.promo-page {
  --gm-accent: #9b5cff;
  --gm-accent-2: #c06bff;
  --gm-bg: #f5f7f9;
  --gm-text: #333;
  --gm-muted: #999;
  --gm-line: #eaeaea;
  min-width: 1200px;
  color: var(--gm-text);
  background: #fff;
}

.promo-page .promo-topbar {
  height: 34px;
  padding: 0 calc((100% - min(1200px, 85vw)) / 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(90deg, #7f4bf2 0%, #a15fff 50%, #c875ff 100%);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 34px;
  white-space: nowrap;
}

.promo-page .promo-topbar a {
  height: 24px;
  min-width: 108px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #9b5cff;
  background: rgba(255, 255, 255, .92);
  font-weight: 500;
  line-height: 24px;
  box-shadow: none;
}

.promo-page .site-header {
  top: 34px;
  height: 60px;
  border-bottom: 1px solid #eee;
  background: rgba(255, 255, 255, .96);
  box-shadow: none;
}

.promo-page .header-inner {
  width: min(1200px, 85vw);
  max-width: 1200px;
  height: 60px;
}

.promo-page .nav {
  gap: 38px;
  font-size: 16px;
}

.promo-page .nav-link,
.promo-page .nav-item {
  color: #111;
}

.promo-page .nav-link:hover,
.promo-page .nav-item:hover,
.promo-page .mega-menu a.active,
.promo-page .mega-menu a:hover {
  color: var(--gm-accent);
}

.promo-page .pill.small,
.promo-page .promo-cta {
  min-width: 124px;
  height: 38px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #8752f6 0%, #b061ff 100%);
  box-shadow: 0 14px 28px rgba(155, 92, 255, .28);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  vertical-align: middle;
  transform: none;
}

.promo-page .header-actions {
  height: 60px;
  display: flex;
  align-items: center;
}

.promo-page .header-actions .promo-cta:hover {
  transform: none;
  background: linear-gradient(90deg, #9460ff 0%, #c16dff 100%);
  box-shadow: 0 14px 28px rgba(155, 92, 255, .32);
}

.promo-page .brand-logo {
  width: 34px;
  height: 34px;
}

.promo-page .brand-text {
  font-size: 22px;
}

.promo-page main {
  padding-top: 60px;
  background: #fff;
}

.promo-page .promo-hero {
  height: calc(100vh - 94px);
  min-height: 820px;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #111;
}

.promo-page .promo-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.promo-page .promo-hero-glass {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .76) 0%, rgba(255, 255, 255, .50) 46%, rgba(255, 255, 255, .68) 100%),
    radial-gradient(circle at 73% 45%, rgba(155, 92, 255, .16), transparent 26%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.promo-page .promo-hero::after {
  display: none;
}

.promo-page .promo-hero-inner {
  width: 85%;
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  padding-top: 170px;
  display: grid;
  grid-template-columns: minmax(640px, 52%) minmax(440px, 38%);
  gap: 6%;
  align-items: start;
  position: relative;
  z-index: 1;
}

.promo-page .promo-hero-title p {
  margin: 0 0 28px;
  color: var(--gm-accent);
  font-size: 24px;
  font-weight: 600;
}

.promo-page .promo-hero-title h1 {
  margin: 0;
  color: #111;
  font-size: 64px;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.promo-page .promo-hero-title h1 span,
.promo-page .promo-section-head h2 span,
.promo-page .promo-faq-title h2 span,
.promo-page .promo-contact-card h2 span {
  display: block;
  white-space: nowrap;
}

.promo-page .promo-hero-copy {
  margin: 0;
  padding-top: 110px;
}

.promo-page .promo-hero-copy p {
  width: auto;
  margin: 0;
  color: rgba(17, 17, 17, .86);
  font-size: 20px;
  line-height: 1.65;
}

.promo-page .promo-hero-action {
  margin-top: 58px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.promo-page .promo-hero-copy a {
  color: var(--gm-accent);
  font-size: 18px;
}

.promo-page .promo-hero-copy a span {
  width: 22px;
  height: 22px;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gm-accent);
  font-size: 12px;
}

.promo-page .promo-hero-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.promo-page .promo-hero-qr img {
  width: 150px;
  height: 150px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 28px rgba(50, 32, 120, .12);
  object-fit: contain;
}

.promo-page .promo-hero-qr p {
  margin: 0;
  color: rgba(17, 17, 17, .86);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.promo-page .promo-wave {
  display: none;
}

.promo-page .promo-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, .08);
  pointer-events: none;
}

.promo-page .promo-wave::after {
  content: "DIGITAL MARKETING";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: rgba(0, 0, 0, .78);
  font-size: clamp(48px, 6.2vw, 112px);
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.promo-page .promo-wave-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1) contrast(1);
}

.promo-page .promo-definition,
.promo-page .promo-advantage,
.promo-page .promo-process,
.promo-page .promo-result,
.promo-page .promo-cases,
.promo-page .promo-faq {
  width: 85%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 145px 0 0;
}

.promo-page .promo-fit,
.promo-page .promo-advantage,
.promo-page .promo-process,
.promo-page .promo-cases {
  width: 100%;
  max-width: none;
  min-width: 1200px;
  padding-left: max(7.5%, calc((100% - 1440px) / 2));
  padding-right: max(7.5%, calc((100% - 1440px) / 2));
}

.promo-page .promo-fit {
  padding-top: 130px;
  padding-bottom: 120px;
  position: relative;
  background: #fff;
}

.promo-page .promo-fit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: var(--gm-bg);
  z-index: 0;
}

.promo-page .promo-fit > * {
  position: relative;
  z-index: 1;
}

.promo-page .promo-advantage {
  padding-top: 145px;
  padding-bottom: 120px;
  background: var(--gm-bg);
}

.promo-page .promo-process {
  padding-top: 120px;
  padding-bottom: 0;
  background: var(--gm-bg);
  overflow: hidden;
}

.promo-page .promo-cases {
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--gm-bg);
}

.promo-page .promo-result {
  padding-bottom: 120px;
}

.promo-page .promo-section-head {
  margin: 0 0 80px;
  padding: 0 54px 0 25px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.promo-page .promo-section-head > span {
  color: var(--gm-accent);
  font-size: 18px;
  line-height: 1.5;
  white-space: nowrap;
}

.promo-page .promo-section-head h2 {
  width: 56%;
  margin: 0;
  color: var(--gm-text);
  font-size: 42px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.promo-page .promo-section-head p,
.promo-page .promo-lead {
  color: var(--gm-muted);
  font-size: 18px;
  line-height: 1.56;
}

.promo-page .promo-lead {
  width: 56%;
  margin: -38px 54px 78px auto;
}

.promo-page .promo-capability-grid,
.promo-page .promo-fit-grid,
.promo-page .promo-advantage-grid,
.promo-page .promo-result-grid,
.promo-page .promo-case-grid {
  display: grid;
  gap: 36px;
}

.promo-page .promo-capability-grid {
  grid-template-columns: repeat(4, 1fr);
  border: 0;
}

.promo-page .promo-capability-grid article {
  min-height: 420px;
  padding: 45px 25px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gm-line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .38);
  box-shadow: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.promo-page .promo-capability-grid article::before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 3;
  height: 10px;
  border-radius: 15px 15px 0 0;
  background: var(--gm-accent);
}

.promo-page .promo-capability-grid article::after,
.promo-page .promo-fit-grid article::after {
  content: "";
  position: absolute;
  inset: 10px 0 0;
  z-index: 0;
  background: rgba(255, 255, 255, .22);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
}

.promo-page .promo-fit-grid article::after {
  inset: 0;
}

.promo-page .promo-capability-grid article > *,
.promo-page .promo-fit-grid article > * {
  position: relative;
  z-index: 2;
}

.promo-page .promo-capability-grid article:hover,
.promo-page .promo-fit-grid article:hover,
.promo-page .promo-result-grid article:hover,
.promo-page .promo-case-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(15, 30, 20, .08);
}

.promo-page .promo-capability-grid i,
.promo-page .promo-result-grid strong {
  margin-bottom: 50px;
  color: var(--gm-accent);
  font-size: 22px;
}

.promo-page .promo-capability-grid h3,
.promo-page .promo-fit h3,
.promo-page .promo-advantage h3,
.promo-page .promo-result h3,
.promo-page .promo-case-grid h3 {
  color: #000;
  font-size: 26px;
  line-height: 1.32;
  font-weight: 500;
}

.promo-page .promo-capability-grid p,
.promo-page .promo-fit p,
.promo-page .promo-advantage p,
.promo-page .promo-result p,
.promo-page .promo-case-grid p {
  color: #666;
  font-size: 16px;
  line-height: 1.75;
}

.promo-page .promo-capability-grid li::before {
  background: var(--gm-accent);
}

.promo-page .promo-fit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.promo-page .promo-fit-grid article {
  min-height: 330px;
  padding: 42px 34px;
  border: 1px solid var(--gm-line);
  border-radius: 15px;
  background-color: rgba(255, 255, 255, .38);
  box-shadow: 0 18px 45px rgba(12, 30, 20, .05);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.promo-page .promo-capability-grid article,
.promo-page .promo-fit-grid article {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
}

.promo-page .promo-capability-grid article:nth-child(1) {
  background-image: url("assets/card-bg/card-platform.png");
}

.promo-page .promo-capability-grid article:nth-child(2) {
  background-image: url("assets/card-bg/card-users.png");
}

.promo-page .promo-capability-grid article:nth-child(3) {
  background-image: url("assets/card-bg/card-search.png");
}

.promo-page .promo-capability-grid article:nth-child(4) {
  background-image: url("assets/card-bg/card-recommend.png");
}

.promo-page .promo-fit-grid article:nth-child(1) {
  background-image: url("assets/card-bg/card-production.png");
}

.promo-page .promo-fit-grid article:nth-child(2) {
  background-image: url("assets/card-bg/card-supplier.png");
}

.promo-page .promo-fit-grid article:nth-child(3) {
  background-image: url("assets/card-bg/card-cro.png");
}

.promo-page .promo-fit-grid a,
.promo-page .promo-case-grid a,
.promo-page .process-panels a {
  color: var(--gm-accent);
  font-size: 16px;
  font-weight: 500;
}

.promo-page .promo-advantage .promo-section-head p {
  width: 42%;
  margin: 0;
}

.promo-page .promo-advantage-grid {
  grid-template-columns: repeat(3, 1fr);
}

.promo-page .promo-advantage-grid article {
  height: 552px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gm-line);
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .94)),
    radial-gradient(circle at right bottom, rgba(155, 92, 255, .14), transparent 44%);
  box-shadow: none;
}

.promo-page .promo-advantage-grid article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 210px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(155, 92, 255, .10);
  pointer-events: none;
}

.promo-page .promo-advantage-grid article:nth-child(1)::after {
  background-image: url("assets/advantage-bg/advantage-scene.png");
}

.promo-page .promo-advantage-grid article:nth-child(2)::after {
  background-image: url("assets/advantage-bg/advantage-users.png");
}

.promo-page .promo-advantage-grid article:nth-child(3)::after {
  background-image: url("assets/advantage-bg/advantage-reputation.png");
}

.promo-page .promo-advantage-grid b {
  height: auto;
  padding: 0;
  margin-bottom: 78px;
  color: var(--gm-accent);
  background: transparent;
  border-radius: 0;
  font-size: 18px;
}

.promo-page .process-growth {
  position: relative;
  min-height: 640px;
  padding-top: 22px;
  overflow: hidden;
}

.promo-page .process-growth::after {
  content: "";
  position: absolute;
  left: -12vw;
  right: -12vw;
  bottom: -42px;
  height: 150px;
  background: linear-gradient(90deg, rgba(155, 92, 255, .12), rgba(209, 139, 255, .20));
  filter: blur(20px);
  opacity: .52;
  pointer-events: none;
}

.promo-page .growth-curve {
  position: absolute;
  left: 50%;
  bottom: -16px;
  z-index: 5;
  width: min(1760px, 118vw);
  height: 520px;
  transform: translateX(-50%);
  pointer-events: none;
}

.promo-page .growth-curve svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.promo-page .growth-area {
  fill: url(#growthFill);
  opacity: .50;
}

.promo-page .growth-line-shadow {
  fill: none;
  stroke: rgba(155, 92, 255, .24);
  stroke-width: 15;
  filter: url(#growthGlow);
}

.promo-page .growth-line-main {
  fill: none;
  stroke: #9b5cff;
  stroke-width: 7;
  stroke-linecap: round;
}

.promo-page .process-growth-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.promo-page .process-growth-grid article {
  position: relative;
  height: 540px;
  padding: 62px 48px 48px;
  overflow: hidden;
  border: 1px solid var(--gm-line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .92) 62%, rgba(255, 255, 255, .74) 100%);
  box-shadow: 0 28px 70px rgba(35, 36, 45, .05);
}

.promo-page .process-growth-grid h3 {
  margin: 0 0 28px;
  color: #000;
  font-size: 30px;
  line-height: 1.28;
  font-weight: 500;
  word-break: keep-all;
}

.promo-page .process-growth-grid p {
  margin: 0;
  max-width: 34em;
  color: #777;
  font-size: 17px;
  line-height: 1.72;
}

.promo-page .growth-markers {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}

.promo-page .growth-marker {
  position: absolute;
  transform: translateX(-50%);
}

.promo-page .growth-marker-short {
  left: 16.7%;
  bottom: 82px;
}

.promo-page .growth-marker-mid {
  left: 50%;
  bottom: 154px;
}

.promo-page .growth-marker-long {
  left: 83.3%;
  bottom: 288px;
}

.promo-page .growth-marker b {
  position: absolute;
  left: 50%;
  bottom: 24px;
  min-width: 78px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  border: 2px solid var(--gm-accent);
  border-radius: 999px;
  background: #fff;
  color: var(--gm-accent);
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(155, 92, 255, .16);
}

.promo-page .growth-marker span {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--gm-accent);
  box-shadow: 0 0 0 2px rgba(155, 92, 255, .28);
}

.promo-page .growth-marker span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  width: 1px;
  height: var(--marker-line-height, 118px);
  transform: translateX(-50%);
  background: repeating-linear-gradient(to bottom, rgba(155, 92, 255, .45) 0 4px, transparent 4px 9px);
}

.promo-page .growth-marker-short span::after {
  --marker-line-height: 92px;
}

.promo-page .growth-marker-mid span::after {
  --marker-line-height: 164px;
}

.promo-page .growth-marker-long span::after {
  --marker-line-height: 298px;
}

.promo-page .promo-result-grid,
.promo-page .promo-case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.promo-page .promo-result-grid article,
.promo-page .promo-case-grid article {
  min-height: 300px;
  padding: 42px 34px;
  border: 1px solid var(--gm-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.promo-page .promo-case-grid small {
  margin-bottom: 66px;
  color: var(--gm-accent);
  font-size: 16px;
}

.promo-page .promo-faq {
  width: 100%;
  max-width: none;
  padding: 93px max(7.5%, calc((100% - 1440px) / 2)) 120px;
  display: grid;
  grid-template-columns: 31% 64%;
  justify-content: space-between;
  background: var(--gm-bg);
}

.promo-page .promo-faq-title > span {
  color: #999;
  font-size: 18px;
}

.promo-page .promo-faq-title h2 {
  margin: 18px 0 75px;
  color: #333;
  font-size: 42px;
  line-height: 1.17;
  font-weight: 500;
}

.promo-page .promo-faq-title a {
  color: var(--gm-accent);
  font-size: 17px;
}

.promo-page .promo-faq-title a span {
  background: var(--gm-accent);
}

.promo-page .promo-faq-list {
  border-top: 1px solid #ddd;
}

.promo-page .promo-faq-list article {
  border-bottom: 1px solid #ddd;
}

.promo-page .promo-faq-list button {
  min-height: 106px;
  padding: 0 36px 0 27px;
}

.promo-page .promo-faq-list button span {
  color: #333;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 500;
}

.promo-page .promo-faq-list article.active button span {
  color: var(--gm-accent);
}

.promo-page .promo-faq-list p {
  color: #999;
  font-size: 18px;
  line-height: 1.56;
}

.promo-page .promo-faq-list article.active p {
  max-height: none;
  margin: -8px 88px 34px 27px;
}

.promo-page .promo-contact {
  min-width: 1200px;
  height: auto;
  padding: 95px 0 120px;
  background: #fff;
}

.promo-page .promo-contact-card {
  width: 85%;
  max-width: 1440px;
  height: 420px;
  padding: 58px 72px;
  border: 1px solid var(--gm-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 25px 65px rgba(12, 30, 20, .08);
}

.promo-page .promo-contact-card span {
  color: var(--gm-accent);
}

.promo-page .promo-contact-card h2 {
  color: #000;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 500;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.promo-page .promo-contact-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.promo-page .promo-contact-qr img {
  width: 170px;
  height: 170px;
}

.promo-page .promo-contact-qr p {
  margin: 0;
  color: rgba(17, 17, 17, .86);
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.promo-page .promo-footer {
  background: #fff;
}

.promo-page .promo-footer .footer-main {
  width: min(1120px, 90%);
  min-width: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 0 28px;
}

.promo-page .promo-footer .footer-brand {
  width: max-content;
  margin: 0 auto 42px;
}

.promo-page .promo-footer .footer-links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 28px;
  justify-content: center;
}

.promo-page .promo-footer .footer-links div {
  align-items: center;
  text-align: center;
}

.promo-page .promo-footer .record {
  margin-top: 54px;
}

@media (max-width: 900px) {
  .promo-page {
    min-width: 0;
  }

  .promo-page .promo-topbar {
    padding: 0 14px;
  }

  .promo-page .site-header {
    top: 34px;
  }

  .promo-page main {
    padding-top: 56px;
  }

  .promo-page .promo-hero {
    height: auto;
    min-height: 0;
    padding: 78px 20px 170px;
  }

  .promo-page .promo-hero-inner {
    width: 100%;
    padding-top: 0;
    display: block;
  }

  .promo-page .promo-hero-title h1 {
    font-size: 40px;
  }

  .promo-page .promo-hero-title h1 span,
  .promo-page .promo-section-head h2 span,
  .promo-page .promo-faq-title h2 span,
  .promo-page .promo-contact-card h2 span {
    white-space: normal;
  }

  .promo-page .promo-hero-copy {
    padding-top: 34px;
  }

  .promo-page .promo-hero-copy p {
    font-size: 16px;
  }

  .promo-page .promo-wave {
    height: 420px;
  }

  .promo-page .promo-wave::before {
    background: rgba(255, 255, 255, .10);
  }

  .promo-page .promo-wave-video {
    opacity: 1;
    object-position: center;
  }

  .promo-page .promo-definition,
  .promo-page .promo-fit,
  .promo-page .promo-advantage,
  .promo-page .promo-process,
  .promo-page .promo-result,
  .promo-page .promo-cases,
  .promo-page .promo-faq {
    width: auto;
    min-width: 0;
    padding: 64px 20px;
  }

  .promo-page .promo-section-head,
  .promo-page .promo-faq {
    display: block;
  }

  .promo-page .promo-section-head {
    padding: 0;
    margin-bottom: 34px;
  }

  .promo-page .promo-section-head h2,
  .promo-page .promo-advantage .promo-section-head p {
    width: auto;
  }

  .promo-page .promo-section-head h2,
  .promo-page .promo-faq-title h2 {
    font-size: 30px;
  }

  .promo-page .promo-lead {
    width: auto;
    margin: 0 0 34px;
  }

  .promo-page .promo-capability-grid,
  .promo-page .promo-fit-grid,
  .promo-page .promo-advantage-grid,
  .promo-page .promo-result-grid,
  .promo-page .promo-case-grid {
    display: block;
  }

  .promo-page .promo-capability-grid article,
  .promo-page .promo-fit-grid article,
  .promo-page .promo-advantage-grid article,
  .promo-page .promo-result-grid article,
  .promo-page .promo-case-grid article {
    height: auto;
    min-height: 0;
    margin-bottom: 18px;
  }

  .promo-page .promo-advantage-grid article {
    padding-bottom: 220px;
  }

  .promo-page .promo-advantage-grid article::after {
    height: 180px;
  }

  .promo-page .process-growth {
    min-height: 0;
    padding-top: 0;
  }

  .promo-page .growth-curve {
    display: none;
  }

  .promo-page .process-growth::after {
    height: 120px;
    opacity: .45;
  }

  .promo-page .process-growth-grid {
    display: block;
  }

  .promo-page .process-growth-grid article {
    height: auto;
    min-height: 320px;
    margin-bottom: 18px;
    padding: 34px 24px 92px;
  }

  .promo-page .process-growth-grid h3 {
    font-size: 24px;
  }

  .promo-page .process-growth-grid b,
  .promo-page .process-growth-grid article:nth-child(1) b,
  .promo-page .process-growth-grid article:nth-child(2) b,
  .promo-page .process-growth-grid article:nth-child(3) b {
    left: 24px;
    bottom: 28px;
    transform: none;
  }

  .promo-page .growth-markers {
    display: none;
  }

  .promo-page .promo-faq-list button span {
    font-size: 19px;
  }

  .promo-page .promo-faq-list article.active p {
    margin: -4px 0 28px 0;
  }

  .promo-page .promo-contact {
    min-width: 0;
  }

  .promo-page .promo-contact-card {
    width: auto;
    height: auto;
    padding: 34px 24px;
    display: block;
  }

  .promo-page .promo-footer .footer-main {
    width: auto;
    padding: 54px 20px 28px;
  }

  .promo-page .promo-footer .footer-links {
    grid-template-columns: repeat(3, minmax(86px, 1fr));
    gap: 22px;
  }
}
