:root {
  --primary-color: #33f0a0;
  --accent-color: #23d8ff;
  --text-color: #ffffffe0;
  --muted-text: #ffffffad;
  --shadow-color: rgb(0 0 0 / 0.6);
  --progress-width: 500px;
  --switch-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --switch-soft-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: #111418;
  color: var(--text-color);
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

button {
  font: inherit;
}

.indicator {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: 5px;
  overflow: hidden;
  background: rgb(255 255 255 / 0.08);
}

.indicator-bar {
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--primary-color);
}

.is-ready .indicator-bar {
  transition: transform 5.2s linear;
}

.top-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    padding 260ms var(--switch-soft-ease),
    background-color 260ms var(--switch-soft-ease),
    backdrop-filter 260ms var(--switch-soft-ease),
    box-shadow 260ms var(--switch-soft-ease);
}

.has-scrolled .top-nav {
  padding-block: 14px;
  background: rgb(12 15 20 / 0.72);
  box-shadow: 0 14px 42px rgb(0 0 0 / 0.24);
  backdrop-filter: blur(14px);
}

.brand,
.nav-actions {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  white-space: nowrap;
}

.brand-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-actions {
  gap: 24px;
}

.nav-link,
.nav-page-link {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted-text);
  cursor: pointer;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-page-link:hover,
.nav-link.active,
.nav-page-link.active {
  color: #fff;
}

.nav-link.active::after,
.nav-page-link.active::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--primary-color);
  content: "";
}

.svg-container,
.icon-button,
.icon-button svg {
  width: 22px;
  height: 22px;
}

.icon-button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.stage {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  isolation: isolate;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 760ms var(--switch-soft-ease),
    transform 760ms var(--switch-ease);
  will-change: transform, opacity;
}

.stage.is-visible,
.is-ready .stage {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.is-ready.has-scrolled.is-scrolling-down .stage:not(.is-visible) {
  transform: translate3d(0, -42px, 0);
}

.is-ready.has-scrolled.is-scrolling-up .stage:not(.is-visible) {
  transform: translate3d(0, 42px, 0);
}

.cards,
.card,
.card::after,
.card-content {
  position: absolute;
  left: 0;
  top: 0;
}

.card {
  background-color: #242424;
  background-position: center;
  background-size: cover;
  box-shadow: 6px 6px 10px 2px var(--shadow-color);
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, width, height, opacity, filter;
  backface-visibility: hidden;
}

.is-ready .card,
.is-ready .card-content,
.is-ready .slide-numbers .item {
  transition:
    transform 860ms var(--switch-ease),
    width 860ms var(--switch-ease),
    height 860ms var(--switch-ease),
    border-radius 860ms var(--switch-ease),
    opacity 520ms var(--switch-soft-ease),
    filter 680ms var(--switch-soft-ease);
}

.is-ready .card-content {
  transition:
    transform 760ms var(--switch-ease),
    width 760ms var(--switch-ease),
    opacity 380ms var(--switch-soft-ease);
}

.is-ready .slide-numbers .item {
  transition:
    transform 720ms var(--switch-ease),
    opacity 420ms var(--switch-soft-ease);
}

.stage.is-switching .card {
  box-shadow: 0 24px 66px rgb(0 0 0 / 0.46);
}

.card::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.5), rgb(0 0 0 / 0.1) 48%, rgb(0 0 0 / 0.2)),
    linear-gradient(0deg, rgb(0 0 0 / 0.34), transparent 44%);
  content: "";
  pointer-events: none;
  transition: opacity 620ms var(--switch-soft-ease);
}

.stage.is-switching .card::after {
  opacity: 0.86;
}

.card-content {
  z-index: 40;
  width: 200px;
  padding-left: 16px;
  color: var(--text-color);
  pointer-events: none;
  text-shadow: 0 2px 10px rgb(0 0 0 / 0.45);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.stage.is-switching-next .card-content,
.stage.is-switching-prev .card-content {
  transition-delay: 70ms, 70ms, 0ms;
}

.content-start {
  width: 30px;
  height: 5px;
  border-radius: 99px;
  background: var(--text-color);
}

.content-place {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

.content-title-1,
.content-title-2 {
  font-family: Impact, "Arial Narrow", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.06;
  text-transform: uppercase;
}

.details {
  position: absolute;
  top: clamp(118px, 27vh, 240px);
  left: clamp(22px, 5vw, 60px);
  z-index: 35;
  width: min(500px, calc(100vw - 44px));
  text-shadow: 0 4px 24px rgb(0 0 0 / 0.5);
  pointer-events: none;
  opacity: 0;
  transform: translateX(-70px);
  transition:
    opacity 520ms var(--switch-soft-ease),
    transform 620ms var(--switch-ease),
    filter 560ms var(--switch-soft-ease);
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.place-box {
  position: relative;
  height: 46px;
  overflow: hidden;
}

.place-box .text {
  position: relative;
  padding-top: 16px;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
  will-change: transform, opacity, filter;
}

.place-box .text::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 4px;
  border-radius: 99px;
  background: #fff;
  content: "";
}

.title-box-1,
.title-box-2 {
  height: clamp(58px, 9vw, 100px);
  margin-top: 2px;
  overflow: hidden;
}

.title-1,
.title-2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  will-change: transform, opacity, filter;
}

.desc {
  width: min(500px, 100%);
  margin: 16px 0 0;
  color: #ffffffde;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.62;
  will-change: transform, opacity, filter;
}

.cta {
  display: flex;
  align-items: center;
  width: min(500px, 100%);
  margin-top: 24px;
  pointer-events: auto;
  will-change: transform, opacity, filter;
}

.bookmark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: none;
  border-radius: 99px;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.bookmark:hover {
  transform: translateY(-1px);
  background: #f0b93f;
}

.bookmark svg {
  width: 20px;
  height: 20px;
}

.discover {
  height: 38px;
  margin-left: 16px;
  padding: 4px 24px;
  border: 1px solid #fff;
  border-radius: 99px;
  background: rgb(0 0 0 / 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.discover:hover {
  background: #fff;
  color: #171717;
}

.pagination {
  position: absolute;
  z-index: 65;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
}

.arrow {
  z-index: 65;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid rgb(255 255 255 / 0.35);
  border-radius: 999px;
  background: rgb(0 0 0 / 0.08);
  color: rgb(255 255 255 / 0.76);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.arrow:hover {
  border-color: rgb(255 255 255 / 0.8);
  color: #fff;
  transform: translateY(-1px);
}

.arrow-right {
  margin-left: 20px;
}

.arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.progress-sub-container {
  z-index: 65;
  display: flex;
  align-items: center;
  width: var(--progress-width);
  height: 50px;
  margin-left: 24px;
}

.progress-sub-background {
  width: 100%;
  height: 3px;
  background: rgb(255 255 255 / 0.2);
}

.progress-sub-foreground {
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: width 620ms var(--switch-ease);
}

.slide-numbers {
  position: relative;
  z-index: 65;
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.slide-numbers .item {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.cover {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #fff;
  pointer-events: none;
  transition: transform 950ms cubic-bezier(0.37, 0, 0.63, 1);
}

.scroll-cue {
  position: absolute;
  right: clamp(22px, 5vw, 60px);
  bottom: 26px;
  z-index: 66;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 0.82);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  animation: cue-bounce 2s infinite;
}

@keyframes cue-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(7px);
  }
  60% {
    transform: translateY(3px);
  }
}

.info-section {
  position: relative;
  min-height: auto;
  padding: 78px 36px;
  background:
    linear-gradient(120deg, rgb(51 240 160 / 0.08), transparent 34%),
    linear-gradient(180deg, #111418 0%, #151a21 100%);
  color: var(--text-color);
  overflow: hidden;
  opacity: 0.34;
  transform: translate3d(0, 58px, 0);
  transition:
    opacity 760ms var(--switch-soft-ease),
    transform 820ms var(--switch-ease);
  will-change: transform, opacity;
}

.info-section.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.is-scrolling-down .info-section:not(.is-visible) {
  transform: translate3d(0, 72px, 0);
}

.is-scrolling-up .info-section:not(.is-visible) {
  transform: translate3d(0, -58px, 0);
}

.info-section::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgb(255 255 255 / 0.035) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgb(255 255 255 / 0.025) 0 1px, transparent 1px 42px);
  content: "";
  pointer-events: none;
  opacity: 0.4;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 900ms var(--switch-soft-ease),
    transform 900ms var(--switch-ease);
}

.info-section.is-visible::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.flow-section {
  background:
    linear-gradient(135deg, rgb(35 216 255 / 0.1), transparent 36%),
    linear-gradient(180deg, #151a21 0%, #10151d 100%);
}

.integration-section {
  background:
    linear-gradient(135deg, rgb(51 240 160 / 0.1), transparent 32%),
    linear-gradient(180deg, #10151d 0%, #121926 100%);
}

.deploy-section {
  min-height: auto;
  background:
    linear-gradient(120deg, rgb(255 190 50 / 0.08), transparent 42%),
    linear-gradient(180deg, #121926 0%, #111418 100%);
}

.flow-overview-section {
  background:
    linear-gradient(135deg, rgb(51 240 160 / 0.1), transparent 38%),
    linear-gradient(180deg, #111418 0%, #151a21 100%);
}

.flow-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.flow-card {
  position: relative;
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.04)),
    #121821;
  box-shadow: 0 18px 46px rgb(0 0 0 / 0.22);
}

.flow-card::after {
  position: absolute;
  top: 38px;
  right: -12px;
  width: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  content: "";
}

.flow-card:last-child::after {
  display: none;
}

.flow-card span {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 900;
}

.flow-card h3 {
  margin: 42px 0 12px;
  color: #fff;
  font-size: 20px;
}

.flow-card p {
  margin: 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 14px;
  line-height: 1.62;
}

.flow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.flow-actions a {
  min-width: 128px;
}

.flow-board-panel {
  padding: 18px;
}

.flow-board-head,
.flow-board-line,
.flow-board-metrics {
  display: grid;
  gap: 12px;
}

.flow-board-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 16px;
}

.flow-board-head strong {
  color: #fff;
  font-size: 18px;
}

.flow-board-head span {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 900;
}

.flow-board-line {
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.05);
}

.flow-board-line + .flow-board-line {
  margin-top: 12px;
}

.flow-board-line i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px rgb(35 216 255 / 0.08);
}

.flow-board-line strong,
.flow-board-line em {
  color: #fff;
  font-size: 14px;
  font-style: normal;
}

.flow-board-line span {
  display: block;
  margin-top: 4px;
  color: rgb(255 255 255 / 0.58);
  font-size: 12px;
}

.flow-board-line em {
  color: var(--primary-color);
  font-weight: 900;
}

.flow-board-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.flow-board-metrics span {
  min-height: 58px;
  padding: 14px 10px;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.05);
  color: rgb(255 255 255 / 0.78);
  font-size: 13px;
  font-weight: 800;
}

.action-grid .action-card {
  background: linear-gradient(135deg, rgb(51 240 160 / 0.16), rgb(255 255 255 / 0.07));
}

.action-card a {
  margin-top: 18px;
}

.product-page-body {
  min-height: 100%;
  background: #0c111b;
}

.product-page-main {
  padding-top: 72px;
  background: #f4f6f9;
}

.product-page-body .section-content {
  width: min(1320px, calc(100vw - 56px));
}

.product-cert-banner {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100vw - 56px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: #1d56bf;
  box-shadow: none;
}

.product-cert-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 512 / 100;
  object-fit: cover;
}

.product-detail-crumbs {
  display: flex;
  width: min(1320px, calc(100vw - 56px));
  min-height: 36px;
  align-items: center;
  gap: 7px;
  margin: 0 auto;
  background: #fff;
  color: #364152;
  font-size: 13px;
}

.product-detail-crumbs a {
  color: #172033;
}

.product-detail-crumbs span,
.product-detail-crumbs strong {
  color: #5d6877;
  font-weight: 500;
}

.scraped-product-section {
  min-height: 560px;
  padding: 56px 0 72px;
  background: #efefef;
  color: #172033;
}

.scraped-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 32px;
  align-items: start;
  justify-content: center;
  margin-top: 0;
}

.scraped-product-main,
.scraped-product-side {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.scraped-product-main {
  min-height: 380px;
  padding: 48px 64px;
  background: #fff;
}

.scraped-product-main h1 {
  margin: 0 0 32px;
  color: #172033;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.28;
}

.scraped-product-image {
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.scraped-product-image img {
  display: block;
  width: 100%;
  max-width: 640px;
  max-height: 240px;
  object-fit: contain;
}

.scraped-product-note {
  margin-top: 34px;
  padding-top: 0;
  border-top: 0;
}

.scraped-product-note p {
  margin: 0;
  color: #5d6877;
  font-size: 14px;
  line-height: 1.72;
}

.scraped-product-side {
  position: static;
  padding: 0;
}

.scraped-product-actions {
  display: grid;
  gap: 12px;
}

.scraped-product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 800;
}

.scraped-product-actions .primary-action {
  background: #e90d0d;
  color: #fff;
}

.scraped-product-actions .secondary-action {
  border: 1px solid #e90d0d;
  background: #fff;
  color: #172033;
}

.scraped-product-hotline {
  display: block;
  margin-top: 18px;
  color: #e90d0d;
  font-weight: 800;
  line-height: 1.55;
}

.scraped-product-hotline span {
  display: block;
  font-size: 14px;
}

.scraped-product-hotline strong {
  display: block;
  font-size: 22px;
}

.product-page-title {
  margin: 0;
  color: #142033;
  font-family: Impact, "Arial Narrow", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1;
}

.product-page-body .info-section {
  opacity: 1;
  transform: none;
}

.business-page-body {
  background: #f4f6f9;
  color: #1d2735;
}

.business-page-main {
  padding-top: 72px;
  background: #f4f6f9;
}

.business-nav,
.product-page-body .top-nav {
  background: rgb(12 15 20 / 0.86);
  box-shadow: 0 12px 34px rgb(15 23 42 / 0.22);
  backdrop-filter: blur(14px);
}

.business-detail-section,
.business-section {
  padding: 58px 36px;
  background: #fff;
}

.business-detail-section {
  padding-top: 42px;
}

.business-muted-section {
  background: #f4f6f9;
}

.business-container {
  width: min(1180px, calc(100vw - 44px));
  margin: 0 auto;
}

.business-crumbs {
  margin-bottom: 22px;
}

.business-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 28px;
  align-items: stretch;
}

.business-showcase,
.business-summary {
  min-width: 0;
}

.business-title {
  margin: 0 0 22px;
  color: #172033;
  font-family: Impact, "Arial Narrow", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1;
}

.business-image-frame {
  overflow: hidden;
  border: 1px solid rgb(20 32 51 / 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgb(15 23 42 / 0.12);
}

.business-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.business-summary {
  padding: 28px;
  border: 1px solid rgb(20 32 51 / 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgb(15 23 42 / 0.1);
}

.business-summary h2 {
  margin: 0 0 12px;
  color: #172033;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.16;
}

.business-summary p,
.business-lead,
.business-contact p {
  margin: 0;
  color: #5d6877;
  font-size: 14px;
  line-height: 1.76;
}

.business-meta {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.business-meta div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgb(20 32 51 / 0.1);
  border-radius: 8px;
  background: #f7f9fc;
}

.business-meta span {
  color: #778394;
  font-size: 12px;
  font-weight: 800;
}

.business-meta strong {
  color: #172033;
  font-size: 14px;
  line-height: 1.5;
}

.business-section .section-kicker {
  color: #118a62;
}

.business-section h2 {
  margin: 0;
  color: #172033;
  font-family: Impact, "Arial Narrow", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.business-card-grid,
.business-material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.business-card-grid article,
.business-timeline article,
.business-material-card {
  border: 1px solid rgb(20 32 51 / 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgb(15 23 42 / 0.08);
}

.business-card-grid article {
  min-height: 180px;
  padding: 22px;
}

.business-card-grid span,
.business-timeline span {
  color: #118a62;
  font-size: 13px;
  font-weight: 900;
}

.business-card-grid h3,
.business-timeline h3 {
  margin: 18px 0 10px;
  color: #172033;
  font-size: 20px;
}

.business-card-grid p,
.business-timeline p {
  margin: 0;
  color: #5d6877;
  font-size: 14px;
  line-height: 1.66;
}

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

.business-timeline article {
  position: relative;
  min-height: 176px;
  padding: 22px;
}

.business-timeline article::after {
  position: absolute;
  top: 32px;
  right: -14px;
  width: 14px;
  height: 2px;
  background: #118a62;
  content: "";
}

.business-timeline article:last-child::after {
  display: none;
}

.business-lead {
  max-width: 760px;
  margin-top: 16px;
}

.business-material-card {
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 14px;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.business-material-card:hover {
  transform: translateY(-2px);
  border-color: rgb(17 138 98 / 0.34);
}

.business-material-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: #f3f5f8;
  object-fit: cover;
  object-position: top center;
}

.business-material-card strong {
  color: #172033;
  font-size: 16px;
}

.business-material-card span {
  color: #6b7584;
  font-size: 13px;
}

.business-contact-section {
  background: #172033;
}

.business-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.business-contact h2,
.business-contact .section-kicker {
  color: #fff;
}

.business-contact p {
  max-width: 680px;
  margin-top: 14px;
  color: rgb(255 255 255 / 0.74);
}

.business-footer {
  background: #303030;
}

.recruit-page-main {
  padding-top: 72px;
}

.recruit-hero {
  position: relative;
  min-height: min(720px, calc(100vh - 72px));
  overflow: hidden;
  background: #111418;
}

.recruit-hero img {
  display: block;
  width: 100%;
  height: min(720px, calc(100vh - 72px));
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.recruit-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(17 20 24 / 0.62), rgb(17 20 24 / 0.1) 46%, rgb(17 20 24 / 0.18)),
    linear-gradient(0deg, #111418 0%, transparent 28%);
  content: "";
  pointer-events: none;
}

.recruit-hero-panel {
  position: absolute;
  left: clamp(22px, 5vw, 72px);
  bottom: clamp(32px, 7vw, 90px);
  z-index: 1;
  width: min(520px, calc(100vw - 44px));
  color: #fff;
  text-shadow: 0 4px 28px rgb(0 0 0 / 0.42);
}

.recruit-hero-panel h1 {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(46px, 8vw, 82px);
  line-height: 1;
}

.recruit-hero-panel p {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.72;
}

.recruit-secondary {
  border-color: rgb(255 255 255 / 0.38);
  color: #fff;
  backdrop-filter: blur(10px);
}

.screenshot-shell {
  padding: 12px;
}

.screenshot-shell img,
.software-shot img {
  display: block;
  width: 100%;
}

.screenshot-shell img {
  border: 1px solid rgb(20 32 51 / 0.14);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgb(24 43 66 / 0.16);
}

.software-shot-stack {
  display: grid;
  gap: 16px;
}

.product-module-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.product-module-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px 16px;
  padding: 18px;
  border: 1px solid var(--business-border);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--business-card-shadow);
}

.product-module-list span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  background: rgb(18 102 79 / 0.1);
  color: var(--business-primary);
  font-size: 13px;
  font-weight: 900;
}

.product-module-list h3 {
  margin: 0;
  color: var(--business-text);
  font-size: 18px;
}

.product-module-list p {
  margin: 0;
  color: var(--business-muted);
  font-size: 14px;
  line-height: 1.68;
}

.product-module-preview {
  align-self: stretch;
}

.product-catalog-section {
  min-height: auto;
}

.product-catalog-shell {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}

.product-catalog-nav {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 10px;
}

.product-catalog-nav button {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 6px 12px;
  min-height: 98px;
  padding: 16px;
  border: 1px solid rgb(20 32 51 / 0.1);
  border-radius: 6px;
  background: #f8fafc;
  color: #172033;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-catalog-nav button.active,
.product-catalog-nav button:focus-visible {
  border-color: rgb(18 102 79 / 0.38);
  background: #fff;
  box-shadow: 0 14px 32px rgb(15 23 42 / 0.08);
  outline: 0;
}

.product-catalog-nav button.active {
  transform: translateX(4px);
}

.product-catalog-nav button span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  background: rgb(18 102 79 / 0.1);
  color: var(--business-primary);
  font-size: 12px;
  font-weight: 900;
}

.product-catalog-nav button strong {
  display: block;
  min-width: 0;
  color: #172033;
  font-size: 15px;
  line-height: 1.42;
}

.product-catalog-nav button small {
  display: block;
  min-width: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}

.product-catalog-content {
  min-width: 0;
}

.product-catalog-panel {
  display: none;
  min-width: 0;
}

.product-catalog-panel.is-active {
  display: block;
}

.product-panel-head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(20 32 51 / 0.1);
}

.product-panel-head .section-lead {
  max-width: 760px;
}

.product-content-section {
  padding: 22px;
  border: 1px solid rgb(20 32 51 / 0.1);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 34px rgb(15 23 42 / 0.08);
}

.product-content-section + .product-panel-block {
  margin-top: 24px;
}

.product-content-title {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(20 32 51 / 0.1);
}

.product-content-title span,
.product-subtitle span {
  color: #118a62;
  font-size: 13px;
  font-weight: 900;
}

.product-content-title h2 {
  margin: 0;
  color: #172033;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.22;
}

.product-content-section .section-lead {
  max-width: 760px;
  margin-bottom: 22px;
}

.product-panel-grid,
.product-module-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 360px);
  gap: 22px;
  align-items: start;
}

.motion-product-grid {
  grid-template-columns: minmax(320px, 420px) minmax(280px, 1fr);
}

.product-panel-block {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgb(20 32 51 / 0.1);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 34px rgb(15 23 42 / 0.08);
}

.product-panel-block-head {
  margin-bottom: 18px;
}

.product-detail-block .product-panel-block-head {
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(20 32 51 / 0.1);
}

.product-panel-block-head h2 {
  margin: 6px 0 8px;
  color: #172033;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.22;
}

.product-panel-block-head p:last-child {
  max-width: 720px;
  margin: 0;
  color: #5d6877;
  font-size: 14px;
  line-height: 1.7;
}

.product-subtitle {
  margin: 20px 0 14px;
}

.product-subtitle:first-of-type {
  margin-top: 0;
}

.product-catalog-panel .product-module-list {
  margin-top: 0;
}

.product-catalog-panel .product-summary,
.product-catalog-panel .product-visual,
.product-catalog-panel .software-shot,
.product-catalog-panel .spec-table,
.motion-detail-grid article {
  border-color: rgb(20 32 51 / 0.1);
  background: #fff;
  box-shadow: 0 14px 34px rgb(15 23 42 / 0.08);
}

.product-catalog-panel .spec-table div {
  border-bottom-color: rgb(20 32 51 / 0.1);
}

.product-catalog-panel .spec-table span,
.motion-detail-grid dt {
  color: #118a62;
}

.product-catalog-panel .spec-table strong,
.motion-detail-grid h3,
.motion-detail-grid dd {
  color: #172033;
}

.motion-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.motion-detail-grid article {
  padding: 18px;
  border: 1px solid rgb(20 32 51 / 0.1);
  border-radius: 6px;
}

.motion-detail-grid h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

.motion-detail-grid dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.motion-detail-grid dl div {
  padding: 12px 0;
  border-top: 1px solid rgb(20 32 51 / 0.1);
}

.motion-detail-grid dt {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 900;
}

.motion-detail-grid dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
}

.motion-capture-media {
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(20 32 51 / 0.1);
  border-radius: 6px;
  background: #0f172a;
}

.motion-capture-media img {
  display: block;
  width: 100%;
  height: calc(100% - 45px);
  min-height: 260px;
  object-fit: cover;
}

.motion-capture-media figcaption {
  min-height: 45px;
  padding: 12px 14px;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  background: #172033;
  color: rgb(255 255 255 / 0.78);
  font-size: 13px;
  line-height: 1.58;
}

.software-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.06);
  box-shadow: 0 18px 46px rgb(0 0 0 / 0.22);
}

.software-shot img {
  background: #f5f7fb;
}

.software-shot figcaption {
  padding: 12px 14px;
  color: rgb(255 255 255 / 0.76);
  font-size: 13px;
  line-height: 1.58;
}

.product-section {
  background:
    linear-gradient(140deg, rgb(27 200 131 / 0.12), transparent 38%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  color: #142033;
}

.product-business-section,
.product-business-muted-section {
  background: #fff;
  color: #172033;
}

.product-business-muted-section {
  background: #f4f6f9;
}

.product-business-section::before,
.product-business-muted-section::before {
  background:
    repeating-linear-gradient(90deg, rgb(18 32 51 / 0.045) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgb(18 32 51 / 0.035) 0 1px, transparent 1px 42px);
}

.product-business-section .section-kicker,
.product-business-muted-section .section-kicker {
  color: #118a62;
}

.product-business-section .section-content h2,
.product-business-muted-section .section-content h2 {
  color: #172033;
}

.product-business-section .section-lead,
.product-business-muted-section .section-lead {
  color: #5d6877;
}

.product-business-section .interface-checks span {
  border-color: rgb(20 32 51 / 0.1);
  background: #f7f9fc;
  color: #425066;
}

.product-business-section .software-shot {
  border-color: rgb(20 32 51 / 0.1);
  background: #fff;
  box-shadow: 0 14px 34px rgb(15 23 42 / 0.08);
}

.product-business-section .software-shot figcaption {
  color: #5d6877;
}

.product-business-muted-section .spec-table,
.product-business-muted-section .consult-card {
  border-color: rgb(20 32 51 / 0.1);
  background: #fff;
  box-shadow: 0 14px 34px rgb(15 23 42 / 0.08);
}

.product-business-muted-section .spec-table div {
  border-bottom-color: rgb(20 32 51 / 0.1);
}

.product-business-muted-section .spec-table span,
.product-business-muted-section .consult-card span {
  color: #118a62;
}

.product-business-muted-section .spec-table strong,
.product-business-muted-section .consult-card h3 {
  color: #172033;
}

.product-business-muted-section .consult-card p {
  color: #5d6877;
}

.product-section::before {
  background:
    repeating-linear-gradient(90deg, rgb(18 32 51 / 0.05) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgb(18 32 51 / 0.04) 0 1px, transparent 1px 42px);
  opacity: 0.72;
}

.product-section .section-kicker {
  color: #118a62;
}

.product-section .section-content h2 {
  color: #142033;
}

.product-section .section-lead {
  color: #536274;
}

.product-crumbs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 26px;
  color: #66758a;
  font-size: 13px;
  font-weight: 700;
}

.product-crumbs strong {
  color: #172033;
}

.product-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 30px;
  align-items: stretch;
}

.product-showcase,
.product-summary,
.product-visual {
  min-width: 0;
}

.product-visual {
  margin-top: 28px;
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid rgb(20 32 51 / 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.92), rgb(234 240 248 / 0.86)),
    radial-gradient(circle at 18% 18%, rgb(27 200 131 / 0.18), transparent 32%);
  box-shadow: 0 22px 60px rgb(24 43 66 / 0.12);
}

.product-device {
  overflow: hidden;
  border: 1px solid rgb(20 32 51 / 0.12);
  border-radius: 8px;
  background: #10151d;
  box-shadow: 0 28px 70px rgb(16 24 34 / 0.28);
}

.device-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  color: #fff;
}

.device-top img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.device-top span {
  font-weight: 800;
}

.device-top i {
  margin-left: auto;
  color: #33f0a0;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.device-body {
  display: grid;
  grid-template-columns: 66px 1fr;
  min-height: 270px;
}

.device-sidebar {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px 18px;
  background: rgb(255 255 255 / 0.04);
}

.device-sidebar span {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgb(255 255 255 / 0.14);
}

.device-sidebar .active {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.device-main {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.device-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.device-status strong {
  color: #fff;
  font-size: 18px;
}

.device-status em {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgb(51 240 160 / 0.14);
  color: #33f0a0;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.device-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
  height: 126px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.05);
}

.device-chart span {
  display: block;
  min-height: 22px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
}

.device-list {
  display: grid;
  gap: 10px;
}

.device-list span {
  height: 12px;
  border-radius: 99px;
  background: rgb(255 255 255 / 0.1);
}

.device-list span:nth-child(2) {
  width: 82%;
}

.device-list span:nth-child(3) {
  width: 64%;
}

.product-summary {
  align-self: stretch;
  padding: 28px;
  border: 1px solid rgb(20 32 51 / 0.1);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.88);
  box-shadow: 0 22px 60px rgb(24 43 66 / 0.12);
}

.product-code {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgb(17 138 98 / 0.1);
  color: #118a62;
  font-size: 12px;
  font-weight: 800;
}

.product-summary h2,
.product-summary h3 {
  margin: 0 0 12px;
  color: #142033;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
}

.product-summary p {
  margin: 0;
  color: #5c697a;
  font-size: 14px;
  line-height: 1.72;
}

.product-meta {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.product-meta div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgb(20 32 51 / 0.1);
  border-radius: 8px;
  background: #f7f9fc;
}

.product-meta span {
  color: #7a8796;
  font-size: 12px;
  font-weight: 800;
}

.product-meta strong {
  color: #142033;
  font-size: 14px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.product-hotline {
  color: #d92d20;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.product-actions a,
.flow-actions a,
.action-card a,
.consult-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.primary-action,
.consult-card a {
  background: #118a62;
  color: #fff;
}

.secondary-action {
  border: 1px solid rgb(20 32 51 / 0.18);
  color: #142033;
}

.product-section .compact-points span {
  border-color: rgb(20 32 51 / 0.1);
  background: #fff;
  color: #4f5c6d;
  box-shadow: 0 12px 28px rgb(24 43 66 / 0.08);
}

.interface-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.interface-checks span {
  min-height: 32px;
  padding: 8px 12px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.07);
  color: rgb(255 255 255 / 0.8);
  font-size: 13px;
  font-weight: 800;
}

.product-ui-panel {
  overflow: hidden;
  padding: 0;
  background: #0f151d;
}

.ui-window-head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.ui-window-head span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff6b6b;
}

.ui-window-head span:nth-child(2) {
  background: #f4c24d;
}

.ui-window-head span:nth-child(3) {
  background: #33f0a0;
}

.ui-window-head strong {
  margin-left: 8px;
  color: rgb(255 255 255 / 0.82);
  font-size: 13px;
}

.ui-window-body {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 360px;
}

.ui-side {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px 12px;
  border-right: 1px solid rgb(255 255 255 / 0.08);
}

.ui-side button {
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgb(255 255 255 / 0.56);
  cursor: default;
  font-size: 13px;
  font-weight: 800;
}

.ui-side .active {
  background: rgb(51 240 160 / 0.14);
  color: #33f0a0;
}

.ui-main {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
}

.ui-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
}

.ui-toolbar span {
  color: rgb(255 255 255 / 0.56);
  font-size: 12px;
  font-weight: 800;
}

.ui-task {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 12px;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.05);
}

.ui-task.active {
  border-color: rgb(51 240 160 / 0.34);
  background: rgb(51 240 160 / 0.1);
}

.ui-task i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-color);
}

.ui-task strong,
.ui-task em {
  color: #fff;
  font-size: 13px;
  font-style: normal;
}

.ui-task span {
  display: block;
  margin-top: 4px;
  color: rgb(255 255 255 / 0.58);
  font-size: 12px;
}

.ui-task em {
  color: #33f0a0;
  font-weight: 800;
}

.ui-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ui-result-grid span {
  min-height: 58px;
  padding: 14px 10px;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.05);
  color: rgb(255 255 255 / 0.78);
  font-size: 13px;
  font-weight: 800;
}

.spec-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  margin-top: 30px;
}

.spec-table,
.consult-card {
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.06);
  box-shadow: 0 18px 46px rgb(0 0 0 / 0.22);
}

.spec-table {
  overflow: hidden;
}

.spec-table div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  min-height: 58px;
  padding: 18px 20px;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table span {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 800;
}

.spec-table strong {
  color: rgb(255 255 255 / 0.86);
  font-size: 14px;
  line-height: 1.58;
}

.consult-card {
  padding: 26px;
}

.consult-card span {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 900;
}

.consult-card h3 {
  margin: 16px 0 12px;
  color: #fff;
  font-size: 28px;
}

.consult-card p {
  margin: 0 0 24px;
  color: rgb(255 255 255 / 0.72);
  font-size: 14px;
  line-height: 1.68;
}

.section-content {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 44px));
  margin: 0 auto;
}

.section-kicker,
.section-content h2,
.section-lead,
.product-crumbs,
.product-detail,
.flow-card,
.flow-actions a,
.capability-row,
.compact-points span,
.process-item,
.interface-panel,
.flow-board-line,
.flow-board-metrics span,
.interface-checks span,
.interface-line,
.feature-grid article,
.spec-table,
.consult-card {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(8px);
  transition:
    opacity 620ms var(--switch-soft-ease),
    transform 760ms var(--switch-ease),
    filter 680ms var(--switch-soft-ease);
  transition-delay: 0ms;
  will-change: transform, opacity, filter;
}

.info-section.is-visible .section-kicker,
.info-section.is-visible .section-content h2,
.info-section.is-visible .section-lead,
.info-section.is-visible .product-crumbs,
.info-section.is-visible .product-detail,
.info-section.is-visible .flow-card,
.info-section.is-visible .flow-actions a,
.info-section.is-visible .capability-row,
.info-section.is-visible .compact-points span,
.info-section.is-visible .process-item,
.info-section.is-visible .interface-panel,
.info-section.is-visible .flow-board-line,
.info-section.is-visible .flow-board-metrics span,
.info-section.is-visible .interface-checks span,
.info-section.is-visible .interface-line,
.info-section.is-visible .feature-grid article,
.info-section.is-visible .spec-table,
.info-section.is-visible .consult-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition-delay: var(--reveal-delay, 0ms);
}

.is-scrolling-up .info-section:not(.is-visible) .section-kicker,
.is-scrolling-up .info-section:not(.is-visible) .section-content h2,
.is-scrolling-up .info-section:not(.is-visible) .section-lead,
.is-scrolling-up .info-section:not(.is-visible) .product-crumbs,
.is-scrolling-up .info-section:not(.is-visible) .product-detail,
.is-scrolling-up .info-section:not(.is-visible) .flow-card,
.is-scrolling-up .info-section:not(.is-visible) .flow-actions a,
.is-scrolling-up .info-section:not(.is-visible) .capability-row,
.is-scrolling-up .info-section:not(.is-visible) .compact-points span,
.is-scrolling-up .info-section:not(.is-visible) .process-item,
.is-scrolling-up .info-section:not(.is-visible) .interface-panel,
.is-scrolling-up .info-section:not(.is-visible) .flow-board-line,
.is-scrolling-up .info-section:not(.is-visible) .flow-board-metrics span,
.is-scrolling-up .info-section:not(.is-visible) .interface-checks span,
.is-scrolling-up .info-section:not(.is-visible) .interface-line,
.is-scrolling-up .info-section:not(.is-visible) .feature-grid article,
.is-scrolling-up .info-section:not(.is-visible) .spec-table,
.is-scrolling-up .info-section:not(.is-visible) .consult-card {
  transform: translate3d(0, -28px, 0);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.section-content h2 {
  margin: 0;
  color: #fff;
  font-family: Impact, "Arial Narrow", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1;
}

.section-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.68;
}

.capability-bars {
  width: min(800px, 100%);
  margin-top: 30px;
}

.capability-row {
  display: grid;
  grid-template-columns: 110px minmax(120px, 1fr) 110px;
  gap: 16px;
  align-items: center;
  min-height: 32px;
  margin-bottom: 12px;
}

.capability-label,
.capability-value {
  color: rgb(255 255 255 / 0.76);
  font-size: 13px;
  font-weight: 700;
}

.capability-value {
  text-align: right;
}

.capability-track {
  height: 7px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.08);
}

.capability-track span {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.compact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(840px, 100%);
  margin-top: 24px;
}

.compact-points span {
  min-height: 30px;
  padding: 7px 12px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.06);
  color: rgb(255 255 255 / 0.78);
  font-size: 13px;
  font-weight: 700;
}

.process-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.process-item,
.feature-grid article,
.interface-panel {
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.06);
  box-shadow: 0 18px 46px rgb(0 0 0 / 0.22);
}

.process-item,
.feature-grid article {
  min-height: 176px;
  padding: 20px;
}

.process-item span {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 800;
}

.process-item h3,
.feature-grid h3 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 20px;
}

.process-item p,
.feature-grid p {
  margin: 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 14px;
  line-height: 1.62;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 38px;
  align-items: center;
}

.interface-panel {
  padding: 14px 18px;
}

.interface-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.interface-line:last-child {
  border-bottom: 0;
}

.interface-line span {
  color: var(--accent-color);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 13px;
}

.interface-line strong {
  color: rgb(255 255 255 / 0.84);
  font-size: 14px;
}

.site-footer {
  display: block;
  overflow: hidden;
  padding: 0 36px 26px;
  background: #303030;
  color: rgb(255 255 255 / 0.82);
}

.footer-tools {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(960px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 32px 0 22px;
}

.footer-tools::before {
  position: absolute;
  inset: 0 50%;
  z-index: 0;
  width: 100vw;
  background: #444;
  content: "";
  transform: translateX(-50%);
}

.footer-tool {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.footer-tool b {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.footer-share-button.is-copied b::after {
  margin-left: 6px;
  color: rgb(255 255 255 / 0.72);
  content: "已复制";
}

.footer-tool-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  opacity: 0.86;
}

.footer-tool-icon::before,
.footer-tool-icon::after {
  position: absolute;
  content: "";
}

.footer-tool-home::before,
.footer-tool-product::before {
  inset: 6px 8px;
  border-radius: 6px;
  background: #e8e8e8;
}

.footer-tool-home::after,
.footer-tool-product::after {
  top: 17px;
  right: 15px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #444;
  box-shadow: 0 10px 0 #444;
}

.footer-tool-product::before {
  border-radius: 8px 8px 18px 18px;
  transform: rotate(45deg) scale(0.76);
}

.footer-tool-product::after {
  top: 22px;
  right: 19px;
  width: 16px;
  height: 7px;
  border: 3px solid #444;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: transparent;
  box-shadow: none;
}

.footer-tool-share::before {
  inset: 6px 9px;
  border-radius: 6px;
  background: #e8e8e8;
}

.footer-tool-share::after {
  top: 16px;
  left: 21px;
  width: 18px;
  height: 18px;
  border-top: 6px solid #444;
  border-right: 6px solid #444;
  transform: rotate(45deg);
}

.footer-tool-contact::before {
  inset: 5px;
  border-radius: 50%;
  background: #e8e8e8;
}

.footer-tool-contact::after {
  top: 18px;
  left: 18px;
  width: 18px;
  height: 18px;
  border: 5px solid #444;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 48px;
  width: min(960px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 28px 0 30px;
}

.footer-brand-block {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-logo {
  display: block;
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.footer-logo-text {
  display: inline-block;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.footer-brand-block p {
  margin: 0;
  color: rgb(255 255 255 / 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.footer-info-grid div {
  display: flex;
  gap: 4px;
  min-width: 0;
  align-items: baseline;
}

.footer-info-grid b {
  flex: 0 0 auto;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.footer-info-grid span {
  display: block;
  min-width: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.footer-info-grid a {
  color: #fff;
}

.footer-info-grid a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  width: min(960px, calc(100vw - 44px));
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  color: rgb(255 255 255 / 0.58);
  font-size: 13px;
}

@media (max-width: 940px) {
  .top-nav {
    padding: 18px 22px;
  }

  .nav-actions {
    gap: 16px;
  }

  .nav-actions .nav-link:nth-child(n + 4) {
    display: none;
  }

  .nav-page-link {
    display: none;
  }
}

@media (max-width: 900px) {
  .process-grid,
  .feature-grid,
  .split-content,
  .product-detail,
  .product-catalog-shell,
  .product-panel-grid,
  .product-module-layout,
  .motion-product-grid,
  .scraped-product-layout,
  .spec-contact-grid {
    grid-template-columns: 1fr;
  }

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

  .business-detail,
  .business-card-grid,
  .business-material-grid {
    grid-template-columns: 1fr;
  }

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

  .business-timeline article::after {
    display: none;
  }

  .info-section {
    min-height: auto;
    padding-block: 74px;
  }

  .product-summary {
    order: -1;
  }

  .scraped-product-side {
    position: static;
  }

  .product-catalog-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-catalog-nav button.active {
    transform: none;
  }

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

@media (max-width: 680px) {
  .stage {
    min-height: 620px;
  }

  .top-nav {
    gap: 12px;
    font-size: 12px;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .nav-actions .nav-link {
    display: none;
  }

  .details {
    top: 108px;
  }

  .desc {
    max-width: 92vw;
  }

  .cta {
    margin-top: 18px;
  }

  .discover {
    min-width: 0;
    padding-inline: 18px;
    white-space: nowrap;
  }

  .progress-sub-container {
    margin-left: 14px;
  }

  .arrow {
    width: 44px;
    height: 44px;
  }

  .arrow-right {
    margin-left: 12px;
  }

  .slide-numbers {
    width: 42px;
  }

  .slide-numbers .item {
    width: 42px;
    font-size: 26px;
  }

  .scroll-cue {
    right: 22px;
    bottom: 18px;
  }

  .info-section {
    padding: 64px 22px;
  }

  .product-page-body .section-content,
  .product-cert-banner,
  .product-detail-crumbs {
    width: calc(100vw - 32px);
  }

  .scraped-product-section {
    min-height: auto;
    padding: 24px 0 38px;
  }

  .scraped-product-main {
    min-height: auto;
    padding: 22px;
  }

  .scraped-product-side {
    padding: 0;
  }

  .scraped-product-main h1 {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .scraped-product-image img {
    max-width: 100%;
    max-height: 180px;
  }

  .product-cert-banner {
    margin-bottom: 0;
  }

  .product-detail-crumbs {
    min-height: 34px;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 12px;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .capability-value {
    text-align: left;
  }

  .process-item,
  .feature-grid article {
    min-height: auto;
  }

  .flow-map,
  .flow-board-metrics {
    grid-template-columns: 1fr;
  }

  .flow-card {
    min-height: auto;
  }

  .flow-card::after {
    display: none;
  }

  .flow-board-line {
    grid-template-columns: 10px minmax(0, 1fr);
  }

  .flow-board-line em {
    grid-column: 2;
  }

  .recruit-hero {
    min-height: auto;
  }

  .recruit-hero img {
    height: 62vh;
    min-height: 420px;
  }

  .recruit-hero-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    padding: 26px 22px 58px;
    background: #111418;
  }

  .recruit-hero::after {
    background: linear-gradient(0deg, #111418 0%, transparent 44%);
  }

  .business-page-main {
    padding-top: 64px;
  }

  .business-detail-section,
  .business-section {
    padding: 46px 22px;
  }

  .business-summary {
    padding: 20px;
  }

  .business-timeline {
    grid-template-columns: 1fr;
  }

  .business-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-contact .primary-action {
    width: 100%;
  }

  .product-detail {
    gap: 18px;
  }

  .product-visual,
  .product-summary,
  .consult-card {
    padding: 18px;
  }

  .device-body,
  .ui-window-body {
    grid-template-columns: 1fr;
  }

  .device-sidebar,
  .ui-side {
    display: flex;
    overflow-x: auto;
    padding: 12px;
  }

  .device-sidebar span {
    flex: 0 0 30px;
  }

  .ui-side button {
    flex: 0 0 auto;
    padding-inline: 12px;
  }

  .product-actions,
  .ui-toolbar {
    flex-direction: column;
  }

  .product-actions a {
    width: 100%;
  }

  .product-hotline {
    width: 100%;
  }

  .product-catalog-nav {
    grid-template-columns: 1fr;
  }

  .product-catalog-nav button {
    min-height: 78px;
    padding: 14px;
  }

  .product-panel-block {
    padding: 18px;
  }

  .motion-detail-grid {
    grid-template-columns: 1fr;
  }

  .motion-capture-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .ui-task {
    grid-template-columns: 10px minmax(0, 1fr);
  }

  .ui-task em {
    grid-column: 2;
  }

  .ui-result-grid {
    grid-template-columns: 1fr;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .site-footer {
    padding: 0 22px 24px;
  }

  .footer-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    padding: 26px 0 20px;
  }

  .footer-main,
  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 680px) and (max-height: 650px) {
  .details {
    top: 92px;
  }

  .title-box-1,
  .title-box-2 {
    height: 45px;
  }

  .title-1,
  .title-2 {
    font-size: 38px;
  }

  .desc {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .cta {
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

/* Unified business theme */
:root {
  --primary-color: #118a62;
  --accent-color: #2b6f90;
  --text-color: #172033;
  --muted-text: #c9d2df;
  --business-text: #172033;
  --business-muted: #5d6877;
  --business-bg: #f4f6f9;
  --business-panel: #ffffff;
  --business-line: rgb(20 32 51 / 0.1);
  --business-shadow: 0 14px 34px rgb(15 23 42 / 0.08);
}

body,
.business-page-body,
.product-page-body {
  background: var(--business-bg);
  color: var(--business-text);
}

.top-nav,
.has-scrolled .top-nav,
.business-nav,
.product-page-body .top-nav {
  padding-block: 14px;
  background: rgb(12 17 27 / 0.92);
  box-shadow: 0 12px 34px rgb(15 23 42 / 0.22);
  backdrop-filter: blur(14px);
}

.nav-link,
.nav-page-link {
  color: rgb(255 255 255 / 0.72);
}

.nav-link:hover,
.nav-page-link:hover,
.nav-link.active,
.nav-page-link.active {
  color: #fff;
}

.nav-link.active::after,
.nav-page-link.active::after {
  background: var(--primary-color);
}

.brand {
  color: #fff;
}

.indicator-bar {
  background: var(--primary-color);
}

.business-home .stage {
  height: min(760px, 100vh);
  min-height: 620px;
  background: #111827;
}

.business-home .card {
  box-shadow: none;
  filter: saturate(0.78) brightness(0.84);
}

.business-home .card::after {
  background:
    linear-gradient(90deg, rgb(12 17 27 / 0.88), rgb(12 17 27 / 0.54) 48%, rgb(12 17 27 / 0.42)),
    linear-gradient(0deg, rgb(12 17 27 / 0.34), transparent 48%);
}

.title-1,
.title-2,
.content-title-1,
.content-title-2,
.section-content h2,
.product-page-title,
.business-title,
.business-section h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

.business-home .details {
  top: clamp(132px, 24vh, 220px);
}

.business-home .title-1,
.business-home .title-2 {
  color: #fff;
  font-weight: 800;
}

.business-home .place-box .text,
.business-home .desc,
.business-home .card-content,
.business-home .content-place,
.business-home .content-title-1,
.business-home .content-title-2 {
  color: #fff;
}

.business-home .info-section .section-kicker,
.business-home .info-section .section-content h2,
.business-home .info-section .section-lead,
.business-home .info-section .flow-card,
.business-home .info-section .flow-actions a,
.business-home .info-section .process-item,
.business-home .info-section .interface-panel,
.business-home .info-section .flow-board-line,
.business-home .info-section .flow-board-metrics span,
.business-home .info-section .interface-checks span,
.business-home .info-section .feature-grid article {
  filter: none;
  transition-delay: 0ms !important;
}

.bookmark,
.primary-action,
.consult-card a {
  background: var(--primary-color);
  color: #fff;
}

.bookmark:hover,
.primary-action:hover,
.consult-card a:hover {
  background: #0d7655;
}

.discover {
  border-color: rgb(255 255 255 / 0.72);
  border-radius: 6px;
}

.product-actions a,
.flow-actions a,
.action-card a,
.consult-card a {
  border-radius: 6px;
}

.secondary-action {
  border-color: rgb(17 138 98 / 0.28);
  color: var(--primary-color);
  background: #fff;
}

.secondary-action:hover {
  border-color: var(--primary-color);
  background: rgb(17 138 98 / 0.06);
}

.business-home .info-section,
.business-home .flow-overview-section,
.business-home .flow-section,
.business-home .integration-section,
.business-home .deploy-section,
.product-section,
.product-business-section,
.product-business-muted-section,
.business-detail-section,
.business-section {
  background: var(--business-panel);
  color: var(--business-text);
}

.business-home .flow-section,
.business-home .deploy-section,
.product-business-muted-section,
.business-muted-section {
  background: var(--business-bg);
}

.business-home .info-section::before,
.product-section::before,
.product-business-section::before,
.product-business-muted-section::before {
  background:
    repeating-linear-gradient(90deg, rgb(18 32 51 / 0.04) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgb(18 32 51 / 0.03) 0 1px, transparent 1px 48px);
  opacity: 0.8;
}

.section-kicker,
.business-section .section-kicker,
.product-section .section-kicker,
.product-business-section .section-kicker,
.product-business-muted-section .section-kicker {
  color: var(--primary-color);
}

.business-home .section-content h2,
.business-home .section-lead,
.product-business-section .section-content h2,
.product-business-muted-section .section-content h2,
.product-section .section-content h2,
.business-section h2,
.business-title,
.product-page-title {
  color: var(--business-text);
}

.business-home .section-lead,
.product-business-section .section-lead,
.product-business-muted-section .section-lead,
.product-section .section-lead,
.business-summary p,
.business-lead,
.business-card-grid p,
.business-timeline p {
  color: var(--business-muted);
}

.flow-card,
.process-item,
.feature-grid article,
.interface-panel,
.flow-board-line,
.flow-board-metrics span,
.spec-table,
.consult-card,
.product-summary,
.product-visual,
.software-shot,
.business-summary,
.business-card-grid article,
.business-timeline article,
.business-material-card {
  border: 1px solid var(--business-line);
  background: var(--business-panel);
  box-shadow: var(--business-shadow);
}

.flow-card h3,
.process-item h3,
.feature-grid h3,
.flow-board-head strong,
.flow-board-line strong,
.feature-grid article h3,
.business-card-grid h3,
.business-timeline h3,
.consult-card h3 {
  color: var(--business-text);
}

.flow-card p,
.process-item p,
.feature-grid p,
.flow-board-line span,
.flow-board-metrics span,
.interface-checks span,
.consult-card p {
  color: var(--business-muted);
}

.flow-card span,
.process-item span,
.flow-board-head span,
.flow-board-line em,
.business-card-grid span,
.business-timeline span,
.spec-table span,
.consult-card span {
  color: var(--primary-color);
}

.flow-card::after,
.business-timeline article::after {
  background: var(--primary-color);
}

.flow-board-line,
.flow-board-metrics span,
.interface-checks span,
.product-meta div,
.business-meta div {
  background: #f7f9fc;
}

.interface-checks span {
  border-color: var(--business-line);
}

.spec-table div {
  border-bottom-color: var(--business-line);
}

.spec-table strong {
  color: var(--business-text);
}

.business-contact-section {
  background: #172033;
}

.business-contact-section h2,
.business-contact-section .section-kicker {
  color: #fff;
}

.business-contact-section p {
  color: rgb(255 255 255 / 0.74);
}

.site-footer,
.business-footer {
  background: #303030;
}

.product-page-body {
  display: flex;
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  flex-direction: column;
}

.product-page-body .product-page-main {
  flex: 1 0 auto;
}

.product-page-body .site-footer {
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .business-home .stage {
    min-height: 620px;
  }

  .business-home .details {
    top: 112px;
  }
}

/* Business polish pass */
:root {
  --business-navy: #172033;
  --business-ink: #1e293b;
  --business-primary: #12664f;
  --business-primary-strong: #0f513f;
  --business-soft: #eef3f7;
  --business-border: #dbe3ec;
  --business-card-shadow: 0 10px 28px rgb(15 23 42 / 0.07);
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.top-nav,
.has-scrolled .top-nav,
.business-nav,
.product-page-body .top-nav {
  min-height: 64px;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  text-transform: none;
}

.nav-actions {
  gap: 18px;
}

.nav-link,
.nav-page-link {
  white-space: nowrap;
  font-size: 13px;
}

.brand span {
  font-weight: 800;
}

.indicator {
  height: 3px;
  background: transparent;
}

.business-home .stage {
  height: min(720px, 100vh);
  border-bottom: 1px solid var(--business-border);
  background:
    linear-gradient(120deg, #121a28 0%, #172033 48%, #203047 100%),
    #172033;
}

.business-home .card {
  border: 1px solid rgb(255 255 255 / 0.08);
  background-image:
    linear-gradient(120deg, rgb(18 28 42 / 0.96), rgb(24 45 65 / 0.92)),
    repeating-linear-gradient(90deg, rgb(255 255 255 / 0.055) 0 1px, transparent 1px 56px) !important;
  box-shadow: none;
  filter: none;
}

.business-home .card::after {
  background:
    linear-gradient(90deg, rgb(12 17 27 / 0.7), rgb(12 17 27 / 0.28) 52%, rgb(12 17 27 / 0.48)),
    linear-gradient(0deg, rgb(12 17 27 / 0.38), transparent 56%);
}

.business-home .details {
  width: min(560px, calc(100vw - 44px));
  text-shadow: none;
}

.business-home .place-box .text {
  color: rgb(209 250 229 / 0.92);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
}

.business-home .place-box .text::before {
  background: var(--business-primary);
}

.business-home .title-box-1,
.business-home .title-box-2 {
  height: clamp(50px, 7vw, 78px);
}

.business-home .title-1,
.business-home .title-2 {
  font-size: clamp(42px, 5.6vw, 64px);
  line-height: 1.08;
  font-weight: 800;
}

.business-home .desc {
  max-width: 540px;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(14px, 1.45vw, 16px);
}

.business-home .bookmark,
.business-home .discover,
.arrow {
  border-radius: 6px;
}

.business-home .discover {
  border: 0;
  background: #fff;
  color: var(--business-navy);
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.16);
}

.business-home .discover:hover {
  background: #eaf3ef;
  color: var(--business-primary-strong);
}

.business-home .arrow {
  border: 1px solid rgb(255 255 255 / 0.24);
  background: rgb(255 255 255 / 0.08);
  color: rgb(255 255 255 / 0.82);
}

.business-home .progress-sub-background {
  background: rgb(255 255 255 / 0.18);
}

.business-home .slide-numbers .item {
  font-size: 24px;
}

.content-title-1,
.content-title-2 {
  font-size: 17px;
  line-height: 1.18;
}

.section-content,
.business-container {
  width: min(1180px, calc(100vw - 44px));
}

.footer-tools,
.footer-main,
.footer-bottom {
  width: min(960px, calc(100vw - 44px));
}

.info-section,
.business-detail-section,
.business-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.product-section,
.business-detail-section {
  padding-top: 48px;
}

.business-home .info-section,
.product-section,
.product-business-section,
.product-business-muted-section,
.business-detail-section,
.business-section {
  border-top: 1px solid var(--business-border);
}

.section-kicker,
.product-code {
  letter-spacing: 0.08em;
}

.section-content h2,
.product-page-title,
.business-title,
.business-section h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.16;
}

.product-summary h2,
.product-summary h3,
.business-summary h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
}

.section-lead,
.business-summary p,
.business-lead,
.business-contact p {
  font-size: 15px;
  line-height: 1.82;
}

.flow-card,
.process-item,
.feature-grid article,
.interface-panel,
.flow-board-line,
.flow-board-metrics span,
.spec-table,
.consult-card,
.product-summary,
.product-visual,
.software-shot,
.business-summary,
.business-card-grid article,
.business-timeline article,
.business-material-card {
  border-color: var(--business-border);
  border-radius: 6px;
  box-shadow: var(--business-card-shadow);
}

.product-summary,
.business-summary,
.consult-card {
  border-top: 3px solid var(--business-primary);
}

.product-visual,
.screenshot-shell,
.business-image-frame {
  background: #f8fafc;
}

.product-visual {
  padding: clamp(16px, 2.6vw, 28px);
}

.screenshot-shell img,
.software-shot img,
.business-image-frame img {
  border-radius: 4px;
}

.business-image-frame img {
  filter: saturate(0.9) contrast(0.96);
}

.business-material-card img {
  padding: 6px;
  object-fit: contain;
  background: #f8fafc;
}

.flow-map {
  gap: 14px;
}

.flow-card {
  min-height: 190px;
}

.flow-card::after {
  top: 42px;
  background: var(--business-border);
}

.process-grid,
.feature-grid,
.business-card-grid,
.business-material-grid {
  gap: 18px;
}

.interface-panel {
  padding: 18px;
}

.flow-board-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--business-border);
}

.flow-board-line {
  box-shadow: none;
}

.flow-board-line i {
  background: var(--business-primary);
  box-shadow: 0 0 0 5px rgb(18 102 79 / 0.1);
}

.primary-action,
.consult-card a {
  background: var(--business-primary);
}

.bookmark:hover,
.primary-action:hover,
.consult-card a:hover {
  background: var(--business-primary-strong);
}

.secondary-action {
  border-color: rgb(18 102 79 / 0.28);
  color: var(--business-primary);
}

.footer-info-grid {
  align-items: start;
}

.site-footer,
.business-footer {
  border-top: 0;
}

@media (max-width: 680px) {
  .footer-main,
  .footer-info-grid,
  .footer-bottom {
    width: 100%;
  }

  .footer-main,
  .footer-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    justify-content: center;
  }

  .footer-logo {
    width: 76px;
    height: 76px;
  }
}

.news-page-main {
  background: #f4f6f9;
}

.news-article {
  padding: 48px 36px 78px;
  background:
    linear-gradient(180deg, #fff 0%, #f4f6f9 100%);
  color: var(--business-text);
}

.news-container {
  width: min(940px, calc(100vw - 44px));
  margin: 0 auto;
}

.news-header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--business-border);
}

.news-header h1 {
  max-width: 860px;
  margin: 0;
  color: var(--business-text);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.22;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.news-meta span {
  padding: 7px 10px;
  border: 1px solid rgb(18 102 79 / 0.18);
  border-radius: 6px;
  background: rgb(18 102 79 / 0.08);
  color: var(--business-primary);
  font-size: 13px;
  font-weight: 800;
}

.news-body {
  padding-top: 30px;
}

.news-body p {
  margin: 0 0 20px;
  color: #334155;
  font-size: 16px;
  line-height: 1.92;
}

.news-figure {
  margin: 32px 0;
  overflow: hidden;
  border: 1px solid var(--business-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--business-card-shadow);
}

.news-figure img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.news-credit {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--business-border);
}

.news-credit p {
  display: grid;
  gap: 6px;
  min-height: 70px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--business-border);
  border-radius: 6px;
  background: #fff;
  color: #172033;
  font-size: 14px;
  line-height: 1.45;
}

.news-credit span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.service-widget {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 90;
  display: flex;
  align-items: stretch;
  transform: translate(calc(100% - 48px), -50%);
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.service-widget:hover,
.service-widget:focus-within {
  transform: translate(0, -50%);
  filter: drop-shadow(0 18px 34px rgb(15 23 42 / 0.18));
}

.service-tab {
  display: grid;
  width: 48px;
  min-height: 150px;
  place-items: center;
  padding: 12px 0;
  border: 0;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: var(--business-primary);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  writing-mode: vertical-rl;
}

.service-panel {
  display: flex;
  flex-direction: column;
  width: 360px;
  height: min(660px, calc(100vh - 80px));
  max-height: calc(100vh - 80px);
  overflow: hidden;
  border: 1px solid var(--business-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgb(15 23 42 / 0.16);
}

.service-head {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--business-border);
  background: var(--business-navy);
  color: #fff;
}

.service-head img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
}

.service-head span {
  display: block;
  margin-bottom: 3px;
  color: rgb(255 255 255 / 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.service-head strong {
  display: block;
  color: #fff;
  font-size: 16px;
}

.service-head i {
  width: 14px;
  height: 2px;
  margin-left: auto;
  border-radius: 99px;
  background: rgb(255 255 255 / 0.7);
}

.service-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 6px;
  background: rgb(255 255 255 / 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.service-toggle:focus-visible {
  outline: 2px solid rgb(255 255 255 / 0.78);
  outline-offset: 2px;
}

.service-body {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #94a3b8 #edf2f7;
  scrollbar-width: thin;
  padding: 14px;
  background: #f8fafc;
}

.service-body::-webkit-scrollbar {
  width: 8px;
}

.service-body::-webkit-scrollbar-track {
  background: #edf2f7;
}

.service-body::-webkit-scrollbar-thumb {
  border: 2px solid #edf2f7;
  border-radius: 99px;
  background: #94a3b8;
}

.service-notice {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid var(--business-border);
  border-radius: 8px;
  background: #fff;
  color: #334155;
  font-size: 13px;
  line-height: 1.62;
}

.service-time {
  display: block;
  width: fit-content;
  margin: 14px auto;
  padding: 6px 12px;
  border-radius: 6px;
  background: #edf2f7;
  color: #64748b;
  font-size: 12px;
}

.service-message span {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 12px;
}

.service-message p {
  width: fit-content;
  max-width: 86%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 0 8px 8px;
  background: #e9eef6;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.55;
}

.service-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--business-border);
  border-radius: 8px;
  background: #fff;
}

.service-form label {
  display: grid;
  gap: 6px;
}

.service-form label span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.service-form input,
.service-form textarea {
  width: 100%;
  border: 1px solid #d6dee8;
  border-radius: 6px;
  background: #f8fafc;
  color: #172033;
  font: inherit;
  font-size: 13px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.service-form input {
  height: 38px;
  padding: 0 10px;
}

.service-form textarea {
  min-height: 66px;
  resize: vertical;
  padding: 9px 10px;
}

.service-form input:focus,
.service-form textarea:focus {
  border-color: rgb(18 102 79 / 0.72);
  background: #fff;
  box-shadow: 0 0 0 3px rgb(18 102 79 / 0.1);
}

.service-form button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: var(--business-primary);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.service-form button:hover,
.service-form button:focus-visible {
  background: var(--business-primary-strong);
  outline: 0;
}

.service-form-status {
  margin: 0;
  color: #b42318;
  font-size: 12px;
  line-height: 1.5;
}

.service-form-status.is-success {
  color: var(--business-primary);
}

.service-replies {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.service-reply {
  display: grid;
  gap: 5px;
}

.service-reply span {
  color: #64748b;
  font-size: 12px;
}

.service-reply p {
  max-width: 88%;
  margin: 0;
  padding: 10px 12px;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.5;
}

.service-reply-user {
  justify-items: end;
}

.service-reply-user p {
  border-radius: 8px 0 8px 8px;
  background: rgb(18 102 79 / 0.12);
}

.service-reply-system p {
  border-radius: 0 8px 8px;
  background: #e9eef6;
}

.service-actions {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--business-border);
  background: #fff;
}

.service-actions:has(.service-item:nth-child(3)) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-item {
  display: grid;
  gap: 7px;
  min-height: 82px;
  place-items: center;
  padding: 12px 8px;
  border-right: 1px solid var(--business-border);
  background: #fff;
  text-align: center;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.service-item:last-child {
  border-right: 0;
}

.service-item:hover,
.service-item:focus-visible {
  background: #eef7f3;
  outline: 0;
}

.service-item span {
  display: block;
  color: var(--business-primary);
  font-size: 13px;
  font-weight: 900;
}

.service-item b {
  color: #334155;
  font-size: 12px;
  line-height: 1.45;
}

.service-hotline span,
.service-hotline b {
  color: #e90d0d;
}

@media (max-width: 940px) {
  .top-nav {
    gap: 14px;
  }

  .top-nav .nav-actions,
  .product-page-nav .nav-actions,
  .business-nav .nav-actions {
    overflow-x: auto;
    max-width: calc(100vw - 150px);
    padding-bottom: 4px;
  }

  .top-nav .nav-page-link,
  .product-page-nav .nav-page-link,
  .business-nav .nav-page-link {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 380px;
  }

  body.service-widget-collapsed {
    padding-bottom: 96px;
  }

  .business-home .stage {
    min-height: 640px;
  }

  .business-home .title-box-1,
  .business-home .title-box-2 {
    height: 48px;
  }

  .business-home .title-1,
  .business-home .title-2 {
    font-size: 40px;
  }

  .info-section,
  .business-detail-section,
  .business-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .product-section,
  .business-detail-section {
    padding-top: 42px;
  }

  .product-summary {
    order: 0;
  }

  .product-actions,
  .flow-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-actions a,
  .flow-actions a,
  .business-contact .primary-action {
    width: 100%;
  }

  .news-article {
    padding: 42px 22px 56px;
  }

  .news-container {
    width: 100%;
  }

  .news-body p {
    font-size: 15px;
  }

  .news-credit {
    grid-template-columns: 1fr;
  }

  .product-module-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 16px;
  }

  .service-widget {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    transform: none;
  }

  .service-widget:hover,
  .service-widget:focus-within {
    transform: none;
    filter: none;
  }

  .service-tab {
    display: none;
  }

  .service-widget.is-collapsed {
    left: auto;
    width: auto;
  }

  .service-widget.is-collapsed .service-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 104px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgb(255 255 255 / 0.12);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgb(15 23 42 / 0.18);
    line-height: 1;
    writing-mode: horizontal-tb;
  }

  .service-widget.is-collapsed .service-panel {
    display: none;
  }

  .service-panel {
    width: 100%;
    height: min(520px, calc(100vh - 24px));
    max-height: calc(100vh - 24px);
    border-radius: 8px;
  }

  .service-head {
    min-height: 52px;
    padding: 8px 12px;
  }

  .service-head i {
    display: none;
  }

  .service-toggle {
    display: inline-flex;
    min-width: 52px;
    height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
  }

  .service-head img {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .service-head strong {
    font-size: 14px;
  }

  .service-head span {
    font-size: 11px;
  }

  .service-body {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    padding: 10px 12px;
  }

  .service-notice,
  .service-time,
  .service-message {
    display: none;
  }

  .service-form {
    margin-top: 0;
    padding: 10px;
  }

  .service-form textarea {
    min-height: 54px;
  }

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

  .service-actions:has(.service-item:nth-child(3)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-item {
    min-height: 66px;
    padding: 10px 8px;
    border-right: 1px solid var(--business-border);
    border-bottom: 0;
  }

  .service-item:last-child {
    border-right: 0;
  }

  .service-item span {
    font-size: 12px;
  }

  .service-item b {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
