:root {
  --ink: #0e1020;
  --heading: #595959;
  --muted: #5b617a;
  --soft: #f6f7fb;
  --line: #eceef3;
  --blue: #5676fe;
  --blue-2: #4a7bff;
  --cyan: #06b6d4;
  --violet: #8b5cf6;
  --grad: linear-gradient(120deg, var(--blue-2) 0%, var(--violet) 48%, var(--cyan) 100%);
  --shadow: 0 4px 14px rgba(16, 18, 34, 0.05), 0 1px 2px rgba(16, 18, 34, 0.04);
  --deep-shadow: 0 18px 22px rgba(16, 18, 34, 0.08), 0 4px 6px rgba(16, 18, 34, 0.05);
  --max: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Source Han Sans CN", "Microsoft YaHei", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #0b0e1a;
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main { background: #fff; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
section { scroll-margin-top: 84px; }

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-inline: 24px;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 74px;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 0;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(16, 18, 34, 0.05);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(16, 18, 34, 0.05);
}
.nav-bar {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.brand {
  width: 94px;
  height: 34px;
  display: flex;
  align-items: center;
  overflow: visible;
  flex: 0 0 auto;
}
.brand img {
  width: 142px;
  height: 34px;
  max-width: none;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  width: 406px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 510;
  white-space: nowrap;
}
.nav-links a {
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
  font-weight: 700;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

.nav-action,
.button {
  min-height: 46.75px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 590;
  line-height: 24.75px;
  white-space: nowrap;
  text-align: center;
}
.nav-action,
.button-primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 13px rgba(74, 123, 255, 0.3);
}
.nav-action {
  width: 122px;
  flex: 0 0 122px;
}
.button-outline {
  color: #6271fc;
  border-color: #6570fb;
  background: #fff;
  box-shadow: var(--shadow);
}
.button-light {
  color: var(--blue-2);
  background: #fff;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.18);
}
.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  background: transparent;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}
.mobile-menu {
  position: fixed;
  z-index: 45;
  top: 82px;
  right: 18px;
  left: 18px;
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--deep-shadow);
}
.mobile-menu.is-open { display: grid; }
.mobile-menu a {
  padding: 13px 14px;
  color: var(--muted);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 690px;
  padding-top: 0;
  overflow: hidden;
  background: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #fff url("assets/figma/home-hero-bg.png") center top / cover no-repeat;
  opacity: 1;
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 563px) minmax(0, 520px);
  gap: 48px;
  align-items: start;
  padding-top: 150px;
}
.hero-copy,
.hero-visual { min-width: 0; }
.hero-copy {
  padding-top: 20px;
}
.hero-visual {
  width: 520px;
  height: 480px;
  overflow: visible;
}
.hero-badge {
  width: fit-content;
  max-width: 100%;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  padding: 7px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 13.5px;
  line-height: 22.275px;
  font-weight: 400;
}
.hero-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 10px rgba(74, 123, 255, 0.7);
  flex: 0 0 auto;
}
.hero-badge b { color: var(--ink); font-weight: 590; }
.hero h1 {
  margin: 0;
  padding-bottom: 25px;
  font-size: 64px;
  line-height: 70.4px;
  letter-spacing: 0;
  font-weight: 700;
}
.hero h1 span,
.hero h1 em { display: block; }
.hero h1 span {
  line-height: 70.4px;
  margin-bottom: 9.6px;
}
.hero h1 em {
  color: transparent;
  background: linear-gradient(95deg, #4a7bff 0%, #8b5cf6 48%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 63.325px;
  font-style: normal;
  line-height: 69.658px;
}
.hero-text {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 31.35px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
}
.home-orbit-animated {
  display: block;
  width: 113.27%;
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: translate(-2.65%, -1.25%);
}

.metrics {
  height: 311px;
  border-block: 1px solid var(--line);
  background: var(--soft);
}
.metrics-grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-block: 0;
}
.metrics article {
  min-height: 270px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 38px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.metrics article:last-child { border-right: 0; }
.metrics img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 26px;
}
.metrics strong {
  min-height: 65px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
  letter-spacing: -0.8px;
}
.metrics strong b,
.metrics strong i {
  display: inline-block;
  font-style: normal;
}
.metrics strong b {
  font-size: 36.069px;
  line-height: 59.514px;
}
.metrics strong i {
  font-size: 15px;
  line-height: 45.3px;
}
.metric-value-users b {
  font-size: 32.84px;
  line-height: 54.186px;
}
.metric-value-terminals b {
  font-size: 36.78px;
  line-height: 60.687px;
}
.metric-value-terminals i {
  margin-left: 2px;
}
.metric-value-team b {
  font-size: 36.584px;
  line-height: 60.364px;
}
.metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 23px;
  white-space: nowrap;
}

.section {
  padding: 104px 0;
  background: #fff;
}
.platform-section,
.cases-section {
  border-block: 1px solid var(--line);
  /* background: var(--soft); */
}
.solutions-section { background: #fff; }
.ecosystem-section { background: #fff; padding: 80px 0; }
.section-title {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-title p {
  position: relative;
  margin: 0;
  color: var(--blue);
  font-size: 48px;
  line-height: 57px;
  font-weight: 800;
  letter-spacing: 2.34px;
}
.section-title p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 92px;
  height: 5px;
  border-radius: 2px;
  background: var(--blue);
  transform: translateX(-50%);
}
.section-title h2 {
  margin: 0;
  color: var(--heading);
  font-size: 32px;
  line-height: 52.8px;
  font-weight: 800;
  letter-spacing: 0;
}
.section-title h2 span {
  color: transparent;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
}
.section-title em {
  display: block;
  max-width: 1132px;
  color: var(--muted);
  font-size: 18px;
  line-height: 29.7px;
  font-style: normal;
}

.positioning-section {
  min-height: 742px;
}
.position-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-top: 0;
}
.position-card,
.platform-card,
.solution-card,
.case-metrics article,
.case-points {
  border: 1px solid #eff3f8;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.position-card {
  min-height: 248px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 33px 23px;
  text-align: center;
}
.platform-icon,
.solution-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: rgba(86, 118, 254, 0.06);
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
}
.position-icon {
  width: 74px;
  height: 71px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}
.position-icon-shell {
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(86, 118, 254, 0.06);
}
.position-icon-shell img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.position-card h3,
.solution-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 31.35px;
  font-weight: 590;
}
.position-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 24px;
}

.platform-section { padding: 105px 0; }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.platform-card {
  min-height: 221px;
  display: flex;
  flex-direction: column;
  padding: 35px;
}
.platform-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
}
.platform-icon {
  position: relative;
  overflow: visible;
  flex: 0 0 58px;
  color: #4f6eff;
  font-size: 28px;
  box-shadow: 0 8px 13px rgba(74, 123, 255, 0.16);
}
.platform-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
}
.platform-icon-data img {
  width: 70px;
  height: 70px;
}
.platform-icon-shadow {
  background: transparent;
  box-shadow: none;
}
.platform-icon-shadow img {
  width: 102px;
  height: 102px;
}
.platform-icon-shadow img[src*="platform-llm"] {
  height: 99px;
}
.platform-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 36.3px;
}
.platform-card small {
  display: block;
  color: var(--blue-2);
  font-size: 13.5px;
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0;
}
.platform-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 23.925px;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.pill-list span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  font-size: 12.5px;
  line-height: 20px;
}
.section-link {
  width: fit-content;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 0;
  padding: 10px 22px;
  border-radius: 50px;
  color: #fff;
  background: #5680e9;
  font-size: 16px;
  line-height: 24.75px;
}

.solutions-section { padding: 104px 0; }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.solution-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 31px;
}
.solution-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.solution-icon {
  width: 74px;
  height: 71px;
  border-radius: 20px;
  flex: 0 0 auto;
  font-size: 0;
}
.solution-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.solution-icon-frame {
  background: transparent;
}
.solution-icon-frame img {
  width: 74px;
  height: 71px;
}
.solution-icon-bare {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: transparent;
}
.solution-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 29.7px;
  font-weight: 800;
}
.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 23.925px;
}

.cases-section { padding: 105px 0; background: var(--soft); }
.case-layout {
  display: grid;
  grid-template-columns: 353px 1fr;
  gap: 20px;
}
.case-metrics {
  display: grid;
  gap: 18px;
}
.case-metrics article {
  min-height: 161px;
  padding: 29px;
}
.case-metrics strong {
  display: block;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 42px;
  line-height: 46px;
  font-weight: 800;
}
.case-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 23.1px;
}
.case-points {
  min-height: 340px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 24px 34px;
}
.case-points article {
  display: grid;
  grid-template-columns: 18px minmax(0, 488px);
  gap: 14px;
}
.case-points b {
  width: 10px;
  height: 10px;
  margin-top: 10px;
  background: var(--blue-2);
  transform: rotate(45deg);
}
.case-points h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 16px;
  line-height: 26.4px;
}
.case-points p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 23.1px;
}

.case-value-section {
  padding: 105px 0;
  border-block: 1px solid var(--line);
  background: var(--soft);
}
.case-value-grid article {
  min-height: 140px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 31px 24px;
}
.case-value-grid img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.case-value-grid h3 {
  font-size: 18px;
  line-height: 29.7px;
  font-weight: 800;
}
.case-value-grid p {
  margin-top: 0;
  font-size: 14.5px;
  line-height: 23.925px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1132px;
  margin: 0 auto;
}
.partner-grid img {
  width: 100%;
  height: 74px;
  padding: 12px 14px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 7px rgba(16, 18, 34, 0.05), 0 1px 1px rgba(16, 18, 34, 0.04);
}

.cta-section {
  padding: 60px 0;
  color: #fff;
  background: linear-gradient(106deg, rgba(255,255,255,0.2), rgba(255,255,255,0.2)), linear-gradient(106deg, #1e3a8a 0%, #2563eb 30%, #06b6d4 96%);
}
.cta-panel {
  min-height: 352px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 64px 40px;
  border-radius: 28px;
  text-align: center;
}
.cta-panel h2 {
  margin: 0;
  font-size: 42px;
  line-height: 69.3px;
  font-weight: 800;
}
.cta-panel p {
  /* max-width: 560px; */
  margin: 18px 0 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 28.05px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cases-cta .cta-panel {
  overflow: hidden;
  filter: drop-shadow(0 24px 30px rgba(74, 123, 255, 0.3));
}
.cases-cta .button-light {
  min-width: 177px;
}
.cases-cta .button-ghost {
  min-width: 157px;
}

.site-footer {
  padding: 64px 0 32px;
  color: #9498ad;
  background: #0b0e1a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 330px 1fr 1fr 288px;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-about img {
  width: 134px;
  height: 32px;
  object-fit: contain;
}
.footer-about p,
.site-footer a,
.site-footer p {
  color: #9498ad;
  font-size: 14px;
  line-height: 23.1px;
}
.footer-about p {
  max-width: 280px;
  margin: 19px 0 0;
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.site-footer h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 14px;
  line-height: 23px;
}
.site-footer p {
  margin: 15px 0 11px;
  overflow-wrap: anywhere;
}
.footer-contact {
  width: 269px;
}
.footer-contact h3 {
  margin-bottom: 18px;
}
.footer-contact-item {
  position: relative;
  display: block;
  width: 269px;
  min-height: 46.1875px;
  margin: 0;
  color: #9498ad;
  font-size: 14px;
  line-height: 23.1px;
  overflow-wrap: anywhere;
  word-break: normal;
}
.footer-contact-item + .footer-contact-item {
  margin-top: 11px;
}
.footer-contact-icon {
  position: absolute;
  top: 1.6px;
  left: 0;
  width: 20px;
  height: 20px;
  fill: #9498ad;
}
.footer-contact-item span {
  display: block;
  width: 269px;
  min-width: 0;
  text-indent: 25px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #6e7390;
  font-size: 13px;
  line-height: 21.45px;
}
.footer-record-link {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.page-main {
  background: #fff;
}
.page-hero {
  position: relative;
  min-height: 642px;
  padding-top: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(95, 141, 255, 0.18), transparent 34%),
    radial-gradient(circle at 16% 28%, rgba(6, 182, 212, 0.11), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}
.page-hero-inner {
  min-height: 568px;
  display: grid;
  grid-template-columns: minmax(0, 575px) minmax(390px, 530px);
  gap: 54px;
  align-items: center;
  padding-top: 129px;
}
.page-hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
}
.page-hero-copy h1 span,
.page-hero-copy h1 em {
  display: block;
}
.page-hero-copy h1 em {
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}
.page-hero-copy p {
  /* max-width: 550px; */
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 31px;
}
.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  color: #9498ad;
  font-size: 13px;
  line-height: 21.45px;
}
.page-hero-visual {
  justify-self: end;
  min-width: 0;
}
.page-hero-visual img {
  width: 530px;
  max-width: 100%;
  filter: drop-shadow(0 28px 38px rgba(44, 69, 145, 0.14));
}
.platform-hero {
  min-height: 580px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0) 68%),
    #fff url("assets/figma/page-platform-hero.png") calc(50% + 435px) top / 1856px 580px no-repeat;
  overflow: visible;
}
.platform-hero .page-hero-inner {
  min-height: 506px;
  display: block;
  padding-top: 153px;
}
.platform-hero .page-hero-copy {
  width: min(843px, 100%);
}
.platform-hero .page-hero-copy h1 {
  font-size: 52px;
  line-height: 59.8px;
  letter-spacing: 0;
}
.platform-hero .page-hero-copy h1 em {
  width: fit-content;
  white-space: nowrap;
}
.platform-hero .page-hero-copy p {
  width: min(680px, 100%);
  max-width: 680px;
  margin-top: 18px;
  font-size: 18px;
  line-height: 29.7px;
}
.page-dual-band {
  padding: 0 0 78px;
  background: #fff;
}
.page-dual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: -36px;
}
.page-dual-grid article,
.architecture-stack article,
.insight-grid article,
.scenario-grid article,
.product-card,
.value-grid article,
.about-story-card,
.about-honor-card,
.contact-list article,
.contact-form,
.app-feature-grid article,
.step-grid article {
  border: 1px solid #eff3f8;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.page-dual-grid article {
  min-height: 160px;
  padding: 32px;
}
.page-dual-grid span,
.insight-grid span,
.app-feature-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--grad);
  font-size: 13px;
  font-weight: 800;
}
.page-dual-grid h2,
.insight-grid h3,
.scenario-grid h3,
.value-grid h3,
.architecture-content h3,
.product-card h3,
.about-story-card h3,
.about-honor-card h3,
.contact-list h3,
.app-feature-grid h3,
.step-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 32px;
  font-weight: 800;
}
.page-dual-grid p,
.architecture-content p,
.insight-grid p,
.scenario-grid p,
.product-card p,
.value-grid p,
.about-story-card p,
.about-honor-card p,
.contact-list p,
.app-feature-grid p,
.step-grid p,
.app-intro-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 26px;
}
.app-feature-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.app-feature-grid .app-feature-icon {
  width: 74px;
  height: 71px;
  margin-bottom: 0;
  border-radius: 20px;
  background: rgba(86, 118, 254, 0.06);
}
.app-feature-icon img {
  width: 48px;
  height: 48px;
}
.app-feature-grid h3 {
  font-size: 18px;
  line-height: 29.7px;
}
.app-feature-grid p {
  margin-top: 20px;
  font-size: 14.5px;
  line-height: 23.925px;
}
.platform-page .page-dual-band {
  position: relative;
  z-index: 2;
  margin-top: -41px;
  padding: 80px 0 78px;
  background: transparent;
}
.platform-dual-grid {
  position: relative;
  z-index: 2;
  gap: 20px;
  padding-inline: 0;
  margin-top: 0;
}
.platform-dual-grid article {
  min-height: 153px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 32px;
  border-radius: 18px;
}
.platform-dual-grid article > img {
  width: 74px;
  height: 71px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(86, 118, 254, 0.06);
  object-fit: contain;
}
.platform-dual-grid h2 {
  font-size: 19px;
  line-height: 31.35px;
}
.platform-dual-grid p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 23.925px;
}
.platform-grid-large .platform-card {
  min-height: 221px;
}
.platform-section .section-title em,
.platform-architecture-section .section-title em {
  max-width: 738px;
}
.platform-section {
  border-block: 1px solid var(--line);
  background: #f6f7fb;
}
.platform-section .platform-card {
  padding: 35px;
  box-shadow: none;
}
.platform-architecture-section {
  padding: 104px 0;
  background: #fff;
}
.platform-architecture-figure {
  width: 100%;
  margin: 0;
}
.platform-architecture-figure img {
  width: 100%;
  border-radius: 0;
}
.platform-page .cta-panel {
  /* background:
    linear-gradient(120deg, rgba(30, 58, 138, 0.94), rgba(37, 99, 235, 0.92) 42%, rgba(6, 182, 212, 0.92)),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.3), transparent 34%); */
  /* box-shadow: 0 24px 60px rgba(74, 123, 255, 0.3); */
}
.architecture-section,
.values-section,
.app-feature-section {
  border-block: 1px solid var(--line);
  background: var(--soft);
}
.architecture-stack {
  display: grid;
  gap: 18px;
}
.architecture-stack article {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 142px;
  overflow: hidden;
}
.architecture-label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #4b70ff, #06b6d4);
  font-size: 22px;
  font-weight: 800;
}
.architecture-content {
  padding: 30px 34px;
}
.architecture-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.architecture-columns div {
  min-height: 84px;
  padding: 18px;
  border-radius: 14px;
  background: #f7f9fd;
}
.platform-architecture {
  max-width: 920px;
  margin: 0 auto;
}
.platform-architecture article {
  min-height: 82px;
  grid-template-columns: 64px 1fr;
  align-items: start;
  padding: 18px 20px;
  border-radius: 8px;
}
.platform-architecture .architecture-label {
  width: 54px;
  min-height: 28px;
  margin-top: 0;
  border-radius: 6px;
  background: #4a7bff;
  font-size: 13px;
  line-height: 19.8px;
}
.platform-architecture article:last-child {
  color: #fff;
  background: linear-gradient(120deg, #2563eb 0%, #06b6d4 100%);
}
.platform-architecture article:last-child .architecture-label {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}
.platform-architecture article:last-child .architecture-content {
  color: #fff;
}
.platform-architecture article:last-child .architecture-content h3,
.platform-architecture article:last-child .architecture-content p {
  color: #fff;
}
.platform-architecture article:last-child .architecture-columns div {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}
.platform-architecture .architecture-content {
  padding: 0;
}
.platform-architecture .architecture-columns {
  gap: 10px;
}
.platform-architecture .architecture-columns div {
  min-height: 54px;
  padding: 11px 14px;
  border-radius: 9px;
}
.platform-architecture .architecture-content h3 {
  font-size: 14.5px;
  line-height: 23px;
}
.platform-architecture .architecture-content p {
  margin-top: 2px;
  font-size: 12px;
  line-height: 19.8px;
}
.insight-grid,
.scenario-grid,
.value-grid,
.app-feature-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.app-feature-grid {
  grid-template-columns: repeat(2, 1fr);
}
.insight-grid article,
.scenario-grid article,
.value-grid article,
.app-feature-grid article,
.step-grid article {
  min-height: 152px;
  padding: 30px;
}
.app-feature-grid article {
  min-height: 219.531px;
  padding: 31px;
  overflow: hidden;
}
.platform-page .insight-grid article {
  min-height: 267px;
  padding: 31px;
}
.insight-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.insight-head img {
  width: 74px;
  height: 71px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(86, 118, 254, 0.06);
  object-fit: contain;
}
.insight-head h3 {
  font-size: 18px;
  line-height: 29.7px;
}
.platform-page .insight-grid p {
  margin-top: 20px;
  font-size: 14.5px;
  line-height: 23.925px;
}
.scenario-band {
  padding: 72px 0;
  border-block: 1px solid var(--line);
  background: var(--soft);
}
.scenario-grid article {
  min-height: 108px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
}
.scenario-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.scenario-grid h3 {
  font-size: 16px;
  line-height: 26px;
}
.scenario-grid p {
  margin-top: 4px;
  font-size: 13.5px;
  line-height: 23px;
}
.products-section {
  background: #fff;
}
.solutions-page .solutions-hero {
  min-height: 580px;
  background: #f8fbff url("assets/figma/solutions-hero-background.jpg") center / cover no-repeat;
}
.solutions-page .solutions-hero .page-hero-inner {
  min-height: 580px;
  grid-template-columns: minmax(0, 575px) minmax(440px, 530px);
  gap: 54px;
  padding-top: 74px;
}
.solutions-page .solutions-hero .page-hero-copy h1 {
  font-size: 56px;
  line-height: 63.84px;
}
.solutions-page .solutions-hero .page-hero-copy p {
  max-width: 550px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 31px;
}
.solutions-page .solutions-hero .page-hero-visual img {
  width: 530px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  filter: none;
}
.solutions-industry-section {
  padding: 64px 0 104px;
}
.solutions-now-section {
  min-height: 709px;
  padding: 105px 0;
    background: var(--soft);
}
.solutions-now-section .section-title {
  margin-bottom: 82px;
}
.solutions-now-section .section-title h2 span {
  color: transparent;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
}
.solutions-now-section .section-title em {
  max-width: 1132px;
}
.solutions-now-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.solutions-now-grid article {
  min-height: 267px;
  padding: 31px;
  border: 1px solid #eff3f8;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.solutions-now-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.solutions-now-head span {
  width: 74px;
  height: 71px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(86, 118, 254, 0.06);
  flex: 0 0 auto;
}
.solutions-now-head img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.solutions-now-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 29.7px;
  font-weight: 800;
}
.solutions-now-grid p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 23.925px;
}
.solutions-page .solutions-industry-section .section-title {
  margin-bottom: 56px;
}
.solutions-page .solution-grid {
  gap: 22px;
}
.solutions-page .solution-card {
  min-height: 220px;
  gap: 30px;
  padding: 31px;
  border-radius: 18px;
}
.solutions-page .solution-card p {
  font-size: 14.5px;
  line-height: 23.925px;
}
.solutions-page .scenario-band {
  padding: 72px 0;
}
.solutions-page .scenario-grid article {
  min-height: 108px;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 28px;
  border-radius: 18px;
}
.solutions-page .solutions-products-section {
  padding: 104px 0;
}
.solutions-page .products-section .section-title {
  margin-bottom: 56px;
}
.solutions-page .product-grid {
  gap: 22px;
}
.solutions-page .product-card {
  border-radius: 18px;
}
.solutions-page .product-card > img {
  height: 238px;
}
.solutions-page .product-card > div {
  padding: 28px;
}
.solutions-page .solutions-cta {
  padding: 60px 0;
}
.solutions-page .solutions-cta .cta-panel {
  min-height: 352px;
  padding: 64px 40px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  overflow: hidden;
}
.product-card > img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  background: #f4f7fc;
}
.product-card > div {
  padding: 28px;
}
.product-card small,
.value-grid small {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-2);
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
}
.product-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-2);
  font-size: 15px;
  font-weight: 800;
}
.case-hero-metrics {
  height: 276px;
}
.case-metrics-grid {
  grid-template-columns: repeat(4, 1fr);
}
.case-metrics-grid article {
  min-height: 236px;
}
.case-metrics-grid strong {
  font-size: 32px;
  line-height: 48px;
}
.case-metrics-grid .case-metric-text b {
  font-size: 32.84px;
  line-height: 54.186px;
}
.case-layout-wide {
  grid-template-columns: 380px 1fr;
  max-width: 1020px;
  margin: 0 auto;
}
.partner-grid-large {
  margin-top: 42px;
}
.about-intro-section,
.history-section,
.app-intro-section,
.app-steps-section,
.contact-section,
.map-section {
  background: #fff;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}
.about-story-card,
.about-honor-card {
  overflow: hidden;
}
.about-story-card > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.about-story-card > div,
.about-honor-card {
  padding: 32px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.about-stats span {
  min-height: 88px;
  padding: 18px;
  border-radius: 14px;
  background: #f7f9fd;
  color: var(--muted);
  font-size: 13px;
  line-height: 22px;
}
.about-stats strong {
  display: block;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 28px;
  line-height: 34px;
  font-weight: 800;
}
.honor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.honor-grid span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  color: #3156d9;
  background: rgba(86, 118, 254, 0.08);
  font-size: 14px;
  font-weight: 800;
}
.about-honor-card p {
  margin-top: 28px;
}
.about-value-grid article {
  min-height: 245px;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 47px;
  right: 0;
  left: 0;
  height: 2px;
  background: #dfe5ee;
}
.timeline article {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 82px 24px 28px;
  border: 1px solid #eff3f8;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.timeline article::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 24px;
  width: 18px;
  height: 18px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 2px var(--blue-2);
}
.timeline time {
  display: block;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 34px;
  line-height: 40px;
  font-weight: 800;
}
.timeline h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 30px;
}
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
}
.consult-hero {
  min-height: 508px;
}
.consult-hero .page-hero-inner {
  min-height: 434px;
  padding-top: 102px;
}
.consult-hero .page-hero-visual img {
  width: 596px;
  height: 423px;
  object-fit: contain;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 462.390625px) minmax(0, 625.609375px);
  gap: 44px;
  align-items: start;
}
.contact-section {
  padding: 80px 0 56px;
}
.contact-list {
  display: grid;
  gap: 16px;
}
.contact-list article {
  min-height: 90.75px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 17px 21px;
  border-color: #eceef3;
  border-radius: 14px;
}
.contact-list .contact-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
}
.contact-list .contact-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}
.contact-list h3 {
  font-size: 15px;
  line-height: 24.75px;
}
.contact-list p {
  margin-top: 0;
  font-size: 14px;
  line-height: 23.1px;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  min-height: 512.53125px;
  padding: 35px;
  border-color: #eceef3;
  border-radius: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.contact-form label em {
  color: #ff4d4f;
  font-style: normal;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 11px 13px;
  border: 1px solid #dfe5ee;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  line-height: 22px;
  outline: 0;
}
.contact-form textarea {
  height: 162px;
  resize: vertical;
}
.contact-form select {
  min-height: 44px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(74, 123, 255, 0.12);
}
.form-wide {
  grid-column: 1 / -1;
}
.contact-form button {
  width: 123.171875px;
  min-width: 0;
  min-height: 39px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  line-height: 17.24853515625px;
  box-shadow: 0 8px 26px rgba(74, 123, 255, 0.3);
  cursor: pointer;
}
.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 21px;
}
.map-section {
  padding: 0 0 56px;
}
.map-frame {
  --map-service-top-chrome-height: 165px;
  --map-service-sidebar-width: 300px;
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  box-shadow: var(--shadow);
}
.map-frame iframe {
  position: absolute;
  top: calc(var(--map-service-top-chrome-height) * -1);
  left: calc(var(--map-service-sidebar-width) * -1);
  width: calc(100% + var(--map-service-sidebar-width));
  height: calc(100% + var(--map-service-top-chrome-height));
  border: 0;
}
.map-caption {
  margin-top: 20px;
  text-align: center;
}
.map-caption h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 36px;
}
.map-caption p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 25px;
}
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  color: var(--blue-2);
  font-size: 15px;
  line-height: 25px;
  font-weight: 700;
}
.app-main {
  background: #fff;
}
.app-hero {
  min-height: 760px;
  padding-top: 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18, 31, 73, 0.14), rgba(18, 31, 73, 0.28)),
    #2449d8 url("assets/figma/app-bg.jpg") center / cover no-repeat;
}
.app-hero-inner {
  min-height: 760px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding-top: 74px;
  text-align: center;
}
.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.breadcrumb strong {
  color: #fff;
  font-weight: 700;
}
.app-icon {
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  border-radius: 26px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}
.app-hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 66px;
  font-weight: 800;
  letter-spacing: 0;
}
.app-hero p {
  max-width: 650px;
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 31px;
}
.download-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  border-radius: 999px;
  color: #2450d5;
  background: #fff;
  box-shadow: 0 16px 22px rgba(16, 18, 34, 0.18);
  font-size: 16px;
  font-weight: 800;
}
.download-button img,
.download-inline img {
  width: 20px;
  height: 20px;
}
.app-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 14px;
  width: min(740px, 100%);
  margin-top: 34px;
}
.app-stats span {
  min-height: 82px;
  display: grid;
  align-content: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 22px;
}
.app-stats strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 30px;
}
.app-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 960px;
  gap: 0;
  align-items: center;
}
.section-title.align-left {
  justify-items: start;
  margin: 0 0 22px;
  text-align: left;
}
.section-title.align-left p::after {
  left: 0;
  transform: none;
}
.app-intro-grid > img {
  width: 390px;
  border-radius: 22px;
  box-shadow: var(--deep-shadow);
}
.app-feature-grid {
  grid-template-columns: repeat(2, 1fr);
}
.step-grid article {
  display: grid;
  justify-items: center;
  text-align: center;
}
.step-grid img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 20px;
}
.download-inline {
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .nav-links,
  .nav-action { display: none; }
  .menu-button { display: block; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 76px;
    padding-bottom: 56px;
  }
  .page-hero-inner,
  .contact-layout,
  .about-intro-grid,
  .app-intro-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-visual {
    justify-self: center;
  }
  .page-hero-visual img {
    width: min(530px, 100%);
  }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; }
  .hero-visual {
    width: min(520px, 100%);
    height: auto;
    aspect-ratio: 520 / 480;
    justify-self: center;
    transform: none;
  }
  .hero-copy {
    padding-top: 0;
  }
  .metrics {
    height: auto;
  }
  .metrics-grid,
  .position-grid,
  .solution-grid,
  .case-metrics-grid,
  .product-grid,
  .insight-grid,
  .scenario-grid,
  .value-grid,
  .timeline,
  .step-grid,
  .partner-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .position-grid { gap: 18px; }
  .platform-grid,
  .case-layout,
  .case-layout-wide,
  .architecture-stack article,
  .architecture-columns,
  .app-feature-grid {
    grid-template-columns: 1fr;
  }
  .architecture-label {
    min-height: 72px;
  }
  .app-intro-grid > img {
    justify-self: center;
  }
  .case-points article {
    grid-template-columns: 18px 1fr;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .shell {
    width: calc(100vw - 32px);
    padding-inline: 0;
  }
  .site-header .shell {
    width: 100vw;
    max-width: 100vw;
    padding-inline: 16px;
  }
  .nav-bar {
    position: relative;
    gap: 0;
  }
  .menu-button {
    position: fixed;
    top: 15px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    border-color: #d9e1ef;
    box-shadow: 0 4px 12px rgba(16, 18, 34, 0.08);
    z-index: 70;
  }
  .menu-button span { margin: 3px 0; }
  .hero-inner {
    gap: 28px;
    padding-top: 54px;
  }
  .page-hero {
    min-height: auto;
    padding-top: 74px;
  }
  .page-hero-inner {
    gap: 30px;
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .page-hero-copy h1 {
    font-size: 38px;
    line-height: 1.18;
  }
  .page-hero-copy p {
    font-size: 16px;
    line-height: 27px;
  }
  .consult-hero {
    min-height: auto;
  }
  .consult-hero .page-hero-inner {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 46px;
  }
  .consult-hero .page-hero-visual {
    width: 100%;
    max-width: 360px;
  }
  .consult-hero .page-hero-visual img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
  }
  .platform-hero {
    background:
      linear-gradient(180deg, rgba(248, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0.18) 72%, #fff 100%),
      #fff url("assets/figma/page-platform-hero.png") center top / auto 100% no-repeat;
  }
  .page-dual-band {
    padding-bottom: 64px;
  }
  .page-dual-grid {
    margin-top: 0;
  }
  .hero h1 {
    font-size: 42px;
    line-height: 48.72px;
    padding-bottom: 18px;
  }
  .hero h1 span {
    line-height: 48.72px;
    margin-bottom: 7px;
  }
  .hero h1 em {
    font-size: 41.5px;
    line-height: 48.14px;
  }
  .hero-text {
    font-size: 16px;
    line-height: 27px;
  }
  .hero-copy,
  .hero-text,
  .page-hero-copy,
  .page-hero-copy p,
  .architecture-content,
  .architecture-content p,
  .product-card,
  .product-card p,
  .contact-list p,
  .contact-form,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .app-hero p,
  .app-stats span,
  .section-title,
  .section-title h2,
  .section-title em,
  .position-card,
  .position-card p,
  .platform-card,
  .platform-card p,
  .platform-card small,
  .solution-card,
  .solution-card p,
  .case-metrics span,
  .case-points p,
  .cta-panel p,
  .footer-bottom span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }
  .hero h1,
  .section-title p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .hero-badge {
    width: 100%;
    flex-wrap: wrap;
    border-radius: 14px;
    white-space: normal;
  }
  .hero-actions,
  .cta-actions {
    width: 100%;
  }
  .button,
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
    white-space: normal;
  }
  .hero-visual {
    width: 100%;
    overflow: hidden;
  }
  .hero-orbit-visual {
    overflow: visible;
  }
  .hero-visual img {
    width: 100%;
    height: 100%;
    max-width: none;
    transform: none;
  }
  .hero-orbit-visual .home-orbit-animated {
    width: 113.27%;
    height: auto;
    transform: translate(-2.65%, -1.25%);
  }
  .metrics-grid,
  .position-grid,
  .platform-grid,
  .solution-grid,
  .case-metrics-grid,
  .page-dual-grid,
  .product-grid,
  .insight-grid,
  .scenario-grid,
  .value-grid,
  .about-stats,
  .honor-grid,
  .timeline,
  .contact-form,
  .app-stats,
  .app-feature-grid,
  .step-grid,
  .partner-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .metrics article {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section,
  .platform-section,
  .platform-architecture-section,
  .solutions-section,
  .cases-section,
  .case-value-section,
  .ecosystem-section,
  .architecture-section,
  .moment-section,
  .products-section,
  .values-section,
  .about-intro-section,
  .history-section,
  .contact-section,
  .app-intro-section,
  .app-feature-section,
  .app-steps-section {
    padding: 72px 0;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .section-title p {
    font-size: 34px;
    line-height: 42px;
    letter-spacing: 0;
  }
  .section-title h2,
  .cta-panel h2 {
    font-size: 24px;
    line-height: 36px;
  }
  .section-title em {
    font-size: 15px;
    line-height: 26px;
  }
  .position-card,
  .platform-card,
  .solution-card,
  .case-metrics article,
  .case-points {
    border-radius: 16px;
  }
  .solution-card h3 { margin: 0; }
  .architecture-content,
  .page-dual-grid article,
  .insight-grid article,
  .scenario-grid article,
  .value-grid article,
  .about-story-card > div,
  .about-honor-card,
  .contact-form,
  .contact-list article,
  .app-feature-grid article,
  .step-grid article {
    padding: 24px;
  }
  .platform-dual-grid article {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
  }
  .platform-dual-grid article > img {
    width: 58px;
    height: 56px;
    padding: 10px;
    border-radius: 16px;
  }
  .architecture-label {
    min-height: 58px;
    font-size: 18px;
  }
  .product-card > img {
    height: 210px;
  }
  .case-hero-metrics {
    height: auto;
  }
  .timeline::before {
    display: none;
  }
  .timeline article {
    min-height: auto;
    padding-top: 72px;
  }
  .contact-layout {
    gap: 24px;
  }
  .contact-list {
    gap: 12px;
  }
  .contact-list article {
    min-height: auto;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    padding: 20px;
  }
  .contact-list .contact-icon,
  .contact-list .contact-icon img {
    width: 32px;
    height: 32px;
  }
  .contact-list p,
  .map-caption p {
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: auto;
  }
  .contact-form {
    min-height: auto;
    gap: 16px;
    border-radius: 16px;
  }
  .contact-form label {
    gap: 6px;
  }
  .contact-form textarea {
    height: 132px;
    min-height: 120px;
  }
  .contact-form button {
    width: 100%;
    min-height: 46px;
  }
  .map-section {
    padding-bottom: 72px;
  }
  .map-frame {
    height: 300px;
    max-height: 72vw;
    min-height: 220px;
    border-radius: 14px;
  }
  .map-caption {
    margin-top: 16px;
    padding-inline: 4px;
  }
  .map-caption h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .map-caption p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 23px;
  }
  .map-link {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(74, 123, 255, 0.08);
  }
  .app-hero {
    min-height: auto;
  }
  .app-hero-inner {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .app-hero h1 {
    font-size: 42px;
    line-height: 52px;
  }
  .app-icon {
    width: 86px;
    height: 86px;
    border-radius: 22px;
  }
  .app-intro-grid {
    gap: 30px;
  }
  .app-intro-grid > img {
    width: 100%;
  }
  .cta-section {
    padding: 0;
  }
  .cta-panel {
    min-height: 300px;
    border-radius: 0;
    padding: 56px 18px;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .shell {
    width: calc(100vw - 32px);
    max-width: 358px;
    margin-right: 16px;
    margin-left: 16px;
  }
  .site-header .shell {
    width: 100vw;
    max-width: 100vw;
    margin-right: 0;
    margin-left: 0;
  }
  .consult-hero .page-hero-inner {
    gap: 22px;
    padding-top: 46px;
    padding-bottom: 36px;
  }
  .consult-hero .page-hero-copy h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .consult-hero .page-hero-copy p {
    font-size: 15px;
    line-height: 25px;
  }
  .consult-hero .page-hero-visual {
    max-width: 300px;
  }
  .contact-section {
    padding: 56px 0 40px;
  }
  .contact-form,
  .contact-list article {
    padding: 20px;
  }
  .map-section {
    padding-bottom: 56px;
  }
  .map-frame {
    height: 240px;
    max-height: none;
    min-height: 220px;
    border-radius: 12px;
  }
}

/* Keep the contact details balanced while the optional enquiry form is absent. */
.contact-layout {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  gap: 0;
}

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

.contact-list article:last-child {
  grid-column: 1 / -1;
}

@media (min-width: 1121px) {
  .contact-layout:has(.contact-form) {
    grid-template-columns: minmax(0, 462.390625px) minmax(0, 625.609375px);
    justify-content: initial;
    gap: 44px;
  }

  .contact-layout:has(.contact-form) .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-layout:has(.contact-form) .contact-list article:last-child {
    grid-column: auto;
  }
}

@media (max-width: 1120px) {
  .contact-layout:has(.contact-form) {
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-list article:last-child {
    grid-column: auto;
  }
}

.about-hero {
  min-height: 512px;
}
.about-hero .page-hero-inner {
  min-height: 506px;
  padding-top: 100px;
}
.about-hero .page-hero-copy h1 span,
.about-hero .page-hero-copy h1 em {
  display: inline;
}
.about-hero .page-hero-copy h1 span {
  margin-right: 10px;
}
.about-hero .page-hero-copy p {
  max-width: 684px;
  font-size: 18px;
  line-height: 29.7px;
}
.about-hero .page-hero-visual img {
  width: 618px;
}
.about-page .about-intro-section {
  padding: 40px 0 80px;
}
.about-page .about-intro-grid {
  width: min(1210px, calc(100% - 48px));
  padding-inline: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.about-page .about-story-card {
  display: grid;
  grid-template-columns: 177px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  min-height: 291px;
  padding: 24px;
}
.about-page .about-story-card > img {
  width: 177px;
  height: 225px;
  border-radius: 0;
  object-fit: cover;
}
.about-page .about-story-card > div {
  padding: 0;
}
.about-page .about-story-card p,
.about-page .about-honor-card p {
  margin: 0;
  font-size: 14px;
  line-height: 28px;
}
.about-page .about-stats {
  grid-template-columns: repeat(2, max-content);
  gap: 40px;
  margin-top: 12px;
}
.about-page .about-stats span {
  min-height: 80px;
  padding: 0;
  background: transparent;
  font-size: 14px;
  line-height: 23.1px;
}
.about-page .about-stats strong {
  font-size: 34px;
  line-height: 56.1px;
}
.about-page .about-honor-card {
  min-height: 291px;
  padding: 32px 24px 24px;
}
.about-page .honor-grid {
  grid-template-columns: repeat(2, 264px);
  gap: 13.25px 14px;
}
.about-page .honor-grid span {
  position: relative;
  min-height: 47px;
  display: flex;
  align-items: center;
  padding: 12px 17px 12px 34px;
  border: 1px solid #eceef3;
  border-radius: 11px;
  color: var(--muted);
  background: #fff;
  box-shadow: 0 4px 14px rgba(16, 18, 34, 0.05), 0 1px 2px rgba(16, 18, 34, 0.04);
  font-size: 13.5px;
  line-height: 22.275px;
  font-weight: 400;
}
.about-page .honor-grid span::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--grad);
  transform: translateY(-50%);
}
.about-page .about-honor-card p {
  margin-top: 18px;
  line-height: 25.2px;
}
.about-page .values-section {
  padding: 105px 0;
}
.about-page .about-value-grid article {
  min-height: 268px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 31px 31px 30px;
  text-align: center;
}
.about-value-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 5px;
  object-fit: contain;
}
.about-page .about-value-grid small {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  line-height: 21.45px;
  letter-spacing: 0;
  text-transform: none;
}
.about-page .about-value-grid h3 {
  margin-top: 8px;
  font-size: 20px;
  line-height: 33px;
}
.about-page .about-value-grid p {
  max-width: 301px;
  margin-top: 6px;
  font-size: 14.5px;
  line-height: 23.925px;
}
.about-page .history-section {
  padding: 104px 0;
}
.about-timeline {
  gap: 0;
  max-width: 1132px;
  margin: 0 auto;
}
.about-timeline::before {
  top: 80px;
  right: 68px;
  left: 68px;
  height: 2px;
  background: linear-gradient(90deg, #5b6dff, #06b6d4);
}
.about-timeline article {
  min-height: 218px;
  padding: 0 14px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
.about-timeline article::before {
  top: 73px;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 4px solid #e7ecff;
  background: var(--blue);
  transform: translateX(-50%);
}
.about-timeline time {
  color: #6b7cff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-size: 24px;
  line-height: 39.6px;
}
.about-timeline h3 {
  margin: -2px 0 68px;
  color: var(--blue-2);
  font-size: 13px;
  line-height: 22px;
}
.about-timeline p {
  margin: 0 auto;
  max-width: 235px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 22.275px;
  text-align: left;
}
.about-timeline p span {
  position: relative;
  display: block;
  padding-left: 16px;
}
.about-timeline p span.timeline-nowrap {
  white-space: nowrap;
}
.about-timeline p span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5.734px;
  border-radius: 999px;
  background: var(--blue-2);
}
.about-timeline article:last-child time,
.about-timeline article:last-child h3 {
  color: #9498ad;
}
.about-cta .cta-panel {
  min-height: 324px;
}

@media (max-width: 760px) {
  .about-hero .page-hero-inner {
    min-height: auto;
    padding-top: 58px;
  }
  .about-page .about-intro-section {
    padding: 56px 0;
  }
  .about-page .about-intro-grid,
  .about-page .about-story-card {
    grid-template-columns: 1fr;
  }
  .about-page .about-story-card > img {
    width: 100%;
    height: 220px;
  }
  .about-page .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .about-value-grid article {
    min-height: auto;
  }
  .about-timeline::before {
    display: none;
  }
  .about-timeline article {
    padding: 24px;
    border: 1px solid #eff3f8;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    text-align: left;
  }
  .about-timeline article::before {
    display: none;
  }
  .about-timeline h3 {
    margin: 0 0 8px;
  }
  .about-timeline p {
    max-width: 100%;
  }
  .about-timeline p span.timeline-nowrap {
    white-space: normal;
  }
}

.app-page-body .nav-links {
  width: 406px;
}
.app-page {
  background: #fff;
}
.app-page .app-hero {
  position: relative;
  min-height: 682px;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  /* background:  url("assets/figma/app-bg.jpg") center top / 1581px 609px no-repeat; */
}
.app-page .app-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%),
    radial-gradient(40% 60% at 12% 0%, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0) 70%),
    radial-gradient(40% 60% at 85% 0%, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0) 70%),
    radial-gradient(50% 70% at 50% -10%, rgba(74, 123, 255, 0.12) 0%, rgba(74, 123, 255, 0) 70%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0.62) 100%);
  pointer-events: none;
}
.app-page .app-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 682px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding-top: 148px;
  text-align: center;
}
.app-page .breadcrumb {
  min-height: 21px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 17px;
  color: #9498ad;
  font-size: 13px;
  line-height: 21.45px;
}
.app-page .breadcrumb a,
.app-page .breadcrumb span {
  color: #9498ad;
}
.app-page .app-icon {
  width: 110px;
  height: 130px;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: top center;
  box-shadow: none;
}
.app-page .app-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 52px;
  line-height: 59.8px;
  font-weight: 800;
  letter-spacing: 0;
}
.app-page .app-hero p {
  max-width: 680px;
  margin: 18px 0 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 29.7px;
}
.app-page .download-button {
  width: 202px;
  min-height: 64px;
  display: inline-grid;
  grid-template-columns: 30px max-content;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 18, 34, 0.08);
  font-size: 16px;
  font-weight: 700;
}
.app-page .download-button img {
  width: 30px;
  height: 30px;
}
.app-page .download-button span {
  display: grid;
  justify-items: start;
}
.app-page .download-button strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 800;
}
.app-page .download-button small {
  color: var(--muted);
  font-size: 11px;
  line-height: 14.3px;
  font-weight: 400;
}
.app-page .app-stats {
  width: auto;
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 36px;
}
.app-page .app-stats span {
  min-height: 57px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  color: var(--muted);
}
.app-page .app-stats strong {
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 20px;
  line-height: 33px;
  font-weight: 800;
}
.app-page .app-stats em {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 20.625px;
  font-style: normal;
}
.app-page .app-intro-section {
  min-height: 466px;
  padding: 0;
  background: #fff url("assets/figma/app-sleep.png") calc(50% - 607px) top / 720px 466px no-repeat;
}
.app-page .app-intro-grid {
  min-height: 466px;
  max-width: none;
  display: grid;
  align-items: start;
  padding-top: 140px;
}
.app-page .app-intro-grid > div {
  padding-left: 17px;
}
.app-page .app-intro-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 52.8px;
  font-weight: 800;
}
.app-page .app-intro-grid h2 span,
.app-page .app-intro-grid h2 em {
  display: inline;
  font-style: normal;
}
.app-page .app-intro-grid h2 em {
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.app-page .app-intro-grid p {
  max-width: 1132px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 29.7px;
}
.app-page .app-feature-section {
  min-height: 819px;
  padding: 81px 0;
  background: var(--soft);
}
.app-page .app-feature-section .section-title,
.app-page .app-steps-section .section-title {
  margin-bottom: 36px;
}
.app-page .app-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 0;
}
.app-page .app-feature-grid article {
  min-height: 220px;
  padding: 31px;
  border-radius: 18px;
}
.app-page .app-feature-head {
  gap: 20px;
}
.app-page .app-feature-grid .app-feature-icon {
  width: 74px;
  height: 71px;
  display: block;
  margin-bottom: 0;
  border-radius: 20px;
  background: transparent;
}
.app-page .app-feature-grid .app-feature-icon img {
  width: 74px;
  height: 71px;
  object-fit: contain;
}
.app-page .app-feature-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 29.7px;
  font-weight: 800;
}
.app-page .app-feature-grid p {
  margin-top: 20px;
  font-size: 14.5px;
  line-height: 23.925px;
}
.app-page .app-steps-section {
  min-height: 520px;
  padding: 80px 0;
  background: #fff;
}
.app-page .step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.app-page .step-grid article {
  min-height: 164px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  justify-items: start;
  padding: 31px;
  border-radius: 18px;
  text-align: left;
}
.app-page .step-grid img {
  width: 58px;
  height: 58px;
  margin: 0;
  padding: 10px;
  border-radius: 16px;
  background: rgba(86, 118, 254, 0.06);
}
.app-page .step-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 29.7px;
}
.app-page .step-grid p {
  margin-top: 0;
  font-size: 14.5px;
  line-height: 23.925px;
}
.app-page .app-download-cta {
  min-height: 527px;
  padding: 80px 0;
}
.app-page .app-download-cta .cta-panel {
  min-height: 367px;
  padding: 64px 40px;
  border-radius: 0;
}
.app-page .app-download-cta .cta-panel h2 {
  font-size: 42px;
  line-height: 69.3px;
}
.app-page .app-download-cta .cta-panel p {
  max-width: 688px;
  margin: 18px 0 44px;
  font-size: 17px;
  line-height: 28.05px;
}
.app-page .app-download-cta .download-button {
  box-shadow: none;
}

@media (max-width: 1120px) {
  .platform-hero .page-hero-inner,
  .solutions-page .solutions-hero .page-hero-inner,
  .about-hero .page-hero-inner,
  .consult-hero .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .solutions-now-grid,
  .app-page .app-feature-grid,
  .app-page .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-page .app-intro-section {
    background-position: calc(50% - 360px) bottom;
    background-size: 560px auto;
  }
}

@media (max-width: 760px) {
  .shell {
    width: calc(100vw - 32px);
    max-width: none;
    margin-right: 16px;
    margin-left: 16px;
    padding-inline: 0;
  }

  .site-header .shell {
    width: 100vw;
    max-width: 100vw;
    margin-right: 0;
    margin-left: 0;
    padding-inline: 16px;
  }

  .mobile-menu {
    top: 74px;
    right: 16px;
    left: 16px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    gap: 26px;
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 56px;
  }

  .hero h1,
  .page-hero-copy h1,
  .platform-hero .page-hero-copy h1,
  .solutions-page .solutions-hero .page-hero-copy h1,
  .about-hero .page-hero-copy h1,
  .consult-hero .page-hero-copy h1,
  .app-page .app-hero h1 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0;
  }

  .platform-hero .page-hero-copy h1 {
    margin-top: 0 !important;
  }

  .platform-hero .page-hero-copy h1 span,
  .page-hero-copy h1 span[style] {
    line-height: 1.18 !important;
  }

  .platform-hero .page-hero-copy h1 em {
    width: auto;
    white-space: normal;
  }

  .hero h1 em {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-text,
  .page-hero-copy p,
  .platform-hero .page-hero-copy p,
  .solutions-page .solutions-hero .page-hero-copy p,
  .about-hero .page-hero-copy p,
  .consult-hero .page-hero-copy p,
  .app-page .app-hero p,
  .app-page .app-intro-grid p {
    width: auto;
    max-width: 100%;
    font-size: 15.5px;
    line-height: 26px;
  }

  .page-hero,
  .platform-hero,
  .solutions-page .solutions-hero,
  .about-hero,
  .consult-hero,
  .app-page .app-hero {
    min-height: auto;
    padding-top: 74px;
  }

  .page-hero-inner,
  .platform-hero .page-hero-inner,
  .solutions-page .solutions-hero .page-hero-inner,
  .about-hero .page-hero-inner,
  .consult-hero .page-hero-inner,
  .app-page .app-hero-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: start;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .page-hero-copy,
  .platform-hero .page-hero-copy,
  .solutions-page .solutions-hero .page-hero-copy,
  .about-hero .page-hero-copy,
  .consult-hero .page-hero-copy {
    width: 100%;
  }

  .page-hero-visual,
  .solutions-page .solutions-hero .page-hero-visual,
  .about-hero .page-hero-visual,
  .consult-hero .page-hero-visual {
    width: 100%;
    max-width: 360px;
    justify-self: center;
  }

  .page-hero-visual img,
  .solutions-page .solutions-hero .page-hero-visual img,
  .about-hero .page-hero-visual img,
  .consult-hero .page-hero-visual img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
  }

  .about-hero .page-hero-copy h1 span,
  .about-hero .page-hero-copy h1 em {
    display: block;
  }

  .platform-hero {
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(248, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0.3) 62%, #fff 100%),
      #fff url("assets/figma/page-platform-hero.png") center top / auto 100% no-repeat;
  }

  .metrics {
    height: auto;
  }

  .metrics-grid,
  .case-metrics-grid {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics article,
  .case-metrics-grid article {
    min-height: 168px;
    padding: 24px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics img {
    width: 58px;
    height: 54px;
    margin-bottom: 14px;
  }

  .metrics strong {
    min-height: auto;
  }

  .metrics strong b,
  .metric-value-users b,
  .metric-value-terminals b,
  .metric-value-team b,
  .case-metrics-grid strong,
  .case-metrics-grid .case-metric-text b {
    font-size: 30px;
    line-height: 38px;
  }

  .metrics strong i {
    line-height: 30px;
  }

  .metrics span {
    white-space: normal;
  }

  .section,
  .platform-section,
  .platform-architecture-section,
  .solutions-section,
  .solutions-now-section,
  .solutions-page .solutions-industry-section,
  .solutions-page .solutions-products-section,
  .cases-section,
  .case-value-section,
  .ecosystem-section,
  .products-section,
  .values-section,
  .about-intro-section,
  .history-section,
  .contact-section,
  .app-page .app-feature-section,
  .app-page .app-steps-section {
    min-height: auto;
    padding: 56px 0;
  }

  .section-title {
    gap: 8px;
    margin-bottom: 32px;
  }

  .section-title p {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0;
  }

  .section-title p::after {
    width: 66px;
    height: 3px;
    bottom: -8px;
  }

  .section-title h2,
  .cta-panel h2,
  .app-page .app-download-cta .cta-panel h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .section-title em,
  .cta-panel p,
  .app-page .app-download-cta .cta-panel p {
    max-width: 100%;
    font-size: 14.5px;
    line-height: 24px;
  }

  .positioning-section {
    min-height: auto;
  }

  .position-grid,
  .platform-grid,
  .platform-grid-large,
  .solution-grid,
  .solutions-now-grid,
  .case-layout,
  .case-layout-wide,
  .case-value-grid,
  .page-dual-grid,
  .product-grid,
  .insight-grid,
  .scenario-grid,
  .value-grid,
  .about-intro-grid,
  .about-page .about-intro-grid,
  .about-page .about-story-card,
  .app-page .app-feature-grid,
  .app-page .step-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .position-grid,
  .platform-grid,
  .solution-grid,
  .solutions-now-grid,
  .product-grid,
  .value-grid,
  .app-page .app-feature-grid,
  .app-page .step-grid {
    gap: 16px;
  }

  .position-card,
  .platform-card,
  .platform-section .platform-card,
  .solution-card,
  .solutions-page .solution-card,
  .solutions-now-grid article,
  .case-metrics article,
  .case-points,
  .case-value-grid article,
  .page-dual-grid article,
  .platform-dual-grid article,
  .insight-grid article,
  .scenario-grid article,
  .value-grid article,
  .product-card > div,
  .about-story-card > div,
  .about-honor-card,
  .contact-form,
  .contact-list article,
  .app-page .app-feature-grid article,
  .app-page .step-grid article {
    min-height: auto;
    padding: 22px;
    border-radius: 14px;
  }

  .platform-head,
  .solution-head,
  .solutions-now-head,
  .app-feature-head {
    gap: 14px;
  }

  .platform-icon,
  .solution-icon,
  .solutions-now-head span,
  .app-page .app-feature-grid .app-feature-icon,
  .position-icon,
  .scenario-icon,
  .app-page .step-grid img {
    width: 58px;
    height: 58px;
  }

  .platform-icon,
  .solution-icon,
  .solutions-now-head span {
    flex-basis: 58px;
    border-radius: 16px;
  }

  .platform-icon-data img,
  .platform-icon-shadow img,
  .platform-icon-shadow img[src*="platform-llm"],
  .app-page .app-feature-grid .app-feature-icon img {
    width: 58px;
    height: 58px;
  }

  .solution-icon img,
  .solutions-now-head img {
    width: 38px;
    height: 38px;
  }

  .solution-icon-frame img,
  .solution-icon-bare,
  .solution-icon-bare img {
    width: 58px;
    height: 58px;
  }

  .platform-card h3,
  .solution-card h3,
  .solutions-now-head h3,
  .case-points h3,
  .value-grid h3,
  .product-card h3,
  .about-story-card h3,
  .about-honor-card h3,
  .contact-list h3,
  .app-feature-grid h3,
  .step-grid h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .platform-card p,
  .solution-card p,
  .solutions-page .solution-card p,
  .solutions-now-grid p,
  .case-points p,
  .value-grid p,
  .product-card p,
  .about-story-card p,
  .about-honor-card p,
  .contact-list p,
  .app-feature-grid p,
  .step-grid p {
    font-size: 14px;
    line-height: 24px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .pill-list span {
    min-height: 30px;
    padding: 5px 10px;
  }

  .section-link {
    width: 100%;
    margin-top: 28px;
  }

  .platform-page .page-dual-band {
    margin-top: 0;
    padding: 40px 0 56px;
  }

  .platform-dual-grid article {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
  }

  .platform-dual-grid article > img {
    width: 58px;
    height: 58px;
    padding: 10px;
    border-radius: 16px;
  }

  .platform-architecture-figure {
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .platform-architecture-figure img {
    width: 620px;
    max-width: none;
  }

  .architecture-stack article,
  .architecture-columns,
  .platform-architecture article,
  .platform-architecture .architecture-columns {
    grid-template-columns: 1fr;
  }

  .architecture-label,
  .platform-architecture .architecture-label {
    width: 100%;
    min-height: 44px;
  }

  .scenario-band,
  .solutions-page .scenario-band {
    padding: 48px 0;
  }

  .scenario-grid article,
  .solutions-page .scenario-grid article,
  .app-page .step-grid article,
  .case-value-grid article {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
  }

  .product-card > img,
  .solutions-page .product-card > img {
    height: 200px;
  }

  .case-points {
    align-content: start;
    gap: 16px;
  }

  .case-points article {
    grid-template-columns: 16px minmax(0, 1fr);
  }

  .partner-grid,
  .partner-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .partner-grid img {
    height: 64px;
    padding: 10px 12px;
  }

  .about-page .about-story-card {
    min-height: auto;
    padding: 22px;
  }

  .about-page .about-story-card > img {
    width: 100%;
    height: 210px;
  }

  .about-page .about-story-card > div {
    padding: 0;
  }

  .about-page .about-stats,
  .about-page .honor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .about-page .about-stats span,
  .about-page .honor-grid span {
    min-height: auto;
  }

  .about-page .honor-grid span {
    padding: 12px 14px 12px 30px;
  }

  .about-page .values-section,
  .about-page .history-section {
    padding: 56px 0;
  }

  .about-page .about-value-grid article {
    min-height: auto;
  }

  .about-value-icon {
    width: 72px;
    height: 72px;
  }

  .about-timeline {
    gap: 16px;
  }

  .about-timeline article {
    min-height: auto;
    padding: 22px;
  }

  .about-timeline time {
    font-size: 22px;
    line-height: 30px;
  }

  .app-page .app-hero-inner {
    padding-top: 52px;
  }

  .app-page .app-icon {
    width: 86px;
    height: 104px;
  }

  .app-page .download-button {
    width: min(100%, 220px);
    min-height: 58px;
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .app-page .app-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .app-page .app-stats span {
    min-height: auto;
    padding: 12px 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
  }

  .app-page .app-stats strong {
    font-size: 18px;
    line-height: 28px;
    word-break: normal;
  }

  .app-page .app-stats em {
    font-size: 12px;
    line-height: 18px;
  }

  .app-page .app-intro-section {
    min-height: auto;
    padding: 300px 0 56px;
    background-position: center top;
    background-size: min(720px, 150vw) auto;
  }

  .app-page .app-intro-grid {
    min-height: auto;
    display: block;
    padding-top: 0;
  }

  .app-page .app-intro-grid > div {
    padding-left: 0;
  }

  .app-page .app-intro-grid h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .app-page .app-feature-section,
  .app-page .app-steps-section,
  .app-page .app-download-cta {
    min-height: auto;
    padding: 56px 0;
  }

  .app-page .app-download-cta .cta-panel {
    min-height: auto;
    padding: 56px 22px;
  }

  .cta-section,
  .solutions-page .solutions-cta {
    padding: 0;
  }

  .cta-panel,
  .solutions-page .solutions-cta .cta-panel,
  .about-cta .cta-panel,
  .app-page .app-download-cta .cta-panel {
    min-height: auto;
    padding: 52px 20px;
    border-radius: 0;
  }

  .cta-actions {
    width: 100%;
  }

  .button,
  .cta-actions .button {
    width: 100%;
  }

  .site-footer {
    padding: 48px 0 28px;
  }

  .footer-grid {
    gap: 28px;
    padding-bottom: 32px;
  }

  .footer-about p,
  .footer-contact,
  .footer-contact-item,
  .footer-contact-item span {
    width: 100%;
    max-width: 100%;
  }

  .footer-bottom {
    gap: 10px;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .shell {
    width: calc(100vw - 32px);
    max-width: none;
    margin-right: 16px;
    margin-left: 16px;
  }

  .brand {
    width: 94px;
  }

  .hero-inner,
  .page-hero-inner,
  .platform-hero .page-hero-inner,
  .solutions-page .solutions-hero .page-hero-inner,
  .about-hero .page-hero-inner,
  .consult-hero .page-hero-inner,
  .app-page .app-hero-inner {
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero h1,
  .page-hero-copy h1,
  .platform-hero .page-hero-copy h1,
  .solutions-page .solutions-hero .page-hero-copy h1,
  .about-hero .page-hero-copy h1,
  .consult-hero .page-hero-copy h1,
  .app-page .app-hero h1 {
    font-size: 32px;
    line-height: 39px;
  }

  .hero h1 em {
    font-size: 32px;
    line-height: 39px;
  }

  .hero-badge {
    padding: 8px 12px;
    font-size: 12.5px;
    line-height: 20px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-visual,
  .page-hero-visual,
  .solutions-page .solutions-hero .page-hero-visual,
  .about-hero .page-hero-visual,
  .consult-hero .page-hero-visual {
    max-width: 300px;
  }

  .metrics-grid,
  .case-metrics-grid {
    grid-template-columns: 1fr;
  }

  .metrics article,
  .case-metrics-grid article {
    min-height: 148px;
  }

  .section,
  .platform-section,
  .platform-architecture-section,
  .solutions-section,
  .solutions-now-section,
  .solutions-page .solutions-industry-section,
  .solutions-page .solutions-products-section,
  .cases-section,
  .case-value-section,
  .ecosystem-section,
  .products-section,
  .values-section,
  .about-intro-section,
  .history-section,
  .contact-section,
  .app-page .app-feature-section,
  .app-page .app-steps-section {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .section-title p {
    font-size: 27px;
    line-height: 35px;
  }

  .section-title h2,
  .cta-panel h2,
  .app-page .app-download-cta .cta-panel h2 {
    font-size: 22px;
    line-height: 31px;
  }

  .position-card,
  .platform-card,
  .platform-section .platform-card,
  .solution-card,
  .solutions-page .solution-card,
  .solutions-now-grid article,
  .case-metrics article,
  .case-points,
  .case-value-grid article,
  .page-dual-grid article,
  .platform-dual-grid article,
  .insight-grid article,
  .scenario-grid article,
  .value-grid article,
  .product-card > div,
  .about-page .about-story-card,
  .about-story-card > div,
  .about-honor-card,
  .contact-form,
  .contact-list article,
  .app-page .app-feature-grid article,
  .app-page .step-grid article {
    padding: 20px;
  }

  .platform-head,
  .solution-head,
  .solutions-now-head,
  .app-feature-head {
    align-items: flex-start;
  }

  .platform-dual-grid article,
  .scenario-grid article,
  .solutions-page .scenario-grid article,
  .app-page .step-grid article,
  .case-value-grid article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .platform-dual-grid article > img,
  .scenario-icon,
  .app-page .step-grid img,
  .case-value-grid img {
    width: 48px;
    height: 48px;
  }

  .product-card > img,
  .solutions-page .product-card > img {
    height: 180px;
  }

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

  .about-page .about-stats,
  .about-page .honor-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-story-card > img {
    height: 190px;
  }

  .app-page .app-stats {
    grid-template-columns: 1fr;
  }

  .app-page .app-intro-section {
    padding-top: 260px;
    background-size: 138vw auto;
  }

  .app-page .app-intro-grid h2 {
    font-size: 27px;
    line-height: 35px;
  }

  .app-page .download-button,
  .app-page .app-download-cta .download-button {
    width: 100%;
  }

  .cta-panel,
  .solutions-page .solutions-cta .cta-panel,
  .about-cta .cta-panel,
  .app-page .app-download-cta .cta-panel {
    padding: 48px 18px;
  }

  .footer-contact-item span {
    text-indent: 24px;
  }
}
