.page-products {
  --pd-gap: 24px;
  --pd-radius: 2px;
  color: var(--star);
}

.page-products .pd-crumb {
  padding: calc(var(--header-h) + 18px) 0 0;
}

.page-products .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: var(--fs-label);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mist);
}

.page-products .breadcrumb a {
  color: var(--mist);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--fade), border-color var(--fade);
}

.page-products .breadcrumb a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* ---------- 首屏 ---------- */
.page-products .pd-hero {
  padding: 26px 0 10px;
}

.page-products .pd-hero__grid {
  display: grid;
  gap: 34px;
}

.page-products .pd-hero__label {
  color: var(--cyan);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: var(--fs-label);
  margin: 0 0 14px;
}

.page-products .pd-hero__title {
  margin: 0 0 18px;
  font-size: clamp(30px, 7.4vw, var(--fs-h1));
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--star);
}

.page-products .pd-hero__lead {
  margin: 0 0 22px;
  max-width: 48ch;
  font-size: var(--fs-body);
  line-height: 1.95;
  color: var(--star);
  opacity: .86;
}

.page-products .pd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-products .pd-hero__note {
  margin: 20px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--violet);
  font-size: var(--fs-note);
  line-height: 1.8;
  color: var(--mist);
}

.page-products .pd-hero__figure {
  margin: 0;
  position: relative;
}

.page-products .pd-hero__figure::before {
  content: "";
  position: absolute;
  inset: -10px -10px 20px 20px;
  border: 1px solid var(--band);
  pointer-events: none;
  z-index: 0;
}

.page-products .pd-hero__figure .figure__frame {
  position: relative;
  z-index: 1;
  border: 1px solid var(--violet);
  background: var(--indigo);
  overflow: hidden;
}

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

.page-products .pd-hero__figure .figure__frame img {
  aspect-ratio: 16 / 9;
}

.page-products .figure__caption {
  margin-top: 10px;
  font-size: var(--fs-note);
  color: var(--mist);
  letter-spacing: .04em;
}

/* ---------- 主布局 ---------- */
.page-products .pd-layout {
  display: grid;
  gap: 32px;
  padding: 44px 0 72px;
}

.page-products .pd-index {
  align-self: start;
}

.page-products .pd-index__title {
  margin: 0 0 10px;
  color: var(--mist);
  letter-spacing: .2em;
  text-transform: uppercase;
}

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

.page-products .pd-index__list li {
  flex: 0 0 auto;
}

.page-products .pd-index__list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  color: var(--mist);
  font-size: var(--fs-note);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--fade), border-color var(--fade), background var(--fade);
}

.page-products .pd-index__list a:hover {
  color: var(--star);
  border-color: var(--cyan);
}

.page-products .pd-index__list .mono {
  font-size: 11px;
  color: var(--violet);
  letter-spacing: .08em;
}

/* ---------- 功能板 ---------- */
.page-products .pd-modules {
  min-width: 0;
}

.page-products .pd-mod {
  padding: 0 0 46px;
  margin: 0 0 46px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

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

.page-products .pd-mod__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  padding-left: 14px;
}

.page-products .pd-mod__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  bottom: .1em;
  width: 3px;
  background: linear-gradient(180deg, var(--violet), var(--cyan));
}

.page-products .pd-mod__num {
  font-size: var(--fs-note);
  color: var(--violet);
  letter-spacing: .1em;
}

.page-products .pd-mod__title {
  margin: 0;
  font-size: clamp(22px, 4.8vw, var(--fs-h2));
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--star);
}

.page-products .pd-mod__body > p,
.page-products .pd-mod__body .pd-mod__tail {
  max-width: 64ch;
  margin: 0 0 20px;
  font-size: var(--fs-body);
  line-height: 1.95;
  color: var(--star);
  opacity: .84;
}

.page-products .pd-inline {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 244, 224, .45);
  transition: border-color var(--fade);
}

.page-products .pd-inline:hover {
  border-bottom-color: var(--orange);
}

/* ---------- 标签页 ---------- */
.page-products .tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0;
}

.page-products .tabs__tab {
  appearance: none;
  cursor: pointer;
  font: inherit;
  font-size: var(--fs-note);
  padding: 9px 16px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--mist);
  transition: color var(--fade), border-color var(--fade), background var(--fade);
}

.page-products .tabs__tab:hover {
  color: var(--star);
  border-color: var(--violet);
}

.page-products .tabs__tab[aria-selected="true"] {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
  font-weight: 700;
}

.page-products .tabs__tab:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.page-products .tabs__panel {
  border: 1px solid var(--line);
  border-top: 0;
  background: linear-gradient(180deg, rgba(23, 30, 66, .9), rgba(11, 18, 48, .9));
  padding: 22px 20px;
}

.page-products .tabs__panel + .tabs__panel {
  margin-top: 14px;
}

.page-products .tabs__panel h3 {
  margin: 0 0 12px;
  font-size: var(--fs-lead);
  font-weight: 800;
  line-height: 1.4;
  color: var(--star);
}

.page-products .tabs__panel p {
  margin: 0 0 14px;
  max-width: 62ch;
  font-size: var(--fs-body);
  line-height: 1.9;
  color: var(--star);
  opacity: .84;
}

.page-products .tabs__panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .tabs__panel li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-size: var(--fs-body);
  line-height: 1.85;
  color: var(--star);
  opacity: .84;
}

.page-products .tabs__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 10px;
  height: 2px;
  background: var(--cyan);
}

/* ---------- 传球成功率 ---------- */
.page-products .pd-pass {
  display: grid;
  gap: 26px;
  margin: 0 0 26px;
}

.page-products .pd-bars {
  border: 1px solid var(--line);
  background: var(--deep);
  padding: 20px 18px;
}

.page-products .pd-bar {
  margin-bottom: 16px;
}

.page-products .pd-bar:last-of-type {
  margin-bottom: 0;
}

.page-products .pd-bar__name {
  display: block;
  font-size: var(--fs-label);
  letter-spacing: .1em;
  color: var(--mist);
  margin-bottom: 7px;
}

.page-products .pd-bar__track {
  display: block;
  height: 12px;
  background: rgba(42, 47, 74, .9);
  position: relative;
  overflow: hidden;
}

.page-products .pd-bar__track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transition: width var(--fade);
}

.page-products .pd-bar--a .pd-bar__track i { width: 86%; }
.page-products .pd-bar--b .pd-bar__track i { width: 68%; }
.page-products .pd-bar--c .pd-bar__track i { width: 91%; }
.page-products .pd-bar--d .pd-bar__track i { width: 77%; }

.page-products .pd-bars__note {
  margin: 16px 0 0;
  font-size: var(--fs-note);
  line-height: 1.75;
  color: var(--mist);
}

.page-products .pd-pass__figure {
  margin: 0;
}

.page-products .pd-pass__figure .figure__frame {
  border: 1px solid var(--line);
  background: var(--indigo);
  overflow: hidden;
}

.page-products .pd-pass__figure .figure__frame img {
  aspect-ratio: 3 / 2;
}

/* ---------- 折叠面板 ---------- */
.page-products .pd-acc {
  border-top: 1px solid var(--line);
}

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

.page-products .accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--star);
  transition: color var(--fade);
}

.page-products .accordion__trigger:hover {
  color: var(--cyan);
}

.page-products .accordion__trigger:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.page-products .accordion__index {
  flex: 0 0 auto;
  font-size: var(--fs-label);
  color: var(--violet);
  border: 1px solid var(--violet);
  padding: 2px 6px;
  letter-spacing: .1em;
}

.page-products .accordion__q {
  flex: 1 1 auto;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.6;
}

.page-products .accordion__sign {
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 20px;
  line-height: 1;
}

.page-products .accordion__panel {
  padding: 0 0 18px 0;
}

.page-products .accordion__panel p {
  margin: 0;
  max-width: 62ch;
  font-size: var(--fs-note);
  line-height: 1.9;
  color: var(--mist);
}

/* ---------- 场均跑动 ---------- */
.page-products .pd-run__figure {
  margin: 0 0 20px;
}

.page-products .pd-run__figure .figure__frame {
  border: 1px solid var(--line);
  background: var(--indigo);
  overflow: hidden;
}

.page-products .pd-run__figure .figure__frame img {
  aspect-ratio: 4 / 3;
}

.page-products .pd-heat {
  position: relative;
  height: 150px;
  margin: 0 0 26px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 42%, rgba(255, 138, 61, .82), transparent 40%),
    radial-gradient(circle at 30% 64%, rgba(37, 244, 224, .5), transparent 44%),
    radial-gradient(circle at 84% 76%, rgba(124, 77, 255, .55), transparent 42%),
    var(--deep);
  overflow: hidden;
}

.page-products .pd-heat::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(136, 146, 187, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136, 146, 187, .14) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-products .pd-heat__tag {
  position: absolute;
  z-index: 1;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid currentColor;
  background: rgba(5, 6, 14, .68);
}

.page-products .pd-heat__tag--hot {
  top: 14px;
  right: 14px;
  color: var(--orange);
}

.page-products .pd-heat__tag--mid {
  bottom: 16px;
  left: 14px;
  color: var(--cyan);
}

.page-products .pd-heat__tag--low {
  top: 50%;
  left: 44%;
  color: var(--mist);
}

.page-products .pd-run__card {
  border: 1px solid var(--line);
  background: var(--indigo);
  padding: 20px 18px;
}

.page-products .panel__label {
  margin: 0 0 10px;
  font-size: var(--fs-label);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-products .panel__title {
  margin: 0 0 10px;
  font-size: var(--fs-lead);
  font-weight: 800;
  line-height: 1.35;
  color: var(--star);
}

.page-products .panel__meta {
  margin: 0;
  font-size: var(--fs-note);
  line-height: 1.85;
  color: var(--mist);
}

/* ---------- 外援名额 ---------- */
.page-products .pd-squad {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(58, 30, 110, .55), transparent 58%),
    var(--deep);
  padding: 22px 18px;
  margin: 0 0 22px;
}

.page-products .pd-squad__row {
  margin-bottom: 20px;
}

.page-products .pd-squad__label {
  margin: 0 0 10px;
  font-size: var(--fs-label);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mist);
}

.page-products .pd-squad__label .mono {
  color: var(--orange);
}

.page-products .pd-squad__slots {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .pd-squad__slots li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border: 1px solid var(--line);
  font-size: var(--fs-note);
  color: var(--mist);
}

.page-products .pd-squad__slots li.is-filled {
  border-color: var(--violet);
  background: rgba(124, 77, 255, .18);
  color: var(--star);
}

.page-products .pd-squad__slots li.is-on {
  border-color: var(--cyan);
  background: rgba(37, 244, 224, .16);
  color: var(--cyan);
  font-weight: 700;
}

.page-products .pd-squad__slots li.is-off {
  border-style: dashed;
  color: var(--mist);
  opacity: .65;
}

.page-products .pd-squad__note {
  margin: 0;
  font-size: var(--fs-note);
  line-height: 1.85;
  color: var(--mist);
  max-width: 62ch;
}

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

.page-products .pd-squad__cases li {
  border-left: 2px solid var(--violet);
  padding: 4px 0 4px 14px;
}

.page-products .pd-squad__cases strong {
  display: block;
  font-size: var(--fs-body);
  font-weight: 800;
  color: var(--star);
  margin-bottom: 4px;
}

.page-products .pd-squad__cases span {
  display: block;
  font-size: var(--fs-note);
  line-height: 1.8;
  color: var(--mist);
}

/* ---------- 友谊赛 ---------- */
.page-products .pd-friend {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 0 0 24px;
}

.page-products .pd-friend__seg {
  background: var(--deep);
  padding: 22px 18px;
  position: relative;
}

.page-products .pd-friend__seg--a { box-shadow: inset 3px 0 0 var(--violet); }
.page-products .pd-friend__seg--b { box-shadow: inset 3px 0 0 var(--cyan); }
.page-products .pd-friend__seg--c { box-shadow: inset 3px 0 0 var(--orange); }

.page-products .pd-friend__num {
  display: block;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1;
  color: var(--violet);
  margin-bottom: 10px;
}

.page-products .pd-friend__seg--b .pd-friend__num { color: var(--cyan); }
.page-products .pd-friend__seg--c .pd-friend__num { color: var(--orange); }

.page-products .pd-friend__seg h3 {
  margin: 0 0 10px;
  font-size: var(--fs-lead);
  font-weight: 800;
  line-height: 1.35;
  color: var(--star);
}

.page-products .pd-friend__seg p {
  margin: 0;
  font-size: var(--fs-note);
  line-height: 1.85;
  color: var(--mist);
}

.page-products .pd-friend__figure {
  margin: 0 0 22px;
}

.page-products .pd-friend__figure .figure__frame {
  border: 1px solid var(--line);
  background: var(--indigo);
  overflow: hidden;
}

.page-products .pd-friend__figure .figure__frame img {
  aspect-ratio: 8 / 3;
}

/* ---------- 版本与设备 ---------- */
.page-products .pd-device {
  display: grid;
  gap: 26px;
}

.page-products .pd-device__figure {
  margin: 0;
}

.page-products .pd-device__figure .figure__frame {
  border: 1px solid var(--line);
  background: var(--indigo);
  overflow: hidden;
}

.page-products .pd-device__figure .figure__frame img {
  aspect-ratio: 3 / 4;
}

.page-products .pd-device__info p {
  max-width: 62ch;
  margin: 0 0 20px;
  font-size: var(--fs-body);
  line-height: 1.95;
  color: var(--star);
  opacity: .84;
}

.page-products .pd-scale {
  margin: 0 0 20px;
  padding: 0 0 0 20px;
  list-style: none;
  border-left: 1px solid var(--line);
}

.page-products .pd-scale__item {
  position: relative;
  padding: 0 0 20px;
}

.page-products .pd-scale__item:last-child {
  padding-bottom: 0;
}

.page-products .pd-scale__tick {
  position: absolute;
  left: -25px;
  top: .55em;
  width: 10px;
  height: 2px;
  background: var(--cyan);
}

.page-products .pd-scale__ver {
  display: block;
  font-size: var(--fs-lead);
  font-weight: 700;
  color: var(--star);
  line-height: 1.2;
}

.page-products .pd-scale__text {
  display: block;
  margin-top: 6px;
  font-size: var(--fs-note);
  line-height: 1.8;
  color: var(--mist);
}

.page-products .pd-device__note {
  font-size: var(--fs-note) !important;
  color: var(--mist) !important;
  opacity: 1 !important;
}

/* ---------- 受众 ---------- */
.page-products .pd-aud {
  margin-top: 4px;
}

.page-products .pd-aud__card {
  border: 1px solid var(--line);
  background: var(--indigo);
  padding: 20px 18px;
}

/* ---------- 结尾 ---------- */
.page-products .pd-cta {
  margin-top: 12px;
  border: 1px solid var(--violet);
  background:
    linear-gradient(120deg, rgba(58, 30, 110, .75), transparent 62%),
    var(--deep);
  padding: 28px 20px;
}

.page-products .pd-cta__label {
  margin: 0 0 12px;
  color: var(--orange);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.page-products .pd-cta__title {
  margin: 0 0 14px;
  font-size: clamp(24px, 5.6vw, var(--fs-h2));
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--star);
}

.page-products .pd-cta__text {
  margin: 0 0 22px;
  max-width: 58ch;
  font-size: var(--fs-body);
  line-height: 1.9;
  color: var(--star);
  opacity: .84;
}

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

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-products .pd-hero {
    padding: 40px 0 16px;
  }

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

  .page-products .pd-bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

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

  .page-products .pd-squad__slots li {
    height: 56px;
  }

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

  .page-products .pd-cta {
    padding: 40px 34px;
  }
}

@media (min-width: 1000px) {
  .page-products .pd-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: 52px;
  }

  .page-products .pd-hero__lead {
    max-width: 44ch;
  }

  .page-products .pd-layout {
    grid-template-columns: 216px minmax(0, 1fr);
    gap: 58px;
    padding: 60px 0 100px;
  }

  .page-products .pd-index {
    position: sticky;
    top: calc(var(--header-h) + 28px);
  }

  .page-products .pd-index__list {
    flex-direction: column;
    gap: 0;
    overflow: visible;
    padding-bottom: 0;
  }

  .page-products .pd-index__list li {
    flex: 1 1 auto;
  }

  .page-products .pd-index__list a {
    width: 100%;
    border: 0;
    border-left: 2px solid var(--line);
    padding: 11px 14px;
    white-space: normal;
    line-height: 1.5;
  }

  .page-products .pd-index__list a:hover {
    border-left-color: var(--cyan);
    background: linear-gradient(90deg, rgba(124, 77, 255, .22), transparent);
  }

  .page-products .pd-device {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
  }

  .page-products .pd-mod {
    padding-bottom: 56px;
    margin-bottom: 56px;
  }

  .page-products .pd-friend__seg {
    padding: 26px 22px;
  }
}

@media (min-width: 1240px) {
  .page-products .pd-hero__figure {
    margin-top: -18px;
  }
}
<<<END>>>
