:root {
  --bg: #07161b;
  --bg-soft: #102b2a;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(92, 201, 166, 0.28);
  --text: #eefcf7;
  --text-muted: #bcded2;
  --accent: #34c79a;
  --accent-2: #6fe1bf;
  --danger: #ff7d7d;
  --max-width: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(52, 199, 154, 0.16), transparent 36%),
    linear-gradient(155deg, #07161b 0%, #0d2223 45%, #102b2a 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 92%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 2.4rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 18, 27, 0.72);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(105, 191, 216, 0.65);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  background: linear-gradient(145deg, rgba(105, 191, 216, 0.24), rgba(105, 191, 216, 0.1));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-item.has-sub > a::after {
  content: "▾";
  font-size: 0.7rem;
  color: var(--text-muted);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(6, 16, 25, 0.98);
  box-shadow: var(--shadow);
  padding: 0.4rem;
  margin-top: 4px;
  display: none;
  z-index: 30;
}

.sub-menu a {
  display: block;
  border-radius: 8px;
}

.nav-item.has-sub:focus-within .sub-menu,
.nav-item.has-sub.open-sub .sub-menu {
  display: block;
}

.nav-links a {
  color: var(--text-muted);
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn-primary {
  color: #06221b;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  color: var(--text);
  font-size: 1.2rem;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(52, 199, 154, 0.25);
  border-bottom: 1px solid rgba(52, 199, 154, 0.25);
  background:
    radial-gradient(circle at 14% 22%, rgba(52, 199, 154, 0.14), transparent 38%),
    linear-gradient(120deg, rgba(6, 22, 24, 0.68) 0%, rgba(10, 38, 36, 0.58) 48%, rgba(7, 23, 24, 0.72) 100%),
    var(--home-hero-image, linear-gradient(120deg, rgba(6, 22, 24, 0.96) 0%, rgba(10, 38, 36, 0.96) 48%, rgba(7, 23, 24, 0.96) 100%));
  background-size: 120% 120%, 100% 100%, cover;
  background-position: 0% 50%, 50% 50%, var(--home-hero-focus, center);
  background-repeat: no-repeat;
  animation: workstation-hero-flow 14s ease-in-out infinite;
}

.page-home {
  --home-hero-image: url("../media/images/scene-internet/scene-04-vision-pick-2.jpg");
  --home-hero-focus: center center;
}

.page-home .home-hero-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
}

.page-home .home-hero-panel {
  justify-self: end;
  width: min(100%, 430px);
}

.page-home .home-system-links {
  display: grid;
  gap: 0.75rem;
}

.page-home .home-system-links .panel-item {
  display: grid;
  gap: 0.25rem;
}

.page-home .home-pain-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-home .home-system-links strong {
  color: #b9fff7;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
}

.page-home .home-system-links a {
  color: var(--text);
  font-weight: 600;
}

.page-home .image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-home .content-panel a,
.page-home .image-card a {
  color: #9bf0eb;
}

.page-home .home-systems-grid {
  gap: 1.2rem;
}

.page-home .home-system-card {
  padding: 0;
  display: grid;
  gap: 0;
  overflow: hidden;
}

.page-home .home-system-card img {
  border: 0;
  border-radius: 0;
  aspect-ratio: 16 / 8.8;
}

.page-home .home-system-card h3,
.page-home .home-system-card p,
.page-home .home-system-card .home-system-meta,
.page-home .home-system-card .tag-pills,
.page-home .home-system-card a {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}

.page-home .home-system-card .home-system-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.page-home .home-system-card .home-system-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #c8fbf6;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.page-home .home-system-card p {
  margin-top: 0.15rem;
}

.page-home .home-system-card .tag-pills {
  margin-top: 0.15rem;
}

.page-home .home-system-card a {
  margin-top: 0.95rem;
  margin-bottom: 1.2rem;
}

.page-home .home-system-card .tag-pills span {
  background: rgba(255, 255, 255, 0.045);
}

.page-home .home-system-card-workstation {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(40, 125, 118, 0.18));
}

.page-home .home-system-card-control {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(19, 97, 124, 0.2));
}

.page-home .home-system-card-digital {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(78, 116, 63, 0.18));
}

.page-home .home-system-card-data {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(130, 104, 42, 0.18));
}

.page-home .home-capability-section .split {
  align-items: start;
  gap: 1.6rem;
}

.page-home .home-capability-column {
  padding-left: 1.1rem;
  border-left: 3px solid rgba(58, 209, 199, 0.46);
}

.page-home .home-capability-column h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
}

.page-home .home-capability-column .list {
  margin-top: 0;
}

.page-home .home-capability-column .list li {
  padding: 0.18rem 0;
}

.page-home .home-story-section .grid {
  gap: 1.1rem;
}

.page-home .home-story-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(58, 209, 199, 0.28);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(12, 34, 39, 0.62));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.page-home .home-story-card {
  padding: 1.35rem 1.5rem 1.3rem;
}

.page-home .home-story-role {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(58, 209, 199, 0.12);
  border: 1px solid rgba(58, 209, 199, 0.28);
  color: #baf9f4;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.page-home .home-story-card h3 {
  margin: 0.9rem 0 0.6rem;
  font-size: 1.18rem;
  line-height: 1.5;
}

.page-home .home-story-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .page-home .home-hero-layout {
    grid-template-columns: 1fr;
  }

  .page-home .home-hero-panel {
    justify-self: stretch;
    width: 100%;
  }

  .page-home .home-pain-grid {
    grid-template-columns: 1fr;
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(100deg, transparent 24%, rgba(111, 225, 191, 0.12) 44%, transparent 66%),
    linear-gradient(112deg, transparent 8%, rgba(255, 255, 255, 0.05) 22%, transparent 36%);
  background-size: 180% 100%, 220% 100%;
  animation: workstation-light-sweep 14s linear infinite;
}

.hero::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.05;
  animation: workstation-grain-drift 18s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(52, 199, 154, 0.42);
  background: rgba(52, 199, 154, 0.14);
  color: #9ef3d3;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  font-size: 0.84rem;
}

.page-title,
.hero h1 {
  margin: 0.8rem 0 1rem;
  font-family: "Bebas Neue", "Noto Sans SC", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.03;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 62ch;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-points {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  font-size: 0.84rem;
  color: #d7e8f7;
  padding: 0.35rem 0.72rem;
}

.hero-panel,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.hero-panel {
  padding: 1.3rem;
  display: grid;
  gap: 1rem;
}

.panel-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.panel-highlight {
  border-color: rgba(105, 191, 216, 0.46);
  background: linear-gradient(135deg, rgba(105, 191, 216, 0.2), rgba(105, 191, 216, 0.08));
}

.panel-item h3,
.card h3,
.section-heading h2 {
  margin: 0;
}

.panel-item p,
.card p,
.section-heading p,
.metric p,
.timeline li,
.list li {
  color: var(--text-muted);
  line-height: 1.7;
}

.section {
  padding: 2.6rem 0;
}

.section-tight {
  padding-top: 1rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pain-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(10, 28, 40, 0.42));
  padding: 1.1rem;
}

.pain-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.pain-card p {
  margin: 0;
  color: var(--text-muted);
}

.pain-card strong {
  display: block;
  margin-top: 0.8rem;
  color: #b9fff7;
  font-size: 0.95rem;
}

.trust-strip {
  border: 1px solid rgba(58, 209, 199, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(9, 26, 38, 0.72);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
}

.trust-strip strong {
  color: #c8fff8;
  font-size: 1.02rem;
}

.trust-strip span {
  color: var(--text-muted);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 0.7rem;
}

.trust-strip a {
  margin-left: auto;
  color: #9bf0eb;
  font-weight: 700;
}

.section-heading {
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-family: "Bebas Neue", "Noto Sans SC", sans-serif;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-data-acquisition-overview .data-chain-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  margin: 1rem 0 1.2rem;
}

.page-data-acquisition-overview .data-chain-node {
  border: 1px solid rgba(58, 209, 199, 0.26);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(58, 209, 199, 0.06));
  padding: 1rem 1rem 0.95rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.page-data-acquisition-overview .data-chain-node strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.page-data-acquisition-overview .data-chain-node span {
  display: block;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.page-data-acquisition-overview .data-chain-arrow {
  display: grid;
  place-items: center;
  color: var(--accent-2);
  font-size: 1.8rem;
  font-weight: 700;
}

.card {
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.page-data-acquisition-overview .image-card {
  display: grid;
  gap: 0.85rem;
}

.page-data-acquisition-overview .card-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.image-card {
  display: grid;
  gap: 0.8rem;
}

.card::after {
  content: "";
  position: absolute;
  right: -56px;
  top: -56px;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 209, 199, 0.24), transparent 72%);
}

.card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.8rem;
  color: #9bf0eb;
  font-size: 0.95rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.media-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  padding: 1rem;
  min-height: 140px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(58, 209, 199, 0.08));
}

.media-placeholder strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.media-placeholder p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.scene-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.scene-filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.88rem;
  cursor: pointer;
}

.scene-filter-btn.is-active {
  color: #042029;
  border-color: rgba(58, 209, 199, 0.8);
  background: linear-gradient(135deg, var(--accent), #7fece5);
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.scene-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.9rem;
}

.scene-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: block;
  margin-bottom: 0.7rem;
}

.scene-card.hidden {
  display: none;
}

.scene-thumb {
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  background: linear-gradient(145deg, rgba(58, 209, 199, 0.14), rgba(245, 159, 66, 0.1));
  min-height: 110px;
  padding: 0.8rem;
  margin-bottom: 0.7rem;
}

.scene-thumb strong {
  display: block;
  margin-bottom: 0.35rem;
}

.scene-thumb p,
.scene-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.scene-card h3 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.05rem;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.model-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.model-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, rgba(52, 199, 154, 0.95), rgba(111, 225, 191, 0.45), rgba(245, 159, 66, 0.7));
}

.model-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.65rem;
}

.model-flag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(58, 209, 199, 0.3);
  border-radius: 999px;
  padding: 0.24rem 0.7rem;
  color: #a9f5f1;
  font-size: 0.82rem;
  background: rgba(58, 209, 199, 0.08);
}

.model-index {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

.model-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.model-meta {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
}

.spec-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.spec-item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  background: rgba(255, 255, 255, 0.04);
}

.spec-item strong {
  display: block;
  font-size: 0.78rem;
  color: #9adbd6;
  margin-bottom: 0.2rem;
}

.spec-item span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.tag-pills span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.25rem 0.62rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
}

.detail-links {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.detail-links a {
  color: #a6f6f1;
  font-size: 0.9rem;
}

.product-matrix-page .detail-links a {
  border: 1px solid rgba(58, 209, 199, 0.24);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 0.7rem;
  text-align: left;
  font-size: 0.9rem;
}

.compare-table th {
  color: #b7f6f1;
  background: rgba(58, 209, 199, 0.1);
}

.compare-table td {
  color: var(--text-muted);
}

.model-hero {
  padding: 4rem 0 1.6rem;
}

.model-hero-inner {
  border: 1px solid rgba(58, 209, 199, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(58, 209, 199, 0.14), rgba(7, 22, 33, 0.78));
  padding: 1.2rem;
}

.model-hero p {
  color: var(--text-muted);
  max-width: 76ch;
  line-height: 1.75;
}

.model-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.model-stat {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.6rem;
}

.model-stat strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  color: #9ffaf3;
}

.model-stat span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.story-image {
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  min-height: 200px;
  padding: 0.9rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(58, 209, 199, 0.08));
}

.story-image strong {
  display: block;
  margin-bottom: 0.35rem;
}

.story-image p {
  margin: 0;
  color: var(--text-muted);
}

.global-media-block .section-heading {
  margin-bottom: 0.9rem;
}

.global-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.global-media-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.global-media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.global-media-card .caption {
  padding: 0.65rem 0.7rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.global-video-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.global-video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.global-video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #05121b;
}

.global-video-card .caption {
  padding: 0.65rem 0.7rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.inline-media-row {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.inline-media-row .section-heading {
  margin-bottom: 0.75rem;
}

.inline-media-context {
  margin-bottom: 0.65rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(58, 209, 199, 0.1), rgba(245, 159, 66, 0.08));
}

.inline-media-context strong {
  display: block;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: #baf9f4;
}

.inline-media-context p {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.inline-media-grid {
  display: grid;
  gap: 0.9rem;
}

.inline-media-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inline-media-grid.cols-1 {
  grid-template-columns: 1fr;
}

.inline-media-grid.variant-showcase {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
}

.inline-media-grid.variant-showcase .global-media-card:first-child {
  box-shadow: 0 18px 34px rgba(7, 18, 28, 0.35);
}

.inline-media-grid.variant-mixed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inline-media-grid.variant-mixed .global-video-card {
  border-color: rgba(245, 159, 66, 0.38);
  background: rgba(245, 159, 66, 0.07);
}

.inline-media-grid.variant-video-focus {
  grid-template-columns: 1fr;
}

.inline-media-grid.variant-video-focus .global-video-card {
  border-color: rgba(58, 209, 199, 0.44);
  background: linear-gradient(145deg, rgba(58, 209, 199, 0.12), rgba(5, 13, 20, 0.7));
}

.inline-media-grid.variant-video-focus .global-video-card video {
  aspect-ratio: 16 / 8;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.metric strong {
  display: block;
  font-size: 1.8rem;
  font-family: "Bebas Neue", sans-serif;
  color: #a9f7f2;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.timeline li {
  border-left: 3px solid rgba(58, 209, 199, 0.55);
  padding: 0.3rem 0 0.3rem 0.8rem;
}

.list {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
}

.cta-block {
  border: 1px solid rgba(105, 191, 216, 0.44);
  background: linear-gradient(135deg, rgba(105, 191, 216, 0.12), rgba(105, 191, 216, 0.05));
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.page-hero {
  padding: 4.2rem 0 2rem;
}

.page-hero p {
  max-width: 72ch;
  color: var(--text-muted);
  line-height: 1.75;
}

.product-matrix-page .page-hero {
  padding: 0;
}

.product-matrix-page .page-hero.page-hero-minimal {
  padding: 2.2rem 0 0.6rem;
}

.product-matrix-page .page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.2rem;
  align-items: center;
  min-height: calc(100vh - 78px);
}

.product-hero-grid {
  padding: 2.6rem 0;
}

.product-hero-panel {
  border: 1px solid rgba(58, 209, 199, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(58, 209, 199, 0.14), rgba(7, 22, 33, 0.78));
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.product-hero-stat {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.9rem 1rem;
}

.product-hero-stat strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.1rem;
  color: #9ffaf3;
  line-height: 1;
}

.product-hero-stat span {
  display: block;
  margin-top: 0.3rem;
  color: var(--text-muted);
}

.product-matrix-page .page-hero p {
  max-width: 58ch;
}

.product-quick-guide {
  border: 1px solid rgba(58, 209, 199, 0.26);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(9, 26, 38, 0.7));
  padding: 1.25rem;
}

.product-quick-guide h3 {
  margin: 0 0 1rem;
}

.product-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-quick-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.95rem;
}

.product-quick-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #b7f6f1;
}

.product-quick-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.product-matrix-page .page-hero.page-hero-minimal .container {
  display: block;
  min-height: 0;
  padding: 0.2rem 0 0;
}

.manual-gallery {
  display: grid;
  gap: 1rem;
}

.product-extract-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.manual-matrix-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workstation-products-page .page-hero {
  min-height: 0;
  padding: 2.4rem 0 1rem;
}

.manual-product-card {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(120, 219, 194, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006) 52%, rgba(8, 24, 30, 0.24) 100%),
    linear-gradient(130deg, rgba(9, 30, 37, 0.24), rgba(9, 37, 40, 0.16));
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px) saturate(112%);
}

.manual-cutout-stage {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 1.35rem 1rem 1.25rem;
  background:
    radial-gradient(125% 80% at 50% 96%, rgba(61, 204, 171, 0.14), rgba(61, 204, 171, 0) 62%),
    radial-gradient(95% 70% at 14% 12%, rgba(106, 196, 218, 0.07), rgba(106, 196, 218, 0) 58%),
    linear-gradient(180deg, rgba(10, 34, 41, 0.26) 0%, rgba(13, 43, 49, 0.17) 56%, rgba(8, 29, 36, 0.28) 100%);
  border-bottom: 1px solid rgba(126, 206, 189, 0.1);
}

.manual-cutout-stage::before {
  content: attr(data-series);
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-family: "Bebas Neue", "Noto Sans SC", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: rgba(23, 76, 67, 0.82);
  border: 1px solid rgba(30, 105, 90, 0.36);
  border-radius: 999px;
  padding: 0.12rem 0.58rem;
  background: rgba(246, 255, 252, 0.56);
}

.manual-cutout-stage::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0.9rem;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(5, 17, 22, 0.64), rgba(5, 17, 22, 0.2) 62%, rgba(5, 17, 22, 0) 80%);
}

.manual-product-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 290px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(6, 20, 26, 0.42));
  transform-origin: 50% 100%;
}

.manual-product-v img {
  max-height: 248px;
}

.manual-product-z img {
  max-height: 284px;
}

.manual-product-y img {
  max-height: 234px;
}

.manual-product-t img {
  max-height: 284px;
}

.manual-product-j img {
  max-height: 278px;
}

.manual-card-body {
  padding: 1rem 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(6, 20, 27, 0.11), rgba(6, 20, 27, 0.24));
}

.manual-card-body h3 {
  margin: 0;
  font-size: 1.15rem;
}

.manual-card-body .model-meta {
  margin-top: 0.35rem;
}

.manual-card-body .list {
  margin-top: 0.75rem;
}

.manual-card-body .list li {
  margin-bottom: 0.35rem;
}

.manual-sheet {
  margin: 0;
  border: 1px solid rgba(58, 209, 199, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.manual-sheet img {
  display: block;
  width: 100%;
  height: auto;
}

.manual-sheet figcaption {
  padding: 0.7rem 0.9rem 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: baseline;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.manual-sheet figcaption strong {
  color: #b9fff7;
}

.manual-sheet figcaption span {
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .product-extract-grid {
    grid-template-columns: 1fr;
  }

  .manual-matrix-grid {
    grid-template-columns: 1fr;
  }

  .manual-product-card img {
    max-height: 240px;
  }

  .manual-cutout-stage {
    min-height: 250px;
    padding: 1.1rem 0.8rem 1rem;
  }

  .manual-cutout-stage::before {
    top: 0.65rem;
    right: 0.65rem;
    font-size: 0.9rem;
  }

  .manual-cutout-stage::after {
    left: 10%;
    right: 10%;
    bottom: 0.7rem;
  }
}

.main-channel .page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  min-height: calc(100vh - 78px);
  padding: 0;
  border-top: 1px solid rgba(52, 199, 154, 0.22);
  border-bottom: 1px solid rgba(52, 199, 154, 0.22);
  background:
    radial-gradient(circle at 14% 22%, rgba(52, 199, 154, 0.24), transparent 38%),
    linear-gradient(120deg, rgba(6, 22, 24, 0.7) 0%, rgba(10, 38, 36, 0.58) 48%, rgba(7, 23, 24, 0.76) 100%),
    var(--page-hero-image, linear-gradient(120deg, rgba(6, 22, 24, 0.96) 0%, rgba(10, 38, 36, 0.96) 48%, rgba(7, 23, 24, 0.96) 100%));
  background-size: 120% 120%, 100% 100%, cover;
  background-position: 0% 50%, 50% 50%, var(--page-hero-focus, center);
  background-repeat: no-repeat;
  animation: workstation-hero-flow 14s ease-in-out infinite;
}

.page-flow-control {
  --page-hero-image: url("../media/images/scene-internet/scene-02-small-batch.jpg");
  --page-hero-focus: center 42%;
}

.page-control-functions {
  --page-hero-image: url("https://upload.wikimedia.org/wikipedia/commons/3/3b/EGU-Metall_CNC-Fr%C3%A4sen_mit_Roboterautomatisierung.jpg");
  --page-hero-focus: center 45%;
}

.page-control-usecases {
  --page-hero-image: url("https://upload.wikimedia.org/wikipedia/commons/3/3b/EGU-Metall_CNC-Fr%C3%A4sen_mit_Roboterautomatisierung.jpg");
  --page-hero-focus: center 46%;
}

.page-digital-workshop {
  --page-hero-image: url("../media/images/page-heroes/digital-workshop-hero.jpg");
  --page-hero-focus: center 46%;
}

.page-digital-overview {
  --page-hero-image: url("../media/images/scene-internet/scene-01-multi-system.jpg");
  --page-hero-focus: center 46%;
}

.page-digital-functions {
  --page-hero-image: url("../media/images/page-heroes/digital-workshop-hero.jpg");
  --page-hero-focus: center 45%;
}

.page-digital-implementation {
  --page-hero-image: url("../media/images/scene-internet/scene-01-multi-system.jpg");
  --page-hero-focus: center 45%;
}

.page-digital-usecases {
  --page-hero-image: url("../media/images/page-heroes/digital-workshop-hero.jpg");
  --page-hero-focus: center 46%;
}

.page-digital-workshop .page-hero,
.page-digital-overview .page-hero,
.page-digital-functions .page-hero,
.page-digital-implementation .page-hero,
.page-digital-usecases .page-hero {
  min-height: clamp(360px, 62vh, 560px);
}

.page-digital-workshop .page-hero .container,
.page-digital-overview .page-hero .container,
.page-digital-functions .page-hero .container,
.page-digital-implementation .page-hero .container,
.page-digital-usecases .page-hero .container {
  padding: 3.2rem 0 2.6rem;
}

.page-digital-workshop .section,
.page-digital-overview .section,
.page-digital-functions .section,
.page-digital-implementation .section,
.page-digital-usecases .section {
  padding: 1.8rem 0;
}

.page-digital-workshop .content-panel,
.page-digital-overview .content-panel,
.page-digital-functions .content-panel,
.page-digital-implementation .content-panel,
.page-digital-usecases .content-panel,
.page-digital-workshop .card,
.page-digital-overview .card,
.page-digital-functions .card,
.page-digital-implementation .card,
.page-digital-usecases .card,
.page-digital-usecases .scene-card {
  padding: 1rem;
}

.page-digital-workshop .section-heading,
.page-digital-overview .section-heading,
.page-digital-functions .section-heading,
.page-digital-implementation .section-heading,
.page-digital-usecases .section-heading {
  margin-bottom: 0.8rem;
}

.page-digital-workshop .card p,
.page-digital-overview .card p,
.page-digital-functions .card p,
.page-digital-implementation .card p,
.page-digital-usecases .card p,
.page-digital-workshop .list li,
.page-digital-overview .list li,
.page-digital-functions .list li,
.page-digital-implementation .list li,
.page-digital-usecases .list li,
.page-digital-workshop .timeline li,
.page-digital-overview .timeline li,
.page-digital-functions .timeline li,
.page-digital-implementation .timeline li,
.page-digital-usecases .timeline li {
  line-height: 1.58;
}

.page-data-acquisition-overview {
  --page-hero-image: url("../media/images/industrial-io-module.jpg");
  --page-hero-focus: center 42%;
}

.page-data-acquisition {
  --page-hero-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/Control_panel_displays_settings_and_data_for_industrial_equipment.jpg/1920px-Control_panel_displays_settings_and_data_for_industrial_equipment.jpg");
  --page-hero-focus: center 48%;
}

.page-data-acquisition-usecases {
  --page-hero-image: url("https://upload.wikimedia.org/wikipedia/commons/0/0f/Machine_being_monitored_by_an_employee_in_a_3M_Co._plant.jpg");
  --page-hero-focus: center 58%;
}

.page-data-acquisition-gateway {
  --page-hero-image: url("../media/images/iotbox.webp");
  --page-hero-focus: center 48%;
}

.page-data-acquisition-gateway .gateway-visual {
  display: grid;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.page-data-acquisition-gateway .gateway-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background:
    linear-gradient(155deg, rgba(9, 33, 40, 0.2) 0%, rgba(13, 52, 54, 0.1) 44%, rgba(4, 14, 24, 0.3) 100%);
  box-shadow: inset 0 0 0 1px rgba(130, 226, 198, 0.2);
  pointer-events: none;
}

.page-data-acquisition-gateway .gateway-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(130, 226, 198, 0.42);
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(2, 10, 14, 0.48);
}

.page-data-acquisition-gateway .gateway-visual figcaption {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.page-data-acquisition-gateway .content-panel {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.page-data-acquisition-gateway .split {
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 2rem;
}

.page-data-acquisition-gateway .split.split-image-left-wide {
  grid-template-columns: 1.5fr 1fr;
}

.page-data-acquisition-gateway .content-panel h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.2;
}

.page-data-acquisition-gateway .content-panel h3 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.35;
  color: #eefcf7;
}

.page-data-acquisition-gateway .content-panel p {
  margin: 0 0 0.9rem;
  line-height: 1.7;
}

.page-data-acquisition-gateway .content-panel p:last-of-type {
  margin-bottom: 0;
}

.page-data-acquisition-gateway .gateway-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.page-data-acquisition-gateway .gateway-badge {
  border: 1px solid rgba(58, 209, 199, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: #c8fbf6;
  background: rgba(9, 30, 37, 0.6);
  font-size: 0.92rem;
}

.page-data-acquisition-gateway .gateway-spec-list {
  display: grid;
  gap: 0.8rem;
}

.page-data-acquisition-gateway .gateway-spec {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.95rem 1rem;
}

.page-data-acquisition-gateway .gateway-spec strong {
  display: block;
  margin-bottom: 0.28rem;
  color: #bff9f3;
}

.page-data-acquisition-gateway .brand-collection {
  display: grid;
  gap: 1rem;
}

.page-data-acquisition-gateway .brand-category {
  border: 1px solid rgba(58, 209, 199, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(9, 26, 38, 0.62));
  padding: 1rem;
}

.page-data-acquisition-gateway .brand-category h3 {
  margin: 0 0 0.35rem;
}

.page-data-acquisition-gateway .brand-category p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.page-data-acquisition-gateway .brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.page-data-acquisition-gateway .brand-logo-card {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-height: 132px;
  padding: 0.9rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.page-data-acquisition-gateway .brand-logo-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(58, 209, 199, 0.22), rgba(9, 26, 38, 0.9));
  border: 1px solid rgba(58, 209, 199, 0.24);
  overflow: hidden;
}

.page-data-acquisition-gateway .brand-logo-mark img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.page-data-acquisition-gateway .brand-monogram {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(63, 227, 208, 0.18), rgba(17, 45, 55, 0.92));
  border: 1px solid rgba(171, 248, 242, 0.15);
  color: #d9fffb;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.page-data-acquisition-gateway .brand-name {
  font-weight: 700;
  color: #effffd;
  line-height: 1.2;
}

.page-data-acquisition-gateway .brand-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.page-data-acquisition-gateway .brand-collection-shelf {
  display: grid;
  gap: 1rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.page-data-acquisition-gateway .brand-shelf {
  border: none;
  background: transparent;
  border-radius: 10px;
  padding: 0.9rem;
}

.page-data-acquisition-gateway .brand-shelf h3 {
  margin: 0 0 0.65rem;
  color: #6a7280;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-data-acquisition-gateway .brand-logo-grid-shelf {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.page-data-acquisition-gateway .brand-shelf-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 114px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  padding: 0.5rem;
  overflow: hidden;
}

.page-data-acquisition-gateway .brand-shelf-head {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.75rem;
  color: #94a9b5;
  line-height: 1.1;
}

.page-data-acquisition-gateway .brand-shelf-head em {
  color: #1d8dff;
  font-style: normal;
}

.page-data-acquisition-gateway .brand-logo-mark-light {
  display: grid;
  place-items: center;
  width: 100%;
  height: 72px;
  border-radius: 0;
  border: none;
  background: transparent;
  overflow: hidden;
}

.page-data-acquisition-gateway .brand-logo-mark-light img {
  width: min(108px, 92%);
  height: auto;
  max-width: 108px;
  max-height: 72px;
  object-fit: contain;
  object-position: center;
  filter: none;
  mix-blend-mode: normal;
}

.page-data-acquisition-gateway .brand-logo-mark-light svg {
  width: min(108px, 92%);
  height: auto;
  max-width: 108px;
  max-height: 72px;
  object-fit: contain;
  object-position: center;
}

.page-data-acquisition-gateway .brand-logo-mark-light img.logo-emphasis,
.page-data-acquisition-gateway .brand-logo-mark-light svg.logo-emphasis {
  width: min(164px, 98%);
  max-width: 164px;
  max-height: 88px;
}

.page-data-acquisition-gateway .brand-logo-mark-light img.logo-dark,
.page-data-acquisition-gateway .brand-logo-mark-light svg.logo-dark {
  filter: invert(1) brightness(1.2) drop-shadow(0 0 6px rgba(170, 255, 230, 0.18));
}

@media (max-width: 1100px) {
  .page-data-acquisition-gateway .brand-logo-grid-shelf {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-data-acquisition-gateway .brand-logo-grid-shelf {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-data-acquisition-platform {
  --page-hero-image: none;
  --page-hero-focus: center 48%;
}

.page-data-acquisition-implementation {
  --page-hero-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/9/90/Worker_operates_machinery_in_a_factory_setting_closeup.jpg/1920px-Worker_operates_machinery_in_a_factory_setting_closeup.jpg");
  --page-hero-focus: center 44%;
}

.page-data-acquisition-implementation .implementation-image-grid .card {
  display: grid;
  gap: 0.55rem;
  padding: 0.75rem;
}

.page-data-acquisition-implementation .implementation-method-list {
  display: grid;
  gap: 4rem;
}

.page-data-acquisition-implementation .method-row {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  row-gap: 1rem;
  column-gap: 8rem;
  align-items: stretch;
}

.page-data-acquisition-implementation .method-row.is-reverse .method-media {
  order: -1;
}

.page-data-acquisition-implementation .method-row.is-reverse {
  grid-template-columns: 0.88fr 1.12fr;
}

.page-data-acquisition-implementation .method-copy {
  display: grid;
  gap: 0.65rem;
  padding: 0;
}

.page-data-acquisition-implementation .method-copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.72;
}

.page-data-acquisition-implementation .method-media {
  display: grid;
  gap: 0;
  align-content: start;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.page-data-acquisition-implementation .method-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.page-data-acquisition-implementation .method-media figcaption {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.page-data-acquisition-implementation .implementation-doc-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(52, 199, 154, 0.2);
  filter: none;
  opacity: 0.72;
  transform: none;
}

.page-data-acquisition-implementation .implementation-image-grid .card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.page-data-acquisition-cnc {
  --page-hero-image: url("https://upload.wikimedia.org/wikipedia/commons/4/49/Machine_operates_in_a_factory_setting.jpg");
  --page-hero-focus: center 46%;
}

.page-data-acquisition-robot {
  --page-hero-image: url("https://upload.wikimedia.org/wikipedia/commons/8/80/Worker_operates_machinery_in_a_factory_setting.jpg");
  --page-hero-focus: center 44%;
}

.page-data-acquisition-plc {
  --page-hero-image: url("https://upload.wikimedia.org/wikipedia/commons/8/82/Delta_PLC_CPU.jpg");
  --page-hero-focus: center 50%;
}

.page-data-acquisition-inspection {
  --page-hero-image: url("https://upload.wikimedia.org/wikipedia/commons/e/e0/Typical_contents_of_a_control_panel_for_automated_equipment.jpg");
  --page-hero-focus: center 50%;
}

.page-cases {
  --page-hero-image: url("../media/images/page-heroes/cases-hero.jpg");
  --page-hero-focus: center 45%;
}

.page-about {
  --page-hero-image: url("../media/images/page-heroes/about-hero.jpg");
  --page-hero-focus: center 38%;
}

.page-workstation-usecases {
  --page-hero-image: url("../media/images/scene-internet/scene-02-small-batch.jpg");
  --page-hero-focus: center 46%;
}

.main-channel .page-hero::before,
.main-channel .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.main-channel .page-hero::before {
  background:
    linear-gradient(100deg, transparent 24%, rgba(155, 240, 235, 0.16) 44%, transparent 66%),
    linear-gradient(112deg, transparent 8%, rgba(245, 159, 66, 0.1) 22%, transparent 36%);
  background-size: 180% 100%, 220% 100%;
  animation: workstation-light-sweep 14s linear infinite;
}

.main-channel .page-hero::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.08;
  animation: workstation-grain-drift 18s linear infinite;
}

.main-channel .page-hero .container {
  position: relative;
  z-index: 1;
}

.workstation-hero {
  padding: 0;
  min-height: calc(100vh - 78px);
}

.workstation-hero-band {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  min-height: calc(100vh - 78px);
  border-top: 1px solid rgba(52, 199, 154, 0.2);
  border-bottom: 1px solid rgba(52, 199, 154, 0.2);
  background:
    radial-gradient(circle at 12% 22%, rgba(52, 199, 154, 0.16), transparent 34%),
    linear-gradient(120deg, rgba(4, 16, 22, 0.62) 0%, rgba(5, 19, 26, 0.46) 45%, rgba(5, 17, 22, 0.68) 100%);
  background-size: 140% 140%, 100% 100%;
  background-position: 0% 0%, 50% 50%;
  background-repeat: no-repeat;
}

.workstation-hero-band::before,
.workstation-hero-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.workstation-hero-band::before {
  inset: -20px;
  background: url("../media/images/robotics-solutions-metal-industry-machine-tools-loading-unloading-hip-2x.webp") center / cover no-repeat;
  opacity: 0.62;
  filter: blur(3px) saturate(0.97) brightness(0.93);
  transform: scale(1.04);
}

.workstation-hero-band::after {
  background:
    linear-gradient(100deg, transparent 26%, rgba(168, 228, 223, 0.14) 46%, transparent 66%),
    linear-gradient(112deg, transparent 6%, rgba(245, 159, 66, 0.12) 22%, transparent 36%),
    radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1.6px),
    linear-gradient(180deg, rgba(7, 20, 27, 0.2), rgba(7, 20, 27, 0.08));
  background-size: 170% 100%, 220% 100%, 16px 16px, 100% 100%;
  opacity: 0.14;
  animation: workstation-grain-drift 16s linear infinite;
}

.workstation-hero-band .container {
  position: relative;
  z-index: 1;
  padding: 0;
}

@keyframes workstation-hero-flow {
  0% {
    background-position: 0% 50%, 100% 50%, 50% 50%;
  }
  50% {
    background-position: 100% 48%, 0% 52%, 50% 50%;
  }
  100% {
    background-position: 0% 50%, 100% 50%, 50% 50%;
  }
}

@keyframes workstation-light-sweep {
  0% {
    background-position: -120% 0, 130% 0;
  }
  100% {
    background-position: 130% 0, -120% 0;
  }
}

@keyframes workstation-grain-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-12px, 10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.workstation-en {
  margin-top: 0.5rem;
  color: #9ddbd5;
  font-family: "Bebas Neue", "Noto Sans SC", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
}

.workstation-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.workstation-feature-grid.emphasize {
  margin-top: 0.8rem;
}

.workstation-feature {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0.25rem 0;
}

.workstation-feature.strong {
  box-shadow: none;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: grid;
  place-items: center;
  color: #d7e7f3;
  border: 1px solid rgba(164, 190, 208, 0.34);
  background: rgba(255, 255, 255, 0.03);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.workstation-feature h3 {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #e5eef6;
  font-size: 1.15rem;
}

.workstation-feature ul {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
  display: grid;
  gap: 0.35rem;
}

.workstation-feature li {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}

.lang-entry {
  border: 1px solid rgba(58, 209, 199, 0.45);
  color: #9bf0eb !important;
  border-radius: 999px;
  padding: 0.35rem 0.7rem !important;
  margin-left: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.workstation-heading h2,
.workstation-capability-title h2 {
  text-align: center;
}

.workstation-heading p,
.workstation-capability-title p {
  text-align: center;
  color: #9fece6;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

.workstation-product-slider {
  overflow: visible;
  padding-bottom: 0;
}

.workstation-product-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 1rem;
}

.workstation-product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.workstation-product-link {
  display: block;
}

.workstation-product-link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.page-workstation .workstation-product-link img {
  aspect-ratio: 16 / 11;
  object-fit: contain;
  object-position: center bottom;
  padding: 0.45rem;
  background: transparent;
}

.page-workstation .inline-media-row .section-heading,
.page-workstation .inline-media-context,
.page-workstation .global-media-card .caption,
.page-workstation .global-video-card .caption {
  display: none;
}

.page-workstation .inline-media-row {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}

.page-workstation .global-media-card img {
  aspect-ratio: 4 / 3;
}

.page-workstation .global-video-card video {
  aspect-ratio: 16 / 9;
}

.workstation-product-info {
  padding: 0.75rem 0.8rem;
}

.workstation-product-info h3 {
  margin: 0;
  font-size: 1.03rem;
  color: #c2fff8;
}

.workstation-product-info p {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.layout-forms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.layout-forms-section {
  position: relative;
}

.layout-form-card {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7, 22, 24, 0.22), rgba(5, 18, 22, 0.68));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.layout-form-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
  opacity: 1;
  filter: saturate(0.94) contrast(0.98) brightness(0.98);
}

.layout-form-info {
  padding: 0.78rem 0.82rem 0.85rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(7, 22, 24, 0.78), rgba(7, 22, 24, 0.94));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.layout-form-info h3 {
  margin: 0;
  font-size: 1.03rem;
  color: #c2fff8;
}

.layout-form-info p {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.58;
}

.workstation-capability-title {
  margin-bottom: 1rem;
}

.workstation-system-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
  min-height: 520px;
}

.system-column {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(164, 190, 208, 0.25);
  border-radius: 8px;
  background-image: var(--sys-bg);
  background-size: cover;
  background-position: center;
}

.system-cnc {
  --sys-bg: url("../media/images/system-bg/cnc.jpg");
}

.system-custom {
  --sys-bg: url("../media/images/system-bg/custom.jpg");
}

.system-parts {
  --sys-bg: url("../media/images/system-bg/parts.jpg");
}

.system-machine {
  --sys-bg: url("../media/images/system-bg/machine.jpg");
}

.system-layout {
  --sys-bg: url("../media/images/system-bg/layout-vertical.png");
  background-size: 100% 100%;
  background-position: center top;
}

.system-column::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 10, 18, 0.54) 0%, rgba(2, 8, 14, 0.72) 58%, rgba(1, 6, 10, 0.86) 100%);
}

.system-column::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
}

.system-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0.7rem;
  text-align: center;
}

.system-overlay h3 {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.system-copy {
  display: grid;
  gap: 0.2rem;
}

.system-copy p {
  margin: 0;
  color: rgba(227, 236, 245, 0.94);
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.42);
}

.workstation-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.workstation-capability-grid .content-panel h3 {
  margin-top: 0;
  color: #b6fdf7;
  text-align: center;
}

.workstation-capability-grid .content-panel .list {
  list-style: none;
  padding-left: 0;
}

.workstation-capability-grid .content-panel .list li {
  text-align: center;
  padding: 0.15rem 0;
}


.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.25rem;
}

.platform-feature-grid {
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.platform-feature-item {
  border: 1px solid rgba(92, 201, 166, 0.22);
  border-radius: 12px;
  padding: 0.75rem 0.8rem;
  background: rgba(9, 30, 37, 0.42);
}

.platform-feature-tag {
  display: inline-block;
  margin-bottom: 0.42rem;
  padding: 0.15rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 225, 191, 0.35);
  background: rgba(52, 199, 154, 0.15);
  color: #c8fbf6;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.platform-feature-item h4 {
  margin: 0 0 0.35rem;
  font-size: 0.96rem;
  color: #d7fff4;
}

.platform-feature-item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.platform-feature-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 1.2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 2.8rem 2.4rem;
  border-radius: 16px;
  background: linear-gradient(168deg, #dee2e8 0%, #d9dde3 58%, #e6e8eb 100%);
}

.platform-feature-showcase::after {
  content: "";
  position: absolute;
  right: -28%;
  bottom: -40%;
  width: 76%;
  height: 78%;
  border-radius: 52% 0 0 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.platform-feature-copy h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b6d82;
}

.platform-feature-copy h4 {
  margin: 0 0 0.6rem;
  color: #2f3440;
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  line-height: 1.28;
  font-weight: 500;
}

.platform-feature-copy p {
  margin: 0;
  color: #303741;
  line-height: 1.6;
  font-size: 0.96rem;
}

.platform-readmore-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #2b74d2;
  text-decoration: none;
  font-size: 0.98rem;
}

.platform-readmore-link::after {
  content: "\203A";
  font-size: 1.35rem;
  line-height: 1;
}

.platform-ui-demo {
  position: relative;
  min-height: 480px;
  z-index: 1;
}

.platform-bg-ribbon {
  position: absolute;
  left: -56%;
  top: -46px;
  height: 90px;
  transform: skewY(-6deg);
  pointer-events: none;
}

.platform-bg-ribbon.ribbon-main {
  width: 108%;
  background: #2f79dd;
}

.platform-bg-ribbon.ribbon-sub {
  width: 70%;
  top: 24px;
  background: #2f5d93;
}

.platform-ui-list {
  position: absolute;
  left: 2%;
  top: 118px;
  width: 67%;
  border: 1px solid rgba(190, 204, 218, 0.2);
  border-radius: 12px;
  background: rgba(244, 246, 249, 0.92);
  padding: 1rem 0.85rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.platform-ui-list-head {
  color: #2a3c54;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.platform-ui-row {
  height: 54px;
  border-radius: 6px;
  background: rgba(68, 86, 108, 0.11);
  margin-bottom: 0.6rem;
}

.platform-ui-row:last-child {
  margin-bottom: 0;
}

.platform-ui-modal {
  position: absolute;
  right: 0;
  top: 38px;
  width: 84%;
  border-radius: 12px;
  border: 1px solid rgba(181, 196, 212, 0.3);
  overflow: hidden;
  background: #f8fbff;
  box-shadow: 0 24px 44px rgba(4, 14, 28, 0.26);
}

.platform-ui-modal-header {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  background: #305f92;
}

.platform-ui-modal-header strong {
  color: #f3f7ff;
  font-size: 1.08rem;
}

.platform-ui-modal-header span {
  color: rgba(239, 247, 255, 0.85);
  font-size: 0.9rem;
}

.platform-ui-tabs {
  display: flex;
  gap: 1.2rem;
  padding: 0.8rem 1.15rem 0.6rem;
  border-bottom: 1px solid rgba(49, 81, 114, 0.16);
  overflow-x: auto;
}

.platform-ui-tabs span {
  color: #4a5f78;
  font-size: 0.86rem;
  white-space: nowrap;
  padding-bottom: 0.35rem;
}

.platform-ui-tabs .active {
  color: #305f92;
  border-bottom: 2px solid #305f92;
}

.platform-ui-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.9rem 1.15rem;
}

.platform-ui-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  min-height: 40px;
  background: #2f5f90;
  color: #f2f7ff;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.2rem 0.4rem;
}

.platform-ui-fields {
  padding: 0.2rem 1.15rem 1.15rem;
  display: grid;
  gap: 0.7rem;
}

.platform-ui-fields div {
  border-bottom: 1px solid rgba(44, 72, 100, 0.2);
  padding-bottom: 0.35rem;
  display: grid;
  gap: 0.2rem;
}

.platform-ui-fields label {
  color: #6f7e91;
  font-size: 0.78rem;
}

.platform-ui-fields em {
  color: #20324a;
  font-style: normal;
  font-size: 0.98rem;
}

.platform-cooperate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.platform-cooperate-card {
  border: 1px solid rgba(118, 206, 186, 0.28);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(14, 38, 46, 0.88), rgba(9, 22, 30, 0.92));
  padding: 1rem 1rem 1.05rem;
  box-shadow: 0 12px 30px rgba(4, 12, 20, 0.28);
}

.platform-cooperate-card h3 {
  margin: 0 0 0.45rem;
  color: #d1fff6;
  font-size: 1.1rem;
}

.platform-cooperate-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.platform-module-stack {
  margin-top: 0.2rem;
  display: grid;
  gap: 2.1rem;
}

.platform-module-row {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 2.4rem;
  align-items: center;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.platform-module-row.reverse .platform-module-media {
  order: 2;
}

.platform-module-row.reverse .platform-module-text {
  order: 1;
}

.platform-module-row:not(.reverse) .platform-module-media {
  order: 1;
}

.platform-module-row:not(.reverse) .platform-module-text {
  order: 2;
}

.platform-module-media {
  border: 1px solid rgba(165, 205, 233, 0.45);
  border-radius: 10px;
  background: rgba(4, 18, 30, 0.12);
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(115, 185, 235, 0.22);
}

.platform-module-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.platform-module-text h3 {
  margin: 0 0 0.5rem;
  color: #d3fff4;
  font-size: 1.22rem;
}

.platform-module-text p {
  margin: 0;
  color: #cae5df;
  line-height: 1.7;
}

.platform-panorama {
  position: relative;
  width: 100%;
  min-height: clamp(300px, 38vw, 520px);
  perspective: 1300px;
  transform-style: preserve-3d;
  overflow: hidden;
}

.platform-panorama-hero {
  position: absolute;
  inset: 0;
  min-height: 100%;
  z-index: 0;
  pointer-events: none;
  perspective: 1800px;
}

.platform-panorama-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 14, 22, 0.92) 0%, rgba(3, 14, 22, 0.78) 38%, rgba(3, 14, 22, 0.36) 60%, rgba(3, 14, 22, 0.08) 78%);
  z-index: 2;
  pointer-events: none;
}

.platform-panorama-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px) saturate(0.86);
  pointer-events: none;
  z-index: 2;
}

.page-data-acquisition-platform .page-hero .container {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.page-data-acquisition-platform .page-hero .page-title,
.page-data-acquisition-platform .page-hero p,
.page-data-acquisition-platform .page-hero .kicker {
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.platform-panorama::before {
  content: "";
  position: absolute;
  inset: 6% 0 0;
  background: radial-gradient(circle at 50% 8%, rgba(120, 188, 242, 0.24), transparent 62%);
  pointer-events: none;
}

.platform-panorama-tile {
  position: absolute;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(170, 212, 245, 0.42);
  box-shadow: 0 16px 40px rgba(2, 8, 14, 0.5), 0 0 0 1px rgba(115, 176, 222, 0.26);
  transform-origin: center center;
}

.platform-panorama-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.56) saturate(0.55) contrast(0.9) hue-rotate(-8deg);
}

.platform-panorama-hero .platform-panorama-tile {
  width: 20%;
  height: 46%;
  top: 18%;
  transform: rotateY(-60deg) rotateX(10deg);
}

.platform-panorama-hero .tile-1 {
  left: 30%;
  width: 17%;
  height: 40%;
  top: 27%;
  transform: rotateY(-60deg) rotateX(10deg) translateZ(-140px);
  z-index: 1;
}

.platform-panorama-hero .tile-2 {
  left: 39%;
  width: 19%;
  height: 44%;
  top: 24%;
  transform: rotateY(-60deg) rotateX(10deg) translateZ(-90px);
  z-index: 2;
}

.platform-panorama-hero .tile-3 {
  left: 48%;
  width: 21%;
  height: 48%;
  top: 21.5%;
  transform: rotateY(-60deg) rotateX(10deg) translateZ(-40px);
  z-index: 3;
}

.platform-panorama-hero .tile-4 {
  left: 57%;
  width: 23%;
  height: 52%;
  top: 18.5%;
  transform: rotateY(-60deg) rotateX(10deg) translateZ(10px);
  z-index: 4;
}

.platform-panorama-hero .tile-5 {
  left: 66%;
  width: 25%;
  height: 56%;
  top: 15.5%;
  transform: rotateY(-60deg) rotateX(10deg) translateZ(60px);
  z-index: 5;
}

.platform-panorama-hero .tile-6 {
  left: 75%;
  width: 27%;
  height: 60%;
  top: 12.5%;
  transform: rotateY(-60deg) rotateX(10deg) translateZ(110px);
  z-index: 6;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  padding: 0.72rem;
  font: inherit;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form select option {
  color: var(--text);
  background: #102b2a;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(188, 222, 210, 0.68);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(111, 225, 191, 0.55);
  outline-offset: 2px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-form .form-help {
  margin: 0;
  color: rgba(188, 222, 210, 0.7);
  font-size: 0.78rem;
  line-height: 1.6;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.8rem;
}

.map-card {
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.2rem;
}

.map-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.map-card-header h4 {
  margin: 0;
  font-size: 1rem;
}

.map-card-header span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.vector-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(58, 209, 199, 0.1);
}

.vector-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.map-card p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.map-frame {
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  min-height: 520px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.qr-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.9rem;
}

.qr-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.qr-box {
  aspect-ratio: 1 / 1;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.8rem;
  color: var(--text-muted);
  background: linear-gradient(145deg, rgba(58, 209, 199, 0.12), rgba(245, 159, 66, 0.09));
}

.qr-box img,
.qr-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.qr-trigger {
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
  cursor: zoom-in;
}

.qr-card p {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-qr {
  display: flex;
  gap: 0.9rem;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  margin-left: 0;
  margin-top: 0;
}

.footer-qr-item {
  width: 92px;
  text-align: center;
}

.footer-qr-item button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.05);
  width: 92px;
  height: 92px;
  cursor: zoom-in;
}

.footer-qr-item span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.74);
  padding: 1rem;
}

.qr-modal.open {
  display: flex;
}

.qr-modal-card {
  width: min(92vw, 420px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #0d1d2a;
  padding: 0.9rem;
}

.qr-modal-card h4 {
  margin: 0 0 0.7rem;
}

.qr-modal-card img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
}

.qr-modal-card button {
  margin-top: 0.8rem;
}

.notice {
  font-size: 0.92rem;
  color: #9bf0eb;
}

.site-footer {
  margin-top: 2.6rem;
  border-top: 1px solid var(--line);
  background: rgba(4, 11, 18, 0.78);
}

.footer-inner {
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr) minmax(210px, 0.9fr);
  justify-content: initial;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact-block {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  gap: 0.2rem;
}

.footer-meta-block {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: grid;
  gap: 0.2rem;
  min-width: 180px;
}

.footer-lang-switch {
  margin-top: 0.35rem;
}

.footer-lang-switch a {
  color: #9bf0eb;
  font-weight: 700;
  white-space: nowrap;
}

.footer-line {
  display: block;
  line-height: 1.55;
}

.footer-line a {
  color: #bdeeea;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-cases .section-dark {
  background: linear-gradient(180deg, rgba(5, 18, 25, 0.72), rgba(7, 27, 34, 0.42));
  border-top: 1px solid rgba(105, 191, 216, 0.12);
  border-bottom: 1px solid rgba(105, 191, 216, 0.12);
}

.page-cases .cases-overview {
  padding-bottom: 2.2rem;
}

.page-cases .cases-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.page-cases .cases-metrics > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.045);
}

.page-cases .cases-metrics strong {
  color: #b9fff7;
  font-family: "Bebas Neue", "Noto Sans SC", sans-serif;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.page-cases .cases-metrics span,
.page-cases .case-result-grid span {
  margin-top: 0.45rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.page-cases .case-data-note {
  margin: 0.9rem 0 0;
  color: rgba(188, 222, 210, 0.78);
  font-size: 0.82rem;
  line-height: 1.65;
}

.page-cases .cases-featured {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.page-cases .cases-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.page-cases .case-feature {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.page-cases .case-feature-media {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.page-cases .case-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 13, 18, 0.72));
}

.page-cases .case-feature-media img,
.page-cases .case-scenario-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-cases .case-label {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: 0.9rem;
  border: 1px solid rgba(185, 255, 247, 0.42);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  color: #d5fffa;
  background: rgba(4, 24, 30, 0.74);
  font-size: 0.8rem;
}

.page-cases .case-feature-body {
  padding: 1.3rem 1.35rem 1.4rem;
}

.page-cases .case-eyebrow,
.page-cases .case-scenario-card span {
  margin: 0;
  color: #9bf0eb;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.page-cases .case-feature h3 {
  margin: 0.55rem 0 0.65rem;
  font-size: 1.35rem;
  line-height: 1.35;
}

.page-cases .case-feature-body > p:not(.case-eyebrow),
.page-cases .case-scenario-card p,
.page-cases .cases-method-layout > div > p,
.page-cases .cases-cta p {
  color: var(--text-muted);
  line-height: 1.7;
}

.page-cases .case-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0 1.1rem;
}

.page-cases .case-result-grid > div {
  padding: 0.65rem 0.7rem;
  border-left: 2px solid rgba(58, 209, 199, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.page-cases .case-result-grid strong {
  display: block;
  color: #f7c77d;
  font-size: 1.25rem;
}

.page-cases .case-result-grid span {
  display: block;
  line-height: 1.35;
}

.page-cases .cases-evidence .card p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.page-cases .cases-evidence .card strong {
  color: var(--text);
}

.page-cases .text-link {
  color: #a6f6f1;
  font-size: 0.92rem;
  font-weight: 700;
}

.page-cases .text-link span {
  margin-left: 0.25rem;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 980px;
  margin: 0;
}

.home-faq-section .container {
  max-width: 980px;
}

.home-faq-section .section-heading {
  max-width: 760px;
}

.faq-list details {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(111, 225, 191, 0.62);
  background: rgba(52, 199, 154, 0.08);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent-2);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 760px) {
  .faq-list {
    grid-template-columns: 1fr;
  }

  .home-faq-section .container {
    width: min(100% - 2.4rem, var(--max-width));
  }
}

.page-cases .cases-scenarios {
  padding-top: 3.2rem;
}

.page-cases .cases-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.page-cases .case-scenario-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
}

.page-cases .case-scenario-card img {
  height: 145px;
}

.page-cases .case-scenario-card > div {
  padding: 0.9rem 1rem 1.05rem;
}

.page-cases .case-scenario-card h3 {
  margin: 0.35rem 0 0.4rem;
  font-size: 1.08rem;
}

.page-cases .case-scenario-card p {
  margin: 0;
  font-size: 0.9rem;
}

.page-cases .cases-method {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.page-cases .cases-method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: start;
}

.page-cases .cases-method-layout h2,
.page-cases .cases-cta h2 {
  margin: 0.65rem 0 0.7rem;
  font-family: "Bebas Neue", "Noto Sans SC", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.page-cases .cases-method-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-cases .cases-method-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-cases .cases-method-list li:last-child {
  border-bottom: 0;
}

.page-cases .cases-method-list > li > strong {
  color: #f7c77d;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}

.page-cases .cases-method-list h3 {
  margin: 0 0 0.25rem;
  font-size: 1.08rem;
}

.page-cases .cases-method-list p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.page-cases .cases-cta {
  text-align: center;
  padding-top: 3.4rem;
  padding-bottom: 4rem;
}

.page-cases .cases-cta p {
  max-width: 56ch;
  margin: 0 auto;
}

.page-cases .cases-cta .hero-actions {
  justify-content: center;
}

@media (max-width: 1000px) {
  .page-cases .cases-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-cases .cases-method-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 760px) {
  .page-cases .cases-metrics,
  .page-cases .cases-feature-grid,
  .page-cases .cases-scenario-grid {
    grid-template-columns: 1fr;
  }

  .page-cases .cases-metrics > div {
    min-height: 88px;
  }

  .page-cases .case-feature-media {
    height: 210px;
  }

  .page-cases .case-result-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 1000px) {
  .hero-grid,
  .split,
  .grid-3,
  .grid-4,
  .metrics {
    grid-template-columns: 1fr 1fr;
  }

  .product-matrix-page .page-hero .container,
  .product-quick-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .scene-grid {
    grid-template-columns: 1fr;
  }

  .model-grid,
  .spec-grid,
  .model-stat-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .workstation-feature-grid,
  .workstation-capability-grid,
  .layout-forms-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workstation-system-band {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .workstation-product-track {
    grid-auto-columns: minmax(260px, 42%);
  }

  .global-media-grid,
  .global-video-grid,
  .inline-media-grid,
  .inline-media-grid.variant-showcase,
  .inline-media-grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .compare-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .page-data-acquisition-implementation .method-row {
    grid-template-columns: 1fr;
  }

  .page-data-acquisition-implementation .method-row.is-reverse .method-media {
    order: 0;
  }
}

@media (max-width: 760px) {
  .platform-module-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .platform-module-media,
  .platform-module-media img {
    min-height: 150px;
  }

  .platform-module-text h3 {
    font-size: 1.05rem;
  }

  .platform-module-text p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .platform-panorama {
    min-height: 260px;
  }

  .platform-panorama-tile {
    border-radius: 8px;
  }

  .platform-panorama-hero .platform-panorama-tile {
    width: 30%;
    height: 42%;
    top: 30%;
    transform: rotateY(-52deg) rotateX(8deg);
  }

  .platform-panorama-hero .tile-1 { left: 30%; width: 22%; height: 34%; top: 38%; transform: rotateY(-52deg) rotateX(8deg) translateZ(-90px); }
  .platform-panorama-hero .tile-2 { left: 38%; width: 24%; height: 37%; top: 35%; transform: rotateY(-52deg) rotateX(8deg) translateZ(-55px); }
  .platform-panorama-hero .tile-3 { left: 46%; width: 26%; height: 40%; top: 32%; transform: rotateY(-52deg) rotateX(8deg) translateZ(-20px); }
  .platform-panorama-hero .tile-4 { left: 54%; width: 28%; height: 43%; top: 29%; transform: rotateY(-52deg) rotateX(8deg) translateZ(15px); }
  .platform-panorama-hero .tile-5 { left: 62%; width: 30%; height: 46%; top: 26%; transform: rotateY(-52deg) rotateX(8deg) translateZ(50px); }
  .platform-panorama-hero .tile-6 { left: 70%; width: 32%; height: 49%; top: 23%; transform: rotateY(-52deg) rotateX(8deg) translateZ(85px); }

  .platform-feature-showcase {
    grid-template-columns: 1fr;
    padding: 1.4rem 1rem;
  }

  .platform-ui-demo {
    min-height: 350px;
  }

  .platform-feature-copy h4 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .platform-bg-ribbon {
    left: -25%;
  }

  .platform-ui-list {
    top: 96px;
    width: 84%;
  }

  .platform-ui-modal {
    top: 20px;
    width: 92%;
  }

  .platform-ui-actions {
    grid-template-columns: 1fr;
  }

  .platform-cooperate-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .platform-feature-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    height: auto;
    padding: 0.9rem 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-end;
    position: relative;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.5rem);
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(5, 14, 22, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 60;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.72rem;
  }

  .nav-item.has-sub > a::after {
    margin-left: auto;
  }

  .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
    display: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-item.has-sub.open-sub .sub-menu {
    display: block;
  }

  .sub-menu a {
    padding-left: 1rem;
    font-size: 0.9rem;
  }

  .hero-grid,
  .split,
  .grid-3,
  .grid-4,
  .metrics {
    grid-template-columns: 1fr;
  }

  .qr-grid {
    grid-template-columns: 1fr;
  }

  .workstation-feature-grid,
  .workstation-capability-grid,
  .layout-forms-grid {
    grid-template-columns: 1fr;
  }

  .workstation-system-band {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .system-column {
    min-height: 170px;
  }

  .system-overlay {
    justify-content: center;
    gap: 0.7rem;
    padding: 1.05rem 0.85rem 0.8rem;
  }

  .system-overlay h3 {
    font-size: clamp(1.2rem, 6vw, 1.45rem);
  }

  .system-copy {
    font-size: 0.92rem;
    line-height: 1.45;
    gap: 0.16rem;
  }

  .workstation-product-track {
    grid-auto-columns: minmax(240px, 82%);
  }

  .workstation-product-slider {
    overflow: visible;
    padding-bottom: 0;
  }

  .workstation-product-track {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .page-workstation .workstation-product-link img {
    aspect-ratio: 16 / 11;
    object-fit: contain;
    object-position: center bottom;
    padding: 0.45rem;
    background: transparent;
  }

  .workstation-products-page .compare-table {
    display: block;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }

  .workstation-products-page .compare-table thead {
    display: none;
  }

  .workstation-products-page .compare-table tbody {
    display: block;
  }

  .workstation-products-page .compare-table tr {
    display: block;
    margin: 0 0 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
  }

  .workstation-products-page .compare-table td {
    display: grid;
    grid-template-columns: 5.8rem minmax(0, 1fr);
    gap: 0.5rem;
    align-items: start;
    padding: 0.62rem 0.72rem;
    white-space: normal;
    word-break: break-word;
  }

  .workstation-products-page .compare-table td::before {
    color: #9fece6;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .workstation-products-page .compare-table td:nth-child(1)::before {
    content: "系列";
  }

  .workstation-products-page .compare-table td:nth-child(2)::before {
    content: "料盘/料仓";
  }

  .workstation-products-page .compare-table td:nth-child(3)::before {
    content: "适用工件";
  }

  .workstation-products-page .compare-table td:nth-child(4)::before {
    content: "关键特点";
  }

  .hero {
    padding-top: 0;
    min-height: calc(100vh - 72px);
  }

  .main-channel .page-hero {
    min-height: calc(100vh - 72px);
  }

  .hero::before {
    opacity: 0.7;
  }

  .hero::after {
    opacity: 0.06;
  }

  .cta-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-qr {
    margin-left: 0;
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-contact-block,
  .footer-qr,
  .footer-meta-block {
    grid-column: 1;
  }

  .footer-contact-block {
    grid-row: 1;
  }

  .footer-qr {
    grid-row: 2;
  }

  .footer-meta-block {
    grid-row: 3;
    justify-self: start;
    min-width: 0;
  }

  .trust-strip span {
    border-left: none;
    padding-left: 0;
  }

  .trust-strip a {
    margin-left: 0;
  }
}
