.page-products {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
}

.page-products .breadcrumbs {
  margin-top: clamp(16px, 2.4vw, 28px);
}

/* ---------- 首屏 ---------- */
.page-products .pp-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(20px, 3.4vw, 40px) clamp(34px, 5vw, 62px);
}

.page-products .pp-hero::before {
  content: "";
  position: absolute;
  top: -26%;
  right: -12%;
  width: min(640px, 72vw);
  height: min(640px, 72vw);
  background: radial-gradient(circle at 58% 42%, rgba(11, 61, 145, 0.12), transparent 64%);
  pointer-events: none;
}

.page-products .pp-hero-grid {
  position: relative;
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  align-items: end;
}

.page-products .pp-kicker {
  margin: 0 0 10px;
  color: var(--blue);
}

.page-products .pp-hero h1 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 6.2vw, 68px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  max-width: 16ch;
}

.page-products .pp-lede {
  margin: 18px 0 0;
  max-width: 60ch;
  font-size: clamp(16px, 1.4vw, 17.5px);
  line-height: 1.78;
}

.page-products .pp-lede b {
  color: var(--blue);
  font-weight: 700;
}

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

.page-products .pp-hero-panel {
  position: relative;
  background: var(--blue);
  color: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 10px 10px 0 var(--stack);
  padding: clamp(20px, 2.6vw, 28px);
}

.page-products .pp-hero-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.page-products .pp-panel-label {
  margin: 0 0 16px;
  color: var(--sand);
}

.page-products .pp-hero-stats {
  margin: 0;
  display: grid;
  gap: 14px;
}

.page-products .pp-hero-stats > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(247, 245, 240, 0.22);
}

.page-products .pp-hero-stats > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-products .pp-hero-stats dt {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(247, 245, 240, 0.78);
}

.page-products .pp-hero-stats dd {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex: 0 0 auto;
}

.page-products .pp-num {
  font-family: var(--font-mono);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  line-height: 1;
  color: var(--paper);
}

.page-products .pp-unit {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--sand);
}

/* ---------- 通用小标题 ---------- */
.page-products .pp-sec-head {
  max-width: 62ch;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.page-products .pp-sec-head .label {
  margin: 0 0 10px;
  color: var(--blue);
}

.page-products .pp-sec-head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.page-products .pp-sec-head p {
  margin: 14px 0 0;
  font-size: clamp(16px, 1.3vw, 17px);
  line-height: 1.78;
}

.page-products .pp-sec-head--dark .label {
  color: var(--sand);
}

.page-products .pp-sec-head--dark p {
  color: rgba(247, 245, 240, 0.8);
}

/* ---------- 两条线 ---------- */
.page-products .pp-pair {
  display: grid;
  gap: 18px;
}

.page-products .pp-lane {
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-products .pp-lane-tag--ink {
  color: var(--ink);
}

.page-products .pp-lane-tag--blue {
  color: var(--blue);
}

.page-products .pp-lane h3 {
  margin: 0;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.35;
  font-weight: 800;
}

.page-products .pp-lane p {
  margin: 0;
  font-size: 16px;
  line-height: 1.78;
}

.page-products .pp-lane .pp-lane-meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--stack);
  font-size: 13px;
  color: var(--muted);
}

/* ---------- 通用图 ---------- */
.page-products .pp-figure {
  margin: 0;
}

.page-products .pp-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border: 1px solid var(--ink);
  background: var(--panel);
}

.page-products .pp-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

/* ---------- 签表 ---------- */
.page-products .pp-bracket-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(38px, 5.4vw, 76px);
}

.page-products .pp-bracket-section::before {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -42%;
  width: 62vw;
  height: 62vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle, rgba(11, 61, 145, 0.6), transparent 66%);
  pointer-events: none;
}

.page-products .pp-bracket-section .wrap {
  position: relative;
}

.page-products .pp-bracket-section .label {
  color: var(--sand);
}

.page-products .pp-bracket-section .pp-figure img {
  border-color: rgba(214, 167, 92, 0.42);
}

.page-products .pp-bracket-section .pp-figure figcaption {
  color: rgba(247, 245, 240, 0.66);
}

.page-products .pp-bracket {
  display: block;
  width: 100%;
  height: auto;
  margin-top: clamp(24px, 3.4vw, 44px);
}

.page-products .pp-bracket .pp-link {
  fill: none;
  stroke: var(--grid);
  stroke-width: 1.4;
  opacity: 0.45;
  stroke-linecap: square;
}

.page-products .pp-bracket .pp-node {
  fill: var(--sand);
}

.page-products .pp-bracket .pp-node--final {
  fill: var(--orange);
}

.page-products .pp-bracket-labels text {
  fill: var(--grid);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  opacity: 0.82;
}

.page-products .pp-bracket-notes {
  margin: clamp(20px, 3vw, 30px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-products .pp-bracket-notes li {
  padding-left: 14px;
  border-left: 2px solid var(--sand);
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(247, 245, 240, 0.84);
}

/* ---------- 球员数据 ---------- */
.page-products .pp-focus-grid {
  margin-top: clamp(26px, 3.6vw, 42px);
  display: grid;
  gap: 1px;
  background: var(--grid);
  border: 1px solid var(--ink);
  grid-template-columns: minmax(0, 1fr);
}

.page-products .pp-focus {
  background: var(--paper);
  padding: clamp(18px, 2.2vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-products .pp-focus:hover {
  background: #fff;
  transform: translateY(-2px);
}

.page-products .pp-focus .label {
  color: var(--orange);
}

.page-products .pp-focus h3 {
  margin: 0;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.4;
  font-weight: 800;
}

.page-products .pp-focus p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.page-products .pp-focus-media {
  margin: auto 0 0;
  max-width: 240px;
}

.page-products .pp-focus-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border: 1px solid var(--ink);
  background: var(--panel);
}

.page-products .pp-metric-rail {
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(18px, 2.4vw, 26px);
  background: var(--stack);
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(17, 19, 24, 0.1);
}

.page-products .pp-metric-rail-title {
  margin: 0 0 14px;
  color: var(--blue);
}

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

.page-products .pp-metric-list li {
  padding: 6px 12px;
  background: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ---------- 赛季奖项主题带 ---------- */
.page-products .pp-band {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--paper);
  padding-block: clamp(38px, 5.4vw, 76px);
}

.page-products .pp-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(104deg, rgba(17, 19, 24, 0.34) 0 42%, transparent 42% 100%);
  pointer-events: none;
}

.page-products .pp-band-grid {
  position: relative;
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.page-products .pp-band-copy .label {
  margin: 0 0 10px;
  color: var(--sand);
}

.page-products .pp-band-copy h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(25px, 3.6vw, 42px);
  line-height: 1.12;
}

.page-products .pp-band-copy p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.78;
  color: rgba(247, 245, 240, 0.86);
}

.page-products .pp-band-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-products .pp-band-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(247, 245, 240, 0.2);
  font-size: 15px;
  line-height: 1.62;
}

.page-products .pp-band-idx {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--sand);
}

.page-products .pp-band .pp-figure img {
  border-color: rgba(214, 167, 92, 0.45);
}

.page-products .pp-band .pp-figure figcaption {
  color: rgba(247, 245, 240, 0.68);
}

/* ---------- 来源与时效 ---------- */
.page-products .pp-updates-grid {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.page-products .pp-updates-copy .label {
  margin: 0 0 10px;
  color: var(--blue);
}

.page-products .pp-updates-copy h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(25px, 3.6vw, 42px);
  line-height: 1.12;
}

.page-products .pp-updates-copy p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.78;
}

.page-products .pp-updates-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- 合作 ---------- */
.page-products .pp-coop-inner {
  position: relative;
  padding: clamp(24px, 3.4vw, 44px);
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 12px 12px 0 var(--stack);
}

.page-products .pp-coop-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--orange), var(--sand));
}

.page-products .pp-coop-inner .label {
  margin: 0 0 10px;
  color: var(--blue);
}

.page-products .pp-coop-inner h2 {
  margin: 0;
  max-width: 20ch;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(25px, 3.6vw, 42px);
  line-height: 1.12;
}

.page-products .pp-coop-inner > p {
  margin: 14px 0 0;
  max-width: 66ch;
  font-size: 16px;
  line-height: 1.78;
}

.page-products .pp-coop-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-products .pp-coop-list li {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--ink);
  font-size: 14.5px;
  line-height: 1.72;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-products .pp-coop-list li:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--sand);
}

.page-products .pp-coop-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-products .pp-updates-actions .btn-ghost,
.page-products .pp-coop-actions .btn-ghost,
.page-products .pp-hero-actions .btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

/* ---------- 断点 ---------- */
@media (min-width: 640px) {
  .page-products .pp-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

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

@media (min-width: 880px) {
  .page-products .pp-updates-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
}

@media (min-width: 900px) {
  .page-products .pp-hero-grid {
    grid-template-columns: minmax(0, 1.32fr) minmax(250px, 0.68fr);
  }

  .page-products .pp-band-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  }
}

@media (min-width: 1000px) {
  .page-products .pp-focus-grid {
    grid-template-columns: 1.5fr 1fr 1.1fr 0.9fr;
  }
}

@media (max-width: 480px) {
  .page-products .pp-hero-panel {
    box-shadow: 6px 6px 0 var(--stack);
  }

  .page-products .pp-coop-inner {
    box-shadow: 8px 8px 0 var(--stack);
  }

  .page-products .pp-metric-list li {
    font-size: 12px;
    padding: 5px 10px;
  }
}
