.page-products {
  --pp-gap: clamp(18px, 2.6vw, 32px);
  --pp-radius: 14px;
  --pp-edge: 1px solid var(--c-line);
}

/* ---------- 首屏 ---------- */
.page-products .pp-hero {
  padding-top: clamp(18px, 3.6vw, 40px);
}

.page-products .pp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.page-products .pp-hero__title {
  margin: 14px 0 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.page-products .pp-hero__lead {
  max-width: 58ch;
}

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

.page-products .pp-hero__stats {
  background: linear-gradient(155deg, var(--c-panel), var(--c-deep));
  border: var(--pp-edge);
  border-radius: var(--pp-radius);
  padding: 22px;
  box-shadow: var(--shadow-panel);
}

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

.page-products .pp-stats__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 11px;
  border-bottom: 1px dashed var(--c-line);
}

.page-products .pp-stats__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-products .pp-stats dt {
  font-size: 14px;
  color: var(--c-slate);
}

.page-products .pp-stats dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: var(--c-lime);
  letter-spacing: -0.02em;
}

.page-products .pp-stats dd.num--hot {
  color: var(--c-score);
}

.page-products .pp-hero__note {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: var(--pp-edge);
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-slate);
}

/* ---------- 通用小标题 ---------- */
.page-products .pp-lede {
  max-width: 66ch;
  margin: 14px 0 0;
  color: var(--c-slate);
  line-height: 1.8;
}

.page-products .pp-sub {
  margin: 0 0 18px;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  color: var(--c-paper);
}

/* ---------- 指标地图 ---------- */
.page-products .pp-board {
  position: relative;
}

.page-products .pp-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--pp-gap);
  margin-top: clamp(26px, 4vw, 44px);
}

.page-products .pp-map__mod {
  position: relative;
  background: linear-gradient(160deg, var(--c-panel) 0%, var(--c-deep) 100%);
  border: var(--pp-edge);
  border-left: 3px solid var(--c-night);
  border-radius: var(--pp-radius);
  padding: 18px 20px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.page-products .pp-map__mod:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-panel);
}

.page-products .pp-map__mod[open] {
  border-left-color: var(--c-lime);
}

.page-products .pp-map__sum {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
  color: var(--c-paper);
}

.page-products .pp-map__sum::-webkit-details-marker {
  display: none;
}

.page-products .pp-map__sum::after {
  content: "+";
  flex: none;
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 1;
  color: var(--c-teal);
}

.page-products .pp-map__mod[open] .pp-map__sum::after {
  content: "–";
  color: var(--c-lime);
}

.page-products .pp-map__idx {
  flex: none;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-lime);
}

.page-products .pp-map__name {
  flex: 1 1 auto;
}

.page-products .pp-map__count {
  flex: none;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-slate);
  white-space: nowrap;
}

.page-products .pp-map__list {
  margin: 16px 0 4px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 9px 16px;
}

.page-products .pp-map__list li {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-slate);
}

.page-products .pp-map__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--c-teal);
}

/* ---------- 传球与跑动 ---------- */
.page-products .pp-pass__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--pp-gap);
  margin-top: clamp(26px, 4vw, 44px);
}

.page-products .pp-pass__media .media__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pp-net {
  background: var(--c-deep);
  border: var(--pp-edge);
  border-radius: var(--pp-radius);
  padding: 18px;
}

.page-products .pp-net svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.page-products .pp-net__edges line {
  stroke: var(--c-line);
  stroke-width: 1.6;
}

.page-products .pp-net__nodes circle {
  fill: rgba(11, 122, 85, 0.45);
  stroke: var(--c-teal);
  stroke-width: 2;
}

.page-products .pp-net__nodes circle.is-key {
  fill: rgba(198, 249, 78, 0.32);
  stroke: var(--c-lime);
  stroke-width: 2.4;
}

.page-products .pp-pass__note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--c-slate);
}

.page-products .pp-run {
  margin-top: clamp(30px, 4.5vw, 52px);
  padding-top: clamp(22px, 3vw, 32px);
  border-top: var(--pp-edge);
}

.page-products .pp-run__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--pp-gap);
}

.page-products .pp-run__stat {
  background: rgba(12, 35, 56, 0.7);
  border: var(--pp-edge);
  border-radius: var(--pp-radius);
  padding: 18px;
}

.page-products .pp-run__stat .stat__value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--c-lime);
  letter-spacing: -0.02em;
}

.page-products .pp-run__stat .stat__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-slate);
}

.page-products .pp-run__text {
  max-width: 72ch;
  margin: 20px 0 0;
  line-height: 1.8;
  color: var(--c-paper);
}

/* ---------- 主客场与射门 ---------- */
.page-products .pp-shoot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 48px);
}

.page-products .pp-shoot__copy .section__title {
  margin-top: 12px;
}

.page-products .pp-shoot__media {
  margin: clamp(22px, 3vw, 30px) 0 0;
}

.page-products .pp-shoot__media .media__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.page-products .pp-table__cap {
  caption-side: top;
  text-align: left;
  padding-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-lime);
}

.page-products .pp-table th,
.page-products .pp-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: var(--pp-edge);
  vertical-align: top;
  line-height: 1.65;
}

.page-products .pp-table thead th {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-slate);
  border-bottom-color: var(--c-night);
}

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

.page-products .pp-table tbody td {
  color: var(--c-slate);
}

.page-products .pp-table tbody tr:nth-child(even) {
  background: rgba(12, 35, 56, 0.55);
}

/* ---------- 教练履历 ---------- */
.page-products .pp-coach__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}

.page-products .pp-coach__media {
  margin: 0;
}

.page-products .pp-coach__media .media__img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

.page-products .pp-coach__copy .section__title {
  margin-top: 12px;
}

.page-products .pp-coach__points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.page-products .pp-coach__points li {
  position: relative;
  padding-left: 20px;
  line-height: 1.75;
  color: var(--c-slate);
}

.page-products .pp-coach__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--c-lime);
}

.page-products .pp-coach__points strong {
  color: var(--c-paper);
}

.page-products .pp-coach__note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--c-teal);
  background: rgba(12, 35, 56, 0.6);
  border-radius: 0 var(--pp-radius) var(--pp-radius) 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-slate);
}

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

.page-products .pp-deliver__col {
  background: rgba(4, 18, 30, 0.7);
  border: var(--pp-edge);
  border-top: 3px solid var(--c-lime);
  border-radius: 4px 4px var(--pp-radius) var(--pp-radius);
  padding: 22px 20px;
}

.page-products .pp-deliver__title {
  margin: 14px 0 10px;
  font-size: clamp(18px, 2.2vw, 21px);
  font-weight: 800;
  color: var(--c-paper);
}

.page-products .pp-deliver__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-slate);
}

.page-products .pp-deliver__list {
  margin: 18px 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: var(--pp-edge);
  display: grid;
  gap: 9px;
}

.page-products .pp-deliver__list li {
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--c-teal);
}

.page-products .pp-delivery__media {
  margin: clamp(26px, 4vw, 42px) 0 0;
}

.page-products .pp-delivery__media .media__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- 试用与订阅 ---------- */
.page-products .pp-steps {
  margin: clamp(26px, 4vw, 44px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.page-products .pp-step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  background: rgba(12, 35, 56, 0.6);
  border: var(--pp-edge);
  border-radius: var(--pp-radius);
  scroll-margin-top: 90px;
}

.page-products .pp-step__num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--c-panel);
  border: 1px solid var(--c-night);
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-lime);
}

.page-products .pp-step__title {
  margin: 6px 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--c-paper);
}

.page-products .pp-step__body p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-slate);
}

.page-products .pp-step__link {
  margin: 0;
}

.page-products .pp-step__link a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-teal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-products .pp-step__link a:hover {
  color: var(--c-lime);
  border-bottom-color: var(--c-lime);
}

.page-products .pp-cta {
  margin-top: clamp(30px, 4.5vw, 52px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--pp-radius);
  background: linear-gradient(120deg, var(--c-grass) 0%, var(--c-panel) 62%, var(--c-deep) 100%);
  border: 1px solid var(--c-night);
  display: grid;
  gap: 20px;
}

.page-products .pp-cta__title {
  margin: 0 0 10px;
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 900;
  color: var(--c-paper);
}

.page-products .pp-cta__text {
  margin: 0;
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-paper);
  opacity: 0.86;
}

.page-products .pp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- 桌面布局 ---------- */
@media (min-width: 900px) {
  .page-products .pp-hero__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr);
    align-items: end;
  }

  .page-products .pp-map {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .page-products .pp-map__mod:nth-child(1) {
    grid-column: 1 / span 7;
  }

  .page-products .pp-map__mod:nth-child(2) {
    grid-column: 8 / span 5;
  }

  .page-products .pp-map__mod:nth-child(3) {
    grid-column: 1 / span 5;
  }

  .page-products .pp-map__mod:nth-child(4) {
    grid-column: 6 / span 7;
  }

  .page-products .pp-pass__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }

  .page-products .pp-shoot__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }

  .page-products .pp-coach__grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }

  .page-products .pp-cta {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

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

@media (min-width: 1080px) {
  .page-products .pp-step {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 24px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .pp-map__mod,
  .page-products .pp-step__link a {
    transition: none;
  }

  .page-products .pp-map__mod:hover {
    transform: none;
  }
}
</final>
