:root {
  --ink: #07111f;
  --ink-2: #0a182a;
  --text: #101a27;
  --muted: #617489;
  --line: #dce6ef;
  --paper: #f4f7fa;
  --white: #ffffff;
  --blue: #116bd9;
  --blue-2: #54d8ff;
  --deep-blue: #004491;
  --warm: #ff9e43;
  --radius: 8px;
  --shadow: 0 26px 80px rgba(17, 42, 78, 0.14);
  --safe-width: 1268px;
  --header-pad-x: clamp(28px, 4vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family:
    "Noto Sans SC",
    "Microsoft YaHei",
    system-ui,
    sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 9, 19, 0.84);
  padding: 0 var(--header-pad-x);
  color: #fff;
  backdrop-filter: blur(18px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.site-header.is-overlay:not(.is-scrolled) {
  background: rgba(4, 9, 19, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled {
  background: rgba(4, 9, 19, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.site-header.is-overlay.is-scrolled {
  background: rgba(4, 9, 19, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 20px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  padding: 0;
  object-fit: contain;
}

.header-nav-group {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 28px);
  margin-left: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.15vw, 34px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 28px 0 25px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--blue-2);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
}

.main-nav a.is-active::after,
.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.site-header-demo,
.site-header-login {
  display: inline-flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.site-header-demo {
  border: 1px solid rgba(64, 176, 255, 0.62);
  background: linear-gradient(180deg, rgba(21, 135, 255, 0.92), rgba(12, 89, 190, 0.88));
  box-shadow: 0 10px 24px rgba(0, 112, 230, 0.22);
  color: #ffffff;
}

.site-header-login {
  gap: 8px;
  border: 1px solid rgba(40, 94, 155, 0.82);
  background: rgba(6, 23, 51, 0.74);
  box-shadow: 0 0 20px rgba(0, 95, 190, 0.16);
  color: #74c6ff;
}

.site-header-login svg {
  width: 20px;
  height: 20px;
  color: #d5eaff;
}

.site-header-demo:hover,
.site-header-login:hover {
  transform: translateY(-1px);
}

.site-header-demo:hover {
  border-color: rgba(128, 220, 255, 0.86);
  background: linear-gradient(180deg, rgba(37, 156, 255, 0.96), rgba(16, 101, 208, 0.92));
}

.site-header-login:hover {
  border-color: rgba(81, 176, 255, 0.9);
  background: rgba(8, 34, 74, 0.86);
  color: #a9ddff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.launch-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 38%, rgba(227, 239, 250, 0.82), rgba(124, 143, 162, 0.58) 34%, transparent 58%),
    linear-gradient(115deg, #465462 0%, #8898a9 46%, #d7e2ed 100%);
  color: #fff;
}

.launch-hero::before {
  position: absolute;
  inset: -42px;
  z-index: 0;
  background: url("./structeye-s1-hero-clean.png") center / cover no-repeat;
  content: "";
  filter: blur(18px) saturate(0.9);
  opacity: 0.42;
  transform: scale(1.04);
}

.launch-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  box-sizing: border-box;
  padding-right: clamp(36px, 5.5vw, 116px);
}

.launch-hero-media img {
  width: min(72vw, 1380px);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: translateY(5vh);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 80%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 80%, transparent 100%);
  mask-composite: intersect;
}

.launch-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 9, 19, 0.7) 0%, rgba(4, 9, 19, 0.36) 32%, rgba(4, 9, 19, 0.04) 66%, rgba(4, 9, 19, 0.06) 100%),
    linear-gradient(180deg, rgba(4, 9, 19, 0.08), rgba(4, 9, 19, 0.18));
}

.launch-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100vh;
  width: min(560px, calc(100% - 96px));
  flex-direction: column;
  justify-content: center;
  padding: 96px 0 72px 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch-hero h1 {
  margin: 0;
  line-height: 1.04;
  font-weight: 800;
}

.launch-hero h1 span,
.launch-hero h1 strong {
  display: block;
}

.launch-hero h1 span {
  font-size: 24px;
}

.launch-hero h1 strong {
  margin-top: 12px;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 64px;
  font-weight: 700;
}

.launch-subtitle {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.65;
}

.launch-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.92);
  color: #142236;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

  .launch-cta:hover {
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-1px);
  }

@media (min-width: 1800px) {
  .launch-hero-media {
    padding-right: clamp(28px, 4vw, 92px);
  }

  .launch-hero-media img {
    width: min(60vw, 1160px);
    transform: translateX(clamp(-84px, -2.8vw, -48px)) translateY(1vh);
  }
}

@media (min-width: 2200px) {
  .launch-hero-copy {
    width: min(620px, calc(100% - 96px));
    padding-left: clamp(72px, 4.4vw, 116px);
  }

  .launch-hero-media {
    padding-right: clamp(24px, 3vw, 80px);
  }

  .launch-hero-media img {
    width: min(54vw, 1280px);
    transform: translateX(clamp(-120px, -3.5vw, -72px)) translateY(-1vh);
  }
}

/* ── 首页 hero 移动端适配 ── */
@media (max-width: 768px) {
  .launch-hero {
    min-height: 100svh;
  }

  .launch-hero::before {
    filter: blur(12px) saturate(0.8);
    opacity: 0.3;
  }

  .launch-hero-media {
    padding-right: 0;
    justify-content: center;
    align-items: center;
  }

  .launch-hero-media img {
    width: min(90vw, 500px);
    transform: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
  }

  .launch-hero-copy {
    width: min(100%, calc(100% - 36px));
    justify-content: flex-start;
    padding: clamp(112px, 16vh, 170px) 0 46px 22px;
  }

  .launch-hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 9, 19, 0.72), rgba(4, 9, 19, 0.18) 78%),
      linear-gradient(180deg, rgba(4, 9, 19, 0.08), rgba(4, 9, 19, 0.18));
  }

  .launch-hero h1 strong {
    font-size: 48px;
  }

  .launch-subtitle {
    max-width: 100%;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .launch-hero-media {
    align-items: center;
  }

  .launch-hero-media img {
    width: min(95vw, 400px);
    transform: none;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 10%, #000 86%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 10%, #000 86%, transparent 100%);
    mask-composite: intersect;
  }

  .launch-hero-copy {
    width: min(380px, calc(100% - 48px));
    padding: 32px 0 28px 24px;
  }

  .launch-hero h1 strong {
    font-size: 36px;
  }

  .launch-hero h1 span {
    font-size: 20px;
  }

  .launch-subtitle {
    font-size: 16px;
    margin-top: 20px;
  }

  .launch-cta {
    margin-top: 22px;
  }
}

.product-page {
  padding-top: 76px;
  background: #f4f7fa;
}

.product-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 128px);
  place-items: center;
  overflow: hidden;
  background: #07111f;
  padding: 0 24px;
  color: #fff;
}

.product-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(84, 216, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(4, 9, 19, 0.42), rgba(4, 9, 19, 0.2) 38%, rgba(4, 9, 19, 0.56) 100%),
    linear-gradient(90deg, rgba(4, 9, 19, 0.24), rgba(4, 9, 19, 0.02) 50%, rgba(4, 9, 19, 0.24));
}

.product-video-title {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  text-align: center;
  transform: translateY(-7vh);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.14;
  font-weight: 800;
  text-wrap: balance;
}

.product-video-kicker {
  margin: 0 0 18px;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0;
}

.product-video-title h1 {
  margin: 0;
  font-size: clamp(20px, 2.05vw, 30px);
  line-height: 1.45;
  font-weight: 400;
  text-wrap: balance;
}

.product-hero-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.9;
}

.product-subnav {
  position: sticky;
  top: 76px;
  z-index: 60;
  height: 52px;
  min-height: 52px;
  overflow: hidden;
  border-bottom: 1px solid #dce6ef;
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
  backdrop-filter: blur(18px);
}

.product-subnav-inner {
  display: flex;
  width: 100%;
  height: 52px;
  min-height: 52px;
  align-items: center;
  padding: 0 var(--header-pad-x);
}

.product-subnav-title {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: #0b1a2b;
  font-size: 15px;
  font-weight: 900;
}

.product-subnav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3.2vw, 46px);
  margin-left: auto;
  margin-right: 0;
}

.product-subnav-links a {
  position: relative;
  min-width: 0;
  padding: 17px 0 15px;
  color: #355069;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.product-subnav-links a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.product-subnav-links a:hover {
  color: var(--blue);
}

.product-subnav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.section {
  padding: 58px 6vw;
}

#overview,
#specs,
#downloads,
#faq {
  scroll-margin-top: 128px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  color: #333333;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.advantage-section > .section-heading,
.specs-section > .section-heading,
.download-section > .section-heading,
.faq-section > .section-heading,
.home-compare-matrix,
.spec-table,
.download-grid,
.faq-list {
  width: min(100%, var(--safe-width));
  margin-right: auto;
  margin-left: auto;
}

.advantage-section > .section-heading,
.download-section > .section-heading {
  text-align: center;
}

.definition-panel,
.output-grid,
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.definition-panel article,
.output-grid article,
.download-grid article,
.scenario-grid article,
.specs-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.definition-panel article {
  min-height: 260px;
  padding: 30px;
}

.definition-panel span,
.output-grid span,
.download-grid span,
.flow-node span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  border-radius: 999px;
  background: #eaf6ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.definition-panel strong {
  display: block;
  margin-top: 28px;
  color: #0b1424;
  font-size: 28px;
  line-height: 1.24;
}

.definition-panel p,
.output-grid p,
.download-grid p,
.scenario-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.flow-section,
.advantage-section,
.faq-section {
  background: #fff;
}

.flow-section {
  padding-top: 58px;
  padding-bottom: 42px;
}

.workflow-visual {
  display: none;
}

.flow-lede {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.pipeline-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(218px, 0.84fr) 54px minmax(420px, 1.55fr) 54px minmax(240px, 0.95fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid #162c43;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 48% 18%, rgba(84, 216, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #06111f 0%, #0b1a2b 54%, #07111f 100%);
  background-size:
    28px 28px,
    28px 28px,
    auto,
    auto;
  padding: 24px;
  box-shadow: 0 30px 88px rgba(6, 17, 31, 0.18);
}

.pipeline-map::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 88%, rgba(249, 115, 22, 0.12), transparent 20%),
    radial-gradient(circle at 85% 22%, rgba(84, 216, 255, 0.1), transparent 24%);
  content: "";
  pointer-events: none;
}

.pipeline-panel,
.pipeline-transfer {
  position: relative;
  z-index: 1;
}

.pipeline-panel {
  display: grid;
  min-height: 428px;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(148, 178, 209, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  padding: 20px;
  color: #fff;
  backdrop-filter: blur(14px);
}

.pipeline-panel.is-cloud {
  background:
    radial-gradient(circle at 50% 34%, rgba(84, 216, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.078);
}

.pipeline-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(180, 207, 232, 0.18);
  padding-bottom: 14px;
}

.pipeline-panel-head span,
.pipeline-node span,
.pipeline-engine span {
  color: #7adfff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pipeline-panel-head h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.pipeline-node {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(161, 195, 228, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 14px;
}

.pipeline-node.is-compact {
  display: block;
  min-height: 128px;
  padding: 14px;
}

.pipeline-icon {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(122, 223, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(12, 33, 54, 0.86);
  color: #7adfff;
}

.pipeline-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pipeline-node h4 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.28;
}

.pipeline-node.is-compact h4 {
  font-size: 16px;
  line-height: 1.32;
}

.pipeline-node p,
.pipeline-engine p {
  margin: 8px 0 0;
  color: #b9c8d8;
  font-size: 13px;
  line-height: 1.65;
}

.pipeline-node.is-compact p {
  font-size: 12.5px;
  line-height: 1.62;
}

.pipeline-node b {
  color: #fff;
}

.pipeline-transfer {
  display: grid;
  min-width: 54px;
  place-items: center;
}

.pipeline-transfer::before {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(122, 223, 255, 0.32), #7adfff);
  content: "";
}

.pipeline-transfer::after {
  position: absolute;
  right: 7px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #7adfff;
  border-right: 2px solid #7adfff;
  content: "";
  transform: rotate(45deg);
}

.pipeline-transfer span {
  position: absolute;
  top: calc(50% + 16px);
  left: 50%;
  color: #8ca9c4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pipeline-engine {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 223, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(122, 223, 255, 0.1), transparent 18%, transparent 82%, rgba(249, 115, 22, 0.12)),
    rgba(2, 13, 25, 0.78);
  padding: 20px;
}

.pipeline-engine::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(122, 223, 255, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(122, 223, 255, 0.22) 50%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(122, 223, 255, 0.22) 50%, transparent 52%);
  content: "";
}

.pipeline-engine strong {
  position: relative;
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.pipeline-engine p {
  position: relative;
  max-width: 520px;
}

.pipeline-cluster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 861px) {
  .flow-section {
    overflow: hidden;
    background:
      radial-gradient(circle at 18% 72%, rgba(84, 216, 255, 0.08), transparent 26%),
      radial-gradient(circle at 84% 72%, rgba(255, 158, 67, 0.08), transparent 22%),
      linear-gradient(180deg, #fff 0%, #f7fafc 100%);
  }

  .flow-lede,
  .pipeline-map {
    display: none;
  }

  .workflow-visual {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) 286px minmax(0, 0.92fr);
    min-height: 500px;
    align-items: center;
    gap: 34px;
    margin-top: 26px;
  }

  .workflow-visual::before {
    position: absolute;
    right: -6vw;
    bottom: 16px;
    left: -6vw;
    height: 180px;
    background:
      linear-gradient(90deg, transparent, rgba(119, 146, 171, 0.16), transparent),
      radial-gradient(ellipse at center, rgba(13, 28, 45, 0.1), transparent 62%);
    content: "";
    pointer-events: none;
  }

  .workflow-streams {
    position: absolute;
    inset: 50px 0 28px;
    z-index: 1;
    width: 100%;
    height: calc(100% - 78px);
    pointer-events: none;
  }

  .workflow-streams path {
    fill: none;
    stroke: url("#workflow-flow-gradient");
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 10 12;
  }

  .workflow-streams .is-glow {
    stroke-width: 5;
    stroke-dasharray: none;
    opacity: 0.45;
    filter: drop-shadow(0 0 12px rgba(84, 216, 255, 0.42));
  }

  .workflow-device,
  .workflow-core,
  .workflow-output {
    position: relative;
    z-index: 2;
  }

  .workflow-device {
    min-height: 430px;
  }

  .workflow-product {
    position: absolute;
    right: -16px;
    bottom: 16px;
    width: min(520px, 112%);
    aspect-ratio: 1.58;
    background: url("scanner-product.png") center / contain no-repeat;
    filter: drop-shadow(0 34px 38px rgba(5, 14, 24, 0.28));
  }

  .workflow-product::after {
    position: absolute;
    right: 11%;
    bottom: 8%;
    left: 11%;
    height: 22px;
    border-radius: 50%;
    background: rgba(5, 14, 24, 0.18);
    content: "";
    filter: blur(14px);
  }

  .workflow-paper {
    position: absolute;
    top: 42px;
    left: 50px;
    width: 146px;
    height: 92px;
    border: 1px solid rgba(16, 26, 39, 0.12);
    background:
      linear-gradient(90deg, rgba(17, 107, 217, 0.16), transparent 42%),
      repeating-linear-gradient(0deg, transparent 0 13px, rgba(16, 26, 39, 0.1) 14px),
      #fff;
    box-shadow:
      16px 12px 0 rgba(255, 255, 255, 0.82),
      31px 24px 0 rgba(255, 255, 255, 0.58),
      0 18px 42px rgba(17, 42, 78, 0.1);
    transform: rotate(-7deg);
  }

  .workflow-kpi {
    position: absolute;
    top: 152px;
    left: 18px;
    display: grid;
    width: 102px;
    height: 102px;
    place-items: center;
    border: 1px solid rgba(17, 107, 217, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 42px rgba(17, 42, 78, 0.1);
    text-align: center;
  }

  .workflow-kpi strong {
    color: #0b1424;
    font-size: 38px;
    line-height: 0.9;
  }

  .workflow-kpi span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
  }

  .workflow-label {
    position: absolute;
    display: grid;
    gap: 5px;
  }

  .workflow-label b {
    color: #0b1424;
    font-size: 18px;
    line-height: 1.2;
  }

  .workflow-label span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
  }

  .workflow-device .workflow-label {
    bottom: 16px;
    left: 26px;
  }

  .workflow-core {
    display: grid;
    min-height: 380px;
    place-items: center;
  }

  .core-orbit {
    position: absolute;
    width: 286px;
    height: 286px;
    border: 1px solid rgba(17, 107, 217, 0.18);
    border-radius: 50%;
    background:
      linear-gradient(90deg, transparent 49%, rgba(17, 107, 217, 0.2) 50%, transparent 51%),
      linear-gradient(0deg, transparent 49%, rgba(17, 107, 217, 0.2) 50%, transparent 51%),
      radial-gradient(circle, rgba(84, 216, 255, 0.18), transparent 60%);
  }

  .core-orbit::before,
  .core-orbit::after {
    position: absolute;
    border: 1px solid rgba(84, 216, 255, 0.28);
    border-radius: 50%;
    content: "";
  }

  .core-orbit::before {
    inset: 36px;
  }

  .core-orbit::after {
    inset: 72px;
  }

  .core-chip {
    position: relative;
    display: grid;
    width: 190px;
    height: 190px;
    place-items: center;
    border: 1px solid rgba(84, 216, 255, 0.34);
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 35%, rgba(84, 216, 255, 0.26), transparent 42%),
      linear-gradient(180deg, #071827, #030b13);
    color: #fff;
    box-shadow:
      0 26px 70px rgba(5, 14, 24, 0.28),
      inset 0 0 34px rgba(84, 216, 255, 0.12);
    text-align: center;
  }

  .core-chip span {
    align-self: end;
    color: #fff;
    font-size: 62px;
    font-weight: 900;
    line-height: 0.9;
  }

  .core-chip strong {
    align-self: start;
    color: #9ee7ff;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .core-tags {
    position: absolute;
    right: -10px;
    bottom: 44px;
    left: -10px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .core-tags span,
  .system-rail span {
    border: 1px solid rgba(17, 107, 217, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    padding: 8px 12px;
    color: #24415b;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(17, 42, 78, 0.08);
  }

  .workflow-output {
    min-height: 430px;
  }

  .output-screen {
    position: absolute;
    top: 56px;
    right: 12px;
    width: min(360px, 100%);
    border: 1px solid rgba(17, 107, 217, 0.18);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 253, 0.88));
    padding: 18px;
    box-shadow: 0 30px 70px rgba(17, 42, 78, 0.14);
  }

  .screen-top {
    height: 78px;
    border-radius: 12px;
    background:
      linear-gradient(90deg, rgba(17, 107, 217, 0.18), transparent 64%),
      repeating-linear-gradient(0deg, transparent 0 14px, rgba(17, 107, 217, 0.1) 15px),
      #eef6fb;
  }

  .screen-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #dfe9f2;
    padding: 12px 0;
    color: #5f7184;
    font-size: 13px;
  }

  .screen-row b {
    color: var(--blue);
  }

  .screen-row.is-strong b {
    color: #0b1424;
  }

  .json-chip {
    display: inline-grid;
    margin-top: 14px;
    border-radius: 999px;
    background: #0b1424;
    padding: 9px 14px;
    color: #9ee7ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .system-rail {
    position: absolute;
    right: 30px;
    bottom: 86px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    width: min(340px, 100%);
  }

  .workflow-output .workflow-label {
    right: 38px;
    bottom: 16px;
    text-align: right;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .workflow-visual {
    grid-template-columns: minmax(0, 1fr) 240px minmax(0, 0.94fr);
    gap: 18px;
    min-height: 458px;
  }

  .workflow-product {
    right: -44px;
    bottom: 46px;
    width: min(470px, 128%);
  }

  .workflow-device .workflow-label {
    bottom: 0;
  }

  .workflow-kpi {
    left: 0;
  }

  .core-orbit {
    width: 240px;
    height: 240px;
  }

  .core-chip {
    width: 162px;
    height: 162px;
  }

  .core-chip span {
    font-size: 52px;
  }

  .output-screen {
    width: min(318px, 106%);
  }

  .system-rail {
    right: 18px;
    bottom: 48px;
    gap: 6px;
    width: 292px;
  }

  .system-rail span {
    padding: 7px 9px;
    font-size: 11px;
  }

  .workflow-output .workflow-label {
    bottom: 0;
    right: 24px;
  }
}

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

.output-grid article {
  min-height: 292px;
  padding: 26px;
}

.output-grid h3,
.download-grid h3,
.scenario-grid h3,
.specs-grid h3 {
  margin: 24px 0 0;
  color: #0b1424;
  font-size: 22px;
  line-height: 1.28;
}

.output-section {
  position: relative;
  overflow: hidden;
  padding-top: 42px;
  padding-bottom: 52px;
  padding-right: 0;
  padding-left: 0;
  background:
    radial-gradient(ellipse at 54% 43%, rgba(84, 216, 255, 0.18), transparent 44%),
    radial-gradient(ellipse at 12% 78%, rgba(84, 216, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #f9fcff 0%, #f1f7fb 58%, #eef4f9 100%);
}

.output-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.36) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.36) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.18;
  mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 78%);
  content: "";
  pointer-events: none;
}

.output-wave-map {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  height: 460px;
  margin: 0 auto;
  overflow: visible;
  background: transparent;
}

.output-wave-grain {
  position: absolute;
  inset: -90px -160px;
  z-index: 0;
  background:
    radial-gradient(ellipse at 76% 22%, rgba(255, 255, 255, 0.82), transparent 34%),
    radial-gradient(ellipse at 18% 70%, rgba(84, 216, 255, 0.12), transparent 30%);
  opacity: 0.72;
  pointer-events: none;
}

.output-wave-title {
  position: absolute;
  left: clamp(42px, 5.7vw, 82px);
  top: 16px;
  z-index: 4;
}

.output-wave-title h2 {
  width: min(500px, 42vw);
  margin: 0;
  color: #333333;
  font-size: clamp(34px, 3vw, 43px);
  line-height: 1.2;
  font-weight: 820;
  letter-spacing: 0;
}

.output-wave-lines {
  position: absolute;
  left: 50%;
  top: 166px;
  z-index: 1;
  width: min(1720px, 116vw);
  height: 160px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  pointer-events: none;
  transform: translateX(-50%);
}

.output-wave-lines path {
  fill: none;
  stroke-linecap: round;
}

.output-wave-lines .wave-wide {
  stroke: rgba(84, 216, 255, 0.12);
  stroke-width: 52;
  filter: blur(2px);
}

.output-wave-lines .wave-main {
  stroke: rgba(84, 216, 255, 0.46);
  stroke-width: 7;
}

.output-wave-lines .wave-thin {
  stroke: rgba(18, 105, 211, 0.14);
  stroke-width: 2;
  stroke-dasharray: 5 9;
}

.output-particle {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(84, 216, 255, 0.74);
  box-shadow: 0 0 18px rgba(84, 216, 255, 0.7);
}

.output-particle.p1 {
  left: 142px;
  top: 296px;
}

.output-particle.p2 {
  left: 535px;
  top: 262px;
}

.output-particle.p3 {
  left: 902px;
  top: 234px;
}

.output-particle.p4 {
  left: 1194px;
  top: 282px;
}

.output-method-card {
  position: absolute;
  z-index: 3;
  width: 292px;
  min-height: 184px;
  border: 1px solid rgba(190, 207, 222, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 22px 42px rgba(38, 67, 93, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 38px 22px 20px;
  backdrop-filter: blur(14px);
}

.output-method-card.one {
  left: 82px;
  top: 242px;
}

.output-method-card.two {
  left: 424px;
  top: 206px;
}

.output-method-card.three {
  left: 770px;
  top: 174px;
}

.output-method-card.four {
  left: 1114px;
  top: 234px;
}

.output-method-number {
  position: absolute;
  top: 22px;
  left: 24px;
  color: #1d5b91;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 27px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.output-method-badge {
  position: absolute;
  top: -66px;
  left: 50%;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 44%, rgba(231, 245, 255, 0.98) 45% 60%, rgba(177, 222, 249, 0.78) 61% 100%);
  box-shadow:
    0 0 0 7px rgba(84, 216, 255, 0.14),
    0 0 26px rgba(84, 216, 255, 0.72),
    0 18px 28px rgba(20, 83, 140, 0.23);
  transform: translateX(-50%);
}

.output-method-badge::before,
.output-method-badge::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.output-method-badge::before {
  inset: 10px;
  border: 1px solid rgba(18, 105, 211, 0.28);
}

.output-method-badge::after {
  inset: 18px;
  border: 2px solid rgba(84, 216, 255, 0.34);
}

.output-method-badge svg {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  color: #0d2134;
  filter: drop-shadow(0 4px 2px rgba(18, 105, 211, 0.12));
}

.output-method-card h3 {
  margin: 48px 0 8px;
  color: #07111f;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 820;
  letter-spacing: 0;
}

.output-method-card p {
  margin: 0;
  color: #1f3042;
  font-size: 14px;
  line-height: 1.64;
}

.output-method-more {
  display: block;
  margin-top: 18px;
  color: #7d8d9d;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 10px;
  text-align: right;
}

@media (max-width: 1180px) {
  .output-wave-map {
    display: grid;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 24px;
    overflow: visible;
    padding: 38px 24px 28px;
  }

  .output-wave-title {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1 / -1;
  }

  .output-wave-title h2 {
    width: min(520px, 100%);
  }

  .output-wave-lines {
    top: 230px;
    left: -260px;
    opacity: 0.72;
  }

  .output-particle {
    display: none;
  }

  .output-method-card,
  .output-method-card.one,
  .output-method-card.two,
  .output-method-card.three,
  .output-method-card.four {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
  }
}

@media (max-width: 680px) {
  .output-wave-map {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 32px 20px 26px;
  }

  .output-wave-title h2 {
    font-size: 32px;
  }

  .output-wave-lines {
    display: none;
  }
}

.scenario-section {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 64px;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(221, 248, 255, 0.8), transparent 34%),
    radial-gradient(ellipse at 50% 110%, rgba(84, 216, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #f9fdff 0%, #edf7fc 100%);
}

.scenario-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(157, 195, 222, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 195, 222, 0.16) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22) 62%, transparent);
  content: "";
  pointer-events: none;
}

.scenario-section::after {
  position: absolute;
  inset: 56px -6% auto;
  height: 380px;
  background:
    linear-gradient(14deg, transparent 25%, rgba(98, 143, 182, 0.16) 25.2%, transparent 25.7%),
    linear-gradient(-18deg, transparent 58%, rgba(98, 143, 182, 0.14) 58.2%, transparent 58.8%),
    radial-gradient(circle at 18% 40%, rgba(84, 216, 255, 0.35) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 23%, rgba(84, 216, 255, 0.28) 0 4px, transparent 5px),
    radial-gradient(circle at 86% 36%, rgba(84, 216, 255, 0.24) 0 3px, transparent 4px);
  opacity: 0.75;
  content: "";
  pointer-events: none;
}

.scenario-section .section-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 38px;
}

.scenario-section .section-heading .eyebrow {
  justify-content: center;
  color: #54d8ff;
  font-size: 11px;
  letter-spacing: 0.22em;
}

.scenario-section .section-heading h2 {
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.08;
}

.scenario-section .section-heading p:not(.eyebrow) {
  max-width: none;
  margin: 14px 0 0;
  color: #202d3c;
  font-size: 20px;
  line-height: 1.55;
}

.scenario-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  max-width: 1520px;
  margin: 0 auto;
  gap: 0;
  align-items: stretch;
  overflow: visible;
  padding: 0 24px 12px;
  perspective: 1200px;
}

.scenario-grid::after {
  position: absolute;
  right: 48px;
  bottom: 0;
  left: 48px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(50, 91, 128, 0.18), transparent 68%);
  content: "";
  pointer-events: none;
}

.scenario-grid article {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  padding: 36px 30px 32px;
  border: 1px solid rgba(198, 220, 236, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 255, 0.86)),
    radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.96), transparent 62%);
  box-shadow:
    0 28px 48px rgba(38, 80, 113, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform-origin: bottom center;
}

.scenario-grid article:nth-child(1) {
  transform: rotateY(7deg) translateX(16px) translateY(18px);
}

.scenario-grid article:nth-child(2) {
  z-index: 2;
  transform: rotateY(4deg) translateX(6px) translateY(4px);
}

.scenario-grid article:nth-child(3) {
  z-index: 4;
  border-color: rgba(84, 216, 255, 0.75);
  box-shadow:
    0 0 0 4px rgba(84, 216, 255, 0.16),
    0 0 30px rgba(84, 216, 255, 0.5),
    0 34px 56px rgba(38, 80, 113, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transform: translateY(-10px) scale(1.04);
}

.scenario-grid article:nth-child(4) {
  z-index: 2;
  transform: rotateY(-4deg) translateX(-6px) translateY(4px);
}

.scenario-grid article:nth-child(5) {
  transform: rotateY(-7deg) translateX(-16px) translateY(18px);
}

.scenario-grid h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

.before-after {
  display: grid;
  gap: 12px;
}

.before-after p {
  margin: 0;
  min-height: 72px;
  border-left: 2px solid rgba(84, 216, 255, 0.5);
  padding-left: 16px;
  color: #31465d;
  font-size: 15px;
  line-height: 1.65;
}

.before-after p:last-child {
  border: 1px solid rgba(119, 206, 241, 0.45);
  border-left: 3px solid #22bce8;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(236, 249, 255, 0.5));
  box-shadow:
    0 14px 30px rgba(53, 119, 161, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  padding: 12px 16px;
  backdrop-filter: blur(10px);
}

.before-after b {
  margin-right: 4px;
  color: #0b1424;
  font-weight: 850;
}

.scenario-grid article > strong {
  display: block;
  margin-top: auto;
  border-top: 1px solid rgba(184, 211, 229, 0.9);
  padding-top: 20px;
  color: #095b9d;
  font-size: 14px;
  line-height: 1.22;
  letter-spacing: 0;
}

.advantage-board {
  overflow: hidden;
  border: 1px solid #cfe0ef;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.advantage-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.25fr;
  border-bottom: 1px solid #e3edf5;
}

.advantage-row:last-child {
  border-bottom: 0;
}

.advantage-row span,
.advantage-row strong {
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.55;
}

.advantage-row span:first-child {
  color: #0b1424;
  font-weight: 800;
}

.advantage-row span:nth-child(2) {
  color: #718397;
}

.advantage-row strong {
  background: linear-gradient(90deg, #f0f9ff, #fff);
  color: var(--blue);
}

.advantage-row.is-head {
  background: #07111f;
  color: #fff;
}

.advantage-row.is-head span {
  color: #fff;
}

.advantage-section {
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 62px;
  background: #f3f7fb;
}

.advantage-section .section-heading h2 {
  color: #333333;
}

.home-compare-matrix {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid #dbe6ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(17, 42, 78, 0.08);
}

.home-compare-row {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dbe6ef;
}

.advantage-compare-matrix .home-compare-row {
  grid-template-columns: 0.75fr 1.18fr 1.42fr;
}

.home-compare-row:first-child {
  border-top: 0;
}

.home-compare-row-head {
  border-top: 0;
  background: #f3f7fc;
}

.home-compare-row-head > div {
  min-height: 58px;
  padding: 16px 18px;
  color: #0b1424;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.advantage-compare-matrix .home-compare-row-head > div:nth-child(3) {
  color: #0b1424;
  background: #f3f7fc;
}

.home-compare-feature,
.home-compare-cell {
  min-width: 0;
  padding: 14px 18px;
}

.home-compare-row > div + div {
  border-left: 1px solid #dbe6ef;
}

.home-compare-feature strong,
.home-compare-cell strong {
  display: block;
  color: #0b1424;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.45;
}

.home-compare-feature span,
.home-compare-cell span:not(.home-compare-status) {
  display: block;
  margin-top: 5px;
  color: #5d6e83;
  font-size: 13px;
  line-height: 1.45;
}

.home-compare-cell {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #0b1424;
}

.home-compare-cell.is-primary {
  background: #fff;
}

.home-compare-text {
  color: #0b1424;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.58;
}

.home-compare-cell.is-primary .home-compare-text {
  color: #0b1424;
}

.home-compare-text strong {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: 850;
  line-height: inherit;
}

.home-compare-status {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
}

.home-compare-status svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-compare-status-ok {
  background: rgba(36, 191, 128, 0.14);
  color: #58e6a7;
  box-shadow: inset 0 0 0 1px rgba(88, 230, 167, 0.36);
}

.home-compare-status-no {
  background: rgba(255, 116, 106, 0.12);
  color: #ff8b82;
  box-shadow: inset 0 0 0 1px rgba(255, 139, 130, 0.28);
}

.home-compare-status-partial {
  background: rgba(255, 190, 101, 0.12);
  color: #ffc277;
  box-shadow: inset 0 0 0 1px rgba(255, 194, 119, 0.3);
}

.advantage-summary {
  max-width: 920px;
  margin: 12px auto 0;
  color: #45586e;
  font-size: 17px;
  line-height: 1.65;
  text-align: center;
}

.advantage-section .section-heading p.advantage-summary {
  color: #45586e;
}

.advantage-summary strong {
  color: #0b1424;
  font-weight: 850;
}

.specs-section {
  padding-top: 60px;
  padding-bottom: 62px;
  background: #07111f;
}

.specs-section .section-heading h2 {
  color: #fff;
}

.specs-section .section-heading p:not(.eyebrow) {
  color: #b9c8d6;
}

.spec-table {
  overflow: hidden;
  border: 1px solid rgba(139, 170, 205, 0.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 24, 41, 0.88), rgba(7, 15, 27, 0.82));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.spec-group {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  border-top: 1px solid rgba(139, 170, 205, 0.18);
}

.spec-group:first-child {
  border-top: 0;
}

.spec-group-title {
  padding: 20px 22px;
  background: rgba(6, 18, 34, 0.58);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

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

.spec-row {
  min-height: 72px;
  border-left: 1px solid rgba(139, 170, 205, 0.14);
  border-bottom: 1px solid rgba(139, 170, 205, 0.14);
  padding: 16px 20px;
}

.spec-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.spec-row span {
  display: block;
  margin-bottom: 6px;
  color: #8fb0ca;
  font-size: 12px;
  font-weight: 700;
}

.spec-row strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.specs-grid article {
  background: linear-gradient(180deg, rgba(12, 30, 52, 0.96), rgba(8, 19, 33, 0.94));
  border-color: rgba(139, 170, 205, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  padding: 28px;
}

.specs-grid h3 {
  margin-top: 0;
  color: #fff;
}

.specs-grid dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.specs-grid dl div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.specs-grid dt {
  color: #8ab4d8;
  font-size: 14px;
}

.specs-grid dd {
  margin: 0;
  color: #eef7ff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.download-section {
  padding: 66px var(--header-pad-x) 70px;
  background:
    radial-gradient(circle at 16% 28%, rgba(17, 107, 217, 0.07), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(84, 216, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #f4f8fc 0%, #eef5fb 100%);
}

.download-shell {
  display: grid;
  width: min(100%, var(--safe-width));
  margin: 0 auto;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.45fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  border: 1px solid rgba(199, 218, 233, 0.84);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 255, 0.92));
  padding: clamp(34px, 4.2vw, 52px);
  box-shadow: 0 24px 70px rgba(31, 65, 98, 0.08);
}

.download-intro {
  max-width: 380px;
}

.download-intro h2 {
  margin: 0;
  color: #0b1424;
  font-size: clamp(42px, 3.5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.download-intro p {
  margin: 14px 0 0;
  color: #5b6f84;
  font-size: 16px;
  line-height: 1.72;
}

.download-list {
  display: grid;
  gap: 12px;
}

.download-list-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid #dce7f1;
  border-radius: 18px;
  background: #ffffff;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(17, 42, 78, 0.055);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.download-list-item:hover {
  border-color: #bdd3e7;
  background: #ffffff;
}

.download-file-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid #cde0f2;
  border-radius: 14px;
  background: #eef7ff;
  color: #116bd9;
}

.download-file-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-file-icon span {
  display: block;
  min-width: 0;
  height: auto;
  margin-top: -3px;
  border-radius: 0;
  background: transparent;
  color: #116bd9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.download-list-copy {
  min-width: 0;
}

.download-list-copy h3 {
  margin: 0;
  color: #0b1424;
  font-size: 20px;
  line-height: 1.25;
}

.download-list-copy p {
  margin: 7px 0 0;
  color: #5d7187;
  font-size: 14px;
  line-height: 1.6;
}

.download-list-action {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #c5d8e9;
  border-radius: 999px;
  background: #ffffff;
  padding: 0 16px;
  color: #315a7f;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.download-list-action svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-list-item:hover .download-list-action {
  border-color: #9fc5e8;
  background: #f2f8fe;
  color: #0b63bd;
}

@media (max-width: 900px) {
  .download-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .download-list-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .download-list-action {
    grid-column: 2;
    width: fit-content;
  }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 55;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(93, 170, 232, 0.42);
  border-radius: 999px;
  background: rgba(5, 18, 34, 0.86);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
  backdrop-filter: blur(16px);
}

.back-to-top svg {
  width: 21px;
  height: 21px;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(119, 211, 255, 0.78);
  background: rgba(8, 34, 68, 0.94);
}

.faq-list {
  display: grid;
  max-width: var(--safe-width);
  margin: 0 auto;
  gap: 10px;
}

.faq-list details {
  border: 1px solid #dbe6ef;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 42, 78, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  color: #0b1424;
  font-size: 18px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  border-top: 1px solid #e4edf4;
  padding: 14px 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.site-footer {
  background: #030911;
  color: #aebfd1;
}

.site-footer-inner {
  width: min(var(--safe-width), calc(100% - 72px));
  margin: 0 auto;
  padding: 24px 0 20px;
}

.site-footer-brand-row,
.site-footer-legal-row,
.site-footer-brand,
.site-footer-records,
.site-footer-police {
  display: flex;
  align-items: center;
}

.site-footer-brand-row,
.site-footer-legal-row {
  justify-content: space-between;
  gap: 32px;
}

.site-footer-brand {
  gap: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.site-footer-brand img {
  width: 36px;
  height: 36px;
  padding: 0;
  object-fit: contain;
}

.site-footer-slogan,
.site-footer-legal-row p {
  margin: 0;
}

.site-footer-slogan {
  color: #f3f7fb;
  font-size: 15px;
  font-weight: 800;
}

.site-footer-divider {
  height: 1px;
  margin: 18px 0 14px;
  background: rgba(166, 199, 232, 0.24);
}

.site-footer-legal-row {
  color: #9fb4ca;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer-records {
  gap: 12px;
  justify-content: flex-end;
  color: #a9c5df;
  white-space: nowrap;
}

.site-footer-records a {
  color: inherit;
  transition: color 160ms ease;
}

.site-footer-records a:hover {
  color: #fff;
}

.site-footer-police {
  gap: 8px;
}

.site-footer-police img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .product-hero {
    min-height: calc(100svh - 120px);
  }

  .product-video-title {
    max-width: 760px;
  }

  .pipeline-map {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .pipeline-panel {
    min-height: auto;
  }

  .pipeline-transfer {
    min-width: 0;
    height: 44px;
  }

  .pipeline-transfer::before {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(122, 223, 255, 0.32), #7adfff);
  }

  .pipeline-transfer::after {
    right: auto;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .pipeline-transfer span {
    top: 50%;
    left: calc(50% + 22px);
    transform: translateY(-50%);
  }

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

  .process-flow {
    gap: 38px 24px;
    padding: 42px 32px;
  }

  .process-step {
    min-height: 212px;
    padding: 22px 14px;
  }

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

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
    padding: 0 20px;
  }

  .brand {
    font-size: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .header-nav-group {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 120;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    width: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    max-height: calc(100svh - 68px);
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #050d19;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
    padding: 8px 20px 22px;
    opacity: 0;
    margin-left: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .menu-open .header-nav-group {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav {
    display: grid;
    width: 100%;
    align-items: stretch;
    gap: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
  }

  .main-nav a {
    display: flex;
    min-height: 52px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
    text-align: left;
  }

  .main-nav a::after {
    display: none;
  }

  .site-header-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
    padding: 0 0 4px;
  }

  .site-header-demo,
  .site-header-login {
    width: 100%;
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .product-page {
    padding-top: 68px;
  }

  .product-hero {
    min-height: min(calc(100svh - 120px), 420px);
    padding: 0 20px;
  }

  .product-subnav {
    top: 68px;
    overflow-x: auto;
  }

  .product-subnav-inner {
    min-width: max-content;
    gap: 28px;
    padding: 0 20px;
  }

  .product-subnav-title {
    font-size: 14px;
  }

  .product-subnav-title img {
    width: 22px;
    height: 22px;
  }

  .product-subnav-links {
    gap: 28px;
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    padding: 44px 20px;
  }

  .flow-lede {
    font-size: 15px;
    text-align: left;
  }

  .pipeline-map {
    margin-top: 28px;
    padding: 14px;
  }

  .pipeline-panel {
    padding: 16px;
  }

  .pipeline-panel-head {
    display: grid;
    gap: 7px;
  }

  .pipeline-engine strong {
    font-size: 24px;
  }

  .definition-panel,
  .output-grid,
  .download-grid,
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: hidden;
    padding: 28px 20px;
  }

  .process-flow::before {
    position: absolute;
    top: 46px;
    bottom: 46px;
    left: 64px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #48d5ff, #116bd9);
    content: "";
    opacity: 0.9;
    z-index: 0;
  }

  .process-route {
    display: none;
  }

  .process-step[data-step] {
    grid-column: 1;
    grid-row: auto;
  }

  .process-connector {
    display: none;
  }

  .flow-connector {
    flex: 0 0 28px;
    width: 2px;
    height: 28px;
    justify-self: center;
    background: linear-gradient(180deg, #8cc9ff, var(--blue));
  }

  .process-step,
  .flow-node {
    width: 100%;
    flex-basis: auto;
  }

  .process-step {
    grid-template-columns: 66px 1fr;
    column-gap: 16px;
    min-height: 0;
    align-items: start;
    justify-items: start;
    border-radius: 24px;
    padding: 18px;
    text-align: left;
  }

  .process-step::before,
  .process-step[data-step="5"]::before,
  .process-step[data-step="6"]::before,
  .process-step[data-step="7"]::before,
  .process-step[data-step="8"]::before {
    top: 42px;
    bottom: auto;
    left: 45px;
    width: 14px;
    height: 14px;
    border-width: 3px;
    transform: none;
  }

  .process-icon {
    grid-row: 1 / 4;
    width: 56px;
    height: 56px;
  }

  .process-step span {
    margin-top: 0;
  }

  .process-step h3 {
    margin-top: 8px;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .scenario-grid article,
  .scenario-grid article:nth-child(1),
  .scenario-grid article:nth-child(2),
  .scenario-grid article:nth-child(3),
  .scenario-grid article:nth-child(4),
  .scenario-grid article:nth-child(5) {
    min-height: 0;
    transform: none;
  }

  .advantage-board {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .advantage-row,
  .advantage-row.is-head {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .advantage-row.is-head {
    display: none;
  }

  .advantage-row span,
  .advantage-row strong {
    padding: 13px 16px;
  }

  .advantage-row span:nth-child(2)::before {
    content: "手工录入：";
    color: #0b1424;
    font-weight: 800;
  }

  .advantage-row strong::before {
    content: "结构眼：";
    color: #0b1424;
  }

  .home-compare-matrix {
    display: grid;
    gap: 12px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .advantage-compare-matrix .home-compare-row,
  .home-compare-row {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid #dbe6ef;
    border-radius: var(--radius);
    background: #fff;
  }

  .home-compare-row-head {
    display: none;
  }

  .home-compare-row > div + div {
    border-top: 1px solid #dbe6ef;
    border-left: 0;
  }

  .home-compare-feature,
  .home-compare-cell {
    padding: 15px 16px;
  }

  .home-compare-cell {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .spec-table {
    border-radius: var(--radius);
  }

  .spec-group,
  .spec-rows {
    grid-template-columns: 1fr;
  }

  .spec-group-title {
    padding: 18px 20px;
  }

  .spec-row {
    border-left: 0;
  }

  .spec-row:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(139, 170, 205, 0.14);
  }

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

  .specs-grid dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    text-align: left;
  }

  .site-footer-inner {
    width: min(100% - 40px, var(--safe-width));
    padding: 30px 0 26px;
  }

  .site-footer-brand-row,
  .site-footer-legal-row {
    display: grid;
    justify-content: stretch;
    gap: 14px;
  }

  .site-footer-slogan {
    font-size: 16px;
  }

  .site-footer-divider {
    margin: 22px 0 18px;
  }

  .site-footer-records {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 12px;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .launch-hero {
    min-height: 100svh;
  }

  .launch-hero-copy {
    justify-content: flex-start;
    padding-top: 104px;
  }

  .launch-hero-media {
    align-items: center;
  }

  .launch-hero h1 strong {
    font-size: clamp(42px, 11.2vw, 54px);
  }

  .launch-subtitle {
    max-width: 300px;
    font-size: 16px;
  }

  .launch-hero-media img {
    width: min(95vw, 450px);
    transform: none;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 12%, #000 85%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 12%, #000 85%, transparent 100%);
    mask-composite: intersect;
  }

  .launch-hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 9, 19, 0.82) 0%, rgba(4, 9, 19, 0.56) 36%, rgba(4, 9, 19, 0.08) 72%),
      linear-gradient(90deg, rgba(4, 9, 19, 0.64), transparent 78%);
  }

  .product-video-title h1,
  .product-hero-copy h1,
  .section-heading h2 {
    font-size: 31px;
  }

  .product-hero-copy p:not(.eyebrow),
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .definition-panel article,
  .output-grid article,
  .download-grid article,
  .scenario-grid article,
  .specs-grid article {
    padding: 22px;
  }

  .product-subnav-links a {
    flex: 0 0 auto;
    padding: 17px 0 15px;
    font-size: 13px;
  }

  .pipeline-map {
    padding: 10px;
  }

  .pipeline-panel {
    gap: 12px;
    padding: 14px;
  }

  .pipeline-node {
    gap: 12px;
    padding: 12px;
  }

  .pipeline-icon {
    width: 40px;
    height: 40px;
  }

  .pipeline-icon svg {
    width: 24px;
    height: 24px;
  }

  .pipeline-node h4 {
    font-size: 17px;
  }

  .pipeline-cluster {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .product-hero {
    min-height: min(calc(100svh - 120px), 280px);
    padding: 0 16px;
  }

  .product-video-title {
    width: min(100%, 340px);
    transform: translateY(-3vh);
  }

  .product-video-title h1 {
    font-size: 29px;
    line-height: 1.18;
  }
}


/* scanner workflow component start */
.scanner-workflow {
        --ink: #081a33;
        --slate: #4f647d;
        --muted: #7b8fa8;
        --line: #d8e7f8;
        --line-strong: #a9caf2;
        --blue: #1269d3;
        --blue-deep: #004491;
        --blue-soft: #eaf4ff;
        --cyan: #54d8ff;
        --surface: #f5f9fd;
        --white: #ffffff;
        --shadow: 0 30px 80px rgba(14, 52, 96, 0.1);
        margin-top: 22px;
        --panel-height: 760px;
        display: flex;
        justify-content: center;
      }

.scanner-workflow * {
        box-sizing: border-box;
      }

.scanner-workflow button {
        font: inherit;
      }

.scanner-workflow .stage {
        width: min(1440px, 100%);
        min-height: 760px;
        display: grid;
        grid-template-columns: minmax(540px, 600px) minmax(0, 760px);
        gap: 32px;
        align-items: center;
      }

.scanner-workflow .orbit-card {
        position: relative;
        height: var(--panel-height);
        min-height: var(--panel-height);
      }

.scanner-workflow .orbit-bg {
        position: absolute;
        inset: 0;
        border-radius: 34px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 249, 254, 0.46));
        border: 1px solid rgba(200, 220, 242, 0.76);
      }

.scanner-workflow .orbit {
        position: relative;
        width: 500px;
        height: var(--panel-height);
        margin: 0 auto;
        transform: translateX(-4px);
      }

.scanner-workflow .orbit-path {
        position: absolute;
        inset: 10px 0 0 0;
        width: 500px;
        height: 620px;
        pointer-events: none;
      }

.scanner-workflow .orbit-path path {
        fill: none;
        stroke: rgba(18, 105, 211, 0.24);
        stroke-width: 5;
        stroke-linecap: round;
        stroke-dasharray: 10 16;
        animation: scannerPathFlow 2.2s linear infinite;
      }

@keyframes scannerPathFlow {
        from {
          stroke-dashoffset: 0;
        }
        to {
          stroke-dashoffset: -52;
        }
      }

.scanner-workflow .hub {
        position: absolute;
        left: 40px;
        top: 248px;
        width: 224px;
        height: 224px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-align: center;
        background:
          radial-gradient(circle at 42% 30%, rgba(84, 216, 255, 0.22), transparent 46%),
          linear-gradient(145deg, #ffffff, #eaf4ff);
        border: 2px solid rgba(18, 105, 211, 0.18);
        box-shadow:
          inset 0 0 0 14px rgba(255, 255, 255, 0.72),
          0 28px 60px rgba(15, 70, 130, 0.13);
      }

.scanner-workflow .hub::before,
.scanner-workflow .hub::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(18, 105, 211, 0.12);
      }

.scanner-workflow .hub::before {
        left: 50%;
        top: 50%;
        width: 268px;
        height: 268px;
        transform: translate(-50%, -50%);
      }

.scanner-workflow .hub::after {
        left: 50%;
        top: 50%;
        width: 176px;
        height: 176px;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.58);
      }

.scanner-workflow .hub-product {
        position: relative;
        z-index: 1;
        width: 194px;
        height: 148px;
        object-fit: contain;
        display: block;
        max-width: none;
        filter: drop-shadow(0 16px 22px rgba(20, 56, 92, 0.18));
      }

.scanner-workflow .flow-node {
        position: absolute;
        width: 214px;
        min-height: 82px;
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        padding: 6px 12px 6px 6px;
        border: 1px solid rgba(184, 211, 242, 0.66);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.68);
        backdrop-filter: blur(10px);
        box-shadow: 0 14px 32px rgba(18, 73, 130, 0.06);
        transition:
          transform 180ms ease,
          border-color 180ms ease,
          background 180ms ease,
          box-shadow 180ms ease;
      }

.scanner-workflow .flow-node.is-current {
        transform: translateY(-2px);
        border-color: rgba(18, 105, 211, 0.34);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 22px 48px rgba(18, 105, 211, 0.14);
      }

.scanner-workflow .step-node {
        position: relative;
        width: 72px;
        height: 72px;
        padding: 0;
        display: grid;
        place-items: center;
        border-radius: 50%;
        border: 1px solid rgba(147, 184, 224, 0.72);
        background: rgba(255, 255, 255, 0.94);
        color: var(--blue-deep);
        cursor: pointer;
        box-shadow: 0 16px 34px rgba(18, 73, 130, 0.09);
        transition:
          transform 180ms ease,
          border-color 180ms ease,
          background 180ms ease,
          box-shadow 180ms ease;
      }

.scanner-workflow .step-node:hover {
        transform: translateY(-2px);
        border-color: rgba(18, 105, 211, 0.58);
      }

.scanner-workflow .step-node.is-active {
        background: var(--blue);
        border-color: var(--blue);
        color: #fff;
        box-shadow: 0 22px 52px rgba(18, 105, 211, 0.28);
      }

.scanner-workflow .step-node.is-active::after {
        content: "";
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 1px solid rgba(18, 105, 211, 0.3);
      }

.scanner-workflow .step-node .node-inner {
        display: grid;
        gap: 5px;
        place-items: center;
        min-width: 0;
        height: auto;
        border-radius: 0;
        background: transparent;
        color: inherit;
      }

.scanner-workflow .step-node svg {
        width: 24px;
        height: 24px;
      }

.scanner-workflow .step-node .node-inner > span {
        display: block;
        min-width: 0;
        height: auto;
        border-radius: 0;
        background: transparent;
        color: inherit;
        font-size: 12px;
        font-weight: 800;
        line-height: 1;
      }

.scanner-workflow .step-copy {
        color: var(--slate);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.35;
        pointer-events: none;
      }

.scanner-workflow .step-copy b {
        display: block;
        color: var(--ink);
        font-size: 17px;
        line-height: 1.35;
        white-space: nowrap;
      }

.scanner-workflow .step-copy small {
        display: block;
        margin-top: 4px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 500;
        line-height: 1.35;
        white-space: normal;
      }

.scanner-workflow [data-node="0"] {
        left: 154px;
        top: 44px;
      }

.scanner-workflow [data-node="1"] {
        left: 236px;
        top: 162px;
      }

.scanner-workflow [data-node="2"] {
        left: 276px;
        top: 294px;
      }

.scanner-workflow [data-node="3"] {
        left: 246px;
        top: 426px;
      }

.scanner-workflow [data-node="4"] {
        left: 80px;
        top: 540px;
      }

.scanner-workflow .detail-panel {
        height: var(--panel-height);
        min-height: var(--panel-height);
        display: grid;
        grid-template-rows: auto minmax(0, 1fr) auto;
        padding: 40px 48px 34px;
        border: 1px solid var(--line);
        border-radius: 34px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: var(--shadow);
      }

.scanner-workflow .detail-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 28px;
        row-gap: 16px;
        align-items: start;
      }

.scanner-workflow .detail-head > div:first-child {
        display: contents;
      }

.scanner-workflow .detail-head .workflow-eyebrow {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
      }

.scanner-workflow .eyebrow,
.scanner-workflow .workflow-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--blue);
        font-size: 13px;
        font-weight: 850;
        letter-spacing: 0.04em;
      }

.scanner-workflow .eyebrow::before,
.scanner-workflow .workflow-eyebrow::before {
        content: "";
        width: 30px;
        height: 2px;
        border-radius: 999px;
        background: var(--blue);
      }

.scanner-workflow .lead {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        max-width: none;
        margin: 0;
        color: var(--slate);
        font-size: 18px;
        line-height: 1.9;
      }

.scanner-workflow .status-chip {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        justify-self: end;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-width: 166px;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid rgba(18, 105, 211, 0.2);
        background: var(--blue-soft);
        color: var(--blue-deep);
        padding: 12px 18px;
        font-size: 14px;
        font-weight: 800;
      }

.scanner-workflow .status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--blue);
        box-shadow: 0 0 0 5px rgba(18, 105, 211, 0.12);
      }

.scanner-workflow .visual-frame {
        margin-top: 16px;
        min-height: 310px;
        display: grid;
        place-items: center;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 28px;
        background:
          linear-gradient(180deg, rgba(248, 252, 255, 0.9), rgba(238, 247, 255, 0.9)),
          radial-gradient(circle at 50% 30%, rgba(84, 216, 255, 0.12), transparent 45%);
      }

.scanner-workflow .visual-frame:has(.product-flow-schema) {
        margin-top: 16px;
        min-height: 0;
        display: block;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: none;
      }

.scanner-workflow .visual-frame:has(.product-flow-review-schema) {
        min-height: 346px;
        overflow: visible;
      }

.scanner-workflow .docs-image {
        width: min(82%, 820px);
        max-height: 300px;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 18px 32px rgba(21, 61, 100, 0.12));
      }

.scanner-workflow .output-note {
        margin-top: 22px;
        padding: 18px 22px;
        border: 1px solid var(--line-strong);
        border-radius: 22px;
        background: linear-gradient(180deg, #eef8ff, #eaf5ff);
        color: #123960;
        font-size: 16px;
        line-height: 1.8;
      }

.scanner-workflow .output-note strong {
        color: var(--ink);
      }

.scanner-workflow .schema {
        width: min(94%, 840px);
        display: grid;
        grid-template-columns: minmax(0, 0.88fr) 74px minmax(0, 1.12fr);
        align-items: center;
        gap: 18px;
      }

.scanner-workflow .extract-schema {
        width: min(96%, 900px);
        grid-template-columns: minmax(0, 0.72fr) 66px minmax(380px, 1.36fr);
        gap: 16px;
      }

.scanner-workflow .schema-card,
.scanner-workflow .schema-result,
.scanner-workflow .match-card,
.scanner-workflow .package-card,
.scanner-workflow .meter-card {
        border: 1px solid rgba(168, 201, 238, 0.9);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: 0 18px 42px rgba(37, 88, 145, 0.08);
      }

.scanner-workflow .schema-card {
        padding: 22px;
      }

.scanner-workflow .extract-card {
        min-height: 292px;
        padding: 22px;
      }

.scanner-workflow .fake-doc {
        height: 236px;
        display: grid;
        gap: 12px;
        align-content: start;
        border-radius: 14px;
        background: #fff;
        padding: 22px;
        box-shadow: inset 0 0 0 1px rgba(194, 211, 231, 0.9);
      }

.scanner-workflow .extract-card .fake-doc {
        height: 204px;
        margin-top: 18px;
      }

.scanner-workflow .line {
        display: block;
        height: 9px;
        border-radius: 999px;
        background: #d7e4f2;
      }

.scanner-workflow .line.short {
        width: 46%;
      }

.scanner-workflow .line.mid {
        width: 68%;
      }

.scanner-workflow .line.long {
        width: 92%;
      }

.scanner-workflow .schema-arrow {
        position: relative;
        height: 2px;
        background: rgba(18, 105, 211, 0.28);
      }

.scanner-workflow .schema-arrow::after {
        content: "";
        position: absolute;
        right: -1px;
        top: 50%;
        width: 12px;
        height: 12px;
        border-top: 2px solid rgba(18, 105, 211, 0.48);
        border-right: 2px solid rgba(18, 105, 211, 0.48);
        transform: translateY(-50%) rotate(45deg);
      }

.scanner-workflow .schema-result {
        padding: 22px;
      }

.scanner-workflow .extract-result-card {
        min-height: 338px;
        padding: 24px 28px 26px;
        display: grid;
        align-content: start;
      }

.scanner-workflow .extract-fields {
        display: grid;
        gap: 18px;
        margin-top: 24px;
      }

.scanner-workflow .extract-field {
        display: grid;
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 18px;
        align-items: center;
        color: #0b2545;
        font-size: 16px;
        font-weight: 850;
      }

.scanner-workflow .extract-field span {
        display: block;
        height: 10px;
        border-radius: 999px;
        background: #9ed0ff;
      }

.scanner-workflow .extract-table {
        margin-top: 28px;
        overflow: hidden;
        border: 1px solid #9fc8f2;
        border-radius: 18px;
        background: #ffffff;
      }

.scanner-workflow .extract-table-head,
.scanner-workflow .extract-table-row {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
      }

.scanner-workflow .extract-table-head span,
.scanner-workflow .extract-table-row span {
        min-height: 42px;
        display: grid;
        place-items: center;
        border-right: 1px solid #cfe1f4;
      }

.scanner-workflow .extract-table-head span {
        background: #e9f4ff;
        color: #0b2545;
        font-size: 17px;
        font-weight: 850;
        text-align: center;
      }

.scanner-workflow .extract-table-head span:last-child,
.scanner-workflow .extract-table-row span:last-child {
        border-right: 0;
      }

.scanner-workflow .extract-table-row span {
        border-top: 1px solid #d8e7f7;
        background: rgba(255, 255, 255, 0.92);
      }

.scanner-workflow .product-flow-schema {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 0.88fr) 74px minmax(0, 1.12fr);
        gap: 18px;
        align-items: center;
        margin: 24px 0 0;
        border: 1px solid #e1eaf3;
        border-radius: 26px;
        background: linear-gradient(180deg, #f7fafc, #eef4fa);
        padding: 22px;
        box-shadow: 0 14px 34px rgba(24, 52, 93, 0.08);
      }

.scanner-workflow .product-flow-schema-doc,
.scanner-workflow .product-flow-schema-result {
        min-height: 292px;
        border: 1px solid #cfe2f6;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.88);
        padding: 22px;
        box-shadow: 0 12px 28px rgba(24, 52, 93, 0.07);
      }

.scanner-workflow .product-flow-schema-title {
        color: #0b1424;
        font-size: 20px;
        font-weight: 800;
        line-height: 1.35;
        text-align: center;
      }

.scanner-workflow .schema-lines {
        display: grid;
        gap: 14px;
        margin-top: 24px;
      }

.scanner-workflow .schema-line {
        display: block;
        height: 8px;
        border-radius: 999px;
        background: #b9d8f8;
      }

.scanner-workflow .schema-line.short {
        width: 45%;
      }

.scanner-workflow .schema-line.mid {
        width: 68%;
      }

.scanner-workflow .schema-line.long {
        width: 86%;
      }

.scanner-workflow .schema-doc-block {
        margin-top: 28px;
        border: 2px solid #98c5f2;
        border-radius: 18px;
        padding: 18px;
      }

.scanner-workflow .schema-arrow {
        position: relative;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, #6ab6ff, #116bd9);
      }

.scanner-workflow .schema-arrow::after {
        position: absolute;
        right: -2px;
        top: 50%;
        width: 0;
        height: 0;
        border-bottom: 10px solid transparent;
        border-left: 16px solid #116bd9;
        border-top: 10px solid transparent;
        content: "";
        transform: translateY(-50%);
      }

.scanner-workflow .schema-field-list {
        display: grid;
        gap: 14px;
        margin-top: 22px;
      }

.scanner-workflow .schema-field {
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        color: #244765;
        font-size: 15px;
        font-weight: 700;
      }

.scanner-workflow .schema-field::after {
        display: block;
        height: 8px;
        border-radius: 999px;
        background: #9ed0ff;
        content: "";
      }

.scanner-workflow .schema-table {
        margin-top: 24px;
        border: 2px solid #98c5f2;
        border-radius: 18px;
        padding: 16px;
      }

.scanner-workflow .schema-table-head,
.scanner-workflow .schema-table-row {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
      }

.scanner-workflow .schema-table-head span {
        color: #116bd9;
        font-size: 13px;
        font-weight: 800;
        text-align: center;
      }

.scanner-workflow .schema-table-row {
        margin-top: 12px;
      }

.scanner-workflow .schema-table-row span {
        height: 7px;
        border-radius: 999px;
        background: #9ed0ff;
      }

.scanner-workflow .product-flow-review-schema {
        display: grid;
        grid-template-columns: minmax(180px, 0.76fr) minmax(0, 1.24fr);
        gap: 18px;
        align-items: stretch;
        margin: 24px 0 0;
        border: 1px solid #e1eaf3;
        border-radius: 26px;
        background: linear-gradient(180deg, #f7fafc, #eef4fa);
        padding: 22px;
        box-shadow: 0 14px 34px rgba(24, 52, 93, 0.08);
      }

.scanner-workflow .review-accuracy-panel,
.scanner-workflow .review-routing-panel {
        min-height: 300px;
        border: 1px solid #cfe2f6;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.9);
        padding: 22px;
        box-shadow: 0 12px 28px rgba(24, 52, 93, 0.07);
      }

.scanner-workflow .review-accuracy-panel {
        display: grid;
        place-items: center;
        text-align: center;
      }

.scanner-workflow .review-meter {
        position: relative;
        display: grid;
        width: 132px;
        aspect-ratio: 1;
        place-items: center;
        border-radius: 50%;
        background: conic-gradient(#116bd9 0 356.4deg, #d9ebff 356.4deg 360deg);
        box-shadow: 0 18px 40px rgba(17, 107, 217, 0.16);
      }

.scanner-workflow .review-meter::before {
        position: absolute;
        inset: 11px;
        border: 1px solid #cfe2f6;
        border-radius: inherit;
        background: #fff;
        content: "";
      }

.scanner-workflow .review-meter strong,
.scanner-workflow .review-meter span {
        position: relative;
        z-index: 1;
        display: block;
      }

.scanner-workflow .review-meter strong {
        color: #0b1424;
        font-size: 38px;
        font-weight: 900;
        line-height: 1;
      }

.scanner-workflow .review-meter span {
        margin-top: 8px;
        color: #116bd9;
        font-size: 14px;
        font-weight: 800;
      }

.scanner-workflow .review-meter-copy {
        margin: 18px 0 0;
        color: #53677f;
        font-size: 14px;
        line-height: 1.75;
      }

.scanner-workflow .review-routing-panel {
        display: grid;
        gap: 14px;
        align-content: center;
        padding: 16px;
      }

.scanner-workflow .review-route {
        display: grid;
        grid-template-columns: 70px minmax(96px, 1fr) 38px;
        gap: 8px;
        align-items: center;
        border: 1px solid #dceaf7;
        border-radius: 18px;
        background: #f7fbff;
        padding: 12px 10px;
      }

.scanner-workflow .review-route.primary {
        min-height: 86px;
        border-color: #b9d8f8;
        background: linear-gradient(180deg, #ffffff, #eff7ff);
      }

.scanner-workflow .review-route b {
        color: #244765;
        font-size: 14px;
        line-height: 1.35;
      }

.scanner-workflow .review-route span {
        display: block;
        width: 100%;
        min-width: 0;
        justify-self: stretch;
        height: 8px;
        border-radius: 999px;
        background: #9ed0ff;
      }

.scanner-workflow .review-route.primary span {
        background: #69b8ff;
      }

.scanner-workflow .review-route em {
        color: #116bd9;
        font-size: 13px;
        font-style: normal;
        font-weight: 900;
        text-align: right;
      }

.scanner-workflow .review-route-note {
        margin: 4px 0 0;
        color: #5f7186;
        font-size: 13px;
        line-height: 1.65;
      }

.scanner-workflow .field-grid {
        display: grid;
        gap: 14px;
        margin-top: 22px;
      }

.scanner-workflow .field {
        min-height: 0;
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        border-radius: 0;
        background: transparent;
        color: #244765;
        font-weight: 800;
        font-size: 15px;
      }

.scanner-workflow .field::after {
        content: "";
        display: block;
        height: 8px;
        border-radius: 999px;
        background: #9ed0ff;
      }

.scanner-workflow .table-mini {
        margin-top: 18px;
        overflow: hidden;
        border: 1px solid #dceafa;
        border-radius: 14px;
      }

.scanner-workflow .table-mini div {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
      }

.scanner-workflow .table-mini span {
        min-height: 32px;
        border-right: 1px solid #dceafa;
        border-bottom: 1px solid #dceafa;
        background: #fff;
      }

.scanner-workflow .table-mini div:first-child span {
        background: #edf6ff;
      }

.scanner-workflow .match-schema {
        width: min(90%, 820px);
        display: grid;
        grid-template-columns: 1fr 120px 1fr;
        gap: 18px;
        align-items: center;
      }

.scanner-workflow .match-card {
        min-height: 230px;
        padding: 22px;
      }

.scanner-workflow .mini-title {
        color: var(--ink);
        font-size: 15px;
        font-weight: 850;
      }

.scanner-workflow .schema-visual-title {
        color: var(--ink);
        font-size: 20px;
        font-weight: 850;
        line-height: 1.35;
        text-align: center;
      }

.scanner-workflow .match-row,
.scanner-workflow .route-row {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 86px 1fr auto;
        gap: 10px;
        align-items: center;
        color: var(--slate);
        font-size: 13px;
      }

.scanner-workflow .match-row span,
.scanner-workflow .route-row span {
        height: 10px;
        border-radius: 999px;
        background: #d8e6f5;
      }

.scanner-workflow .match-row em,
.scanner-workflow .route-row em {
        border-radius: 999px;
        padding: 4px 8px;
        background: var(--blue-soft);
        color: var(--blue-deep);
        font-style: normal;
        font-weight: 800;
      }

.scanner-workflow .match-core {
        position: relative;
        width: 128px;
        height: 128px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-align: center;
        color: var(--ink);
        background: conic-gradient(from -36deg, var(--blue) 0 286deg, rgba(18, 105, 211, 0.12) 286deg 322deg, #69b8ff 322deg 360deg);
        box-shadow: 0 16px 34px rgba(17, 107, 217, 0.16);
        font-weight: 900;
        line-height: 1.35;
      }

.scanner-workflow .match-core::before {
        content: "";
        position: absolute;
        inset: 13px;
        border: 1px solid #cfe2f6;
        border-radius: inherit;
        background: linear-gradient(180deg, #ffffff, #eff7ff);
      }

.scanner-workflow .match-core span {
        position: relative;
        z-index: 1;
      }

.scanner-workflow .review-schema {
        width: min(88%, 760px);
        display: grid;
        grid-template-columns: 0.86fr 1.14fr;
        gap: 18px;
        align-items: stretch;
      }

.scanner-workflow .meter-card {
        min-height: 260px;
        display: grid;
        place-items: center;
        padding: 24px;
        text-align: center;
      }

.scanner-workflow .meter {
        width: 172px;
        height: 172px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background:
          radial-gradient(circle at center, #fff 0 48%, transparent 49%),
          conic-gradient(var(--blue) 0 356.4deg, #dceafa 356.4deg 360deg);
        color: var(--blue-deep);
      }

.scanner-workflow .meter strong {
        display: block;
        font-size: 42px;
        line-height: 1;
      }

.scanner-workflow .meter span {
        display: block;
        margin-top: 6px;
        font-size: 13px;
        font-weight: 800;
      }

.scanner-workflow .meter-card p,
.scanner-workflow .routes p {
        margin: 18px 0 0;
        color: #53677f;
        font-size: 14px;
        line-height: 1.75;
      }

.scanner-workflow .routes {
        padding: 22px;
      }

.scanner-workflow .route-row {
        grid-template-columns: 96px 1fr 58px;
      }

.scanner-workflow .output-schema {
        width: min(90%, 820px);
        display: block;
      }

.scanner-workflow .package-card {
        position: relative;
        padding: 16px 18px;
        text-align: center;
      }

.scanner-workflow .package-card::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -20px;
        width: 4px;
        height: 20px;
        border-radius: 999px;
        background: #9ed0ff;
        transform: translateX(-50%);
      }

.scanner-workflow .package-list {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
      }

.scanner-workflow .package-list span,
.scanner-workflow .channel {
        border-radius: 14px;
        border: 1px solid #dceafa;
        background: #fff;
        padding: 13px 14px;
        color: #123960;
        font-size: 14px;
        font-weight: 800;
      }

.scanner-workflow .channels {
        position: relative;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
        margin-top: 18px;
        padding-top: 18px;
      }

.scanner-workflow .channels::before {
        content: "";
        position: absolute;
        left: calc(12.5% - 5px);
        right: calc(12.5% - 5px);
        top: 0;
        height: 4px;
        background: #9ed0ff;
      }

.scanner-workflow .channel {
        position: relative;
        min-height: 96px;
        display: grid;
        align-content: center;
        gap: 7px;
        padding: 14px;
      }

.scanner-workflow .channel::before {
        content: "";
        position: absolute;
        left: 50%;
        top: -18px;
        width: 4px;
        height: 18px;
        border-radius: 999px;
        background: #9ed0ff;
        transform: translateX(-50%);
      }

.scanner-workflow .channel small {
        color: var(--muted);
        font-size: 12px;
        font-weight: 600;
      }

@media (max-width: 1180px) {
  .scanner-workflow .stage {
    grid-template-columns: 1fr;
  }

  .scanner-workflow .orbit-card,
  .scanner-workflow .orbit {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .scanner-workflow {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .scanner-workflow .stage {
    min-width: 980px;
  }
}
/* scanner workflow component end */

@media (max-width: 860px) {
  .product-subnav {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .product-subnav-inner {
    width: 100%;
    min-width: 0;
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-subnav-title {
    flex-shrink: 0;
  }

  .product-subnav-links {
    gap: 22px;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .product-subnav-links::-webkit-scrollbar {
    display: none;
  }

  .product-subnav-links a {
    flex: 0 0 auto;
  }

  .output-wave-map {
    overflow: hidden;
  }

  .output-wave-grain {
    inset: 0;
  }

  .output-wave-lines {
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }

  .scanner-workflow {
    display: block;
    overflow: visible;
    padding-bottom: 0;
  }

  .scanner-workflow .stage {
    width: 100%;
    min-width: 0;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
  }

  .scanner-workflow .orbit-card {
    height: auto;
    min-height: 0;
    border: 1px solid rgba(216, 231, 248, 0.9);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    padding: 18px;
    box-shadow: 0 18px 48px rgba(14, 52, 96, 0.08);
  }

  .scanner-workflow .orbit-bg,
  .scanner-workflow .orbit-path,
  .scanner-workflow .hub::before,
  .scanner-workflow .hub::after {
    display: none;
  }

  .scanner-workflow .orbit {
    width: 100%;
    max-width: none;
    height: auto;
    display: grid;
    gap: 12px;
    margin: 0;
    transform: none;
  }

  .scanner-workflow .hub,
  .scanner-workflow .flow-node,
  .scanner-workflow [data-node] {
    position: relative;
    top: auto;
    left: auto;
  }

  .scanner-workflow .hub {
    width: 142px;
    height: 142px;
    margin: 0 auto 4px;
    box-shadow:
      inset 0 0 0 9px rgba(255, 255, 255, 0.72),
      0 18px 42px rgba(15, 70, 130, 0.12);
  }

  .scanner-workflow .hub-product {
    width: 120px;
    height: 92px;
  }

  .scanner-workflow .flow-node {
    width: 100%;
    min-height: 0;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    border-radius: 20px;
    padding: 10px 14px 10px 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: none;
  }

  .scanner-workflow .flow-node.is-current {
    transform: none;
  }

  .scanner-workflow .flow-node::before {
    position: absolute;
    top: -12px;
    left: 38px;
    width: 2px;
    height: 12px;
    border-radius: 999px;
    background: #9ed0ff;
    content: "";
  }

  .scanner-workflow .hub + .flow-node::before {
    display: none;
  }

  .scanner-workflow .step-node {
    width: 58px;
    height: 58px;
  }

  .scanner-workflow .step-node:hover {
    transform: none;
  }

  .scanner-workflow .step-node.is-active::after {
    inset: -5px;
  }

  .scanner-workflow .step-node svg {
    width: 22px;
    height: 22px;
  }

  .scanner-workflow .step-node .node-inner > span {
    font-size: 11px;
  }

  .scanner-workflow .step-copy b {
    white-space: normal;
    font-size: 16px;
  }

  .scanner-workflow .step-copy small {
    font-size: 12px;
  }

  .scanner-workflow .detail-panel {
    height: auto;
    min-height: 0;
    grid-template-rows: auto;
    border-radius: 26px;
    padding: 22px 18px;
  }

  .scanner-workflow .detail-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .scanner-workflow .detail-head > div:first-child {
    display: grid;
    gap: 12px;
  }

  .scanner-workflow .detail-head .workflow-eyebrow,
  .scanner-workflow .lead,
  .scanner-workflow .status-chip {
    grid-column: auto;
    grid-row: auto;
  }

  .scanner-workflow .lead {
    font-size: 15px;
    line-height: 1.8;
  }

  .scanner-workflow .status-chip {
    justify-self: start;
    min-width: 0;
    padding: 10px 14px;
    font-size: 13px;
  }

  .scanner-workflow .visual-frame,
  .scanner-workflow .visual-frame:has(.product-flow-review-schema) {
    min-height: 0;
    overflow: hidden;
    border-radius: 22px;
    padding: 14px;
  }

  .scanner-workflow .visual-frame:has(.product-flow-schema) {
    padding: 0;
  }

  .scanner-workflow .schema,
  .scanner-workflow .extract-schema,
  .scanner-workflow .product-flow-schema,
  .scanner-workflow .product-flow-review-schema,
  .scanner-workflow .match-schema,
  .scanner-workflow .review-schema {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .scanner-workflow .schema-arrow {
    width: 4px;
    height: 28px;
    justify-self: center;
    background: linear-gradient(180deg, #6ab6ff, #116bd9);
  }

  .scanner-workflow .schema-arrow::after {
    right: auto;
    top: auto;
    bottom: -2px;
    left: 50%;
    border-top: 12px solid #116bd9;
    border-right: 9px solid transparent;
    border-bottom: 0;
    border-left: 9px solid transparent;
    transform: translateX(-50%);
  }

  .scanner-workflow .product-flow-schema,
  .scanner-workflow .product-flow-review-schema {
    margin-top: 16px;
    padding: 16px;
    border-radius: 22px;
  }

  .scanner-workflow .product-flow-schema-doc,
  .scanner-workflow .product-flow-schema-result,
  .scanner-workflow .review-accuracy-panel,
  .scanner-workflow .review-routing-panel,
  .scanner-workflow .match-card,
  .scanner-workflow .meter-card,
  .scanner-workflow .routes,
  .scanner-workflow .package-card {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .scanner-workflow .extract-result-card,
  .scanner-workflow .extract-card {
    min-height: 0;
    padding: 18px;
  }

  .scanner-workflow .fake-doc,
  .scanner-workflow .extract-card .fake-doc {
    height: auto;
    min-height: 150px;
    padding: 18px;
  }

  .scanner-workflow .review-route,
  .scanner-workflow .match-row,
  .scanner-workflow .route-row {
    grid-template-columns: minmax(78px, auto) minmax(0, 1fr) auto;
  }

  .scanner-workflow .review-meter {
    width: 132px;
  }

  .scanner-workflow .review-meter strong,
  .scanner-workflow .meter strong {
    font-size: 34px;
  }

  .scanner-workflow .meter {
    width: 140px;
    height: 140px;
  }

  .scanner-workflow .match-core {
    width: 116px;
    height: 116px;
    justify-self: center;
  }

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

@media (max-width: 520px) {
  .scanner-workflow .orbit-card,
  .scanner-workflow .detail-panel {
    border-radius: 22px;
  }

  .scanner-workflow .extract-field,
  .scanner-workflow .schema-field,
  .scanner-workflow .field {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    font-size: 13px;
  }

  .scanner-workflow .extract-table,
  .scanner-workflow .schema-table,
  .scanner-workflow .table-mini {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .scanner-workflow .extract-table-head,
  .scanner-workflow .extract-table-row,
  .scanner-workflow .schema-table-head,
  .scanner-workflow .schema-table-row,
  .scanner-workflow .table-mini div {
    min-width: 460px;
  }

  .scanner-workflow .review-route,
  .scanner-workflow .match-row,
  .scanner-workflow .route-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .scanner-workflow .review-route em,
  .scanner-workflow .match-row em,
  .scanner-workflow .route-row em {
    justify-self: start;
    text-align: left;
  }

  .scanner-workflow .channels {
    grid-template-columns: 1fr;
  }

  .scanner-workflow .channels::before,
  .scanner-workflow .channel::before,
  .scanner-workflow .package-card::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .product-page {
    padding-top: 68px;
  }

  .product-page > main {
    padding-top: 48px;
  }

  .product-subnav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 75;
    height: 48px;
    min-height: 48px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom-color: #d8e3ef;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 22px rgba(15, 40, 70, 0.08);
    backdrop-filter: blur(16px);
  }

  .product-subnav-inner {
    height: 48px;
    min-height: 48px;
    gap: 14px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .product-subnav-title {
    max-width: 112px;
    overflow: hidden;
    color: #0f172a;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-subnav-links {
    gap: 22px;
    margin-left: auto;
    justify-content: flex-start;
  }

  .product-subnav-links a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: #334155;
    font-size: 13px;
  }

  .product-subnav-links a::after {
    bottom: 9px;
  }

  .product-hero {
    min-height: calc(100svh - 116px);
  }

  .product-video-title {
    transform: translateY(-2vh);
  }

  #overview,
  #specs,
  #downloads,
  #faq {
    scroll-margin-top: 132px;
  }

  .section {
    padding: 40px 20px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading h2,
  .product-video-title h1,
  .product-hero-copy h1 {
    font-size: 30px;
    line-height: 1.18;
  }

  .product-hero-copy p:not(.eyebrow),
  .section-heading p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.72;
  }

  .flow-section {
    padding-top: 36px;
    background: #f8fbfe;
  }

  .scanner-workflow {
    margin-top: 0;
  }

  .scanner-workflow .orbit-card {
    border: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .scanner-workflow .hub {
    display: none;
  }

  .scanner-workflow .orbit {
    gap: 9px;
  }

  .scanner-workflow .flow-node {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 11px;
    border-color: #dbe8f5;
    border-radius: 14px;
    background: #ffffff;
    padding: 10px 12px;
    box-shadow: none;
  }

  .scanner-workflow .flow-node.is-current {
    border-color: #a9cdf4;
    background: #f6fbff;
  }

  .scanner-workflow .flow-node::before {
    top: -10px;
    left: 31px;
    height: 10px;
    background: #c7def6;
  }

  .scanner-workflow .step-node {
    width: 44px;
    height: 44px;
    box-shadow: none;
  }

  .scanner-workflow .step-node.is-active {
    box-shadow: none;
  }

  .scanner-workflow .step-node.is-active::after {
    display: none;
  }

  .scanner-workflow .step-node svg {
    width: 18px;
    height: 18px;
  }

  .scanner-workflow .step-node .node-inner {
    gap: 3px;
  }

  .scanner-workflow .step-node .node-inner > span {
    font-size: 10px;
  }

  .scanner-workflow .step-copy b {
    font-size: 15px;
    line-height: 1.28;
  }

  .scanner-workflow .step-copy small {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.35;
  }

  .scanner-workflow .detail-panel {
    margin-top: 4px;
    border-color: #dbe8f5;
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: none;
  }

  .scanner-workflow .detail-head {
    gap: 10px;
  }

  .scanner-workflow .eyebrow,
  .scanner-workflow .workflow-eyebrow {
    gap: 8px;
    font-size: 12px;
  }

  .scanner-workflow .eyebrow::before,
  .scanner-workflow .workflow-eyebrow::before {
    width: 22px;
  }

  .scanner-workflow .lead {
    font-size: 14px;
    line-height: 1.78;
  }

  .scanner-workflow .status-chip {
    padding: 8px 12px;
    font-size: 12px;
  }

  .scanner-workflow .visual-frame,
  .scanner-workflow .visual-frame:has(.product-flow-review-schema) {
    margin-top: 12px;
    border-radius: 16px;
    padding: 12px;
  }

  .scanner-workflow .docs-image {
    width: 100%;
    max-height: 190px;
  }

  .scanner-workflow .output-note {
    margin-top: 12px;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  .output-section {
    padding: 40px 16px;
  }

  .output-wave-map {
    gap: 12px;
    padding: 0;
  }

  .output-wave-title h2 {
    width: 100%;
    font-size: 30px;
    line-height: 1.18;
  }

  .output-method-card,
  .output-method-card.one,
  .output-method-card.two,
  .output-method-card.three,
  .output-method-card.four {
    min-height: 0;
    border-color: #dbe8f5;
    border-radius: 16px;
    padding: 16px 16px 16px 76px;
    box-shadow: none;
    backdrop-filter: none;
  }

  .output-method-number {
    top: 14px;
    right: 16px;
    left: auto;
    color: #94a3b8;
    font-size: 17px;
  }

  .output-method-badge {
    top: 17px;
    left: 16px;
    width: 44px;
    height: 44px;
    background: #eef7ff;
    box-shadow: none;
    transform: none;
  }

  .output-method-badge::before,
  .output-method-badge::after {
    display: none;
  }

  .output-method-badge svg {
    width: 23px;
    height: 23px;
    filter: none;
  }

  .output-method-card h3 {
    margin: 0 38px 6px 0;
    font-size: 18px;
    line-height: 1.28;
  }

  .output-method-card p {
    font-size: 13px;
    line-height: 1.65;
  }

  .output-method-more {
    display: none;
  }

  .download-section {
    padding: 40px 16px 44px;
    background: #f8fbfe;
  }

  .download-shell {
    display: grid;
    gap: 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .download-intro {
    max-width: none;
    text-align: left;
  }

  .download-intro h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .download-intro p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.65;
  }

  .download-list {
    gap: 10px;
  }

  .download-list-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    border-color: #dbe8f5;
    border-radius: 16px;
    padding: 14px;
    box-shadow: none;
  }

  .download-file-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .download-file-icon svg {
    width: 21px;
    height: 21px;
  }

  .download-list-copy h3 {
    font-size: 17px;
  }

  .download-list-copy p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.55;
  }

  .download-list-action {
    grid-column: 2;
    height: 34px;
    width: fit-content;
    margin-top: 2px;
    padding: 0 13px;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .product-subnav-title {
    display: inline-flex;
    flex: 0 0 auto;
    max-width: 124px;
    font-size: 12px;
  }

  .product-subnav-links {
    flex: 1 1 auto;
    width: auto;
    gap: 18px;
    justify-content: flex-end;
    margin-left: auto;
    min-width: 0;
  }

  .product-subnav-links a {
    font-size: 12px;
    white-space: nowrap;
  }

  .product-video-kicker {
    font-size: clamp(34px, 10vw, 40px);
  }

  .product-video-title h1 {
    font-size: 22px;
    line-height: 1.34;
  }

  .scanner-workflow .product-flow-schema,
  .scanner-workflow .product-flow-review-schema {
    padding: 12px;
  }

  .scanner-workflow .product-flow-schema-doc,
  .scanner-workflow .product-flow-schema-result,
  .scanner-workflow .review-accuracy-panel,
  .scanner-workflow .review-routing-panel,
  .scanner-workflow .match-card,
  .scanner-workflow .meter-card,
  .scanner-workflow .routes,
  .scanner-workflow .package-card {
    padding: 14px;
  }
}

@media (max-width: 860px) {
  .scanner-workflow .stage {
    gap: 12px;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }

  .scanner-workflow .orbit-card {
    position: static;
    z-index: auto;
    margin: 0 0 12px;
    border: 0;
    border-radius: 16px;
    background: rgba(248, 251, 254, 0.96);
    padding: 10px;
    backdrop-filter: none;
  }

  .scanner-workflow .orbit {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .scanner-workflow .orbit::-webkit-scrollbar {
    display: none;
  }

  .scanner-workflow .flow-node {
    flex: 0 0 auto;
    width: auto;
    min-width: 138px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 9px;
    scroll-snap-align: start;
    border-radius: 999px;
    padding: 7px 12px 7px 7px;
  }

  .scanner-workflow .flow-node::before {
    display: none;
  }

  .scanner-workflow .flow-node.is-current {
    border-color: #8dc0f6;
    background: #eaf4ff;
  }

  .scanner-workflow .step-node {
    width: 38px;
    height: 38px;
  }

  .scanner-workflow .step-node svg {
    width: 16px;
    height: 16px;
  }

  .scanner-workflow .step-node .node-inner > span {
    font-size: 9px;
  }

  .scanner-workflow .step-copy b {
    font-size: 14px;
  }

  .scanner-workflow .step-copy small {
    display: none;
  }

  .scanner-workflow .detail-panel {
    width: 100%;
    min-width: 0;
    margin-top: 0;
    overflow: hidden;
  }

  .scanner-workflow .detail-head,
  .scanner-workflow .lead,
  .scanner-workflow .status-chip,
  .scanner-workflow .visual-frame,
  .scanner-workflow .output-note,
  .scanner-workflow .schema,
  .scanner-workflow .extract-schema,
  .scanner-workflow .product-flow-schema,
  .scanner-workflow .product-flow-review-schema,
  .scanner-workflow .match-schema,
  .scanner-workflow .review-schema,
  .scanner-workflow .output-schema,
  .scanner-workflow .package-card,
  .scanner-workflow .channels,
  .scanner-workflow .channel {
    max-width: 100%;
    min-width: 0;
  }

  .scanner-workflow .lead,
  .scanner-workflow .output-note {
    overflow-wrap: anywhere;
  }

  .scanner-workflow .product-flow-schema,
  .scanner-workflow .product-flow-review-schema,
  .scanner-workflow .match-schema,
  .scanner-workflow .review-schema {
    overflow: hidden;
  }

  .scanner-workflow .extract-table,
  .scanner-workflow .schema-table,
  .scanner-workflow .table-mini {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .scanner-workflow .flow-node {
    min-width: 134px;
  }
}

@media (max-width: 860px) {
  .scanner-workflow .visual-frame {
    display: block;
    min-height: 0;
  }

  .scanner-workflow .visual-frame:has(.docs-image) {
    display: grid;
  }

  .scanner-workflow .product-flow-schema,
  .scanner-workflow .product-flow-review-schema,
  .scanner-workflow .match-schema,
  .scanner-workflow .output-schema {
    width: 100%;
    margin-top: 10px;
  }

  .scanner-workflow .product-flow-schema {
    grid-template-columns: minmax(0, 0.92fr) 24px minmax(0, 1.08fr);
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }

  .scanner-workflow .product-flow-schema .schema-arrow {
    width: auto;
    height: 3px;
    align-self: center;
    justify-self: stretch;
    background: linear-gradient(90deg, #6ab6ff, #116bd9);
  }

  .scanner-workflow .product-flow-schema .schema-arrow::after {
    top: 50%;
    right: -1px;
    bottom: auto;
    left: auto;
    border-top: 7px solid transparent;
    border-right: 0;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #116bd9;
    transform: translateY(-50%);
  }

  .scanner-workflow .product-flow-schema-doc,
  .scanner-workflow .product-flow-schema-result,
  .scanner-workflow .review-accuracy-panel,
  .scanner-workflow .review-routing-panel,
  .scanner-workflow .match-card,
  .scanner-workflow .package-card {
    min-height: 0;
    border-radius: 14px;
    padding: 12px;
    box-shadow: none;
  }

  .scanner-workflow .product-flow-schema-title,
  .scanner-workflow .mini-title {
    font-size: 13px;
    line-height: 1.35;
  }

  .scanner-workflow .schema-lines,
  .scanner-workflow .schema-field-list {
    gap: 7px;
    margin-top: 10px;
  }

  .scanner-workflow .schema-line,
  .scanner-workflow .schema-field::after,
  .scanner-workflow .schema-table-row span {
    height: 6px;
  }

  .scanner-workflow .schema-doc-block,
  .scanner-workflow .schema-table {
    margin-top: 10px;
    border-width: 1px;
    border-radius: 10px;
    padding: 8px;
  }

  .scanner-workflow .schema-field {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 6px;
    font-size: 10px;
  }

  .scanner-workflow .schema-table-head {
    display: none;
  }

  .scanner-workflow .schema-table-row {
    gap: 5px;
    margin-top: 7px;
  }

  .scanner-workflow .schema-table-row:first-of-type {
    margin-top: 0;
  }

  .scanner-workflow .match-schema {
    grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
  }

  .scanner-workflow .match-core {
    width: 64px;
    height: 64px;
    font-size: 12px;
  }

  .scanner-workflow .match-core::before {
    inset: 7px;
  }

  .scanner-workflow .match-row {
    margin-top: 8px;
    grid-template-columns: 1fr;
    gap: 5px;
    font-size: 10px;
  }

  .scanner-workflow .match-row span {
    height: 6px;
  }

  .scanner-workflow .match-row em {
    width: fit-content;
    padding: 2px 6px;
    font-size: 10px;
  }

  .scanner-workflow .product-flow-review-schema {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }

  .scanner-workflow .review-meter {
    width: 90px;
  }

  .scanner-workflow .review-meter::before {
    inset: 7px;
  }

  .scanner-workflow .review-meter strong {
    font-size: 26px;
  }

  .scanner-workflow .review-meter span,
  .scanner-workflow .review-route b,
  .scanner-workflow .review-route em {
    font-size: 10px;
  }

  .scanner-workflow .review-meter-copy,
  .scanner-workflow .review-route-note {
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.55;
  }

  .scanner-workflow .review-routing-panel {
    gap: 7px;
  }

  .scanner-workflow .review-route {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    min-height: 0;
    border-radius: 10px;
    padding: 8px;
  }

  .scanner-workflow .review-route span {
    display: none;
  }

  .scanner-workflow .output-schema {
    display: grid;
    gap: 12px;
  }

  .scanner-workflow .package-card::after,
  .scanner-workflow .channels::before,
  .scanner-workflow .channel::before {
    display: none;
  }

  .scanner-workflow .package-list {
    gap: 7px;
    margin-top: 10px;
  }

  .scanner-workflow .package-list span,
  .scanner-workflow .channel {
    border-radius: 12px;
    padding: 10px;
    font-size: 12px;
  }

  .scanner-workflow .channels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
    padding-top: 0;
  }

  .scanner-workflow .channel {
    min-height: 68px;
  }

  .scanner-workflow .channel small {
    font-size: 10px;
  }
}

@media (max-width: 520px) {
  .scanner-workflow .detail-panel {
    padding: 16px;
  }

  .scanner-workflow .visual-frame {
    padding: 10px;
  }

  .scanner-workflow .product-flow-schema,
  .scanner-workflow .product-flow-review-schema {
    padding: 8px;
  }

  .scanner-workflow .schema-table,
  .scanner-workflow .extract-table,
  .scanner-workflow .table-mini {
    overflow: hidden;
  }

  .scanner-workflow .schema-table-head,
  .scanner-workflow .schema-table-row,
  .scanner-workflow .extract-table-head,
  .scanner-workflow .extract-table-row,
  .scanner-workflow .table-mini div {
    min-width: 0;
  }
}

@media (max-width: 860px) {
  .scenario-section {
    padding: 40px 20px 44px;
    background: linear-gradient(180deg, #f9fdff 0%, #eef7fc 100%);
  }

  .scenario-section::before {
    opacity: 0.42;
    background-size: 20px 20px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 72%);
  }

  .scenario-section::after,
  .scenario-grid::after {
    display: none;
  }

  .scenario-section .section-heading {
    margin-bottom: 20px;
  }

  .scenario-section .section-heading h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .scenario-section .section-heading p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.65;
  }

  .scenario-grid {
    width: 100%;
    max-width: 100%;
    gap: 14px;
    padding: 0;
    perspective: none;
  }

  .scenario-grid article,
  .scenario-grid article:nth-child(1),
  .scenario-grid article:nth-child(2),
  .scenario-grid article:nth-child(3),
  .scenario-grid article:nth-child(4),
  .scenario-grid article:nth-child(5) {
    width: 100%;
    min-height: 0;
    border-color: #d7e6f4;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    padding: 20px;
    box-shadow: 0 14px 34px rgba(38, 80, 113, 0.08);
    transform: none;
  }

  .scenario-grid article:nth-child(3) {
    border-color: #b9d8f8;
    box-shadow: 0 16px 38px rgba(18, 105, 211, 0.12);
  }

  .scenario-grid h3 {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.25;
  }

  .before-after {
    gap: 10px;
  }

  .before-after p {
    min-height: 0;
    padding-left: 12px;
    font-size: 14px;
    line-height: 1.68;
  }

  .before-after p:last-child {
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(238, 248, 255, 0.72);
    box-shadow: none;
  }

  .scenario-grid article > strong {
    width: fit-content;
    max-width: 100%;
    margin-top: 16px;
    border: 1px solid #b9d8f8;
    border-radius: 999px;
    background: #eef7ff;
    padding: 8px 12px;
    color: #075a9c;
    font-size: 18px;
    line-height: 1.35;
  }
}

@media (max-width: 520px) {
  .scenario-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .scenario-grid article,
  .scenario-grid article:nth-child(1),
  .scenario-grid article:nth-child(2),
  .scenario-grid article:nth-child(3),
  .scenario-grid article:nth-child(4),
  .scenario-grid article:nth-child(5) {
    padding: 18px;
  }

  .scenario-grid h3 {
    font-size: 21px;
  }

  .scenario-grid article > strong {
    font-size: 17px;
  }
}
