.connector-page {
  background:
    radial-gradient(circle at 78% -8%, rgba(229,57,53,0.12), transparent 36%),
    linear-gradient(180deg, #06080c 0%, #06090d 24%, #05070a 46%, #040608 68%, #030406 86%, #020203 100%);
  color: #fff;
}

/* Keep snap process detail text blocks in normal flow to prevent overlap. */
.snap-page .process-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.snap-page .process-detail-head,
.snap-page .process-detail [data-step-title],
.snap-page .process-detail [data-step-description],
.snap-page .process-detail-secondary,
.snap-page .process-detail-secondary dt,
.snap-page .process-detail-secondary dd {
  position: static;
}

.snap-page .process-detail [data-step-title],
.snap-page .process-detail [data-step-description] {
  min-height: 0;
  max-height: none;
  overflow: visible;
  display: block;
  margin: 0;
}

.snap-page .process-detail-secondary {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.snap-page .process-detail dd {
  overflow: visible;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}

.snap-page .process-detail-progress {
  margin-top: auto;
}

@media (max-width: 760px) {
  .snap-page .process-detail {
    gap: 14px;
  }

  .snap-page .process-detail-secondary {
    gap: 12px;
  }
}

/* ─── Snap-page density & spacing overrides ─── */

/* Tighter section padding throughout the snap page */
.snap-page .connector-section,
.winding-page .connector-section,
.connector-auto-page .connector-overview,
.connector-auto-page .connector-auto-features-section {
  padding: 44px 0;
}

.snap-page .connector-section-heading,
.winding-page .connector-section-heading,
.connector-auto-page .connector-overview .connector-section-heading,
.connector-auto-page .connector-auto-features-section .connector-section-heading {
  margin-bottom: 16px;
}

.snap-page .connector-section-heading h2,
.winding-page .connector-section-heading h2,
.connector-auto-page .connector-overview .connector-section-heading h2,
.connector-auto-page .connector-auto-features-section .connector-section-heading h2 {
  font-size: clamp(26px, 2.4vw, 36px);
  margin-top: 12px;
}

.snap-page .connector-section-heading p,
.winding-page .connector-section-heading p,
.connector-auto-page .connector-overview .connector-section-heading p,
.connector-auto-page .connector-auto-features-section .connector-section-heading p {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  margin-top: 12px;
}

/* Compact left-card copy area */
.snap-page .connector-material-card .connector-material-copy,
.winding-page .connector-material-card .connector-material-copy,
.connector-auto-page .connector-material-card .connector-material-copy {
  padding: 20px 24px 24px;
}

.snap-page .connector-material-card h3,
.winding-page .connector-material-card h3,
.connector-auto-page .connector-material-card h3 {
  font-size: clamp(19px, 1.5vw, 23px);
  margin-top: 10px;
}

.snap-page .connector-material-card p,
.winding-page .connector-material-card p,
.connector-auto-page .connector-material-card p {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.55;
  margin-top: 10px;
}


/* Compact component pills */
.snap-page .connector-component-stack,
.winding-page .connector-component-stack,
.connector-auto-page .connector-component-stack {
  padding: 14px;
  gap: 7px;
}

/* ─── Key Components catalog panel ─── */
.snap-page .snap-component-stack,
.winding-page .snap-component-stack,
.connector-auto-page .snap-component-stack {
  padding: 0;
  gap: 0;
  overflow: hidden;
}

.snap-component-heading {
  display: block;
  padding: 14px 18px 11px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.snap-component-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 160ms ease;
}

.snap-component-card:last-child {
  border-bottom: none;
}

.snap-component-card:hover {
  background: rgba(255,255,255,0.04);
}

.snap-component-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  margin-top: 1px;
}

.snap-component-body strong {
  display: block;
  color: rgba(255,255,255,0.92);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.snap-component-body p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.54);
  font-size: 12.5px;
  line-height: 1.5;
}

.snap-page .component-pill {
  min-height: 64px;
  padding: 10px 14px;
  gap: 14px;
}

.snap-page .component-pill strong {
  font-size: 16px;
}

.snap-page .component-pill small {
  font-size: 12.5px;
  line-height: 1.4;
  margin-top: 3px;
}

.snap-page .component-visual {
  width: 52px;
  height: 52px;
}

.connector-navbar {
  position: relative;
  z-index: 5;
}

.connector-hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 8px 64px 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(229, 57, 53, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(6,7,10,0.94) 0%, rgba(11,13,17,0.72) 46%, rgba(4,5,8,0.28) 78%, transparent 100%);
}

.connector-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.85), transparent 86%);
}

.connector-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5,7,10,0) 0%, rgba(4,5,7,0.58) 52%, rgba(2,2,3,0.98) 100%);
}

.connector-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(400px, 0.95fr);
  gap: 40px;
  margin: 8px auto 0;
  width: min(1380px, 100%);
  align-items: start;
  padding: 6px 0 22px;
}

.connector-hero-kicker {
  margin: 0 0 18px;
  color: #ff4a45;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.connector-hero-copy h1 {
  margin: 0;
  max-width: min(18ch, 580px);
  font-size: clamp(40px, 3.7vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 780;
}

.connector-hero-copy h2 {
  max-width: 590px;
  margin: 16px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(19px, 1.65vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.connector-hero-copy p {
  max-width: 590px;
  margin: 14px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 450;
  line-height: 1.5;
}

.line-hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.line-hero-actions .btn {
  min-width: 0;
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

.line-hero-actions .btn.is-pressed {
  transform: translateY(0) scale(0.985);
}

.connector-page .btn {
  min-height: 52px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.connector-page .btn:hover,
.connector-page .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.connector-page .btn:active {
  transform: translateY(0);
}

.line-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.line-metric {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  transition: border-color 220ms ease, background 220ms ease;
  cursor: default;
}

.line-metric:hover {
  border-color: rgba(255,255,255,0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.03));
}

.line-metric:focus-visible {
  outline: 2px solid rgba(229,57,53,0.72);
  outline-offset: 2px;
}

.line-metric:active,
.line-metric.is-pressed {
  border-color: rgba(255,255,255,0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.03));
}

.line-metric strong {
  display: block;
  font-size: 21px;
  line-height: 1.1;
}

.line-metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.connector-page.hero-intro-ready .connector-hero-copy {
  animation: connectorHeroCopyIn 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.connector-page.hero-intro-ready .connector-hero-media {
  animation: connectorHeroMediaIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 110ms both;
}

.connector-page.hero-intro-ready .line-hero-actions .btn {
  animation: connectorHeroCtaIn 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.connector-page.hero-intro-ready .line-hero-actions .btn:nth-child(1) { animation-delay: 160ms; }
.connector-page.hero-intro-ready .line-hero-actions .btn:nth-child(2) { animation-delay: 230ms; }
.connector-page.hero-intro-ready .line-hero-actions .btn:nth-child(3) { animation-delay: 300ms; }

.connector-page.hero-intro-ready .line-hero-metrics .line-metric {
  animation: connectorHeroMetricIn 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.connector-page.hero-intro-ready .line-hero-metrics .line-metric:nth-child(1) { animation-delay: 260ms; }
.connector-page.hero-intro-ready .line-hero-metrics .line-metric:nth-child(2) { animation-delay: 320ms; }
.connector-page.hero-intro-ready .line-hero-metrics .line-metric:nth-child(3) { animation-delay: 380ms; }
.connector-page.hero-intro-ready .line-hero-metrics .line-metric:nth-child(4) { animation-delay: 440ms; }

.connector-hero-media {
  position: relative;
  margin: 0;
  align-self: end;
  justify-self: center;
  width: min(100%, 900px);
  min-height: 0;
  aspect-ratio: 5 / 4;
  max-height: min(60vh, 545px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(145deg, rgba(18,20,24,0.88), rgba(7,8,10,0.92));
  box-shadow: 0 28px 70px rgba(0,0,0,0.34);
}

.connector-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,0.38));
}

.connector-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) contrast(1.08);
}

.connector-auto-page .connector-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.82fr);
  gap: 34px;
  align-items: end;
}

.connector-auto-page .connector-hero-copy {
  height: auto;
  display: flex;
  flex-direction: column;
  align-self: end;
}

.connector-auto-page .connector-hero-media {
  height: auto;
  min-height: 0;
  aspect-ratio: 5 / 4;
  max-height: min(60vh, 545px);
  align-self: end;
}

.connector-auto-page .line-hero-metrics {
  margin-top: 16px;
  gap: 12px;
}

.connector-auto-page .line-metric {
  padding: 12px 14px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.connector-auto-page .line-metric strong {
  font-size: 20px;
  line-height: 1.08;
}

.connector-auto-page .line-metric span {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.25;
}

.connector-auto-page .connector-overview-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.78fr);
  gap: 24px;
}

.connector-auto-page .connector-auto-component-stack {
  display: grid;
  grid-template-rows: auto repeat(6, minmax(0, 1fr));
}

.connector-auto-page .connector-auto-component-stack .snap-component-card {
  align-items: center;
  padding: 13px 18px;
}

.connector-auto-page .connector-auto-component-stack .snap-component-icon {
  width: 42px;
  height: 42px;
}

.connector-auto-page .connector-auto-component-stack .snap-component-body strong {
  font-size: clamp(14.5px, 1.06vw, 16px);
}

.connector-auto-page .connector-auto-component-stack .snap-component-body p {
  font-size: clamp(12px, 0.9vw, 13px);
  line-height: 1.42;
}

.snap-page .connector-material-card img,
.winding-page .connector-material-card img {
  object-fit: contain;
  object-position: center;
  padding: 6px;
  background: #9dadbd;
  filter: none;
}

.winding-page .connector-overview-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.76fr);
  gap: 24px;
}

.winding-page .connector-material-card {
  display: flex;
  flex-direction: column;
}

.winding-page .winding-material-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: #9dadbd;
}

.winding-page .winding-material-shot {
  margin: 0;
  min-height: 360px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: transparent;
}

.winding-page .winding-material-shot img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  transform: translateX(-48px) scale(1.14);
  transform-origin: center;
  background: transparent;
  filter: none;
}

.winding-page .winding-material-shot:first-child img {
  transform: translateX(6px) scale(1.14);
}

.winding-page .winding-component-stack {
  display: grid;
  grid-template-rows: auto repeat(5, minmax(0, 1fr));
}

.winding-page .winding-component-stack .snap-component-card {
  align-items: center;
  padding: 16px 22px;
}

.winding-page .winding-component-stack .snap-component-icon {
  width: 46px;
  height: 46px;
}

.winding-page .winding-component-stack .snap-component-body strong {
  font-size: clamp(16px, 1.18vw, 18px);
}

.winding-page .winding-component-stack .snap-component-body p {
  font-size: clamp(13px, 0.98vw, 14px);
  line-height: 1.45;
}

.snap-page .snap-material-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: #9dadbd;
}

.snap-page .snap-material-shot {
  margin: 0;
  min-height: 300px;
  aspect-ratio: 4 / 3;
  overflow: visible;
  border: 0;
  background: transparent;
}

.snap-page .snap-material-shot img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  padding: 3px;
  background: transparent;
  filter: none;
}

.snap-page .process-stage {
  min-height: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(8,11,16,0.14) 0 30%, rgba(8,11,16,0.03) 30% 62%, rgba(8,11,16,0.16) 62% 100%),
    radial-gradient(circle at 50% 8%, rgba(112,173,220,0.1), transparent 42%),
    url("卡扣机流程图.webp");
  background-size: cover, cover, 94%;
  background-position: center, center, center 88%;
  background-repeat: no-repeat;
}

.snap-page .process-ring {
  display: none;
}

.snap-page .process-node {
  width: 132px;
  min-width: 132px;
  min-height: 72px;
  padding: 7px 10px;
  display: grid;
  place-content: center;
  top: 5%;
  right: auto;
  bottom: auto;
  transform: translateX(-50%);
  text-align: center;
  font-size: 34px;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(8,12,18,0.72);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
  z-index: 2;
}

.snap-page .process-node span {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.snap-page .process-node::before,
.snap-page .process-node::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.snap-page .process-node::after {
  top: calc(100% + 6px);
  width: 12px;
  height: var(--snap-callout-len, 178px);
  transform: translateX(-50%) rotate(var(--snap-callout-tilt, 0deg));
  transform-origin: top center;
  background:
    radial-gradient(circle, rgba(125,204,255,0.95) 0 2px, transparent 2.2px) center 1px / 10px 10px no-repeat,
    linear-gradient(180deg, rgba(125,204,255,0.9), rgba(82,164,216,0.92)) center / 1.6px calc(100% - 12px) no-repeat,
    radial-gradient(circle, rgba(125,204,255,0.95) 0 2.2px, transparent 2.4px) center calc(100% - 1px) / 10px 10px no-repeat;
}

.snap-page .process-node::before {
  display: none;
}

.snap-page .process-node:hover,
.snap-page .process-node:focus-visible,
.snap-page .process-node.is-active {
  transform: translateX(-50%);
}

.snap-page .process-node.is-active::after {
  background:
    radial-gradient(circle, rgba(255,126,120,0.98) 0 2px, transparent 2.2px) center 1px / 10px 10px no-repeat,
    linear-gradient(180deg, rgba(255,126,120,0.98), rgba(239,76,70,0.96)) center / 1.8px calc(100% - 12px) no-repeat,
    radial-gradient(circle, rgba(255,126,120,0.98) 0 2.2px, transparent 2.4px) center calc(100% - 1px) / 10px 10px no-repeat;
}

.snap-page .process-node-1 {
  left: 11.5%;
  --snap-callout-len: 194px;
}

.snap-page .process-node-2 {
  left: 28.8%;
  --snap-callout-len: 192px;
}

.snap-page .process-node-3 {
  left: 49.1%;
  --snap-callout-len: 79px;
  --snap-callout-tilt: 70deg;
}

.snap-page .process-node-4 {
  left: 66.1%;
  --snap-callout-len: 172px;
  --snap-callout-tilt: 40deg;
}

.snap-page .process-node-5 {
  left: 88.2%;
  --snap-callout-len: 196px;
}

.snap-page .process-detail {
  min-height: 620px;
  height: 620px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #2A2A2A;
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 10%, rgba(229,57,53,0.12), transparent 42%),
    linear-gradient(162deg, rgba(18,20,24,0.96), rgba(9,11,14,0.98));
  box-shadow: 0 22px 44px rgba(0,0,0,0.28);
}

.snap-page .process-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.snap-page .process-detail [data-step-kicker] {
  margin: 2px 0 0;
  padding: 6px 10px;
  border: 1px solid rgba(255,74,69,0.34);
  border-radius: 999px;
  background: rgba(255,74,69,0.06);
  color: #ff4a45;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.snap-page .process-detail-engineering-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,74,69,0.55);
  background: radial-gradient(circle at 30% 26%, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
  color: rgba(255,255,255,0.92);
  font-size: 28px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(229,57,53,0.16);
}

.snap-page .process-detail-icon-slot,
.snap-page .process-detail-secondary-icon-slot {
  display: inline-grid;
  place-items: center;
}

.snap-page .process-detail-icon-svg {
  width: 36px;
  height: 36px;
}

.snap-page .process-detail-secondary-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,74,69,0.58);
  background: radial-gradient(circle at 30% 26%, rgba(255,255,255,0.07), rgba(255,255,255,0.01));
  display: inline-grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(255,74,69,0.14);
}

.snap-page .process-detail-secondary-icon-svg {
  width: 34px;
  height: 34px;
}

.snap-page .process-detail [data-step-title] {
  min-height: 0;
  max-height: none;
  margin: -6px 0 0;
  line-height: 1.12;
  font-size: clamp(26px, 2vw, 33px);
  font-weight: 780;
  letter-spacing: -0.01em;
}

.snap-page .process-detail-accent {
  height: 3px;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
  background: #ff4a45;
  border-radius: 999px;
}

.snap-page .process-detail [data-step-description] {
  min-height: 0;
  max-height: none;
  margin: 0;
  display: block;
  flex: 0 0 auto;
  font-size: 17px;
  color: rgba(255,255,255,0.86);
  line-height: 1.52;
  margin-bottom: 10px;
}

.snap-page .process-detail-secondary {
  margin: 0;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  gap: 12px;
}

.snap-page .process-detail-secondary > div {
  min-height: 0;
  flex: 1 1 0;
  padding: 14px;
  border: 1px solid #2A2A2A;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  align-content: center;
  row-gap: 8px;
  column-gap: 14px;
}

.snap-page .process-detail-secondary dt {
  margin: 0;
  color: #ff4a45;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  grid-column: 2;
}

.snap-page .process-detail dd {
  margin: 6px 0 0;
  overflow: visible;
  display: block;
  overflow-wrap: anywhere;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.4;
  grid-column: 2;
}

.snap-page .process-detail-progress {
  margin-top: auto;
  height: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.snap-page .process-detail-progress-fill {
  display: block;
  height: 100%;
  width: var(--station-progress, 20%);
  min-width: 22%;
  background: linear-gradient(90deg, #ff4a45, #ff7f79);
  box-shadow: 0 0 14px rgba(229,57,53,0.32);
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.snap-page .connector-hero-media img,
.winding-page .connector-hero-media img {
  object-fit: cover;
  padding: 0;
  background: transparent;
  filter: none;
}

@media (max-width: 980px) {
  .snap-page .snap-material-gallery {
    grid-template-columns: 1fr;
  }

  .snap-page .snap-material-shot {
    min-height: 260px;
  }

  .snap-page .process-node {
    width: 116px;
    min-width: 116px;
    min-height: 68px;
    font-size: 30px;
    top: 5.5%;
  }

  .snap-page .process-node span {
    font-size: 9px;
  }

  .snap-page .process-node-1 { left: 10%; --snap-callout-len: 182px; }
  .snap-page .process-node-2 { left: 28%; --snap-callout-len: 178px; }
  .snap-page .process-node-3 { left: 48%; --snap-callout-len: 73px; --snap-callout-tilt: 70deg; }
  .snap-page .process-node-4 { left: 66%; --snap-callout-len: 160px; --snap-callout-tilt: 40deg; }
  .snap-page .process-node-5 { left: 88%; --snap-callout-len: 184px; }

  .snap-page .process-detail {
    height: 620px;
    min-height: 620px;
    padding: 26px;
    margin-top: 0;
    gap: 18px;
  }

  .snap-page .process-detail-engineering-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 22px;
  }

  .snap-page .process-detail [data-step-title] {
    font-size: clamp(26px, 4.8vw, 32px);
  }

  .snap-page .process-detail-secondary > div {
    padding: 14px;
  }
}

@media (max-width: 760px) {
  .snap-page .process-stage {
    min-height: 560px;
    height: 560px;
    background-size: cover, cover, 98%;
    background-position: center, center, center 82%;
  }

  .snap-page .process-node {
    width: 86px;
    min-width: 86px;
    min-height: 58px;
    padding: 5px;
    font-size: 24px;
    top: 5%;
  }

  .snap-page .process-node span {
    margin-top: 2px;
    font-size: 7.5px;
  }

  .snap-page .process-node::after {
    width: 10px;
    background:
      radial-gradient(circle, rgba(125,204,255,0.95) 0 1.5px, transparent 1.7px) center 1px / 8px 8px no-repeat,
      linear-gradient(180deg, rgba(125,204,255,0.9), rgba(82,164,216,0.92)) center / 1.2px calc(100% - 10px) no-repeat,
      radial-gradient(circle, rgba(125,204,255,0.95) 0 1.8px, transparent 2px) center calc(100% - 1px) / 8px 8px no-repeat;
  }

  .snap-page .process-node-1 { left: 11%; --snap-callout-len: 120px; }
  .snap-page .process-node-2 { left: 30%; --snap-callout-len: 116px; }
  .snap-page .process-node-3 { left: 49%; --snap-callout-len: 50px; --snap-callout-tilt: 70deg; }
  .snap-page .process-node-4 { left: 68%; --snap-callout-len: 108px; --snap-callout-tilt: 40deg; }
  .snap-page .process-node-5 { left: 89%; --snap-callout-len: 122px; }

  .snap-page .process-detail {
    min-height: 560px;
    height: 560px;
    padding: 20px;
    gap: 16px;
  }

  .snap-page .process-detail-engineering-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .snap-page .process-detail-icon-svg {
    width: 34px;
    height: 34px;
  }

  .snap-page .process-detail-secondary > div {
    min-height: 0;
    height: auto;
    padding: 12px;
    align-content: center;
    grid-template-columns: 44px minmax(0, 1fr);
    row-gap: 6px;
    column-gap: 10px;
  }

  .snap-page .process-detail-secondary-icon {
    width: 44px;
    height: 44px;
  }

  .snap-page .process-detail-secondary-icon-svg {
    width: 26px;
    height: 26px;
  }

  .snap-page .process-detail-secondary dt {
    font-size: 11px;
  }

  .snap-page .process-detail dd {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.38;
    max-height: none;
    overflow: visible;
  }
}

.connector-machine-console {
  position: relative;
  min-height: 590px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.08), transparent 36%),
    linear-gradient(145deg, rgba(15,17,20,0.96), rgba(3,3,4,0.96));
  box-shadow: 0 48px 120px rgba(0,0,0,0.55);
}

.connector-machine-console::before,
.connector-machine-console::after {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.connector-machine-console::after {
  inset: auto 0 0;
  height: 44%;
  border: 0;
  background: linear-gradient(180deg, transparent, rgba(229,57,53,0.08));
}

.machine-frame {
  position: absolute;
  left: 19%;
  right: 19%;
  top: 13%;
  bottom: 13%;
  border: 9px solid #202329;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 35px 80px rgba(0,0,0,0.5);
}

.machine-door {
  position: absolute;
  top: 7%;
  width: 41%;
  height: 31%;
  border: 3px solid rgba(255,255,255,0.2);
  background: rgba(125,140,155,0.18);
}

.machine-door-left {
  left: 6%;
}

.machine-door-right {
  right: 6%;
}

.machine-hmi {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(229,57,53,0.8);
  background: #091b13;
  color: #43ff78;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.14em;
}

.machine-table {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 18%;
  height: 38%;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(145deg, #292d32, #15171a);
  overflow: hidden;
}

.machine-rail {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.46), transparent);
}

.machine-rail-a {
  top: 34%;
}

.machine-rail-b {
  top: 66%;
}

.machine-indexer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 148px;
  height: 148px;
  margin: -74px 0 0 -74px;
  border-radius: 50%;
  border: 18px solid rgba(215,222,226,0.34);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08), 0 0 42px rgba(229,57,53,0.16);
  animation: connectorSpin 12s linear infinite;
}

.machine-tool {
  position: absolute;
  width: 16px;
  height: 76px;
  border-radius: 10px;
  background: linear-gradient(180deg, #d8dde0, #34383d);
  box-shadow: 0 0 20px rgba(255,255,255,0.14);
  transform-origin: center;
}

.tool-a { left: 22%; top: 22%; transform: rotate(88deg); }
.tool-b { right: 24%; top: 22%; transform: rotate(-88deg); }
.tool-c { left: 31%; bottom: 12%; transform: rotate(28deg); }
.tool-d { right: 31%; bottom: 12%; transform: rotate(-28deg); }

.machine-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(229,57,53,0.26), transparent);
  animation: connectorScan 3.2s ease-in-out infinite;
}

.machine-base {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 4%;
  height: 13%;
  background: linear-gradient(180deg, #27292f, #101115);
  border: 1px solid rgba(255,255,255,0.08);
}

.machine-feeder {
  position: absolute;
  bottom: 20%;
  width: 16%;
  height: 42%;
  border-radius: 8px;
  background: linear-gradient(145deg, #e5e6e8, #49464c 62%, #232326);
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}

.feeder-left {
  left: 4%;
}

.feeder-right {
  right: 4%;
}

.connector-section {
  width: min(1280px, calc(100% - 120px));
  margin: 0 auto;
  padding: 60px 0;
}

.connector-section-heading {
  max-width: 650px;
  margin-bottom: 24px;
}

.connector-section-heading h2,
.connector-cta-section h2 {
  margin: 18px 0 0;
  max-width: 620px;
  font-size: clamp(36px, 3.3vw, 46px);
  line-height: 1.16;
  font-weight: 780;
  letter-spacing: 0;
}

.connector-section-heading p,
.connector-cta-section p {
  margin: 24px 0 0;
  max-width: 620px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(18px, 1.25vw, 20px);
  font-weight: 450;
  line-height: 1.7;
}

.connector-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.74fr);
  gap: 34px;
  align-items: stretch;
}

.connector-overview-grid > * {
  min-height: 100%;
}

.connector-material-card,
.connector-component-stack,
.process-control,
.inspection-card,
.parameter-item,
.connector-cta-section {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18,20,24,0.96), rgba(7,8,10,0.96));
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.connector-material-card:hover,
.connector-component-stack:hover,
.process-control:hover,
.inspection-card:hover,
.parameter-item:hover,
.connector-cta-section:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.26);
  box-shadow: 0 38px 90px rgba(0,0,0,0.36);
}

.connector-section.is-nav-target {
  animation: sectionTargetFlash 820ms ease;
}

@keyframes sectionTargetFlash {
  0% {
    box-shadow: 0 0 0 0 rgba(229,57,53,0);
    background: transparent;
  }
  35% {
    box-shadow: 0 0 0 4px rgba(229,57,53,0.24);
    background: linear-gradient(180deg, rgba(229,57,53,0.12), rgba(229,57,53,0.03));
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229,57,53,0);
    background: transparent;
  }
}

.connector-material-card {
  overflow: hidden;
}

.connector-material-card img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.08);
}

.connector-material-card div {
  padding: 32px;
}

.connector-card-label {
  color: #ff4a45;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.connector-material-card h3,
.inspection-card h3,
.process-detail h3 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 720;
  line-height: 1.2;
}

.connector-material-card p,
.inspection-card p,
.process-detail p,
.process-detail dd {
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
}

.connector-component-stack {
  padding: 22px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.component-pill {
  min-height: 92px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.11);
  border-left: 3px solid rgba(229,57,53,0.82);
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.86);
}

.component-pill strong {
  display: block;
  color: rgba(255,255,255,0.92);
  font-size: 20px;
  line-height: 1.15;
}

.component-pill small {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.45;
}

.component-visual {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 18px rgba(255,255,255,0.04), 0 0 20px rgba(229,57,53,0.08);
}

.component-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 34px 34px;
}

.component-visual::after {
  content: none;
}

.component-body::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h12'/%3E%3Ccircle cx='18' cy='12' r='3'/%3E%3Cpath d='M3 9v6'/%3E%3C/svg%3E");
}

.component-retaining::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='8' width='16' height='8' rx='2'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E");
}

.component-oring::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5a54' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='6.5'/%3E%3C/svg%3E");
}

.component-plug::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='8' width='11' height='8' rx='4'/%3E%3Cpath d='M14.5 10h4a2 2 0 0 1 0 4h-4'/%3E%3C/svg%3E");
}

.component-basket::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 8h10l-1.3 8H8.3L7 8Z'/%3E%3Cpath d='M9 8V6a3 3 0 0 1 6 0v2'/%3E%3C/svg%3E");
}

.component-nut::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 4.8h7l3.8 6.6-3.8 6.6h-7L4.7 11.4 8.5 4.8Z'/%3E%3Ccircle cx='12' cy='11.4' r='2.3'/%3E%3C/svg%3E");
}

/* Page-specific icon mapping based on each page's component text */
.cut-strip-page .component-body::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h12'/%3E%3Ccircle cx='18' cy='12' r='3'/%3E%3Cpath d='M3 9v6'/%3E%3C/svg%3E");
}

.cut-strip-page .component-retaining::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='8' width='16' height='8' rx='2'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E");
}

.cut-strip-page .component-oring::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5a54' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='6.5'/%3E%3C/svg%3E");
}

.cut-strip-page .component-plug::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='8' width='11' height='8' rx='4'/%3E%3Cpath d='M14.5 10h4a2 2 0 0 1 0 4h-4'/%3E%3C/svg%3E");
}

.cut-strip-page .component-basket::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 4.8h7l3.8 6.6-3.8 6.6h-7L4.7 11.4 8.5 4.8Z'/%3E%3Ccircle cx='12' cy='11.4' r='2.3'/%3E%3C/svg%3E");
}

.cut-strip-page .component-nut::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h11'/%3E%3Cpath d='M12 8l4 4-4 4'/%3E%3C/svg%3E");
}

/* Snap hook: clasp/latch shape */
.snap-page .component-body::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 7v7a3 3 0 0 0 6 0V7'/%3E%3Cpath d='M12 12h4a2 2 0 0 1 0 4h-2'/%3E%3C/svg%3E");
}

.snap-page .component-retaining::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='6' width='16' height='12' rx='2'/%3E%3Cpath d='M4 11h16'/%3E%3C/svg%3E");
}

/* PV output cable: wire with end terminals */
.snap-page .component-oring::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h2m14 0h2M5 12c0-2.2 1.4-4 4-4h6c2.6 0 4 1.8 4 4s-1.4 4-4 4H9c-2.6 0-4-1.8-4-4z'/%3E%3Ccircle cx='9' cy='12' r='1.5'/%3E%3Ccircle cx='15' cy='12' r='1.5'/%3E%3C/svg%3E");
}

/* MC4-type connector: two-pin solar connector body */
.snap-page .component-plug::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='8' width='10' height='6' rx='3'/%3E%3Cpath d='M10 5v3m4-3v3'/%3E%3Cpath d='M12 14v3'/%3E%3C/svg%3E");
}

/* Internal sub-assembly: PCB/circuit board representation */
.snap-page .component-basket::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='7' width='16' height='10' rx='1.5'/%3E%3Ccircle cx='8' cy='12' r='1.5'/%3E%3Ccircle cx='16' cy='12' r='1.5'/%3E%3Cpath d='M11 12h2'/%3E%3Cpath d='M8 7v-2m8 2v-2M8 17v2m8-2v2'/%3E%3C/svg%3E");
}

.snap-page .component-nut::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h11'/%3E%3Cpath d='M12 8l4 4-4 4'/%3E%3C/svg%3E");
}

.winding-page .component-body::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8h8a3 3 0 0 1 0 6H9'/%3E%3Cpath d='M6 8v8'/%3E%3C/svg%3E");
}

.winding-page .component-retaining::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 14h8l2-2 2 2h2'/%3E%3Cpath d='M5 10h6'/%3E%3C/svg%3E");
}

.winding-page .component-oring::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 16h5l3-6 4 2 2-2'/%3E%3Ccircle cx='5' cy='16' r='1.5'/%3E%3C/svg%3E");
}

.winding-page .component-plug::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 6a6 6 0 1 0 6 6'/%3E%3Cpath d='M12 10a2 2 0 1 0 2 2'/%3E%3C/svg%3E");
}

.winding-page .component-basket::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h11'/%3E%3Cpath d='M12 8l4 4-4 4'/%3E%3C/svg%3E");
}

.assembly-line-page .component-body::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='6' height='6'/%3E%3Crect x='14' y='5' width='6' height='6'/%3E%3Crect x='9' y='13' width='6' height='6'/%3E%3C/svg%3E");
}

.assembly-line-page .component-plug::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='7' width='14' height='10' rx='2'/%3E%3Cpath d='M9 7V5M15 7V5M9 17v2M15 17v2'/%3E%3C/svg%3E");
}

.assembly-line-page .component-basket::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 9h14'/%3E%3Cpath d='M7 9v8h10V9'/%3E%3Cpath d='M9 13h6'/%3E%3C/svg%3E");
}

/* Winding Machine Process Flow Redesign */

.winding-page .winding-process-container {
  grid-template-columns: minmax(560px, 1fr) minmax(360px, 0.54fr);
  gap: 22px;
  padding: 22px;
}

.winding-page .winding-process-stage {
  min-height: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(8,11,16,0.14) 0 30%, rgba(8,11,16,0.03) 30% 62%, rgba(8,11,16,0.16) 62% 100%),
    radial-gradient(circle at 50% 8%, rgba(112,173,220,0.1), transparent 42%),
    url("绕线机流程图.webp");
  background-size: cover, cover, 94%;
  background-position: center, center, center 80%;
  background-repeat: no-repeat;
}

.winding-page .process-node {
  width: 132px;
  min-width: 132px;
  min-height: 72px;
  padding: 7px 10px;
  display: grid;
  place-content: center;
  top: 5%;
  right: auto;
  bottom: auto;
  transform: translateX(-50%);
  text-align: center;
  font-size: 34px;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(8,12,18,0.72);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
  z-index: 2;
}

.winding-page .process-node span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.winding-page .process-node::before,
.winding-page .process-node::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.winding-page .process-node::before {
  display: none;
}

.winding-page .process-node::after {
  top: calc(100% + 6px);
  width: 12px;
  height: var(--winding-callout-len, 178px);
  transform: translateX(-50%) rotate(var(--winding-callout-tilt, 0deg));
  transform-origin: top center;
  background:
    radial-gradient(circle, rgba(125,204,255,0.95) 0 2px, transparent 2.2px) center 1px / 10px 10px no-repeat,
    linear-gradient(180deg, rgba(125,204,255,0.9), rgba(82,164,216,0.92)) center / 1.6px calc(100% - 12px) no-repeat,
    radial-gradient(circle, rgba(125,204,255,0.95) 0 2.2px, transparent 2.4px) center calc(100% - 1px) / 10px 10px no-repeat;
}

.winding-page .process-node:hover,
.winding-page .process-node:focus-visible,
.winding-page .process-node.is-active {
  transform: translateX(-50%);
}

.winding-page .process-node.is-active::after {
  background:
    radial-gradient(circle, rgba(255,126,120,0.98) 0 2px, transparent 2.2px) center 1px / 10px 10px no-repeat,
    linear-gradient(180deg, rgba(255,126,120,0.98), rgba(239,76,70,0.96)) center / 1.8px calc(100% - 12px) no-repeat,
    radial-gradient(circle, rgba(255,126,120,0.98) 0 2.2px, transparent 2.4px) center calc(100% - 1px) / 10px 10px no-repeat;
}

.winding-page .process-node-1 { left: 10.5%; --winding-callout-len: 168px; }
.winding-page .process-node-2 { left: 29%; --winding-callout-len: 174px; --winding-callout-tilt: -16deg; }
.winding-page .process-node-3 { left: 49%; --winding-callout-len: 112px; --winding-callout-tilt: 18deg; }
.winding-page .process-node-4 { left: 67%; --winding-callout-len: 218px; --winding-callout-tilt: 32deg; }
.winding-page .process-node-5 { left: 88%; --winding-callout-len: 178px; }

.winding-page .winding-process-detail {
  min-height: 620px;
  height: 620px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #2A2A2A;
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 10%, rgba(229,57,53,0.12), transparent 42%),
    linear-gradient(162deg, rgba(18,20,24,0.96), rgba(9,11,14,0.98));
  box-shadow: 0 22px 44px rgba(0,0,0,0.28);
}

.winding-page .winding-process-detail [data-step-kicker] {
  margin: 2px 0 0;
  padding: 6px 10px;
  border: 1px solid rgba(255,74,69,0.34);
  border-radius: 999px;
  background: rgba(255,74,69,0.06);
  color: #ff4a45;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.winding-page .process-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.winding-page .process-detail-engineering-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,74,69,0.55);
  background: radial-gradient(circle at 30% 26%, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
  color: rgba(255,255,255,0.92);
  font-size: 28px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(229,57,53,0.16);
}

.winding-page .process-detail-icon-slot,
.winding-page .process-detail-secondary-icon-slot {
  display: inline-grid;
  place-items: center;
}

.winding-page .process-detail-icon-svg {
  width: 36px;
  height: 36px;
}

.winding-page .process-detail-secondary-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,74,69,0.58);
  background: radial-gradient(circle at 30% 26%, rgba(255,255,255,0.07), rgba(255,255,255,0.01));
  display: inline-grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(255,74,69,0.14);
}

.winding-page .process-detail-secondary-icon-svg {
  width: 34px;
  height: 34px;
}

.winding-page .winding-process-detail [data-step-title] {
  min-height: 0;
  max-height: none;
  margin: -6px 0 0;
  line-height: 1.12;
  font-size: clamp(26px, 2vw, 33px);
  font-weight: 780;
  letter-spacing: -0.01em;
}

.winding-page .process-detail-accent {
  height: 3px;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
  background: #ff4a45;
  border-radius: 999px;
}

.winding-page .winding-process-detail [data-step-description] {
  min-height: 0;
  max-height: none;
  margin: 0 0 10px;
  display: block;
  flex: 0 0 auto;
  font-size: 17px;
  color: rgba(255,255,255,0.86);
  line-height: 1.52;
}

.winding-page .winding-detail-info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  gap: 12px;
}

.winding-page .winding-detail-info > div {
  min-height: 0;
  flex: 1 1 0;
  padding: 14px;
  border: 1px solid #2A2A2A;
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  align-content: center;
  row-gap: 8px;
  column-gap: 14px;
  overflow: visible;
}

.winding-page .winding-detail-info dt,
.winding-page .winding-detail-info dd {
  grid-column: 2;
}

.winding-page .winding-detail-info dt {
  margin: 0;
  color: #ff4a45;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.winding-page .winding-detail-info dd {
  margin: 6px 0 0;
  display: block;
  overflow: visible;
  overflow-wrap: anywhere;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.4;
  -webkit-line-clamp: initial;
  -webkit-box-orient: initial;
}

.winding-page .process-detail-progress {
  margin-top: auto;
  height: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.winding-page .process-detail-progress-fill {
  display: block;
  height: 100%;
  width: var(--station-progress, 20%);
  min-width: 22%;
  background: linear-gradient(90deg, #ff4a45, #ff7f79);
  box-shadow: 0 0 14px rgba(229,57,53,0.32);
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1200px) {
  .winding-page .connector-overview-grid {
    grid-template-columns: 1fr;
  }

  .winding-page .winding-process-container {
    grid-template-columns: 1fr;
  }

  .winding-page .winding-process-detail {
    min-height: 520px;
    height: auto;
  }
}

@media (max-width: 760px) {
  .winding-page .winding-material-gallery {
    grid-template-columns: 1fr;
  }

  .winding-page .winding-material-shot {
    min-height: 280px;
  }

  .winding-page .winding-material-shot img {
    transform: translateX(-18px) scale(1.08);
  }

  .winding-page .winding-material-shot:first-child img {
    transform: translateX(0) scale(1.08);
  }

  .winding-page .connector-material-copy {
    padding: 26px 22px;
  }

  .winding-page .winding-process-stage {
    min-height: 560px;
    height: 560px;
    background-size: cover, cover, 98%;
    background-position: center, center, center 76%;
  }

  .winding-page .process-node {
    width: 86px;
    min-width: 86px;
    min-height: 58px;
    padding: 5px;
    font-size: 24px;
    top: 5%;
  }

  .winding-page .process-node span {
    margin-top: 2px;
    font-size: 7.5px;
  }

  .winding-page .process-node-1 { left: 11%; --winding-callout-len: 116px; }
  .winding-page .process-node-2 { left: 30%; --winding-callout-len: 114px; --winding-callout-tilt: -14deg; }
  .winding-page .process-node-3 { left: 49%; --winding-callout-len: 82px; --winding-callout-tilt: 16deg; }
  .winding-page .process-node-4 { left: 68%; --winding-callout-len: 154px; --winding-callout-tilt: 28deg; }
  .winding-page .process-node-5 { left: 89%; --winding-callout-len: 118px; }

  .winding-page .winding-process-detail {
    min-height: 560px;
    padding: 20px;
    gap: 16px;
  }

  .winding-page .process-detail-engineering-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .winding-page .process-detail-icon-svg {
    width: 34px;
    height: 34px;
  }

  .winding-page .winding-process-detail [data-step-title] {
    font-size: clamp(26px, 4.8vw, 32px);
  }

  .winding-page .winding-process-detail [data-step-description] {
    font-size: 14px;
  }

  .winding-page .winding-detail-info > div {
    padding: 12px;
    align-content: center;
    grid-template-columns: 44px minmax(0, 1fr);
    row-gap: 6px;
    column-gap: 10px;
  }

  .winding-page .process-detail-secondary-icon {
    width: 44px;
    height: 44px;
  }

  .winding-page .process-detail-secondary-icon-svg {
    width: 26px;
    height: 26px;
  }

  .winding-page .winding-detail-info dt {
    font-size: 11px;
  }

  .winding-page .winding-detail-info dd {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.38;
  }
}

.assembly-line-page .component-oring::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5a54' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 15h7l3-6 4 2'/%3E%3Ccircle cx='18' cy='12' r='2.2'/%3E%3C/svg%3E");
}

.assembly-line-page .component-retaining::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3Cpath d='M6 6h5'/%3E%3C/svg%3E");
}

.assembly-line-page .component-nut::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7dde3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h7'/%3E%3Cpath d='M9 8l4 4-4 4'/%3E%3Cpath d='M13 12h7'/%3E%3Cpath d='M20 9v6'/%3E%3C/svg%3E");
}

.process-control {
  --active-step: 0;
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(360px, 0.54fr);
  gap: 22px;
  padding: 22px;
  overflow: hidden;
}

.process-stage {
  position: relative;
  min-height: 560px;
  border: 0;
  background:
    linear-gradient(145deg, rgba(6,7,9,0.72), rgba(6,7,9,0.5)),
    radial-gradient(circle at 50% 50%, rgba(229,57,53,0.12), transparent 30%),
    url("连接器内部.webp");
  background-size: cover, auto, cover;
  background-position: center, center, center;
}

.process-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(58vw, 560px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.process-orbit,
.process-turntable,
.process-beam,
.process-part {
  position: absolute;
  border-radius: 50%;
}

.process-orbit {
  inset: 0;
  border: 1px dashed rgba(255,255,255,0.22);
}

.process-turntable {
  inset: 21%;
  border: 24px solid rgba(148,156,162,0.32);
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(229,57,53,0.22), rgba(255,255,255,0.05), rgba(229,57,53,0.12), rgba(255,255,255,0.05), rgba(229,57,53,0.22));
  animation: connectorSpin 16s linear infinite;
}

.process-turntable::after {
  content: "";
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: #090a0c;
  border: 1px solid rgba(255,255,255,0.12);
}

.process-beam {
  left: 50%;
  top: 50%;
  width: 44%;
  height: 4px;
  transform-origin: left center;
  transform: rotate(var(--active-angle, 0deg));
  background: linear-gradient(90deg, rgba(229,57,53,0.95), transparent);
  box-shadow: 0 0 22px rgba(229,57,53,0.5);
  transition: transform 0.35s ease;
}

.process-part {
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #ff4a45;
  box-shadow: 0 0 24px rgba(229,57,53,0.72);
  animation: processOrbit 7s linear infinite;
}

.part-one { animation-delay: 0s; }
.part-two { animation-delay: -2.25s; }
.part-three { animation-delay: -4.6s; }

.process-node {
  position: absolute;
  width: 148px;
  min-height: 74px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  background: rgba(12,13,15,0.94);
  color: #fff;
  font: inherit;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.process-node span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.process-node:hover,
.process-node:focus-visible,
.process-node.is-active {
  transform: translateY(-4px);
  border-color: rgba(229,57,53,0.85);
  background: linear-gradient(180deg, rgba(229,57,53,0.2), rgba(16,17,20,0.96));
  outline: none;
}

.process-node-1 { left: 6%; top: 9%; }
.process-node-2 { left: 3%; top: 29%; }
.process-node-3 { left: 5%; bottom: 29%; }
.process-node-4 { left: 13%; bottom: 9%; }
.process-node-5 { right: 13%; bottom: 9%; }
.process-node-6 { right: 5%; bottom: 29%; }
.process-node-7 { right: 3%; top: 29%; }
.process-node-8 { right: 6%; top: 9%; }

.process-detail {
  height: 560px;
  display: grid;
  grid-template-rows: 176px auto 44px 84px 1fr;
  align-content: start;
  padding: 28px;
  align-self: stretch;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
  overflow: hidden;
}

.process-detail-media {
  position: relative;
  margin: 0 0 16px;
  height: 176px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(10,12,16,0.98), rgba(24,26,32,0.88));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.process-detail-media-meta {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.process-detail-media-badge,
.process-detail-media-model {
  display: none;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(229,57,53,0.9);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 18px rgba(0,0,0,0.32);
}

.process-detail-media-badge.is-visible,
.process-detail-media-model.is-visible {
  display: inline-flex;
}

.process-detail-media-model {
  margin-left: auto;
  background: rgba(20,24,30,0.9);
}

.process-detail-media img {
  width: clamp(150px, 34%, 210px);
  height: clamp(150px, 34%, 210px);
  object-fit: contain;
  object-position: center;
  display: block;
}

.process-detail-media.is-contained img {
  width: clamp(150px, 34%, 210px);
  height: clamp(150px, 34%, 210px);
  object-fit: contain;
}

.process-detail-media.is-connector img,
.process-detail-media.is-nut img {
  width: 88%;
  height: 76%;
  object-fit: contain;
}

.process-detail-media.is-nut img {
  width: clamp(150px, 34%, 210px);
  height: clamp(150px, 34%, 210px);
}

.process-detail-media.is-illustration img {
  width: 96%;
  height: 96%;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.03) saturate(1.04);
}

.process-detail [data-step-kicker] {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.process-detail [data-step-title] {
  min-height: 48px;
  max-height: 48px;
  overflow: hidden;
}

.process-detail [data-step-description] {
  min-height: 92px;
  max-height: 92px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.process-detail h3 {
  margin: 8px 0 0;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.16;
}

.process-detail p,
.process-detail dd {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.46;
}

.process-detail dl {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
}

.process-detail dl > div {
  min-height: 72px;
  overflow: hidden;
}

.process-detail dt {
  color: #ff4a45;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-detail dd {
  margin: 6px 0 0;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.inspection-grid--evidence {
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.56fr);
  gap: 12px;
  align-items: stretch;
}

.inspection-left-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

.inspection-tech-strip {
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.inspection-tech-item {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
}

.inspection-tech-item span {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inspection-tech-item strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.25;
  color: #ff4a45;
}

.inspection-summary-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, rgba(18,20,24,0.95), rgba(7,8,10,0.95));
  box-shadow: 0 22px 52px rgba(0,0,0,0.26);
}

.inspection-summary-card h3 {
  margin: 0;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.2;
}

.inspection-risk-list {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 3px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.45;
}

.inspection-risk-list li {
  position: relative;
  padding-left: 22px;
}

.inspection-risk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border: 2px solid #ff4a45;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(10,11,14,1);
}

.inspection-config-panel {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.inspection-config-panel h4 {
  margin: 14px 0 0;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.inspection-config-panel h4:first-child {
  margin-top: 0;
}

.inspection-config-panel h4 + .inspection-config-chips {
  margin-top: 12px;
}

.inspection-config-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 10px;
  margin-bottom: 14px;
}

.inspection-config-chips span {
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  cursor: default;
  transition: border-color 220ms ease, background 220ms ease;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.inspection-config-panel p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.inspection-evidence-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.inspection-evidence-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17,18,21,0.96), rgba(7,8,10,0.96));
}

.inspection-evidence-card--main {
  grid-column: 1 / -1;
}

.inspection-evidence-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02) saturate(1.02);
}

.inspection-evidence-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  height: 150px;
}

.inspection-evidence-duo img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.03) saturate(0.96);
}

.inspection-evidence-card--main img {
  height: 260px;
}

.inspection-evidence-card--ng {
  display: grid;
  grid-template-rows: 150px minmax(82px, auto);
}

.inspection-evidence-card--ng img {
  filter: contrast(1.03) saturate(0.96);
}

.inspection-evidence-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 54px;
  padding: 5px 10px;
  border-radius: 6px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  background: #00b347;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
}

.inspection-evidence-card--ng .inspection-evidence-tag {
  background: #ff2f2f;
}

.inspection-evidence-subtag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(5,8,12,0.72);
  color: rgba(255,255,255,0.94);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inspection-evidence-card figcaption {
  margin: 0;
  padding: 8px 10px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.35;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.inspection-evidence-card--ng figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.inspection-evidence-card figcaption strong {
  display: block;
  color: rgba(255,255,255,0.95);
  font-size: 17px;
  line-height: 1.18;
}

.inspection-evidence-card figcaption p {
  margin: 3px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.28;
}

.inspection-workflow-panel {
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, rgba(18,20,24,0.95), rgba(7,8,10,0.95));
}

.inspection-workflow-panel--side {
  margin-top: auto;
}

.inspection-workflow-kicker {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inspection-workflow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.inspection-workflow-panel--side .inspection-workflow {
  grid-template-columns: 1fr;
  gap: 8px;
}

.inspection-workflow-step {
  padding: 10px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: transparent;
}

.inspection-workflow-icon {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 22px;
  padding: 0 6px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: rgba(255,74,69,0.9);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-family: "Roboto Mono", "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
}

.inspection-workflow-step strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.25;
}

.inspection-workflow-step p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.45;
}

.inspection-workflow-step--decision {
  border-right: 0;
}

.inspection-workflow-arrow {
  color: rgba(255,255,255,0.65);
  font-size: 28px;
  line-height: 1;
}

.inspection-workflow-panel--side .inspection-workflow-arrow {
  display: none;
}

.inspection-workflow-panel--side .inspection-workflow-step {
  border-right: 0;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  transition: border-color 220ms ease, background 220ms ease;
}

.inspection-workflow-panel--side .inspection-workflow-step:hover {
  border-color: rgba(255,255,255,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.048), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(255,74,69,0.032), rgba(255,74,69,0.012));
}

.inspection-workflow-panel--side .inspection-workflow-icon {
  transition: border-color 220ms ease, color 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.inspection-workflow-panel--side .inspection-workflow-step:hover .inspection-workflow-icon {
  border-color: rgba(255,74,69,0.68);
  box-shadow: 0 0 0 2px rgba(255,74,69,0.08);
}

.inspection-workflow-panel--side.workflow-sequence-ready .inspection-workflow-step {
  opacity: 0;
  transform: translateY(12px);
  will-change: transform, opacity;
}

.inspection-workflow-panel--side.workflow-sequence-ready.is-sequence-active .inspection-workflow-step {
  animation: inspectionStepIn 460ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.inspection-workflow-panel--side.workflow-sequence-ready.is-sequence-active .inspection-workflow-step:nth-child(1) {
  animation-delay: 40ms;
}

.inspection-workflow-panel--side.workflow-sequence-ready.is-sequence-active .inspection-workflow-step:nth-child(2) {
  animation-delay: 320ms;
}

.inspection-workflow-panel--side.workflow-sequence-ready.is-sequence-active .inspection-workflow-step:nth-child(3) {
  animation-delay: 600ms;
}

.inspection-workflow-panel--side.workflow-sequence-ready.is-sequence-active .inspection-workflow-step:nth-child(4) {
  animation-delay: 880ms;
}

.inspection-workflow-panel--side.workflow-sequence-ready.is-sequence-active .inspection-workflow-step .inspection-workflow-icon {
  animation: inspectionIconBrighten 300ms ease-out both;
}

.inspection-workflow-panel--side.workflow-sequence-ready.is-sequence-active .inspection-workflow-step:nth-child(1) .inspection-workflow-icon {
  animation-delay: 120ms;
}

.inspection-workflow-panel--side.workflow-sequence-ready.is-sequence-active .inspection-workflow-step:nth-child(2) .inspection-workflow-icon {
  animation-delay: 400ms;
}

.inspection-workflow-panel--side.workflow-sequence-ready.is-sequence-active .inspection-workflow-step:nth-child(3) .inspection-workflow-icon {
  animation-delay: 680ms;
}

.inspection-workflow-panel--side.workflow-sequence-ready.is-sequence-active .inspection-workflow-step:nth-child(4) .inspection-workflow-icon {
  animation-delay: 960ms;
}

.inspection-submodule {
  margin-top: 40px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18,20,24,0.94), rgba(7,8,10,0.94));
}

.inspection-submodule--oring {
  margin-top: 0;
}

.inspection-submodule--oring .basket-ccd-heading h3 {
  margin: 8px 0 0;
  line-height: 1.1;
}

.inspection-submodule--oring .inspection-grid--evidence {
  margin-top: 14px;
}

.basket-ccd-module {
  margin-top: 56px;
}

.basket-ccd-module.module-reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  filter: saturate(0.92);
  will-change: transform, opacity;
}

.basket-ccd-module.module-reveal-ready.is-module-visible {
  animation: basketModuleIn 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes basketModuleIn {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: saturate(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: saturate(1);
  }
}

.basket-ccd-heading h3 {
  margin: 12px 0 0;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1.2;
}

.basket-ccd-grid {
  --basket-row-height: 392px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(330px, 1.06fr) repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.basket-ccd-grid > .basket-ccd-params,
.basket-ccd-grid > .basket-ccd-card {
  height: var(--basket-row-height);
  align-self: stretch;
  box-sizing: border-box;
}

.basket-ccd-card {
  height: var(--basket-row-height);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17,18,21,0.96), rgba(7,8,10,0.96));
}

.basket-ccd-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.basket-ccd-params {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 18px 16px 14px;
  background: linear-gradient(180deg, rgba(18,20,24,0.96), rgba(7,8,10,0.96));
  box-shadow: 0 24px 64px rgba(0,0,0,0.24);
}

.basket-ccd-params h4 {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.96);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
}

.basket-ccd-key-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.45;
}

.basket-ccd-key-list li {
  position: relative;
  padding-left: 24px;
}

.basket-ccd-key-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border: 2px solid #ff4a45;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(10,11,14,1);
}

.basket-ccd-config {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.basket-ccd-config h5 {
  margin: 14px 0 0;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.basket-ccd-config h5:first-child {
  margin-top: 0;
}

.basket-ccd-config h5 + .basket-ccd-chip-row {
  margin-top: 12px;
}

.basket-ccd-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 16px;
}

.basket-ccd-chip-row span {
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
}

.basket-ccd-config p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.5;
}


.basket-ccd-logic {
  grid-column: 1 / -1;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px 14px;
  min-height: 128px;
  background: linear-gradient(180deg, rgba(18,20,24,0.96), rgba(7,8,10,0.96));
}

.basket-ccd-logic h4 {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plc-pipeline {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 1px;
}

.plc-step {
  position: relative;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.plc-step strong {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 22px;
  padding: 0 6px;
  flex: 0 0 auto;
  margin-right: 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: #ff4a45;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  font-family: "Roboto Mono", "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
}

.plc-step::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 10px;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255,74,69,0.58), rgba(255,255,255,0.38));
}

.plc-step:last-child::after {
  display: none;
}

.basket-ccd-logic.workflow-sequence-ready .plc-step {
  opacity: 0;
  transform: translateX(-10px);
  will-change: transform, opacity;
}

.basket-ccd-logic.workflow-sequence-ready.is-sequence-active .plc-step {
  animation: basketLogicStepFlow 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.basket-ccd-logic.workflow-sequence-ready.is-sequence-active .plc-pipeline > .plc-step:nth-child(1) { animation-delay: 40ms; }
.basket-ccd-logic.workflow-sequence-ready.is-sequence-active .plc-pipeline > .plc-step:nth-child(2) { animation-delay: 220ms; }
.basket-ccd-logic.workflow-sequence-ready.is-sequence-active .plc-pipeline > .plc-step:nth-child(3) { animation-delay: 400ms; }
.basket-ccd-logic.workflow-sequence-ready.is-sequence-active .plc-pipeline > .plc-step:nth-child(4) { animation-delay: 580ms; }
.basket-ccd-logic.workflow-sequence-ready.is-sequence-active .plc-pipeline > .plc-step:nth-child(5) { animation-delay: 760ms; }

@keyframes basketLogicStepFlow {
  from {
    opacity: 0;
    transform: translateX(-10px);
    border-color: rgba(170,184,255,0.14);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    border-color: rgba(170,184,255,0.28);
  }
}

.basket-ccd-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 74px;
  padding: 8px 14px;
  border-radius: 6px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  background: #00b347;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
}

.basket-ccd-card--ng .basket-ccd-tag {
  background: #ff2f2f;
}

.basket-ccd-card figcaption {
  margin: 0;
  padding: 12px 14px;
  min-height: 68px;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.4;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.connector-cta-section .cta-btn {
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 12px 26px rgba(229,57,53,0.24);
}

.connector-cta-section .cta-btn:hover,
.connector-cta-section .cta-btn:focus-visible {
  transform: translateY(-3px);
  background: #ff5c5c;
  border-color: rgba(255,255,255,0.34);
  box-shadow: 0 18px 40px rgba(229,57,53,0.34);
}

.connector-cta-section .cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(229,57,53,0.22);
}

/* ─── Snap Features & Applications section ─── */
.snap-features-section {
  /* inherits connector-section spacing */
}

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

.snap-advantage-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.snap-advantage-title {
  color: #ff4a45;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}

.snap-advantage-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.snap-advantage-point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.snap-advantage-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(229,57,53,0.5);
  border-radius: 6px;
  background: rgba(229,57,53,0.06);
  color: #ff5a54;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.snap-advantage-content strong {
  display: block;
  color: rgba(255,255,255,0.92);
  font-size: clamp(12.5px, 0.95vw, 13.5px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3px;
}

.snap-advantage-content p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: clamp(11.5px, 0.9vw, 12.5px);
  line-height: 1.5;
}

.product-faq-column {
  gap: 10px;
}

.snap-faq-item {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
}

.snap-faq-item + .snap-faq-item {
  margin-top: 2px;
}

.snap-faq-item summary {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px 12px 12px;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
}

.snap-faq-item summary::-webkit-details-marker {
  display: none;
}

.snap-faq-item summary::after {
  content: "+";
  color: #ff5a55;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
}

.snap-faq-item[open] summary::after {
  content: "-";
}

.snap-faq-item summary:focus-visible {
  outline: 2px solid rgba(229,57,53,0.65);
  outline-offset: -2px;
}

.snap-faq-item summary strong {
  margin: 0;
  color: rgba(255,255,255,0.94);
}

.snap-faq-item .snap-advantage-number {
  margin-top: 0;
}

.snap-faq-item .snap-advantage-content {
  padding: 0 16px 16px 64px;
}

.snap-faq-item .snap-advantage-content p {
  font-size: 13px;
  line-height: 1.62;
  color: rgba(231,235,242,0.72);
}

.product-resource-column {
  padding: 0;
  border: 0;
  border-radius: 0;
  gap: 8px;
  background: transparent;
}

.product-resource-column .snap-advantage-point {
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 12px 12px 12px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgba(229,57,53,0.78);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(229,57,53,0.1), rgba(255,255,255,0.025));
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.product-resource-column .snap-advantage-point:hover {
  transform: translateX(4px);
  border-color: rgba(229,57,53,0.48);
  border-left-color: #ff4a45;
  background:
    linear-gradient(90deg, rgba(229,57,53,0.16), rgba(255,255,255,0.04));
}

.product-resource-column .snap-advantage-number {
  border-color: rgba(229,57,53,0.52);
  color: #ff5a55;
  background: rgba(229,57,53,0.12);
}

.product-resource-column .snap-advantage-content strong {
  color: #ffffff;
  letter-spacing: 0.02em;
}

.product-resource-column .snap-advantage-content p {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.product-resource-column .snap-advantage-content a {
  display: block;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  background: rgba(255,255,255,0.035);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-resource-column .snap-advantage-content a:hover {
  color: #ffffff;
  border-color: rgba(229,57,53,0.5);
  background: rgba(229,57,53,0.12);
  transform: translateX(3px);
}

/* ─── Parameter grid ─── */
.parameter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.parameter-item {
  min-height: 148px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.parameter-item span {
  color: #ff4a45;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.parameter-item strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
}

.connector-models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.connector-model-card {
  margin: 0;
}

.connector-model-media {
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18,20,24,0.96), rgba(7,8,10,0.96));
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  min-height: 200px;
  display: grid;
  place-items: center;
}

.connector-model-media img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background: #9dadbd;
}

.connector-model-polarity,
.connector-model-name {
  position: absolute;
  top: 10px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 18px rgba(0,0,0,0.32);
}

.connector-model-polarity {
  left: 10px;
  background: rgba(229,57,53,0.9);
}

.connector-model-polarity.is-negative {
  background: rgba(39,82,244,0.92);
}

.connector-model-name {
  right: 10px;
  background: rgba(20,24,30,0.9);
}

.connector-cta-section {
  width: min(1280px, calc(100% - 120px));
  margin: 0 auto 48px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.connector-cta-section h2 {
  max-width: 820px;
}

.connector-cta-section p {
  max-width: 860px;
  font-size: 19px;
}

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

.standalone-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18,20,24,0.96), rgba(7,8,10,0.96));
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.card-anchor {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.card-anchor:focus-visible {
  outline: 2px solid rgba(255, 82, 76, 0.92);
  outline-offset: 4px;
}

.standalone-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  padding: 14px;
  background: #9dadbd;
}

.standalone-card-copy {
  padding: 18px 20px 22px;
}

.standalone-card-copy h3 {
  margin: 12px 0 0;
  font-size: clamp(24px, 1.9vw, 28px);
  line-height: 1.24;
}

.standalone-card-copy p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
}

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

.custom-scope-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(18,20,24,0.95), rgba(7,8,10,0.95));
  box-shadow: 0 24px 70px rgba(0,0,0,0.3);
}

.custom-scope-card h3 {
  margin: 0;
  font-size: clamp(24px, 1.9vw, 28px);
  line-height: 1.22;
}

.custom-scope-card p {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
}

.custom-scope-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.7;
}

.custom-scope-card li + li {
  margin-top: 6px;
}

@keyframes connectorSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes connectorScan {
  0%, 100% { left: -90px; opacity: 0; }
  15%, 85% { opacity: 1; }
  50% { left: calc(100% + 10px); opacity: 0.8; }
}

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

@keyframes connectorHeroMediaIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    filter: saturate(0.88);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
}

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

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

@keyframes processOrbit {
  from {
    transform: rotate(0deg) translateX(230px) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(230px) rotate(360deg);
  }
}

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

@keyframes inspectionIconBrighten {
  0% {
    border-color: rgba(255,74,69,0.52);
    color: #ff4a45;
    box-shadow: 0 0 0 0 rgba(255,74,69,0);
    filter: brightness(1);
  }
  45% {
    border-color: rgba(255,74,69,0.92);
    color: #ff6b66;
    box-shadow: 0 0 0 3px rgba(255,74,69,0.12);
    filter: brightness(1.2);
  }
  100% {
    border-color: rgba(255,74,69,0.58);
    color: #ff4a45;
    box-shadow: 0 0 0 0 rgba(255,74,69,0);
    filter: brightness(1);
  }
}

@media (max-width: 1180px) {
  .connector-hero-grid,
  .connector-overview-grid,
  .process-control,
  .standalone-grid,
  .custom-scope-grid {
    grid-template-columns: 1fr;
  }

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

  .connector-hero-media {
    max-height: 390px;
  }

  .connector-auto-page .connector-hero-media {
    width: min(100%, 820px);
    max-height: 390px;
  }

  .inspection-tech-strip {
    grid-template-columns: 1fr;
  }

  .inspection-grid,
  .inspection-grid--evidence,
  .parameter-grid,
  .snap-advantages-grid,
  .connector-models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inspection-grid--evidence {
    grid-template-columns: 1fr;
  }

  .inspection-workflow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .inspection-workflow-arrow {
    display: none;
  }

  .inspection-workflow-step {
    border-right: 0;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  }

  .inspection-evidence-card--main img {
    height: 250px;
  }

  .basket-ccd-card img {
    height: 230px;
  }

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

  .basket-ccd-card,
  .basket-ccd-params,
  .basket-ccd-logic {
    height: auto;
  }

  .basket-ccd-params,
  .basket-ccd-logic {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .connector-hero {
    min-height: auto;
    padding: 16px 18px 0;
  }

  .connector-section,
  .connector-cta-section {
    width: min(100% - 36px, 1280px);
  }

  .connector-hero-grid {
    min-height: auto;
    margin: 0;
    gap: 32px;
    padding: 42px 0 64px;
  }

  .connector-hero-kicker {
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .connector-hero-copy h1 {
    font-size: 42px;
    line-height: 1;
  }

  .connector-hero-copy h2 {
    margin-top: 26px;
    font-size: 23px;
    line-height: 1.28;
  }

  .connector-hero-copy p,
  .connector-section-heading p,
  .connector-cta-section p {
    font-size: 17px;
  }

  .connector-hero-media {
    min-height: 260px;
    max-height: 300px;
  }

  .line-hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .line-hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .line-hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .connector-section {
    padding: 74px 0;
  }

  .connector-section-heading h2,
  .connector-cta-section h2 {
    font-size: 34px;
  }

  .connector-material-card img {
    height: 330px;
  }

  .standalone-card img {
    height: 240px;
  }

  .custom-scope-card h3 {
    font-size: 26px;
  }

  .process-control {
    padding: 18px;
  }

  .process-stage {
    min-height: 680px;
  }

  .process-ring {
    width: 320px;
  }

  .process-node {
    width: 116px;
    min-height: 64px;
    padding: 0;
    font-size: 20px;
  }

  .process-node span {
    font-size: 10px;
    letter-spacing: 0.03em;
  }

  .process-node-1 { left: 4%; top: 5%; }
  .process-node-2 { left: 4%; top: 21%; }
  .process-node-3 { left: 4%; bottom: 21%; }
  .process-node-4 { left: 4%; bottom: 5%; }
  .process-node-5 { right: 4%; bottom: 5%; }
  .process-node-6 { right: 4%; bottom: 21%; }
  .process-node-7 { right: 4%; top: 21%; }
  .process-node-8 { right: 4%; top: 5%; }

  .process-detail {
    height: auto;
    grid-template-rows: none;
    padding: 24px;
  }

  .process-detail-media {
    height: 190px;
    margin-bottom: 16px;
  }

  .inspection-grid,
  .inspection-evidence-board,
  .parameter-grid,
  .snap-advantages-grid,
  .connector-models-grid {
    grid-template-columns: 1fr;
  }

  .connector-model-media img {
    height: 220px;
  }

  .inspection-evidence-card--main img,
  .inspection-evidence-card img {
    height: 210px;
  }

  .inspection-evidence-duo {
    height: 210px;
  }

  .inspection-evidence-duo img {
    height: 210px;
  }

  .inspection-evidence-card--ng {
    grid-template-rows: 210px minmax(0, auto);
  }

  .inspection-submodule {
    margin-top: 28px;
    padding: 12px;
  }

  .basket-ccd-module {
    margin-top: 36px;
  }

  .basket-ccd-heading h3 {
    font-size: 24px;
  }

  .basket-ccd-grid {
    grid-template-columns: 1fr;
  }

  .basket-ccd-card img {
    height: 240px;
  }

  .basket-ccd-params {
    max-width: none;
  }

  .basket-ccd-logic {
    max-width: none;
  }

  .basket-ccd-logic {
    padding: 8px 10px;
  }

  .plc-pipeline {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .plc-step {
    min-height: 48px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .plc-step::after {
    right: -9px;
    width: 8px;
  }

  .connector-cta-section {
    margin-bottom: 80px;
    padding: 30px;
    align-items: flex-start;
    flex-direction: column;
  }
}

  @media (max-width: 768px) {
    .connector-page .connector-hero,
    .snap-page .connector-hero,
    .winding-page .connector-hero,
    .connector-auto-page .connector-hero,
    .assembly-line-page .connector-hero,
    .cut-strip-page .connector-hero {
      min-height: 60vh;
      max-height: 65vh;
      padding: 14px 18px 24px;
    }

    .connector-hero-grid,
    .connector-overview-grid,
    .process-control,
    .parameter-grid,
    .snap-features-section,
    .line-hero-metrics,
    .line-hero-actions {
      grid-template-columns: 1fr !important;
    }

    .connector-section {
      padding: 56px 0;
    }

    .connector-section-heading h2 {
      font-size: clamp(25px, 7vw, 34px);
    }

    .connector-section-heading p,
    .connector-material-card p,
    .snap-component-body p,
    .parameter-item span {
      font-size: 14px;
      line-height: 1.6;
    }

    .line-hero-actions .btn,
    .connector-page .btn,
    .snap-page .btn,
    .winding-page .btn,
    .connector-auto-page .btn,
    .assembly-line-page .btn,
    .cut-strip-page .btn {
      min-height: 44px;
      width: 100%;
    }

    .connector-material-card,
    .process-control,
    .parameter-item,
    .snap-component-card {
      width: 100%;
    }
  }
