.page-products {
  --p-rhythm: clamp(44px, 6.5vw, 88px);
  --p-node-rail: 44px;
  --p-gap: clamp(18px, 2.6vw, 30px);
  background: var(--c-void);
  color: var(--c-paper);
  overflow-x: clip;
}

/* ---------- 首屏 ---------- */
.page-products .p-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-line);
  background:
    linear-gradient(112deg, rgba(15, 138, 77, .34) 0%, rgba(15, 138, 77, 0) 54%),
    linear-gradient(292deg, rgba(22, 224, 207, .13) 0%, rgba(22, 224, 207, 0) 42%),
    var(--c-void);
}

.page-products .p-hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -150px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(22, 224, 207, .2);
  pointer-events: none;
}

.page-products .p-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--c-pitch), var(--c-cyan) 42%, transparent 88%);
  pointer-events: none;
}

.page-products .p-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4.4vw, 52px);
  padding: clamp(40px, 7vw, 84px) 0 clamp(36px, 5.6vw, 64px);
}

.page-products .p-hero__copy .annotation {
  display: block;
  margin: 0 0 18px;
  color: var(--c-turf);
}

.page-products .p-hero__copy .display {
  margin: 0;
  font-size: clamp(32px, 6.4vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 14em;
}

.page-products .p-hero__copy .lead {
  margin: 20px 0 0;
  max-width: 34em;
  color: var(--c-soft);
}

.page-products .p-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-products .p-hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}

.page-products .p-stat {
  display: grid;
  gap: 6px;
  padding: 18px 16px;
  background: var(--c-night);
}

.page-products .p-stat__num {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  color: var(--c-cyan);
}

.page-products .p-stat__unit {
  font-size: .5em;
  margin-left: .1em;
}

.page-products .p-stat__label {
  font-size: 13px;
  color: var(--c-muted);
  letter-spacing: .04em;
}

/* ---------- 安装入口 ---------- */
.page-products .p-install {
  display: grid;
  gap: clamp(26px, 3.6vw, 44px);
  align-items: start;
}

.page-products .p-install__copy .section__title {
  margin: 8px 0 16px;
}

.page-products .p-install__copy p {
  margin: 0 0 14px;
  color: var(--c-soft);
  max-width: 34em;
}

.page-products .p-specs {
  list-style: none;
  margin: 26px 0 20px;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}

.page-products .p-specs li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 14px 16px;
  background: var(--c-night);
}

.page-products .p-specs__k {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--c-muted);
}

.page-products .p-specs__v {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-paper);
}

.page-products .p-specs__v.data {
  color: var(--c-cyan);
}

.page-products .p-install__shot {
  margin: 0;
}

.page-products .p-install__shot img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
  border: 1px solid var(--c-line);
}

/* ---------- 功能路径 ---------- */
.page-products .section__head {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.page-products .section__head .section__title {
  margin: 8px 0 14px;
}

.page-products .section__head .lead {
  margin: 0;
  max-width: 46em;
  color: var(--c-soft);
}

.page-products .path-tree {
  display: grid;
  gap: clamp(32px, 5vw, 60px);
}

.page-products .path-node {
  display: grid;
  grid-template-columns: var(--p-node-rail) minmax(0, 1fr);
  gap: 14px;
  position: relative;
}

.page-products .path-node__rail {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.page-products .path-node__rail::before {
  content: "";
  position: absolute;
  top: 46px;
  bottom: calc(-1 * clamp(32px, 5vw, 60px));
  left: 50%;
  width: 0;
  border-left: 1px dashed rgba(22, 224, 207, .35);
  transform: translateX(-50%);
}

.page-products .path-node:last-child .path-node__rail::before {
  display: none;
}

.page-products .path-node__dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-void);
  background: var(--c-cyan);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.page-products .path-node__body .section__title {
  margin: 6px 0 14px;
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.25;
}

.page-products .path-node__body > p {
  margin: 0 0 20px;
  color: var(--c-soft);
  max-width: 44em;
}

.page-products .p-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-products .p-facts--loose {
  margin-top: 22px;
}

.page-products .p-facts li {
  position: relative;
  padding-left: 22px;
  color: var(--c-soft);
  font-size: 15px;
  line-height: 1.7;
}

.page-products .p-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 2px;
  background: var(--c-turf);
}

.page-products .p-figure--band {
  margin: 26px 0 0;
}

.page-products .p-figure--band img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--c-line);
}

/* ---------- 分档标签页 ---------- */
.page-products .tabset {
  margin: 0 0 26px;
  border: 1px solid var(--c-line);
  background: var(--c-night);
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
}

.page-products .tabset__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--c-line);
}

.page-products .tabset__tab {
  flex: 1 1 auto;
  padding: 13px 18px;
  border: 0;
  background: var(--c-night);
  color: var(--c-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.page-products .tabset__tab[aria-selected="true"] {
  background: var(--c-cyan);
  color: var(--c-void);
}

.page-products .tabset__tab:hover {
  color: var(--c-cyan);
}

.page-products .tabset__tab[aria-selected="true"]:hover {
  color: var(--c-void);
}

.page-products .tabset__tab:focus-visible {
  outline: 2px solid var(--c-cyan);
  outline-offset: -2px;
}

.page-products .tabset__panel {
  padding: clamp(18px, 2.6vw, 26px);
}

.page-products .tabset__panel > p {
  margin: 0 0 16px;
  color: var(--c-soft);
  max-width: 44em;
}

/* ---------- 射门统计 ---------- */
.page-products .shot-chart {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.6vw, 26px);
  background: var(--c-night);
  border-left: 3px solid var(--c-cyan);
}

.page-products .shot-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
}

.page-products .shot-row__name {
  font-size: 14px;
  color: var(--c-muted);
}

.page-products .shot-row__track {
  position: relative;
  display: block;
  height: 14px;
  background: rgba(34, 48, 58, .9);
  overflow: visible;
}

.page-products .shot-row__bar {
  display: block;
  height: 100%;
  transition: width var(--dur) var(--ease);
}

.page-products .shot-row__bar--cyan {
  background: linear-gradient(90deg, rgba(22, 224, 207, .35), var(--c-cyan));
}

.page-products .shot-row__bar--violet {
  background: linear-gradient(90deg, rgba(122, 92, 255, .35), var(--c-violet));
}

.page-products .shot-row__val {
  text-align: right;
  font-size: 22px;
  color: var(--c-paper);
}

.page-products .shot-tip {
  position: absolute;
  left: 0;
  top: -34px;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: .04em;
  white-space: nowrap;
  color: var(--c-void);
  background: var(--c-volt);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  pointer-events: none;
}

.page-products .shot-row:hover .shot-tip,
.page-products .shot-row:focus-visible .shot-tip {
  opacity: 1;
  transform: translateY(0);
}

.page-products .shot-row:focus-visible {
  outline: 2px solid var(--c-cyan);
  outline-offset: 4px;
}

.page-products .shot-chart__caption {
  margin: 0;
  font-size: 13px;
}

/* ---------- 球队资料卡 ---------- */
.page-products .p-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}

.page-products .p-card {
  display: grid;
  gap: 6px;
  padding: 20px 18px;
  background: var(--c-night);
}

.page-products .p-card__k {
  font-size: 32px;
  line-height: 1;
  color: var(--c-turf);
}

.page-products .p-card__t {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-paper);
}

.page-products .p-card__d {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-muted);
}

/* ---------- 版本刻度 ---------- */
.page-products .version-strip {
  list-style: none;
  margin: 0;
  padding: 0 0 10px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.page-products .version-strip li {
  position: relative;
  flex: 1 0 172px;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 30px 18px 22px 18px;
  border-top: 2px solid var(--c-line);
  scroll-snap-align: start;
}

.page-products .version-strip li::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: var(--c-line);
  transform: rotate(45deg);
}

.page-products .version-strip li.is-current {
  border-top-color: var(--c-volt);
}

.page-products .version-strip li.is-current::before {
  background: var(--c-volt);
}

.page-products .version-strip__num {
  font-size: 24px;
  line-height: 1;
  color: var(--c-paper);
}

.page-products .version-strip li.is-current .version-strip__num {
  color: var(--c-volt);
}

.page-products .version-strip__title {
  font-size: 15px;
  font-weight: 700;
}

.page-products .version-strip__note {
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-muted);
}

.page-products .section__note {
  margin: 26px 0 0;
  font-size: 14px;
  color: var(--c-muted);
}

.page-products .section__note .link-arrow {
  color: var(--c-cyan);
}

/* ---------- 上手流程 ---------- */
.page-products .section--steps {
  position: relative;
  background:
    linear-gradient(160deg, rgba(15, 138, 77, .9) 0%, rgba(7, 12, 16, .96) 62%),
    var(--c-void);
  border-top: 1px solid rgba(47, 191, 113, .35);
}

.page-products .p-start__head .section__title {
  margin: 8px 0 14px;
}

.page-products .p-start__head .lead {
  margin: 0 0 clamp(24px, 3.6vw, 40px);
  max-width: 42em;
  color: rgba(242, 246, 244, .82);
}

.page-products .steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-products .steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 18px 18px 16px;
  background: rgba(7, 12, 16, .62);
  border-left: 3px solid var(--c-turf);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.page-products .steps__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--c-turf);
}

.page-products .steps__body h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-paper);
}

.page-products .steps__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242, 246, 244, .76);
}

.page-products .p-start__foot {
  margin-top: clamp(28px, 4vw, 42px);
  padding-top: 24px;
  border-top: 1px dashed rgba(47, 191, 113, .4);
  display: grid;
  gap: 16px;
}

.page-products .p-start__foot p {
  margin: 0;
  font-size: 16px;
  color: rgba(242, 246, 244, .86);
}

.page-products .p-start__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- 断点 ---------- */
@media (min-width: 640px) {
  .page-products .p-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-products .p-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-products .p-start__foot {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .page-products .p-hero__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: end;
  }

  .page-products .p-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-products .p-install {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .page-products .p-install__shot img {
    max-width: none;
  }

  .page-products .path-node {
    --p-node-rail: 64px;
    grid-template-columns: var(--p-node-rail) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 38px);
  }

  .page-products .path-node__body {
    padding-right: clamp(0px, 4vw, 72px);
  }

  .page-products .p-figure--band {
    margin-top: auto;
  }
}

@media (min-width: 1180px) {
  .page-products .p-hero__inner {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  }

  .page-products .p-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .tabset__tab,
  .page-products .shot-row__bar,
  .page-products .shot-tip {
    transition: none;
  }
}
<<<END>>>
