.page-products {
  --pr-gap: clamp(18px, 3vw, 32px);
  --pr-hair: rgba(11, 27, 58, 0.14);
  --pr-hair-light: rgba(244, 239, 230, 0.13);
}

/* ---------- 首屏框景 ---------- */
.page-products .pr-hero {
  padding-top: clamp(20px, 3vw, 36px);
}

.page-products .pr-frame {
  position: relative;
  border: 1px solid var(--pr-hair);
  border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(120% 90% at 88% 12%, rgba(255, 107, 26, 0.10), transparent 58%),
    linear-gradient(140deg, rgba(11, 27, 58, 0.05), rgba(217, 164, 65, 0.08) 70%, rgba(11, 27, 58, 0.03)),
    var(--paper);
  overflow: hidden;
}

.page-products .pr-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 27, 58, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 27, 58, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: 0.7;
}

.page-products .pr-frame-ticks span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-style: solid;
  border-color: var(--flame);
  border-width: 0;
  z-index: 2;
}

.page-products .pr-frame-ticks span:nth-child(1) { top: 14px; left: 14px; border-top-width: 2px; border-left-width: 2px; }
.page-products .pr-frame-ticks span:nth-child(2) { top: 14px; right: 14px; border-top-width: 2px; border-right-width: 2px; }
.page-products .pr-frame-ticks span:nth-child(3) { bottom: 14px; left: 14px; border-bottom-width: 2px; border-left-width: 2px; }
.page-products .pr-frame-ticks span:nth-child(4) { bottom: 14px; right: 14px; border-bottom-width: 2px; border-right-width: 2px; }

.page-products .pr-frame-body {
  position: relative;
  z-index: 1;
  max-width: 44em;
}

.page-products .pr-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  margin: 10px 0 0;
  color: var(--ink);
  text-transform: none;
}

.page-products .pr-sub {
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--clay);
}

.page-products .pr-lede {
  margin-top: 22px;
  color: rgba(11, 27, 58, 0.78);
}

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

.page-products .pr-frame-score {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  background: var(--ink);
  border-left: 3px solid var(--flame);
}

.page-products .pr-score-num {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--flame);
}

.page-products .pr-score-label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--paper-70);
}

@media (min-width: 900px) {
  .page-products .pr-frame {
    padding-right: clamp(200px, 22vw, 280px);
  }
  .page-products .pr-frame-score {
    position: absolute;
    right: clamp(22px, 4vw, 48px);
    bottom: clamp(22px, 4vw, 44px);
    margin-top: 0;
  }
}

/* ---------- 通用小节 ---------- */
.page-products .pr-lede-wide {
  margin-top: 16px;
  max-width: 52em;
}

.page-products .pr-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.page-products .pr-rule {
  display: block;
  margin: clamp(32px, 5vw, 52px) 0 0;
}

/* ---------- 深色板块 ---------- */
.page-products .pr-dark {
  background: var(--ink);
  color: var(--paper);
}

.page-products .pr-dark .h-section,
.page-products .pr-dark .h-card {
  color: var(--paper);
}

.page-products .pr-dark .prose {
  color: var(--paper-70);
}

.page-products .pr-dark .eyebrow {
  color: var(--sand);
}

/* ---------- 板块总览 ---------- */
.page-products .pr-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pr-gap);
  margin-top: clamp(26px, 4vw, 42px);
}

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

.page-products .pr-board-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--pr-hair);
  background: var(--paper);
  border-top: 3px solid var(--stone);
}

.page-products .pr-board-card--fields { border-top-color: var(--sand); }
.page-products .pr-board-card--ages { border-top-color: var(--jade); }
.page-products .pr-board-card--rounds { border-top-color: var(--flame); }

.page-products .pr-board-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.page-products .pr-board-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--stone);
}

.page-products .pr-board-lede {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(11, 27, 58, 0.78);
}

.page-products .pr-mini-fields {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(11, 27, 58, 0.045);
}

.page-products .pr-mini-fields div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-products .pr-mini-fields dt {
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  color: var(--clay);
}

.page-products .pr-mini-fields dd {
  margin: 0;
  font-size: 15px;
  color: rgba(11, 27, 58, 0.82);
}

.page-products .pr-board-for {
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--pr-hair);
  font-size: 13px;
  line-height: 1.7;
  color: var(--stone);
}

.page-products .pr-agebar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-products .pr-agebar span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--paper-70);
}

.page-products .pr-agebar--mini span {
  padding: 5px 12px;
  font-size: 12px;
}

.page-products .pr-round-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-products .pr-round-mini span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink-2);
  color: var(--paper-70);
  font-family: var(--font-mono);
  font-size: 13px;
}

.page-products .pr-round-mini span:nth-child(1) {
  background: var(--flame);
  color: #fff;
}

/* ---------- 图片容器 ---------- */
.page-products .pr-shot {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-2);
  position: relative;
}

.page-products .pr-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 239, 230, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-products .pr-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pr-shot--overview {
  margin-top: clamp(28px, 4vw, 44px);
}

.page-products .pr-shot--overview .media__caption {
  position: relative;
  z-index: 1;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--paper-70);
  font-size: 13px;
  line-height: 1.7;
}

/* ---------- 教练履历 ---------- */
.page-products .pr-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pr-gap);
  align-items: start;
}

@media (min-width: 900px) {
  .page-products .pr-split {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }
  .page-products .pr-split--reverse {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
  .page-products .pr-split--reverse .pr-split-text {
    order: 2;
  }
  .page-products .pr-split--reverse .pr-shot--youth {
    order: 1;
  }
}

.page-products .pr-split-text .prose {
  margin-top: 16px;
}

.page-products .pr-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.page-products .pr-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--pr-hair-light);
}

.page-products .pr-stats .stat__num {
  color: var(--sand);
  font-size: 34px;
  line-height: 1;
}

.page-products .pr-stats .stat__label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--paper-70);
}

.page-products .pr-shot--coach,
.page-products .pr-shot--youth {
  align-self: stretch;
}

/* ---------- 字段表 ---------- */
.page-products .pr-table-wrap {
  margin-top: 0;
  overflow-x: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--pr-hair-light);
  -webkit-overflow-scrolling: touch;
}

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

.page-products .pr-table caption {
  caption-side: top;
  text-align: left;
  padding: 16px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--paper-50);
  background: var(--night);
}

.page-products .pr-table th,
.page-products .pr-table td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--pr-hair-light);
  line-height: 1.7;
}

.page-products .pr-table thead th {
  background: var(--ink-2);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.page-products .pr-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--ink);
  color: var(--sand);
  font-weight: 600;
  white-space: nowrap;
  border-right: 1px solid var(--pr-hair-light);
}

.page-products .pr-table tbody td {
  color: var(--paper-70);
}

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

/* ---------- 青训折叠面板 ---------- */
.page-products .pr-panels {
  margin-top: clamp(28px, 4vw, 44px);
}

.page-products .pr-panel {
  border: 1px solid var(--pr-hair);
  border-radius: var(--r-md);
  background: var(--paper);
  overflow: hidden;
  transition: border-color 200ms var(--ease);
}

.page-products .pr-panel + .pr-panel {
  margin-top: 12px;
}

.page-products .pr-panel[open] {
  border-color: var(--jade);
}

.page-products .pr-panel summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  background: rgba(11, 27, 58, 0.03);
}

.page-products .pr-panel summary::-webkit-details-marker {
  display: none;
}

.page-products .pr-panel summary:focus-visible {
  outline: 2px solid var(--flame);
  outline-offset: -2px;
}

.page-products .pr-panel-age {
  font-family: var(--font-mono);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  min-width: 58px;
}

.page-products .pr-panel[open] .pr-panel-age {
  color: var(--jade);
}

.page-products .pr-panel-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(11, 27, 58, 0.82);
}

.page-products .pr-panel-arrow {
  margin-left: auto;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--stone);
  border-bottom: 2px solid var(--stone);
  transform: rotate(45deg);
  transition: transform 220ms var(--ease);
}

.page-products .pr-panel[open] .pr-panel-arrow {
  transform: rotate(-135deg);
  border-color: var(--jade);
}

.page-products .pr-panel-body {
  padding: 4px 20px 22px;
}

.page-products .pr-panel-fields {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.page-products .pr-panel-fields div {
  padding-left: 14px;
  border-left: 2px solid var(--pr-hair);
}

.page-products .pr-panel-fields dt {
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  color: var(--clay);
  margin-bottom: 6px;
}

.page-products .pr-panel-fields dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(11, 27, 58, 0.78);
}

/* ---------- 赛事阶段 ---------- */
.page-products .pr-phases {
  margin: clamp(26px, 4vw, 40px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--pr-hair-light);
  border-radius: var(--r-md);
  overflow: hidden;
}

@media (min-width: 780px) {
  .page-products .pr-phases {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.page-products .pr-phases li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 18px;
  background: var(--ink);
}

.page-products .pr-phases li:first-child {
  background: var(--ink-2);
  box-shadow: inset 0 3px 0 0 var(--flame);
}

.page-products .pr-phase-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--sand);
}

.page-products .pr-phases strong {
  font-size: 17px;
  color: var(--paper);
}

.page-products .pr-phases span:last-child {
  font-size: 13px;
  line-height: 1.7;
  color: var(--paper-70);
}

.page-products .pr-shot--calendar {
  margin-top: clamp(26px, 4vw, 40px);
}

/* ---------- 轮次条 ---------- */
.page-products .pr-round-strip {
  display: flex;
  gap: 10px;
  margin-top: clamp(22px, 3vw, 32px);
  padding-bottom: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.page-products .pr-round-cell {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 128px;
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--ink-2);
  border: 1px solid var(--pr-hair-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-products .pr-round-cell--lead {
  background: var(--flame);
  border-color: transparent;
}

.page-products .pr-round-idx {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--sand);
}

.page-products .pr-round-cell--lead .pr-round-idx {
  color: #fff;
}

.page-products .pr-round-gap {
  font-size: 13px;
  color: var(--paper-70);
}

.page-products .pr-round-cell--lead .pr-round-gap {
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- 多联赛 ---------- */
.page-products .pr-league-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pr-gap);
  margin-top: clamp(26px, 4vw, 40px);
  align-items: start;
}

@media (min-width: 940px) {
  .page-products .pr-league-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.page-products .pr-map-card {
  padding: 18px;
  border-radius: var(--r-lg);
  background: var(--ink);
  border: 1px solid var(--pr-hair-light);
}

.page-products .pr-svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-products .pr-map-note {
  margin: 10px 4px 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--paper-50);
}

.page-products .pr-nation-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--pr-hair);
}

.page-products .pr-nation-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name freq"
    "meta freq";
  align-items: center;
  gap: 2px 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--pr-hair);
}

.page-products .pr-nation-name {
  grid-area: name;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.page-products .pr-nation-meta {
  grid-area: meta;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--stone);
}

.page-products .pr-nation-freq {
  grid-area: freq;
  justify-self: end;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(31, 138, 112, 0.12);
  color: var(--jade);
  white-space: nowrap;
}

.page-products .pr-shot--leagues {
  margin-top: clamp(26px, 4vw, 40px);
}

/* ---------- 交付方式 ---------- */
.page-products .pr-deliver {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pr-gap);
  margin-top: clamp(26px, 4vw, 42px);
}

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

.page-products .pr-deliver-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--pr-hair);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.page-products .pr-deliver-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 4px;
  background: var(--sand);
}

.page-products .pr-deliver-num {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--clay);
}

.page-products .pr-deliver-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(11, 27, 58, 0.78);
}

.page-products .pr-deliver-for {
  padding-top: 12px;
  border-top: 1px dashed var(--pr-hair);
  font-size: 13px !important;
  color: var(--jade) !important;
}

.page-products .pr-deliver-prep {
  font-size: 13px !important;
  color: var(--stone) !important;
}

/* ---------- 服务流程 ---------- */
.page-products .pr-flow-band {
  background: linear-gradient(180deg, rgba(217, 164, 65, 0.10), rgba(244, 239, 230, 0) 62%), var(--paper);
}

.page-products .pr-steps {
  margin: clamp(26px, 4vw, 42px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pr-gap);
}

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

@media (min-width: 1080px) {
  .page-products .pr-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-products .pr-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--pr-hair);
  position: relative;
}

.page-products .pr-step::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -1px;
  width: 2px;
  height: 0;
}

.page-products .pr-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--flame);
  font-size: 15px;
  font-weight: 700;
}

.page-products .pr-step:first-child .pr-step-num {
  background: var(--flame);
  color: #fff;
}

.page-products .pr-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(11, 27, 58, 0.78);
}

.page-products .pr-step-time {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--pr-hair);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--clay);
}

/* ---------- 收尾行动区 ---------- */
.page-products .pr-cta {
  margin-top: clamp(32px, 5vw, 52px);
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--r-lg);
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

@media (min-width: 860px) {
  .page-products .pr-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}

.page-products .pr-cta-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--paper-88);
  max-width: 46em;
}

.page-products .pr-cta-text .copy-chip {
  vertical-align: baseline;
}

.page-products .pr-cta-sub {
  margin-top: 12px !important;
  font-size: 13px !important;
  color: var(--paper-50) !important;
}

.page-products .pr-cta-sub a {
  color: var(--sand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-products .pr-cta .btn--primary {
  flex: 0 0 auto;
}
<<<END>>>
