.page-products {
  --pc-line: rgba(242, 237, 228, 0.13);
  --pc-line-strong: rgba(242, 237, 228, 0.28);
  --pc-card: #1A1D22;
  background-color: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: clip;
}

/* ---------- 首屏 ---------- */
.page-products .hero {
  position: relative;
  padding-block: clamp(26px, 5vw, 56px) clamp(38px, 6vw, 84px);
  border-bottom: 1px solid var(--pc-line);
  overflow: hidden;
}

.page-products .hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -55%;
  width: min(52vw, 620px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(34, 225, 214, 0.14), transparent 68%);
  pointer-events: none;
}

.page-products .hero .container {
  position: relative;
  z-index: 1;
}

.page-products .hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 48px);
  margin-top: clamp(22px, 4vw, 44px);
}

.page-products .hero__lead h1 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(30px, 7.2vw, 60px);
  margin: 0 0 clamp(16px, 2.4vw, 24px);
  text-wrap: balance;
}

.page-products .hero__text {
  font-size: clamp(15px, 1.6vw, 17.5px);
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0;
}

.page-products .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(22px, 3vw, 32px);
}

.page-products .hero__aside {
  border-top: 1px solid var(--pc-line-strong);
  padding-top: 16px;
}

.page-products .hero__aside-title {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  margin: 0 0 12px;
}

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

.page-products .hero__index a {
  display: block;
  padding: 9px 0 9px 16px;
  position: relative;
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 14.5px;
  line-height: 1.5;
  border-bottom: 1px solid var(--pc-line);
  transition: color 160ms var(--ease), padding-left 160ms var(--ease);
}

.page-products .hero__index a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border: 1px solid var(--neon);
  transform: rotate(45deg);
  transition: background-color 160ms var(--ease);
}

.page-products .hero__index a:hover,
.page-products .hero__index a:focus-visible {
  color: var(--text);
  padding-left: 22px;
}

.page-products .hero__index a:hover::before,
.page-products .hero__index a:focus-visible::before {
  background-color: var(--neon);
}

/* ---------- 工具货架 ---------- */
.page-products .shelf-section {
  padding-block: clamp(44px, 7vw, 88px);
  overflow: hidden;
}

.page-products .shelf-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.page-products .shelf-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 4.6vw, 40px);
  line-height: 1.15;
  margin: 6px 0 0;
}

.page-products .shelf-head__note {
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  max-width: 46ch;
}

.page-products .container--shelf {
  padding-inline: 0;
}

.page-products .shelf {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(232px, 76vw);
  gap: 14px;
  overflow-x: auto;
  padding: 4px clamp(18px, 4vw, 56px) 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.page-products .tool {
  scroll-snap-align: start;
  background: var(--pc-card);
  border: 1px solid var(--pc-line);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: border-color 180ms var(--ease), transform 180ms var(--ease);
}

.page-products .tool::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--violet) 55%, var(--amber));
  opacity: 0.35;
  transition: opacity 180ms var(--ease);
}

.page-products .tool:hover,
.page-products .tool:focus-within {
  border-color: var(--pc-line-strong);
  transform: translateY(-2px);
}

.page-products .tool:hover::after,
.page-products .tool:focus-within::after {
  opacity: 1;
}

.page-products .tool__ico {
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(34, 225, 214, 0.35);
  border-radius: var(--radius);
}

.page-products .tool--b .tool__ico { color: var(--violet); border-color: rgba(139, 92, 246, 0.38); }
.page-products .tool--c .tool__ico { color: var(--moss); border-color: rgba(127, 163, 123, 0.42); }
.page-products .tool--d .tool__ico { color: var(--steel); border-color: rgba(91, 127, 166, 0.45); }
.page-products .tool--e .tool__ico { color: var(--amber); border-color: rgba(255, 122, 47, 0.4); }

.page-products .tool__name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin: 0;
}

.page-products .tool__line {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-dim);
  flex: 1;
}

.page-products .tool__meta {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}

/* ---------- 通用分栏 ---------- */
.page-products .split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.page-products .split__body h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: clamp(23px, 4.4vw, 38px);
  line-height: 1.15;
  margin: 0 0 clamp(14px, 2vw, 22px);
}

.page-products .split__body .eyebrow {
  margin-bottom: 10px;
}

.page-products .sec-head {
  margin-bottom: clamp(26px, 4vw, 46px);
}

.page-products .sec-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 4.6vw, 40px);
  line-height: 1.15;
  margin: 6px 0 0;
}

.page-products .prose {
  color: var(--text-dim);
}

.page-products .prose p {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.85;
}

.page-products .prose p:last-child {
  margin-bottom: 0;
}

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

.page-products .feat li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.8;
}

.page-products .feat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--neon);
}

.page-products .feat strong {
  color: var(--text);
  font-weight: 700;
}

.page-products .cta-row,
.page-products .trouble__links,
.page-products .text-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  margin: 22px 0 0;
}

.page-products .dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--amber);
  color: #14171B;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid var(--amber);
  transition: filter 160ms var(--ease), transform 160ms var(--ease);
}

.page-products .dl-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.page-products .text-link {
  font-family: var(--font-ui);
  font-size: 14.5px;
  color: var(--neon);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 225, 214, 0.4);
  padding-bottom: 2px;
  transition: border-color 160ms var(--ease), color 160ms var(--ease);
}

.page-products .text-link:hover {
  border-color: var(--neon);
}

/* ---------- 开服日历 ---------- */
.page-products .cal-block {
  margin-top: 26px;
  border: 1px solid var(--pc-line);
  background: rgba(26, 29, 34, 0.7);
  border-radius: var(--radius);
  padding: 16px;
}

.page-products .cal-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.page-products .cal-head__m {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--neon);
}

.page-products .cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-mute);
}

.page-products .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  transform: rotate(45deg);
  vertical-align: middle;
}

.page-products .dot--neon { background: var(--neon); }
.page-products .dot--violet { background: var(--violet); }
.page-products .dot--amber { background: var(--amber); }

.page-products .cal-wrap {
  overflow-x: auto;
}

.page-products .cal {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  min-width: 300px;
}

.page-products .cal__wd {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  text-align: center;
  padding-bottom: 4px;
}

.page-products .cal__day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-mute);
  background: rgba(242, 237, 228, 0.03);
}

.page-products .cal__day--neon,
.page-products .cal__day--violet,
.page-products .cal__day--amber {
  color: var(--text);
}

.page-products .cal__day--neon { border-color: var(--neon); box-shadow: inset 0 0 0 1px rgba(34, 225, 214, 0.18); }
.page-products .cal__day--violet { border-color: var(--violet); }
.page-products .cal__day--amber { border-color: var(--amber); }

.page-products .cal__tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: min(210px, 62vw);
  padding: 8px 10px;
  background: var(--ink-3);
  border: 1px solid var(--pc-line-strong);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.6;
  color: var(--text);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 3;
  transition: opacity 160ms var(--ease), transform 160ms var(--ease), visibility 160ms;
}

.page-products .cal__day:hover .cal__tip,
.page-products .cal__day:focus-visible .cal__tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.page-products .cal__day:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

/* ---------- 步骤列表 ---------- */
.page-products .steps {
  list-style: none;
  counter-reset: st;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-products .steps li {
  counter-increment: st;
  position: relative;
  padding-left: 34px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-dim);
}

.page-products .steps li::before {
  content: counter(st, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neon);
  letter-spacing: 0.04em;
}

.page-products .steps--wide {
  grid-template-columns: 1fr;
}

/* ---------- 配置读数 ---------- */
.page-products .readout {
  margin-top: 24px;
  border: 1px solid var(--pc-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-products .readout__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(11, 13, 16, 0.4);
  border-bottom: 1px solid var(--pc-line);
}

.page-products .readout__row:last-child {
  border-bottom: 0;
}

.page-products .readout__key {
  font-family: var(--font-ui);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
}

.page-products .readout__val {
  font-size: 15px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.page-products .readout__verdict {
  font-family: var(--font-ui);
  font-size: 12px;
  padding: 3px 9px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  justify-self: start;
}

.page-products .readout__verdict--ok { color: var(--neon); }
.page-products .readout__verdict--warn { color: var(--amber); }

/* ---------- 版本分支 ---------- */
.page-products .branch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.page-products .branch__item {
  border: 1px solid var(--pc-line);
  border-left-width: 3px;
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(26, 29, 34, 0.6);
}

.page-products .branch__item--formal { border-left-color: var(--neon); }
.page-products .branch__item--early { border-left-color: var(--violet); }
.page-products .branch__item--remake { border-left-color: var(--clay); }

.page-products .branch__item h3 {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

.page-products .branch__no {
  font-size: 18px;
  color: var(--neon);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.page-products .branch__item--early .branch__no { color: var(--violet); }
.page-products .branch__item--remake .branch__no { color: var(--clay); }

.page-products .branch__item p:last-child {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
}

/* ---------- 评分变化 ---------- */
.page-products .delta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid var(--pc-line);
  border-radius: var(--radius);
  background: rgba(11, 13, 16, 0.45);
}

.page-products .delta__side {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 150px;
}

.page-products .delta__ver {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}

.page-products .delta .score {
  font-size: clamp(38px, 8vw, 58px);
  line-height: 1;
}

.page-products .delta .score--sm {
  color: var(--amber);
}

.page-products .delta__note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 26ch;
}

.page-products .delta__arrow {
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--amber);
}

/* ---------- 安装 ---------- */
.page-products .platform-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.page-products .platform-jump a {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--text-dim);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--pc-line-strong);
  border-radius: var(--radius);
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}

.page-products .platform-jump a:hover,
.page-products .platform-jump a:focus-visible {
  color: var(--neon);
  border-color: var(--neon);
}

.page-products .platforms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-products .platform {
  border: 1px solid var(--pc-line);
  border-radius: var(--radius);
  padding: 22px 20px;
  background: rgba(26, 29, 34, 0.55);
  scroll-margin-top: 72px;
}

.page-products .platform__mark {
  display: block;
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
}

.page-products .platform__mark--wing {
  border: 1px solid var(--neon);
  border-right: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
}

.page-products .platform__mark--arc {
  border: 1px solid var(--violet);
  border-radius: 50% 50% 0 0;
  border-bottom-color: transparent;
}

.page-products .platform__mark--grid {
  background:
    linear-gradient(var(--moss), var(--moss)) 0 0 / 11px 11px no-repeat,
    linear-gradient(var(--moss), var(--moss)) 15px 15px / 11px 11px no-repeat;
  border: 1px solid rgba(127, 163, 123, 0.4);
}

.page-products .platform__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.01em;
  margin: 0 0 4px;
}

.page-products .platform__meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}

.page-products .platform .steps {
  margin-top: 16px;
}

.page-products .trouble {
  margin-top: clamp(30px, 4vw, 52px);
  border-top: 1px solid var(--pc-line-strong);
  padding-top: clamp(22px, 3vw, 34px);
}

.page-products .trouble__title {
  font-family: var(--font-ui);
  font-size: clamp(17px, 2.6vw, 21px);
  font-weight: 700;
  margin: 0;
}

/* ---------- 延伸入口 ---------- */
.page-products .next {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  border-top: 1px solid var(--pc-line);
}

.page-products .next__item a {
  display: grid;
  gap: 6px;
  padding: 20px 4px 20px 18px;
  position: relative;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--pc-line);
  transition: background-color 180ms var(--ease);
}

.page-products .next__item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border: 1px solid var(--violet);
  transform: rotate(45deg);
  transition: background-color 180ms var(--ease);
}

.page-products .next__item a:hover,
.page-products .next__item a:focus-visible {
  background-color: rgba(242, 237, 228, 0.04);
}

.page-products .next__item a:hover::before,
.page-products .next__item a:focus-visible::before {
  background-color: var(--violet);
}

.page-products .next__k {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--text);
}

.page-products .next__d {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mute);
}

/* ---------- 焦点可见性 ---------- */
.page-products .btn:focus-visible,
.page-products .dl-btn:focus-visible,
.page-products .text-link:focus-visible,
.page-products .tool a:focus-visible,
.page-products .platform-jump a:focus-visible,
.page-products .hero__index a:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-products .shelf-head {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: end;
    gap: 28px;
  }

  .page-products .readout__row {
    grid-template-columns: 88px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
  }

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

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

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

  .page-products .next__item a {
    border-bottom: 0;
    border-right: 1px solid var(--pc-line);
    padding-inline: 18px 16px;
  }

  .page-products .next__item:last-child a {
    border-right: 0;
  }
}

@media (min-width: 900px) {
  .page-products .hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: end;
    gap: clamp(32px, 5vw, 72px);
  }

  .page-products .split {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(30px, 4.5vw, 64px);
  }

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

  .page-products .split--reverse .split__media {
    order: -1;
  }

  .page-products .split__media {
    position: sticky;
    top: 24px;
  }

  .page-products .steps--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }
}

@media (min-width: 1000px) {
  .page-products .shelf {
    grid-auto-flow: row;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-columns: auto;
    overflow-x: visible;
    padding-inline: 0;
    padding-bottom: 4px;
  }

  .page-products .container--shelf {
    padding-inline: var(--gutter);
  }

  .page-products .tool:nth-child(1) { grid-column: span 5; min-height: 300px; }
  .page-products .tool:nth-child(2) { grid-column: span 4; min-height: 268px; }
  .page-products .tool:nth-child(3) { grid-column: span 3; min-height: 232px; }
  .page-products .tool:nth-child(4) { grid-column: span 6; min-height: 244px; }
  .page-products .tool:nth-child(5) { grid-column: span 6; min-height: 212px; }

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

  .page-products .delta__side {
    min-width: 180px;
  }
}
<<<END>>>
