.page-products {
  --pp-leaf: #4FB08A;
  --pp-wine-lift: #C0647A;
  --pp-indigo-lift: #9082DC;
  --pp-radius: clamp(14px, 2vw, 22px);
  --pp-max: 68ch;
}

/* ---------- 面包屑 ---------- */
.page-products .pp-crumb {
  margin: clamp(18px, 3vw, 30px) 0 0;
}

/* ---------- 首屏 ---------- */
.page-products .pp-hero {
  position: relative;
  z-index: 0;
  overflow: clip;
  padding: clamp(28px, 5vw, 54px) 0 clamp(48px, 7vw, 90px);
}

.page-products .pp-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -14%;
  top: -36%;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(210, 98, 46, .30), transparent 68%);
  pointer-events: none;
}

.page-products .pp-hero__grid {
  display: grid;
  gap: clamp(28px, 5vw, 52px);
}

.page-products .pp-hero__copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.05rem, 5.6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--paper);
  max-width: 22ch;
}

.page-products .pp-hero__copy .lede {
  max-width: var(--pp-max);
  color: rgba(243, 239, 230, .84);
}

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

.page-products .pp-hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-products .pp-hero__stats li {
  display: grid;
  gap: 6px;
  padding: 18px 18px 20px;
  background: rgba(23, 69, 58, .70);
  border: 1px solid var(--line);
  border-radius: 18px 14px 20px 16px;
}

.page-products .pp-hero__stats li:nth-child(even) {
  border-radius: 14px 20px 16px 18px;
  background: rgba(12, 42, 34, .78);
}

.page-products .pp-hero__stats .num {
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--gold);
  line-height: 1;
}

.page-products .pp-hero__stats li > span:last-child {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(243, 239, 230, .66);
}

/* ---------- 主题带通用 ---------- */
.page-products .pp-band {
  position: relative;
  z-index: 0;
  padding: clamp(58px, 8vw, 106px) 0;
  --band-accent: var(--turf);
}

.page-products .pp-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--band-bg, var(--mid));
  clip-path: polygon(0 24px, 100% 0, 100% calc(100% - 24px), 0 100%);
}

.page-products .pp-band--steal {
  --band-accent: var(--pp-leaf);
  --band-bg: radial-gradient(80% 120% at 88% 4%, rgba(42, 107, 87, .58), transparent 62%),
             linear-gradient(114deg, #17453A, #0B2A21 74%);
}

.page-products .pp-band--injury {
  --band-accent: var(--gold);
  --band-bg: radial-gradient(72% 120% at 10% 0%, rgba(240, 162, 75, .26), transparent 60%),
             linear-gradient(114deg, #14211C, #0A2219 76%);
}

.page-products .pp-band--score {
  --band-accent: var(--clay);
  --band-bg: radial-gradient(78% 120% at 92% 100%, rgba(210, 98, 46, .26), transparent 62%),
             linear-gradient(114deg, #1A2A24, #0C241C 74%);
}

.page-products .pp-band--map {
  --band-accent: var(--sky);
  --band-bg: radial-gradient(80% 90% at 50% 50%, rgba(76, 143, 181, .24), transparent 68%),
             linear-gradient(160deg, #0F2C32, #0A211C 78%);
}

.page-products .pp-band--rotation {
  --band-accent: var(--pp-leaf);
  --band-bg: radial-gradient(70% 120% at 12% 100%, rgba(79, 176, 138, .22), transparent 62%),
             linear-gradient(114deg, #164136, #0A241C 76%);
}

.page-products .pp-band--log {
  --band-accent: var(--pp-wine-lift);
  --band-bg: radial-gradient(76% 120% at 86% 0%, rgba(122, 43, 58, .52), transparent 64%),
             linear-gradient(114deg, #271A20, #0D1F1A 76%);
}

.page-products .pp-band--follow {
  --band-accent: var(--pp-indigo-lift);
  --band-bg: radial-gradient(76% 120% at 14% 0%, rgba(59, 47, 99, .70), transparent 66%),
             linear-gradient(114deg, #1B2436, #0A211C 78%);
}

.page-products .pp-band__grid {
  display: grid;
  gap: clamp(26px, 4vw, 50px);
  align-items: center;
}

.page-products .pp-band__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--pp-radius);
  border: 1px solid var(--line-strong);
  background: var(--night-deep);
  box-shadow: var(--shadow);
}

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

.page-products .pp-band__idx {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--band-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--band-accent);
}

.page-products .pp-band__idx .num {
  font-size: 14px;
  opacity: .82;
}

.page-products .pp-band h2 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.24;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--paper);
  max-width: 24ch;
}

.page-products .pp-band__copy > p {
  max-width: var(--pp-max);
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(243, 239, 230, .82);
}

.page-products .pp-band__copy .btn {
  margin-top: 16px;
}

/* ---------- 维度列表 ---------- */
.page-products .pp-dims {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-products .pp-dims li {
  display: grid;
  gap: 6px;
  padding: 15px 18px 17px;
  border-left: 2px solid var(--band-accent);
  background: rgba(8, 33, 26, .52);
  border-radius: 4px 16px 18px 4px;
}

.page-products .pp-dims strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--band-accent);
}

.page-products .pp-dims span {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(243, 239, 230, .78);
}

/* ---------- 轮次筛选 ---------- */
.page-products .pp-sieve {
  margin-top: 28px;
}

.page-products .pp-sieve__in {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.page-products .pp-sieve__chip {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 9px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(243, 239, 230, .82);
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.page-products .pp-sieve__chip:hover {
  border-color: var(--gold);
  color: var(--paper);
}

.page-products .pp-sieve__in:checked + .pp-sieve__chip {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--paper);
}

.page-products .pp-sieve__in:focus-visible + .pp-sieve__chip {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.page-products .pp-sieve__out {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 4px 18px 18px 18px;
  background: rgba(8, 33, 26, .58);
}

.page-products .pp-sieve__row {
  display: none;
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(243, 239, 230, .84);
}

.page-products #pp-r10:checked ~ .pp-sieve__out .pp-sieve__row[data-round="10"],
.page-products #pp-r11:checked ~ .pp-sieve__out .pp-sieve__row[data-round="11"],
.page-products #pp-r12:checked ~ .pp-sieve__out .pp-sieve__row[data-round="12"] {
  display: block;
}

/* ---------- 主场地图 ---------- */
.page-products .pp-map {
  text-align: center;
}

.page-products .pp-map__idx {
  justify-content: center;
}

.page-products .pp-map h2 {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.page-products .pp-map__lede {
  max-width: 62ch;
  margin: 0 auto clamp(34px, 5vw, 56px);
  font-size: 16px;
  line-height: 1.88;
  color: rgba(243, 239, 230, .82);
}

.page-products .pp-map__stage {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.page-products .pp-map__plate {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(232, 226, 213, .28);
  background: var(--night-deep);
}

.page-products .pp-map__plate img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
  filter: saturate(.85) contrast(1.06);
}

.page-products .pp-map__rings {
  position: absolute;
  inset: 7%;
  z-index: 2;
  pointer-events: none;
}

.page-products .pp-map__rings svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-products .pp-map__rings circle,
.page-products .pp-map__rings line {
  fill: none;
  stroke: var(--chalk);
  stroke-opacity: .26;
  stroke-width: 1.5;
}

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

.page-products .pp-map__pin {
  display: grid;
  gap: 3px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 33, 26, .62);
  text-align: left;
}

.page-products .pp-map__pin-k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--sky);
}

.page-products .pp-map__pin-v {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 239, 230, .84);
}

.page-products .pp-map__facts {
  display: grid;
  gap: 16px;
  margin: clamp(36px, 5vw, 58px) 0 0;
  text-align: left;
}

.page-products .pp-map__facts > div {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.page-products .pp-map__facts dt {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--sky);
  margin-bottom: 8px;
}

.page-products .pp-map__facts dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(243, 239, 230, .78);
}

/* ---------- 首发轮换 ---------- */
.page-products .pp-rot {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.page-products .pp-rot li {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line-strong);
}

.page-products .pp-rot li:first-child {
  border-top: 1px dashed var(--line-strong);
}

.page-products .pp-rot__k {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--pp-leaf);
}

.page-products .pp-rot__v {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(243, 239, 230, .8);
}

/* ---------- 版本日志 ---------- */
.page-products .pp-log {
  margin-top: 28px;
}

.page-products .pp-log .disclosure + .disclosure {
  margin-top: 10px;
}

.page-products .pp-log .disclosure {
  border-left: 2px solid transparent;
  transition: border-color .24s ease;
}

.page-products .pp-log .disclosure[data-open] {
  border-left-color: var(--clay);
}

.page-products .pp-log .disclosure__btn {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  width: 100%;
  padding: 15px 16px;
  text-align: left;
  background: rgba(8, 25, 24, .58);
  border: 1px solid var(--line);
  border-radius: 4px 16px 16px 4px;
  color: var(--paper);
  font-size: 15px;
  line-height: 1.65;
  cursor: pointer;
}

.page-products .pp-log .disclosure__btn:hover {
  border-color: var(--pp-wine-lift);
}

.page-products .pp-log .disclosure__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.page-products .pp-log__ver {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--pp-wine-lift);
}

.page-products .pp-log__ttl {
  flex: 1 1 14ch;
}

.page-products .pp-log .disclosure__body {
  padding: 4px 18px 18px;
}

.page-products .pp-log .disclosure__body p {
  margin: 0;
  max-width: var(--pp-max);
  font-size: 14px;
  line-height: 1.82;
  color: rgba(243, 239, 230, .74);
}

.page-products .pp-log__more {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(243, 239, 230, .62);
}

/* ---------- 关注与提醒 ---------- */
.page-products .pp-follow {
  text-align: left;
}

.page-products .pp-follow h2 {
  max-width: 24ch;
}

.page-products .pp-follow__lede {
  max-width: var(--pp-max);
  margin: 0 0 clamp(28px, 4vw, 44px);
  font-size: 16px;
  line-height: 1.88;
  color: rgba(243, 239, 230, .82);
}

.page-products .pp-follow__grid {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
}

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

.page-products .pp-follow__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px 14px 20px 16px;
  background: rgba(18, 22, 46, .58);
}

.page-products .pp-follow__badge {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 46px;
  padding: 0 8px;
  border-radius: 12px;
  background: rgba(144, 130, 220, .16);
  color: var(--pp-indigo-lift);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.page-products .pp-follow__list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 5px;
}

.page-products .pp-follow__list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
  color: rgba(243, 239, 230, .74);
}

.page-products .pp-follow__team {
  padding: 22px 20px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 22px 16px 22px 18px;
  background: rgba(8, 25, 24, .62);
}

.page-products .pp-follow__team-hd {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: .06em;
  color: rgba(243, 239, 230, .7);
}

.page-products .pp-follow__team-hd .num {
  font-size: 20px;
  font-weight: 800;
  color: var(--pp-indigo-lift);
}

.page-products .pp-follow__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-products .pp-follow__team-note {
  margin: 18px 0 16px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(243, 239, 230, .7);
}

/* ---------- 收尾 ---------- */
.page-products .pp-outro__grid {
  display: grid;
  gap: clamp(26px, 4vw, 46px);
}

.page-products .pp-outro h2 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--paper);
  max-width: 22ch;
}

.page-products .pp-outro p {
  margin: 0;
  max-width: var(--pp-max);
  font-size: 16px;
  line-height: 1.85;
  color: rgba(243, 239, 230, .8);
}

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

.page-products .pp-outro__links a {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--clay);
  border-radius: 4px 16px 16px 4px;
  background: rgba(23, 69, 58, .5);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}

.page-products .pp-outro__links a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  border-left-color: var(--gold);
}

.page-products .pp-outro__links span:first-child {
  font-size: 15px;
  font-weight: 700;
  color: var(--paper);
}

.page-products .pp-outro__links span:last-child {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(243, 239, 230, .66);
}

/* ---------- 响应式 ---------- */
@media (min-width: 720px) {
  .page-products .pp-map__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .page-products .pp-map__facts > div {
    padding: 20px 22px;
    border-top: 1px solid var(--line);
  }

  .page-products .pp-follow__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  }
}

@media (min-width: 880px) {
  .page-products .pp-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    align-items: end;
  }

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

  .page-products .pp-band__grid {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  }

  .page-products .pp-band__media {
    transform: rotate(var(--tilt));
  }

  .page-products .pp-map__pins {
    position: absolute;
    inset: -10% -13%;
    margin-top: 0;
    display: block;
    pointer-events: none;
  }

  .page-products .pp-map__pin {
    position: absolute;
    width: 190px;
    pointer-events: auto;
    background: rgba(8, 33, 26, .82);
    backdrop-filter: blur(3px);
  }

  .page-products .pp-map__pin--n {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .page-products .pp-map__pin--s {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .page-products .pp-map__pin--e {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .page-products .pp-map__pin--w {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

@media (min-width: 1024px) {
  .page-products .pp-outro__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
    align-items: start;
  }
}

@media (max-width: 719px) {
  .page-products .pp-band::before {
    clip-path: polygon(0 14px, 100% 0, 100% calc(100% - 14px), 0 100%);
  }

  .page-products .pp-map__pin {
    border-color: var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .pp-band__media,
  .page-products .pp-outro__links a,
  .page-products .pp-sieve__chip {
    transition: none;
    transform: none;
  }
}
