.page-products {
  --pr-cut: 18px;
  --pr-hair: rgba(42, 58, 90, 0.72);
  background: var(--abyss);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
}

.page-products h1,
.page-products h2,
.page-products h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.005em;
}

/* ===== 首屏 ===== */
.page-products .pr-hero {
  position: relative;
  padding: clamp(28px, 5vw, 52px) 0 clamp(38px, 6vw, 74px);
  border-top: 1px solid var(--hair, var(--line-soft));
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.page-products .pr-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(52%, 560px);
  background: linear-gradient(158deg, rgba(178, 58, 46, 0.32), rgba(217, 164, 65, 0.08) 55%, transparent 78%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 0;
}

.page-products .pr-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(20px, 3vw, 30px);
}

.page-products .pr-hero__title {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 10vw, 82px);
  line-height: 0.96;
  color: var(--bone);
}

.page-products .pr-hero__word {
  display: block;
}

.page-products .pr-hero__joiner {
  display: block;
  margin: 0.42em 0 0.26em;
  font-family: var(--font-heading);
  font-size: 0.3em;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--sand);
}

.page-products .pr-hero__lede {
  margin: 0;
  max-width: 48ch;
  font-size: clamp(15px, 1.35vw, 17px);
  color: var(--bone-soft);
}

.page-products .pr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-products .pr-hero__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--line-soft);
  border-top: 2px solid var(--ochre);
}

.page-products .pr-fact {
  background: rgba(14, 22, 38, 0.94);
  padding: 14px 14px 16px;
}

.page-products .pr-fact dt {
  font-family: var(--font-heading);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--slate);
}

.page-products .pr-fact dd {
  margin: 7px 0 0;
  font-family: var(--font-data);
  font-size: 21px;
  line-height: 1.18;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}

.page-products .pr-fact dd small {
  display: block;
  margin-top: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--bone-dim);
  letter-spacing: 0;
}

@media (min-width: 960px) {
  .page-products .pr-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.64fr);
    grid-template-areas:
      "head facts"
      "lede facts"
      "actions facts";
    column-gap: clamp(32px, 5vw, 72px);
    align-content: start;
  }
  .page-products .pr-hero__head { grid-area: head; }
  .page-products .pr-hero__lede { grid-area: lede; padding-top: 4px; }
  .page-products .pr-hero__actions { grid-area: actions; }
  .page-products .pr-hero__facts { grid-area: facts; align-self: start; }
}

/* ===== 通用分段 ===== */
.page-products .pr-band {
  position: relative;
  padding: clamp(44px, 6.5vw, 90px) 0;
}

.page-products .pr-band + .pr-band {
  border-top: 1px solid var(--line-soft);
}

.page-products .pr-band--panel {
  background: rgba(14, 22, 38, 0.55);
}

.page-products .pr-note {
  margin: clamp(18px, 2.4vw, 26px) 0 0;
  max-width: 68ch;
  font-size: 14.5px;
  color: var(--bone-dim);
}

.page-products .pr-note a {
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 243, 76, 0.45);
}

.page-products .pr-note a:hover,
.page-products .pr-note a:focus-visible {
  color: var(--bone);
  border-bottom-color: var(--bone);
}

/* ===== 图片容器 ===== */
.page-products .pr-figure {
  margin: 0;
}

.page-products .pr-figure .media-frame {
  overflow: hidden;
}

.page-products .pr-figure .media-frame img,
.page-products .pr-chart__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* ===== 球队订阅 ===== */
.page-products .pr-sub-grid {
  display: grid;
  gap: clamp(24px, 4vw, 46px);
  margin-top: clamp(22px, 3.6vw, 40px);
}

.page-products .pr-track {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products .pr-track__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line-soft);
}

.page-products .pr-track__item:first-child {
  border-top: 1px dashed var(--line-soft);
}

.page-products .pr-track__idx {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--sand);
  padding-top: 5px;
}

.page-products .pr-track__title {
  margin: 0 0 6px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--bone);
}

.page-products .pr-track__text {
  margin: 0;
  font-size: 14.5px;
  color: var(--bone-soft);
}

@media (min-width: 900px) {
  .page-products .pr-sub-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: start;
  }
  .page-products .pr-figure {
    position: sticky;
    top: 96px;
  }
}

/* ===== 联赛导航 ===== */
.page-products .pr-nav-layout {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  margin-top: clamp(22px, 3.6vw, 40px);
}

.page-products .pr-filters {
  display: grid;
  gap: 18px;
  padding: 4px 0 4px clamp(16px, 2vw, 26px);
  border-left: 2px solid var(--ochre);
}

.page-products .pr-filter__key {
  display: block;
  margin-bottom: 9px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--slate);
}

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

.page-products .pr-chip {
  display: inline-block;
  padding: 5px 12px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--bone-soft);
  background: rgba(7, 12, 22, 0.7);
  border: 1px solid var(--line-hard);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-products .pr-chip:hover {
  color: var(--bone);
  border-color: var(--sand);
}

.page-products .pr-chip--on {
  color: var(--abyss);
  background: var(--lime);
  border-color: var(--lime);
  font-weight: 700;
}

.page-products .pr-filters__note {
  margin: 6px 0 0;
  max-width: 44ch;
  font-size: 14px;
  color: var(--bone-dim);
}

@media (min-width: 900px) {
  .page-products .pr-nav-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
  }
}

/* ===== 保留策略表格 ===== */
.page-products .pr-table-wrap {
  margin-top: clamp(22px, 3.6vw, 38px);
  overflow-x: auto;
  border-top: 2px solid var(--sand);
}

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

.page-products .pr-table caption {
  caption-side: top;
  padding: 14px 0 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--slate);
}

.page-products .pr-table th,
.page-products .pr-table td {
  padding: 14px 20px 14px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}

.page-products .pr-table thead th {
  font-family: var(--font-heading);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--sand);
  white-space: nowrap;
  border-bottom-color: var(--line-hard);
}

.page-products .pr-table tbody th {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--bone);
  white-space: nowrap;
}

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

.page-products .pr-table tbody tr {
  transition: background 0.2s ease;
}

.page-products .pr-table tbody tr:hover {
  background: rgba(178, 58, 46, 0.1);
}

/* ===== iPhone 端 ===== */
.page-products .pr-iphone {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(22px, 3.6vw, 40px);
}

.page-products .pr-iphone__media {
  max-width: 320px;
  margin: 0 auto;
}

.page-products .pr-iphone__lede {
  margin: 0 0 22px;
  max-width: 58ch;
  font-size: 15px;
  color: var(--bone-soft);
}

.page-products .pr-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border-top: 2px solid var(--ochre);
}

.page-products .pr-checklist li {
  padding: 14px 16px;
  background: rgba(14, 22, 38, 0.9);
  font-size: 14.5px;
  color: var(--bone-soft);
}

.page-products .pr-checklist strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  color: var(--bone);
}

.page-products .pr-iphone__foot {
  margin: 18px 0 0;
  font-size: 13.5px;
  color: var(--bone-dim);
}

@media (min-width: 900px) {
  .page-products .pr-iphone {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
  }
  .page-products .pr-iphone__media {
    margin: 0;
  }
}

/* ===== 图表卡 ===== */
.page-products .pr-charts {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  margin-top: clamp(22px, 3.6vw, 40px);
}

.page-products .pr-chart {
  background: rgba(14, 22, 38, 0.78);
  border-top: 2px solid var(--ochre);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-products .pr-chart:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(7, 12, 22, 0.7);
}

.page-products .pr-chart__media img {
  aspect-ratio: 8 / 5;
}

.page-products .pr-chart__body {
  padding: 18px 20px 24px;
}

.page-products .pr-chart__body .tag {
  margin-bottom: 12px;
}

.page-products .pr-chart__metric {
  margin: 0 0 10px;
  font-family: var(--font-data);
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}

.page-products .pr-chart__text {
  margin: 0;
  font-size: 14.5px;
  color: var(--bone-soft);
}

.page-products .pr-pitchcard {
  margin: clamp(20px, 3vw, 30px) 0 0;
  padding: clamp(16px, 2.4vw, 26px);
  background: rgba(7, 12, 22, 0.72);
  border: 1px solid var(--line-soft);
}

.page-products .pr-pitch {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
}

.page-products .pr-pitchcard__cap {
  margin: 16px auto 0;
  max-width: 62ch;
  font-size: 13.5px;
  color: var(--bone-dim);
  text-align: center;
}

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

/* ===== 换设备同步 ===== */
.page-products .pr-sync {
  margin-top: clamp(22px, 3.6vw, 38px);
  max-width: 860px;
}

.page-products .pr-step {
  border-bottom: 1px solid var(--line-soft);
}

.page-products .pr-step:first-child {
  border-top: 1px solid var(--line-soft);
}

.page-products .pr-step__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  cursor: pointer;
  list-style: none;
}

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

.page-products .pr-step__head::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-data);
  font-size: 19px;
  line-height: 1;
  color: var(--sand);
  transition: transform 0.2s ease;
}

.page-products .pr-step[open] .pr-step__head::after {
  content: "–";
}

.page-products .pr-step__num {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--sand);
}

.page-products .pr-step__label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--bone);
}

.page-products .pr-step[open] .pr-step__label {
  color: var(--lime);
}

.page-products .pr-step__body {
  padding: 0 0 20px 44px;
}

.page-products .pr-step__body p {
  margin: 0;
  max-width: 62ch;
  font-size: 14.5px;
  color: var(--bone-soft);
}

/* ===== 赛区 ===== */
.page-products .pr-regions {
  display: grid;
  gap: clamp(22px, 3.4vw, 38px);
  margin-top: clamp(22px, 3.6vw, 38px);
}

.page-products .pr-regions__title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sand);
}

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

.page-products .pr-regions__list li {
  padding: 6px 13px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  color: var(--bone-soft);
  background: rgba(7, 12, 22, 0.62);
  border: 1px solid var(--line-soft);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-products .pr-regions__list li:hover {
  color: var(--bone);
  border-color: var(--ochre);
}

@media (min-width: 820px) {
  .page-products .pr-regions {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  }
}

/* ===== 收尾 ===== */
.page-products .pr-band--cta {
  border-top: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(122, 36, 29, 0.22), transparent 72%),
    var(--abyss);
}

.page-products .pr-cta__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 36px);
  line-height: 1.25;
  color: var(--bone);
}

.page-products .pr-cta__text {
  margin: 0 0 24px;
  max-width: 56ch;
  font-size: 15px;
  color: var(--bone-soft);
}

.page-products .pr-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== 窄屏收口 ===== */
@media (max-width: 620px) {
  .page-products .pr-hero__facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-products .pr-track__item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .page-products .pr-step__body {
    padding-left: 0;
  }

  .page-products .pr-filters {
    padding-left: 14px;
  }

  .page-products .pr-chip {
    font-size: 12.5px;
    padding: 4px 10px;
  }
}
<<<END>>>

.page-products {
  --hair: currentColor;
}
