.page-products {
  --pp-rule: rgba(143, 163, 150, .26);
  --pp-hover: rgba(198, 242, 78, .09);
  --pp-soft: rgba(242, 237, 228, .82);
  background: var(--ink);
  color: var(--cream);
}

/* ---------- 面包屑 ---------- */
.page-products .breadcrumbs {
  padding-top: clamp(16px, 2.4vw, 30px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ---------- 首屏 ---------- */
.page-products .cat-hero {
  padding: clamp(30px, 4.4vw, 64px) 0 clamp(40px, 6vw, 96px);
  border-bottom: 2px solid var(--pp-rule);
  background:
    radial-gradient(120% 90% at 88% 0%, rgba(198, 242, 78, .07) 0%, rgba(11, 19, 16, 0) 62%),
    linear-gradient(180deg, rgba(16, 35, 28, .95) 0%, rgba(11, 19, 16, 0) 100%);
}

.page-products .cat-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
}

.page-products .cat-hero-copy {
  max-width: 62ch;
}

.page-products .cat-hero-copy .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--lime);
  margin: 0 0 14px;
}

.page-products .cat-hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(30px, 5.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--cream);
}

.page-products .cat-hero-lead {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.85;
  color: var(--pp-soft);
  max-width: 56ch;
}

.page-products .cat-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ---------- 首屏数据格 ---------- */
.page-products .hero-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--pp-rule);
  border: 2px solid var(--pp-rule);
  box-shadow: var(--dark-shadow);
}

.page-products .hero-facts li {
  background: var(--deep-2);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.page-products .fact-num {
  font-family: var(--font-mono);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -.02em;
}

.page-products .fact-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--stone);
  letter-spacing: .02em;
}

/* ---------- 模块区 ---------- */
.page-products .cat-mods {
  padding: clamp(44px, 6.5vw, 100px) 0;
}

.page-products .mod-grid {
  list-style: none;
  margin: clamp(28px, 4vw, 52px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.page-products .mod-card {
  background: var(--deep-2);
  border: 2px solid var(--pp-rule);
  box-shadow: var(--dark-shadow);
  padding: clamp(20px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  scroll-margin-top: 120px;
  transition: transform .18s ease, border-color .18s ease;
}

.page-products .mod-card:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 242, 78, .42);
}

.page-products .mod-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--pp-rule);
}

.page-products .mod-num {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--lime);
}

.page-products .mod-title {
  margin: 0;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.36;
  letter-spacing: -.01em;
  font-weight: 800;
  color: var(--cream);
}

.page-products .mod-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--pp-soft);
  max-width: 52ch;
}

.page-products .mod-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--stone);
}

.page-products .mod-list li {
  position: relative;
  padding-left: 18px;
}

.page-products .mod-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 9px;
  height: 2px;
  background: var(--lime);
}

.page-products .mod-card .media-frame {
  margin: auto 0 0;
  border: 2px solid var(--pp-rule);
}

.page-products .mod-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--deep);
}

/* ---------- 规格表 ---------- */
.page-products .cat-specs {
  padding: clamp(44px, 6.5vw, 100px) 0;
  background: var(--deep);
  border-top: 2px solid var(--pp-rule);
  border-bottom: 2px solid var(--pp-rule);
}

.page-products .spec-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cream);
}

.page-products .spec-table caption {
  caption-side: top;
  text-align: left;
  padding: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--stone);
}

.page-products .spec-table th,
.page-products .spec-table td {
  border: 1px solid var(--pp-rule);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.page-products .spec-table thead th {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
  background: rgba(11, 19, 16, .62);
}

.page-products .spec-table tbody td:first-child {
  color: var(--lime);
  white-space: nowrap;
}

.page-products .spec-table tbody tr {
  transition: background .14s ease;
}

.page-products .spec-table tbody tr:hover {
  background: var(--pp-hover);
}

/* ---------- 下一步 ---------- */
.page-products .cat-next {
  padding: clamp(44px, 6.5vw, 100px) 0 clamp(56px, 8vw, 128px);
}

.page-products .next-grid {
  list-style: none;
  margin: clamp(26px, 3.6vw, 48px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
  background: var(--pp-rule);
  border: 2px solid var(--pp-rule);
}

.page-products .next-card {
  display: flex;
  flex-direction: column;
  gap: 9px;
  height: 100%;
  padding: 24px 20px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  transition: background .16s ease;
}

.page-products .next-card:hover {
  background: var(--deep-2);
}

.page-products .next-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
}

.page-products .next-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.page-products .next-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--stone);
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-products .next-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-products .cat-hero-inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
  .page-products .hero-facts {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-products .mod-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .page-products .mod-card--wide {
    grid-column: span 7;
  }
  .page-products .mod-card--narrow {
    grid-column: span 5;
  }
  .page-products .next-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .page-products .hero-facts {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-products .cat-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .mod-card,
  .page-products .spec-table tbody tr,
  .page-products .next-card {
    transition: none;
  }
  .page-products .mod-card:hover {
    transform: none;
  }
}
<<<END>>>
