/* ============================================================
   page-products · 内容产品与工具
   ============================================================ */

.page-products {
  --pp-shadow: 0 1px 0 rgba(10, 20, 24, .04), 0 14px 34px rgba(6, 42, 51, .07);
  --pp-shadow-deep: 0 18px 44px rgba(6, 42, 51, .16);
  display: block;
}

/* ---------- 首屏 ---------- */

.page-products .products-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(20px, 3vw, 34px) clamp(52px, 8vw, 104px);
  background:
    radial-gradient(115% 85% at 90% 4%, rgba(27, 79, 216, .38), transparent 62%),
    radial-gradient(80% 70% at 6% 96%, rgba(57, 230, 122, .16), transparent 60%),
    linear-gradient(158deg, var(--c-lake) 0%, var(--c-night) 62%, #06222a 100%);
  color: var(--c-fog);
}

.page-products .products-hero::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -22%;
  height: 66%;
  background: linear-gradient(96deg, rgba(57, 230, 122, .2), rgba(27, 79, 216, .06) 62%, transparent);
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

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

.page-products .products-hero__grid {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
  margin-top: clamp(22px, 3.4vw, 42px);
}

.page-products .products-hero__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: var(--fs-display);
  line-height: .96;
  letter-spacing: -.035em;
  color: var(--c-paper);
}

.page-products .products-hero__title span {
  display: block;
  margin-top: clamp(12px, 1.6vw, 20px);
  font-size: clamp(17px, 2.2vw, 25px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .01em;
  color: var(--fog-64);
  max-width: 24em;
}

.page-products .products-hero__lead {
  margin: clamp(18px, 2.4vw, 26px) 0 0;
  max-width: 40em;
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--fog-86);
}

.page-products .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(20px, 3vw, 42px);
  margin: clamp(24px, 3vw, 38px) 0 0;
  padding: clamp(16px, 2vw, 22px) 0 0;
  list-style: none;
  border-top: 1px solid var(--fog-16);
}

.page-products .hero-facts li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-products .hero-facts .k {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--c-amber);
  letter-spacing: -.02em;
}

.page-products .hero-facts .v {
  font-size: 14px;
  color: var(--fog-64);
}

.page-products .products-hero__media {
  position: relative;
  margin: 0;
  border: 1px solid var(--fog-16);
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  background: rgba(6, 42, 51, .5);
}

.page-products .products-hero__media .media__caption {
  padding: 10px 14px 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--fog-64);
  background: rgba(6, 42, 51, .78);
}

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

/* ---------- 两层外壳：左侧索引 + 右侧内容 ---------- */

.page-products .products-shell {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
  padding-block: clamp(38px, 5.6vw, 74px);
  display: grid;
  gap: clamp(30px, 4vw, 52px);
}

@media (min-width: 1060px) {
  .page-products .products-shell {
    grid-template-columns: 232px minmax(0, 1fr);
    align-items: start;
    gap: clamp(44px, 5.4vw, 88px);
  }
}

.page-products .products-index {
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, rgba(6, 42, 51, .96), rgba(11, 60, 73, .92));
  border: 1px solid var(--c-hair);
  border-radius: var(--r);
  color: var(--c-fog);
}

.page-products .products-index__title {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: var(--fs-eyebrow);
  letter-spacing: .16em;
  color: var(--c-turf);
}

.page-products .products-index__list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0 0 6px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}

.page-products .products-index__list > li {
  flex: 0 0 auto;
}

.page-products .products-index__link {
  display: block;
  padding: 7px 12px;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
  color: var(--fog-64);
  border: 1px solid var(--fog-16);
  border-radius: var(--r);
  transition: color .24s ease, border-color .24s ease, background-color .24s ease;
}

.page-products .products-index__link:hover,
.page-products .products-index__link:focus-visible {
  color: var(--c-paper);
  border-color: var(--c-turf);
  background: rgba(57, 230, 122, .12);
  outline: none;
}

.page-products .products-index__link[aria-current="true"] {
  color: var(--c-turf-ink);
  background: var(--c-turf);
  border-color: var(--c-turf);
}

.page-products .products-index__note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--fog-16);
  font-size: 13px;
  line-height: 1.65;
  color: var(--fog-64);
}

@media (min-width: 1060px) {
  .page-products .products-index {
    position: sticky;
    top: 92px;
    padding: 20px;
  }
  .page-products .products-index__list {
    display: block;
    overflow: visible;
    padding-bottom: 0;
  }
  .page-products .products-index__list > li + li {
    margin-top: 6px;
  }
  .page-products .products-index__link {
    border-color: transparent;
    padding: 8px 10px;
  }
}

/* ---------- 内容区块通用 ---------- */

.page-products .products-body > .psection + .psection {
  margin-top: clamp(38px, 5.4vw, 72px);
  padding-top: clamp(38px, 5.4vw, 72px);
  border-top: 1px solid var(--ink-08);
}

.page-products .psection__head {
  max-width: 52rem;
}

.page-products .psection__title {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.14;
  letter-spacing: -.025em;
  color: var(--c-ink);
}

.page-products .psection__title--sm {
  font-size: clamp(22px, 2.6vw, 30px);
}

.page-products .psection__note {
  margin: 14px 0 0;
  max-width: 44rem;
  font-size: var(--fs-body);
  line-height: 1.78;
  color: var(--ink-78);
}

.page-products .products-media {
  margin: clamp(22px, 3vw, 34px) 0 0;
  border: 1px solid var(--ink-08);
  background: var(--c-mist);
}

.page-products .products-media .media__caption {
  padding: 10px 14px 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-62);
  background: var(--c-paper);
  border-top: 1px solid var(--ink-08);
}

/* ---------- 01 工具矩阵 ---------- */

.page-products .tools-tree {
  position: relative;
  margin-top: clamp(26px, 3.4vw, 40px);
}

.page-products .tools-tree__root {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 20px;
  background: linear-gradient(140deg, var(--c-lake), var(--c-night));
  border-left: 4px solid var(--c-turf);
  border-radius: var(--r);
  box-shadow: var(--pp-shadow-deep);
}

.page-products .tools-tree__root-label {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--c-turf);
}

.page-products .tools-tree__root strong {
  font-size: 19px;
  color: var(--c-paper);
  letter-spacing: -.01em;
}

.page-products .tools-tree__root-meta {
  font-size: 13px;
  color: var(--fog-64);
}

.page-products .tools-tree__list {
  position: relative;
  margin: 0;
  padding: 20px 0 0 32px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.page-products .tools-tree__list::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(180deg, var(--c-turf), rgba(57, 230, 122, .18));
}

.page-products .tools-tree__node {
  position: relative;
}

.page-products .tools-tree__node::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 28px;
  width: 20px;
  height: 1px;
  background: rgba(57, 230, 122, .42);
}

.page-products .tools-tree__node::after {
  content: "";
  position: absolute;
  left: -25px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-turf);
  box-shadow: 0 0 0 4px rgba(57, 230, 122, .16);
}

.page-products .tools-tree__card {
  padding: 16px 18px 17px;
  background: var(--c-paper);
  border: 1px solid var(--ink-08);
  border-left: 3px solid var(--c-cobalt);
  border-radius: var(--r);
  box-shadow: var(--pp-shadow);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.page-products .tools-tree__card:hover,
.page-products .tools-tree__card:focus-within {
  transform: translateY(-2px);
  border-left-color: var(--c-turf);
  box-shadow: 0 12px 30px rgba(6, 42, 51, .12);
}

.page-products .tools-tree__no {
  margin: 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--c-cobalt);
}

.page-products .tools-tree__name {
  margin: 6px 0 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--c-ink);
}

.page-products .tools-tree__desc {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink-78);
}

.page-products .tools-tree__fields {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px dashed var(--ink-16);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-48);
  transition: color .24s ease;
}

.page-products .tools-tree__card:hover .tools-tree__fields,
.page-products .tools-tree__card:focus-within .tools-tree__fields {
  color: var(--ink-78);
}

@media (min-width: 820px) {
  .page-products .tools-tree__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 36px;
  }
  .page-products .tools-tree__list::before {
    left: 13px;
  }
  .page-products .tools-tree__node::before {
    left: -23px;
    width: 23px;
  }
  .page-products .tools-tree__node::after {
    left: -28px;
  }
  .page-products .tools-tree__node:nth-child(1) { grid-column: 1; }
  .page-products .tools-tree__node:nth-child(2) { grid-column: 2; }
  .page-products .tools-tree__node:nth-child(3) { grid-column: 1; }
  .page-products .tools-tree__node:nth-child(4) { grid-column: 2; }
  .page-products .tools-tree__node:nth-child(5) { grid-column: 1 / -1; }
}

/* ---------- 02 主场地图 ---------- */

.page-products .maplab {
  margin-top: clamp(24px, 3.2vw, 36px);
}

.page-products .maplab__bar {
  position: sticky;
  top: 72px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--r);
  background: rgba(6, 42, 51, .9);
  border: 1px solid var(--c-hair);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-products .maplab__bar-label {
  margin-right: 4px;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--c-turf);
}

.page-products .maplab__bar .chip {
  font-size: 13px;
}

.page-products .maplab__viewport {
  margin-top: 14px;
  position: relative;
}

.page-products .maplab__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 18px;
  width: 48px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(242, 246, 247, 0), var(--c-mist));
}

.page-products .venue-strip {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 2px 4px 18px;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--c-cobalt) rgba(10, 20, 24, .08);
}

.page-products .venue-strip > .venue {
  flex: 0 0 min(78vw, 262px);
  scroll-snap-align: start;
}

.page-products .venue {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 18px;
  background: var(--c-paper);
  border: 1px solid var(--ink-08);
  border-top: 3px solid var(--c-cobalt);
  border-radius: var(--r);
  box-shadow: var(--pp-shadow);
}

.page-products .venue__code {
  margin: 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--c-ink);
}

.page-products .venue__area {
  margin: 0;
  font-size: 13px;
  color: var(--ink-48);
}

.page-products .venue__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.page-products .venue__note {
  margin: auto 0 0;
  padding-top: 10px;
  border-top: 1px dashed var(--ink-16);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-62);
}

.page-products .maplab__hint {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-48);
}

/* ---------- 03 赛果面板 ---------- */

.page-products .board-wrap {
  margin-top: clamp(22px, 3vw, 32px);
  padding: clamp(16px, 2.2vw, 24px);
  background: var(--c-paper);
  border: 1px solid var(--ink-08);
  border-radius: var(--r);
  box-shadow: var(--pp-shadow);
  overflow-x: auto;
}

.page-products .board-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 15px;
}

.page-products .board-table caption {
  padding: 0 0 12px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--ink-62);
}

.page-products .board-table thead th {
  padding: 10px 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink-62);
  background: var(--c-mist);
  border-bottom: 1px solid var(--c-hair);
}

.page-products .board-table tbody th,
.page-products .board-table tbody td {
  padding: 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--ink-08);
  color: var(--ink-78);
}

.page-products .board-table tbody th {
  font-weight: 700;
  color: var(--c-ink);
  white-space: nowrap;
}

.page-products .board-table tbody tr:last-child th,
.page-products .board-table tbody tr:last-child td {
  border-bottom: 0;
}

.page-products .board-table tbody tr:hover {
  background: rgba(27, 79, 216, .04);
}

.page-products .board-wrap__note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-62);
}

/* ---------- 04 球队资料与薪资结构 ---------- */

.page-products .squad-grid {
  display: grid;
  gap: 14px;
  margin-top: clamp(22px, 3vw, 34px);
}

@media (min-width: 760px) {
  .page-products .squad-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-products .squad-layer {
  padding: 18px 18px 20px;
  background: var(--c-paper);
  border: 1px solid var(--ink-08);
  border-radius: var(--r);
  box-shadow: var(--pp-shadow);
  position: relative;
  overflow: hidden;
}

.page-products .squad-layer::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(57, 230, 122, .14);
  pointer-events: none;
}

.page-products .squad-layer:nth-child(2)::after {
  background: rgba(27, 79, 216, .12);
}

.page-products .squad-layer:nth-child(3)::after {
  background: rgba(255, 176, 46, .18);
}

.page-products .squad-layer__no {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--c-cobalt);
}

.page-products .squad-layer__title {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--c-ink);
}

.page-products .squad-layer__list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.page-products .squad-layer__list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-78);
}

.page-products .squad-layer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-turf);
}

.page-products .caution {
  margin-top: clamp(18px, 2.4vw, 26px);
  padding: 16px 18px 18px;
  border-left: 3px solid var(--c-amber);
  background: rgba(255, 176, 46, .1);
  border-radius: var(--r);
}

.page-products .caution__label {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: .16em;
  color: #7a5200;
}

.page-products .caution__text {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-78);
}

/* ---------- 05 控球率与补时时长 ---------- */

.page-products .metric-grid {
  display: grid;
  gap: 14px;
  margin-top: clamp(22px, 3vw, 34px);
}

@media (min-width: 760px) {
  .page-products .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.4vw, 28px);
  }
}

.page-products .metric-card {
  padding: 20px 20px 22px;
  border-radius: var(--r);
  border: 1px solid var(--c-hair);
  background: linear-gradient(155deg, var(--c-lake), var(--c-night));
  color: var(--c-fog);
  box-shadow: var(--pp-shadow-deep);
}

.page-products .metric-card__k {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--c-turf);
}

.page-products .metric-card__def {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--fog-86);
}

.page-products .metric-card__spec {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--fog-16);
  display: grid;
  gap: 10px;
}

.page-products .metric-card__spec > div {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: baseline;
}

.page-products .metric-card__spec dt {
  flex: 0 0 5.6em;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--fog-64);
}

.page-products .metric-card__spec dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-paper);
}

.page-products .metric-card__spec dd.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  color: var(--c-amber);
  letter-spacing: .02em;
}

.page-products .read-order {
  margin: clamp(20px, 2.8vw, 30px) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: ro;
  display: grid;
  gap: 10px;
}

.page-products .read-order li {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: baseline;
  padding: 12px 16px;
  background: var(--c-paper);
  border: 1px solid var(--ink-08);
  border-radius: var(--r);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-78);
}

.page-products .read-order__step {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--c-cobalt);
}

/* ---------- 06 适配与使用建议 ---------- */

.page-products .fit-grid {
  display: grid;
  gap: 14px;
  margin-top: clamp(22px, 3vw, 34px);
}

@media (min-width: 700px) {
  .page-products .fit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-products .fit-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 20px;
  background: var(--c-paper);
  border: 1px solid var(--ink-08);
  border-radius: var(--r);
  box-shadow: var(--pp-shadow);
}

.page-products .fit-card--lead {
  border-top: 3px solid var(--c-turf);
}

.page-products .fit-card__device {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--c-cobalt);
}

.page-products .fit-card__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-78);
}

.page-products .fit-card__tip {
  margin: auto 0 0;
  padding-top: 10px;
  border-top: 1px dashed var(--ink-16);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-62);
}

/* ---------- 07 版本演进 ---------- */

.page-products .versions {
  margin: clamp(24px, 3.2vw, 38px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 2px;
  border-left: 1px solid var(--ink-16);
}

.page-products .versions__item {
  position: relative;
  padding: 18px 18px 20px 26px;
  background: var(--c-mist);
  border-radius: 0 var(--r) var(--r) 0;
}

.page-products .versions__item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 26px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--c-paper);
  border: 2px solid var(--c-cobalt);
}

.page-products .versions__item--current {
  background: linear-gradient(140deg, rgba(57, 230, 122, .14), rgba(27, 79, 216, .06));
}

.page-products .versions__item--current::before {
  background: var(--c-turf);
  border-color: var(--c-turf);
  box-shadow: 0 0 0 4px rgba(57, 230, 122, .2);
}

.page-products .versions__tag {
  margin: 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--c-cobalt);
}

.page-products .versions__item--current .versions__tag {
  color: var(--c-turf-ink);
}

.page-products .versions__title {
  margin: 6px 0 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--c-ink);
}

.page-products .versions__desc {
  margin: 8px 0 0;
  max-width: 42rem;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-78);
}

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

.page-products .versions__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-62);
}

.page-products .versions__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 1px;
  background: var(--c-cobalt-soft);
}

/* ---------- 页尾延伸入口 ---------- */

.page-products .psection--tail {
  margin-top: clamp(38px, 5.4vw, 72px);
  padding-top: clamp(30px, 4vw, 52px);
  border-top: 1px solid var(--ink-08);
}

.page-products .more-list {
  margin-top: 18px;
}

.page-products .more-list__item {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-08);
}

.page-products .more-list__label {
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--c-cobalt);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .24s ease, color .24s ease;
}

.page-products .more-list__label:hover,
.page-products .more-list__label:focus-visible {
  color: var(--c-lake);
  border-bottom-color: var(--c-turf);
  outline: none;
}

.page-products .more-list__meta {
  flex: 1 1 18rem;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-62);
}

/* ---------- 动效退化 ---------- */

@media (prefers-reduced-motion: reduce) {
  .page-products .tools-tree__card,
  .page-products .products-index__link,
  .page-products .more-list__label,
  .page-products .tools-tree__fields {
    transition: none;
  }
  .page-products .tools-tree__card:hover,
  .page-products .tools-tree__card:focus-within {
    transform: none;
  }
}
<<<END>>>
