.page-products {
  --pp-rail: 220px;
  --pp-surface: rgba(18, 22, 28, .78);
  --pp-surface-soft: rgba(11, 18, 32, .72);
  display: block;
}

.page-products [id] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

/* ---------- 首屏 ---------- */
.page-products .pp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(40px, 8vw, 96px) clamp(36px, 6.5vw, 80px);
  background:
    radial-gradient(124% 100% at 92% -16%, rgba(200, 16, 46, .46), transparent 58%),
    radial-gradient(92% 82% at -8% 110%, rgba(31, 138, 76, .3), transparent 62%),
    linear-gradient(162deg, var(--c-night) 10%, var(--c-board) 100%);
}

.page-products .pp-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20%;
  right: -14%;
  width: min(540px, 70vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: conic-gradient(from 200deg, rgba(232, 178, 74, .28), transparent 56%);
  pointer-events: none;
}

.page-products .pp-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8%;
  bottom: -36%;
  width: 120%;
  height: 62%;
  background: linear-gradient(120deg, rgba(200, 16, 46, .32), rgba(124, 13, 34, .1) 60%, transparent);
  transform: rotate(-4.5deg);
  pointer-events: none;
}

.page-products .pp-hero__inner {
  position: relative;
  z-index: 1;
}

.page-products .pp-hero__title {
  max-width: 20ch;
  margin: 16px 0 0;
}

.page-products .pp-hero__lede {
  max-width: 62ch;
  margin-top: 22px;
  color: rgba(245, 239, 230, .82);
}

.page-products .pp-hero__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  margin-top: clamp(30px, 5vw, 52px);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-line-soft);
}

.page-products .pp-hero__fact {
  background: var(--pp-surface-soft);
  padding: clamp(16px, 2.6vw, 24px) clamp(16px, 2.4vw, 22px);
}

.page-products .pp-hero__fact b {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(1.5rem, 4.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-gold);
}

.page-products .pp-hero__fact span {
  display: block;
  margin-top: 8px;
  font-size: .8125rem;
  letter-spacing: .04em;
  color: var(--c-slate);
}

/* ---------- 控制台式两栏 ---------- */
.page-products .pp-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  padding-block: clamp(32px, 6vw, 72px);
}

@media (min-width: 1020px) {
  .page-products .pp-console {
    grid-template-columns: var(--pp-rail) minmax(0, 1fr);
  }
}

/* ---------- 左侧模块索引 ---------- */
.page-products .pp-index {
  align-self: start;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--pp-surface);
  padding: 14px;
}

@media (min-width: 1020px) {
  .page-products .pp-index {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    padding: 18px 16px;
  }
}

.page-products .pp-index__title {
  margin: 0 0 12px;
  font-family: var(--font-data);
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-slate);
}

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

.page-products .pp-index__list::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1020px) {
  .page-products .pp-index__list {
    flex-direction: column;
    gap: 6px;
    overflow: visible;
  }
}

.page-products .pp-index__link {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: none;
  padding: 10px 14px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  background: rgba(138, 147, 163, .09);
  color: var(--c-slate);
  font-size: .875rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease);
}

.page-products .pp-index__link:hover {
  color: var(--c-paper);
  background: rgba(138, 147, 163, .18);
}

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

.page-products .pp-index__num {
  font-family: var(--font-data);
  font-size: .6875rem;
  letter-spacing: .12em;
  opacity: .82;
}

.page-products .pp-index__link.is-current {
  color: var(--c-night);
  font-weight: 500;
  background: linear-gradient(120deg, var(--c-gold), #f2c97d);
  border-color: var(--c-gold);
}

.page-products .pp-index__link.is-current .pp-index__num {
  opacity: .7;
}

/* ---------- 右侧内容流 ---------- */
.page-products .pp-stream {
  min-width: 0;
}

.page-products .pp-block {
  padding-block: clamp(28px, 5vw, 54px);
  border-top: 1px solid var(--c-line-soft);
}

.page-products .pp-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.page-products .pp-block--last {
  padding-bottom: 0;
}

.page-products .pp-block__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.page-products .pp-block__num {
  flex: none;
  font-family: var(--font-data);
  font-size: clamp(1.3rem, 3.2vw, 1.9rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
  color: rgba(232, 178, 74, .4);
}

.page-products .pp-block__head .section-title {
  margin: 0;
}

.page-products .pp-intro {
  max-width: 70ch;
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(245, 239, 230, .8);
}

.page-products .pp-intro--tight {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: .9375rem;
}

.page-products .pp-intro a {
  color: var(--c-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-products .pp-note {
  margin: 14px 0 0;
  font-size: .8125rem;
  line-height: 1.7;
  color: var(--c-slate);
}

/* ---------- 数据表 ---------- */
.page-products .pp-tablewrap {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--pp-surface-soft);
  overflow-x: auto;
}

.page-products .pp-tablewrap--gap {
  margin-top: 22px;
}

.page-products .pp-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}

.page-products .pp-table th,
.page-products .pp-table td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  font-size: .9375rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--c-line-soft);
}

.page-products .pp-table thead th {
  border-bottom: 1px solid var(--c-line-gold);
  background: linear-gradient(180deg, rgba(232, 178, 74, .15), rgba(232, 178, 74, 0));
  color: var(--c-gold);
  font-family: var(--font-data);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .16em;
  white-space: nowrap;
}

.page-products .pp-table tbody tr:nth-child(odd) {
  background: rgba(138, 147, 163, .05);
}

.page-products .pp-table tbody tr:hover {
  background: rgba(232, 178, 74, .07);
}

.page-products .pp-table tbody tr:last-child td {
  border-bottom: 0;
}

.page-products .pp-table td.num,
.page-products .pp-table th.num {
  font-family: var(--font-data);
  text-align: right;
  white-space: nowrap;
  color: var(--c-paper);
}

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

.page-products .pp-table td:first-child {
  white-space: nowrap;
}

.page-products .pp-mod {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  color: var(--c-paper);
}

.page-products .pp-mod::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-cyan);
}

.page-products .pp-table tbody tr:nth-child(2) .pp-mod::before { background: var(--c-orange); }
.page-products .pp-table tbody tr:nth-child(3) .pp-mod::before { background: var(--c-gold); }
.page-products .pp-table tbody tr:nth-child(4) .pp-mod::before { background: var(--c-red); }
.page-products .pp-table tbody tr:nth-child(5) .pp-mod::before { background: var(--c-green); }

/* ---------- 检索维度标签 ---------- */
.page-products .pp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
}

.page-products .pp-tags li {
  padding: 7px 15px;
  border-radius: var(--pill);
  border: 1px solid var(--c-line);
  background: rgba(138, 147, 163, .09);
  font-size: .8125rem;
  letter-spacing: .02em;
  color: rgba(245, 239, 230, .86);
}

/* ---------- 图文双栏 ---------- */
.page-products .pp-duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 30px);
}

@media (min-width: 880px) {
  .page-products .pp-duo {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
    align-items: start;
  }

  .page-products .pp-duo--flip {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  }
}

.page-products .pp-duo__main {
  min-width: 0;
}

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

/* ---------- 描金面板 ---------- */
.page-products .pp-panel {
  margin: 0 0 20px;
  padding: 20px 20px 6px;
  border: 1px solid var(--c-line-gold);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(232, 178, 74, .08), transparent 58%), var(--pp-surface);
}

.page-products .pp-panel__label {
  margin: 0 0 14px;
  font-family: var(--font-data);
  font-size: .6875rem;
  letter-spacing: .18em;
  color: var(--c-gold);
}

.page-products .pp-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products .pp-panel__list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  padding: 0 0 16px;
}

@media (min-width: 560px) {
  .page-products .pp-panel__list li {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: baseline;
  }
}

.page-products .pp-panel__list b {
  font-size: .875rem;
  font-weight: 500;
  color: var(--c-paper);
}

.page-products .pp-panel__list span {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(245, 239, 230, .72);
}

/* ---------- 要点列表 ---------- */
.page-products .pp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products .pp-list li {
  position: relative;
  padding: 0 0 18px 22px;
  border-bottom: 1px solid var(--c-line-soft);
  margin-bottom: 18px;
}

.page-products .pp-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.page-products .pp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--c-green);
}

.page-products .pp-list b {
  display: block;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--c-paper);
  margin-bottom: 5px;
}

.page-products .pp-list span {
  display: block;
  font-size: .875rem;
  line-height: 1.72;
  color: rgba(245, 239, 230, .72);
}

/* ---------- 统计分列横幅 ---------- */
.page-products .pp-banner {
  position: relative;
  overflow: hidden;
  margin-block: clamp(30px, 5vw, 56px);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--c-line-gold);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(34, 211, 238, .1), transparent 46%),
    linear-gradient(320deg, rgba(255, 138, 61, .1), transparent 46%),
    var(--c-surface-2);
}

.page-products .pp-banner::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -42%;
  width: 46%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 178, 74, .16), transparent 68%);
  pointer-events: none;
}

.page-products .pp-banner__head {
  position: relative;
  z-index: 1;
}

.page-products .pp-banner__head .section-title {
  margin: 8px 0 0;
}

.page-products .pp-banner .pp-intro {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  margin-bottom: 0;
}

.page-products .pp-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-top: 26px;
}

@media (min-width: 720px) {
  .page-products .pp-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 40px;
  }
}

.page-products .pp-split__legend {
  grid-column: 1 / -1;
  display: flex;
  gap: 20px;
}

.page-products .pp-legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  letter-spacing: .04em;
  color: var(--c-slate);
}

.page-products .pp-legend::before {
  content: "";
  width: 18px;
  height: 4px;
  border-radius: var(--pill);
}

.page-products .pp-legend--home::before {
  background: var(--c-cyan);
}

.page-products .pp-legend--away::before {
  background: var(--c-orange);
}

.page-products .pp-split__item {
  min-width: 0;
}

.page-products .pp-split__label {
  margin: 0 0 12px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--c-paper);
}

.page-products .pp-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3.6rem;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.page-products .pp-bar:last-child {
  margin-bottom: 0;
}

.page-products .pp-bar__track {
  display: block;
  height: 10px;
  border-radius: var(--pill);
  background: rgba(138, 147, 163, .16);
  overflow: hidden;
}

.page-products .pp-bar__fill {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  border-radius: var(--pill);
}

.page-products .pp-bar__fill--home {
  background: linear-gradient(90deg, rgba(34, 211, 238, .45), var(--c-cyan));
}

.page-products .pp-bar__fill--away {
  background: linear-gradient(90deg, rgba(255, 138, 61, .45), var(--c-orange));
}

.page-products .pp-bar__val {
  font-family: var(--font-data);
  font-size: .875rem;
  font-weight: 500;
  text-align: right;
  color: var(--c-paper);
}

.page-products .pp-banner__media {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
}

/* ---------- 图片容器兜底 ---------- */
.page-products .media {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--c-board);
}

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

.page-products .pp-shot {
  margin: 0 0 22px;
}

.page-products .pp-shot--tight {
  margin: 26px 0 0;
}

/* ---------- 三种获取方式 ---------- */
.page-products .pp-access {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-top: 4px;
}

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

.page-products .pp-access__card {
  padding: 22px 20px 24px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--pp-surface);
}

.page-products .pp-access__index {
  margin: 0 0 10px;
  font-family: var(--font-data);
  font-size: .6875rem;
  letter-spacing: .18em;
  color: var(--c-gold);
}

.page-products .pp-access__card h3 {
  margin: 0 0 12px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--c-paper);
}

.page-products .pp-access__card p {
  margin: 0 0 12px;
  font-size: .875rem;
  line-height: 1.72;
  color: rgba(245, 239, 230, .74);
}

.page-products .pp-access__meta {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--c-line-soft);
  font-family: var(--font-data);
  font-size: .75rem;
  letter-spacing: .04em;
  color: var(--c-cyan);
}

/* ---------- 更新节奏 ---------- */
.page-products .pp-cadence {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-line-soft);
}

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

.page-products .pp-cadence__cell {
  padding: 22px 20px 24px;
  background: var(--pp-surface-soft);
}

.page-products .pp-cadence__num {
  margin: 0;
  font-family: var(--font-data);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
  color: var(--c-gold);
  letter-spacing: -0.01em;
}

.page-products .pp-cadence__label {
  margin: 10px 0 10px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--c-paper);
}

.page-products .pp-cadence__note {
  margin: 0;
  font-size: .8125rem;
  line-height: 1.7;
  color: var(--c-slate);
}

/* ---------- 服务层级 ---------- */
.page-products .pp-tiers {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 6px;
}

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

  .page-products .pp-tier:nth-child(2) {
    margin-top: 28px;
  }

  .page-products .pp-tier:nth-child(3) {
    margin-top: 56px;
  }
}

.page-products .pp-tier {
  position: relative;
  overflow: hidden;
  padding: 26px 22px 28px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--pp-surface);
}

.page-products .pp-tier::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-red), var(--c-gold));
}

.page-products .pp-tier--focus {
  border-color: var(--c-line-gold);
  background: linear-gradient(160deg, rgba(232, 178, 74, .1), transparent 60%), var(--pp-surface);
}

.page-products .pp-tier__tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 12px;
  border-radius: var(--pill);
  border: 1px solid var(--c-line);
  font-family: var(--font-data);
  font-size: .6875rem;
  letter-spacing: .16em;
  color: var(--c-slate);
}

.page-products .pp-tier__tag--gold {
  border-color: var(--c-line-gold);
  color: var(--c-gold);
}

.page-products .pp-tier h3 {
  margin: 0 0 12px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--c-paper);
}

.page-products .pp-tier p {
  margin: 0 0 16px;
  font-size: .875rem;
  line-height: 1.72;
  color: rgba(245, 239, 230, .74);
}

.page-products .pp-tier__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products .pp-tier__list li {
  position: relative;
  padding: 7px 0 7px 18px;
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--c-slate);
  border-top: 1px solid var(--c-line-soft);
}

.page-products .pp-tier__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
}

.page-products .pp-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: clamp(30px, 5vw, 52px);
  padding: clamp(22px, 3.4vw, 32px);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(200, 16, 46, .16), rgba(11, 18, 32, .9) 62%);
}

.page-products .pp-cta__text {
  flex: 1 1 260px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 239, 230, .86);
}

/* ---------- 窄屏收敛 ---------- */
@media (max-width: 560px) {
  .page-products .pp-hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-products .pp-block__head {
    gap: 10px;
  }

  .page-products .pp-table th,
  .page-products .pp-table td {
    padding: 12px 14px;
    font-size: .875rem;
  }

  .page-products .pp-tags li {
    padding: 6px 12px;
    font-size: .75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .pp-index__link,
  .page-products .pp-tier,
  .page-products .pp-access__card {
    transition: none;
  }
}

.page-products {
  --w: 1rem;
}
