.page-products {
  --pd-gap: clamp(14px, 2vw, 24px);
  --pd-radius: 3px;
  --pd-card: linear-gradient(180deg, rgba(20, 38, 61, 0.92), rgba(12, 26, 44, 0.82));
  --pd-card-line: rgba(216, 205, 182, 0.14);
  --pd-line-soft: rgba(216, 205, 182, 0.1);

  background:
    radial-gradient(1100px 520px at 88% -6%, rgba(87, 240, 138, 0.09), transparent 62%),
    radial-gradient(900px 520px at -4% 14%, rgba(134, 216, 230, 0.07), transparent 60%);
  color: var(--c-white);
  overflow-x: clip;
}

/* ---------- 首屏 ---------- */
.page-products .pd-hero {
  position: relative;
  padding-top: clamp(22px, 4vw, 44px);
  border-bottom: 1px solid var(--pd-line-soft);
  background: linear-gradient(180deg, var(--c-night) 0%, rgba(12, 26, 44, 0.35) 74%, transparent 100%);
  overflow: hidden;
}

.page-products .pd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(216, 205, 182, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 205, 182, 0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(80% 70% at 70% 20%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(80% 70% at 70% 20%, #000 0%, transparent 78%);
}

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

.page-products .breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: clamp(18px, 3vw, 30px);
}

.page-products .breadcrumb a {
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-products .breadcrumb a:hover,
.page-products .breadcrumb a:focus-visible {
  color: var(--c-green);
  border-bottom-color: var(--c-green);
}

.page-products .breadcrumb span[aria-current="page"] {
  color: var(--c-white);
}

.page-products .pd-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
  max-width: 17em;
  text-wrap: balance;
}

.page-products .pd-hero__title-em {
  color: var(--c-green);
  display: inline-block;
  border-bottom: 3px solid rgba(87, 240, 138, 0.35);
}

.page-products .pd-hero__lead {
  margin-top: clamp(16px, 2.4vw, 24px);
  max-width: var(--wrap-narrow);
  color: var(--fg-muted);
}

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

.page-products .pd-hero__facts {
  list-style: none;
  margin: clamp(28px, 4vw, 44px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--pd-line-soft);
  border: 1px solid var(--pd-line-soft);
}

.page-products .pd-hero__fact {
  background: rgba(5, 10, 18, 0.72);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-products .pd-hero__fact .data-value {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--c-green);
  line-height: 1;
}

.page-products .pd-hero__fact-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

/* ---------- 比分条 ---------- */
.page-products .pd-scorebar {
  position: relative;
  z-index: 1;
  margin-top: clamp(30px, 5vw, 52px);
  border-top: 1px solid rgba(216, 205, 182, 0.22);
  border-bottom: 1px solid var(--pd-line-soft);
  background: linear-gradient(90deg, rgba(5, 10, 18, 0.94), rgba(20, 38, 61, 0.6) 55%, rgba(5, 10, 18, 0.94));
  padding-bottom: 10px;
}

.page-products .pd-scorebar__track {
  display: flex;
  gap: 12px;
  padding: 16px var(--gutter) 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-products .pd-scorebar__track::-webkit-scrollbar {
  display: none;
}

.page-products .pd-scorebar__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 216px;
  display: grid;
  gap: 7px;
  padding: 12px 14px 13px;
  background: var(--pd-card);
  border: 1px solid var(--pd-card-line);
  border-left: 3px solid var(--c-green);
  border-radius: var(--pd-radius);
}

.page-products .pd-scorebar__league {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-orange);
  text-transform: uppercase;
}

.page-products .pd-scorebar__pair {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-products .pd-scorebar__side {
  font-size: 12px;
  color: var(--fg-muted);
}

.page-products .pd-scorebar__num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
}

.page-products .pd-scorebar__sep {
  font-family: var(--font-mono);
  font-size: 16px;
  color: rgba(147, 162, 179, 0.6);
}

.page-products .pd-scorebar__meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--c-cool);
}

.page-products .pd-scorebar__hint {
  margin: 0;
  padding: 0 var(--gutter);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

/* ---------- 目录 ---------- */
.page-products .pd-toc {
  position: sticky;
  top: var(--hdr-h);
  z-index: 5;
  margin-top: clamp(26px, 4vw, 40px);
  background: rgba(5, 10, 18, 0.86);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--pd-line-soft);
  border-bottom: 1px solid var(--pd-line-soft);
}

.page-products .pd-toc__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-products .pd-toc__title {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-green);
  text-transform: uppercase;
}

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

.page-products .pd-toc__list::-webkit-scrollbar {
  display: none;
}

.page-products .pd-toc__list a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 7px 13px;
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  border: 1px solid var(--pd-card-line);
  border-radius: 999px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.page-products .pd-toc__list a:hover,
.page-products .pd-toc__list a:focus-visible,
.page-products .pd-toc__list a.is-active {
  color: var(--c-ink);
  background: var(--c-green);
  border-color: var(--c-green);
}

.page-products .pd-toc__num {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.75;
}

/* ---------- 章节通用 ---------- */
.page-products .pd-section {
  padding: clamp(46px, 7vw, 86px) 0 0;
}

.page-products .pd-head {
  position: relative;
  display: grid;
  gap: 10px;
  padding-left: clamp(0px, 3vw, 42px);
  margin-bottom: clamp(26px, 4vw, 40px);
}

.page-products .pd-chapnum {
  font-family: var(--font-mono);
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(87, 240, 138, 0.42);
  margin-bottom: 2px;
}

.page-products .pd-chapnum--paper {
  -webkit-text-stroke: 1px rgba(15, 122, 66, 0.4);
}

.page-products .pd-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(23px, 3.6vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 22em;
  text-wrap: balance;
}

.page-products .pd-head__lead {
  margin: 0;
  color: var(--fg-muted);
  max-width: 38em;
}

/* ---------- 半场比分栏 ---------- */
.page-products .pd-grid {
  display: grid;
  gap: var(--pd-gap);
}

.page-products .pd-grid--half {
  grid-template-columns: 1fr;
}

.page-products .pd-figure {
  margin: 0;
  position: relative;
  border: 1px solid var(--pd-card-line);
  border-radius: var(--pd-radius);
  overflow: hidden;
  background: var(--c-night);
}

.page-products .pd-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pd-figure--half img {
  aspect-ratio: 16 / 9;
}

.page-products .pd-figure__cap {
  padding: 9px 13px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  border-top: 1px solid var(--pd-line-soft);
  background: rgba(5, 10, 18, 0.6);
}

.page-products .pd-fields {
  padding: clamp(16px, 2.2vw, 24px);
  background: var(--pd-card);
  border: 1px solid var(--pd-card-line);
  border-top: 3px solid var(--c-green);
  border-radius: var(--pd-radius);
}

.page-products .pd-fields__list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.page-products .pd-fields__row {
  display: grid;
  gap: 3px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--pd-line-soft);
}

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

.page-products .pd-fields__name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-green);
}

.page-products .pd-fields__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}

.page-products .pd-fold {
  margin-top: 14px;
  border-top: 1px solid var(--pd-line-soft);
}

.page-products .pd-fold summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--c-orange);
  text-transform: uppercase;
}

.page-products .pd-fold summary::-webkit-details-marker {
  display: none;
}

.page-products .pd-fold summary::after {
  content: "+";
  margin-left: auto;
  font-size: 17px;
  line-height: 1;
}

.page-products .pd-fold[open] summary::after {
  content: "\2013";
}

.page-products .pd-fold summary:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
}

.page-products .pd-callout {
  margin-top: var(--pd-gap);
  padding: 18px 20px;
  background: linear-gradient(90deg, rgba(255, 106, 43, 0.12), rgba(255, 106, 43, 0.02));
  border-left: 3px solid var(--c-orange);
  border-radius: var(--pd-radius);
}

.page-products .pd-callout__label {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-orange);
  text-transform: uppercase;
}

.page-products .pd-callout__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-white);
  max-width: 42em;
}

/* ---------- 角球栏 ---------- */
.page-products .pd-grid--corner {
  grid-template-columns: 1fr;
}

.page-products .pd-figure--corner img {
  aspect-ratio: 14 / 9;
}

.page-products .pd-corner-panel {
  padding: clamp(16px, 2.2vw, 24px);
  background: var(--pd-card);
  border: 1px solid var(--pd-card-line);
  border-radius: var(--pd-radius);
}

.page-products .pd-corner-svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: rgba(5, 10, 18, 0.55);
  border: 1px solid var(--pd-line-soft);
  border-radius: var(--pd-radius);
}

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

.page-products .pd-corner-list li {
  display: grid;
  gap: 3px;
  padding-left: 14px;
  border-left: 2px solid var(--c-cool);
}

.page-products .pd-corner-list__name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-cool);
}

.page-products .pd-corner-list__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}

.page-products .pd-scene-row {
  margin-top: var(--pd-gap);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-gap);
}

.page-products .pd-scene {
  padding: 18px 20px;
  background: rgba(20, 38, 61, 0.55);
  border: 1px solid var(--pd-card-line);
  border-radius: var(--pd-radius);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.page-products .pd-scene:hover {
  border-color: rgba(87, 240, 138, 0.45);
  background: rgba(20, 38, 61, 0.8);
}

.page-products .pd-scene__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-orange);
  border: 1px solid rgba(255, 106, 43, 0.45);
  padding: 1px 7px;
  border-radius: var(--pd-radius);
}

.page-products .pd-scene__title {
  margin: 12px 0 6px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--c-white);
}

.page-products .pd-scene__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* ---------- 控球率 ---------- */
.page-products .pd-grid--possession {
  grid-template-columns: 1fr;
  align-items: center;
}

.page-products .pd-possession__visual {
  position: relative;
  border: 1px solid var(--pd-card-line);
  border-radius: var(--pd-radius);
  overflow: hidden;
  background: var(--c-night);
}

.page-products .pd-possession__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.4;
  aspect-ratio: 3 / 2;
}

.page-products .pd-ring {
  position: absolute;
  right: 6%;
  bottom: 6%;
  width: clamp(120px, 38%, 190px);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(87, 240, 138, 0.18));
}

.page-products .pd-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.page-products .pd-bullets li {
  padding-left: 16px;
  border-left: 2px solid var(--c-green);
}

.page-products .pd-bullets__title {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0;
}

.page-products .pd-bullets__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 36em;
}

.page-products .pd-possession__body .btn {
  margin-top: 22px;
}

/* ---------- 教练与球迷档案 ---------- */
.page-products .pd-grid--archive {
  grid-template-columns: 1fr;
}

.page-products .pd-archive-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--pd-card);
  border: 1px solid var(--pd-card-line);
  border-radius: var(--pd-radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-products .pd-archive-card:hover {
  border-color: rgba(87, 240, 138, 0.4);
  transform: translateY(-3px);
}

.page-products .pd-figure--coach img {
  aspect-ratio: 3 / 2;
}

.page-products .pd-figure--fans img {
  aspect-ratio: 16 / 9;
}

.page-products .pd-archive-card__body {
  padding: clamp(18px, 2.4vw, 26px);
}

.page-products .pd-archive-card__title {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-white);
  letter-spacing: 0;
}

.page-products .pd-archive-card__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--fg-muted);
  max-width: 36em;
}

.page-products .pd-taglist {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-products .pd-taglist .chip {
  border-color: rgba(134, 216, 230, 0.35);
  color: var(--c-cool);
}

/* ---------- 更新节奏（纸色面板） ---------- */
.page-products .pd-cycle-panel {
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--pd-radius);
  box-shadow: 0 26px 60px -34px rgba(0, 0, 0, 0.85);
}

.page-products .pd-head--paper {
  padding-left: 0;
  margin-bottom: clamp(22px, 3.4vw, 34px);
}

.page-products .pd-eyebrow--forest {
  color: var(--c-forest);
}

.page-products .pd-head__title--paper {
  color: var(--c-ink-paper);
  max-width: 24em;
}

.page-products .pd-cycle-panel__lead {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.78;
  color: rgba(15, 29, 40, 0.78);
  max-width: 40em;
}

.page-products .pd-cycle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-paper-line);
}

.page-products .pd-cycle-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--c-paper-line);
}

.page-products .pd-cycle-item__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--c-forest);
}

.page-products .pd-cycle-item__title {
  margin: 8px 0 6px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink-paper);
  letter-spacing: 0;
}

.page-products .pd-cycle-item__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(15, 29, 40, 0.76);
  max-width: 34em;
}

.page-products .pd-cycle-foot {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.page-products .pd-cycle-foot__text {
  margin: 0;
  font-size: 14.5px;
  color: rgba(15, 29, 40, 0.78);
}

/* ---------- 后续导航 ---------- */
.page-products .pd-next {
  margin-top: clamp(46px, 7vw, 88px);
  padding: clamp(32px, 5vw, 60px) 0;
  border-top: 1px solid var(--pd-line-soft);
  background: linear-gradient(180deg, transparent, rgba(12, 26, 44, 0.55));
}

.page-products .pd-next__inner {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.page-products .pd-next__title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-white);
  max-width: 20em;
  text-wrap: balance;
}

.page-products .pd-next__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--pd-gap);
}

.page-products .pd-next__links a {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  text-decoration: none;
  border: 1px solid var(--pd-card-line);
  border-left: 3px solid var(--c-cool);
  border-radius: var(--pd-radius);
  background: rgba(20, 38, 61, 0.4);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-products .pd-next__links a:hover,
.page-products .pd-next__links a:focus-visible {
  border-left-color: var(--c-green);
  background: rgba(20, 38, 61, 0.85);
  transform: translateY(-2px);
}

.page-products .pd-next__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-green);
}

.page-products .pd-next__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
}

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

  .page-products .pd-scene-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .pd-cycle-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(20px, 3vw, 40px);
  }

  .page-products .pd-next__links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .page-products .pd-grid--half {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-products .pd-grid--corner {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-products .pd-grid--possession {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(24px, 4vw, 56px);
  }

  .page-products .pd-grid--archive {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-products .pd-scene-row {
    gap: clamp(16px, 2vw, 24px);
  }

  .page-products .pd-next__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: center;
  }
}

@media (min-width: 1180px) {
  .page-products .pd-fields__list {
    grid-template-columns: 1fr;
  }

  .page-products .pd-cycle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .pd-archive-card,
  .page-products .pd-next__links a,
  .page-products .pd-scene {
    transition: none;
    transform: none;
  }
}
