.page-products {
  --pp-panel: rgba(14, 43, 74, 0.66);
  --pp-line: rgba(63, 240, 216, 0.16);
  --pp-line-soft: rgba(159, 217, 232, 0.11);
  --pp-radius: 18px;
  --pp-cap: rgba(159, 217, 232, 0.7);
}

/* ---------- 首屏 ---------- */
.page-products .pp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.25rem, 6vw, 4.5rem) 0 clamp(1.75rem, 4vw, 2.75rem);
}

.page-products .pp-hero::before,
.page-products .pp-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.page-products .pp-hero::before {
  width: min(42rem, 96vw);
  aspect-ratio: 1;
  top: -34%;
  right: -14%;
  background: radial-gradient(circle at center, rgba(63, 240, 216, 0.18), rgba(63, 240, 216, 0) 66%);
}

.page-products .pp-hero::after {
  width: min(30rem, 82vw);
  aspect-ratio: 1;
  bottom: -46%;
  left: -10%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0) 68%);
}

.page-products .pp-hero__title {
  margin: 0.4rem 0 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.3rem, 8.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: 0 0 30px rgba(63, 240, 216, 0.2);
}

.page-products .pp-hero__title em {
  display: block;
  font-style: normal;
  font-size: 0.62em;
  color: var(--neon);
  letter-spacing: 0.005em;
  text-shadow: 0 0 22px rgba(63, 240, 216, 0.42);
}

.page-products .pp-hero__lead {
  max-width: 44rem;
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  line-height: 1.85;
  color: var(--text-dim);
}

.page-products .pp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-mute);
}

.page-products .pp-hero__meta .mono {
  margin-right: 0.35rem;
  font-size: 1.05rem;
  color: var(--gold);
}

.page-products .pp-hero__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ---------- 通用标题组 ---------- */
.page-products h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 4.6vw, 2.55rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--text);
}

.page-products h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.7vw, 1.28rem);
  line-height: 1.32;
  color: var(--text);
}

.page-products .pp-head {
  max-width: 46rem;
  margin-bottom: clamp(1.4rem, 3.4vw, 2.4rem);
}

.page-products .pp-head__note {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dim);
}

.page-products p {
  line-height: 1.8;
}

/* ---------- 入口 ---------- */
.page-products .pp-entries__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
}

.page-products .pp-entries__list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .pp-entry {
  position: relative;
  padding: 1.3rem 1.25rem 1.35rem;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: linear-gradient(152deg, rgba(14, 43, 74, 0.86), rgba(7, 20, 38, 0.55));
  box-shadow: var(--shadow-soft);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.page-products .pp-entry:hover {
  transform: translateY(-3px);
  border-color: rgba(63, 240, 216, 0.42);
  box-shadow: 0 0 0 1px rgba(63, 240, 216, 0.14), 0 26px 46px -32px rgba(63, 240, 216, 0.55);
}

.page-products .pp-entry__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  margin-bottom: 0.45rem;
}

.page-products .pp-entry__head h3 {
  margin: 0;
}

.page-products .pp-entry__desc {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-dim);
}

.page-products .pp-steps {
  display: grid;
  gap: 0.5rem;
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
}

.page-products .pp-steps li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-dim);
}

.page-products .pp-steps .mono {
  flex: none;
  font-size: 0.8rem;
  color: var(--neon);
}

.page-products .pp-steps--wide {
  margin-bottom: 1.6rem;
}

.page-products .pp-entries__figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--pp-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(7, 20, 38, 0.6);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.page-products .pp-entries__figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(63, 240, 216, 0.3), var(--glow-neon);
}

.page-products .pp-entries__figure img,
.page-products .pp-ios__shot img,
.page-products .pp-rooms__shot img,
.page-products .pp-season__figure img,
.page-products .pp-first__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pp-cap {
  padding: 0.7rem 0.95rem;
  border-top: 1px solid var(--pp-line-soft);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--pp-cap);
}

/* ---------- iOS ---------- */
.page-products .pp-ios {
  position: relative;
}

.page-products .pp-ios::before {
  content: "";
  position: absolute;
  inset: 8% -8% 8% 20%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 40%, rgba(63, 240, 216, 0.09), rgba(63, 240, 216, 0) 68%);
  pointer-events: none;
}

.page-products .pp-ios__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
}

.page-products .pp-ios__text > p {
  margin: 0 0 1rem;
  color: var(--text-dim);
  font-size: 1rem;
}

.page-products .pp-ios__text h3 {
  margin-top: 1.6rem;
}

.page-products .pp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .pp-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--pp-line);
  border-radius: var(--r-pill);
  background: rgba(63, 240, 216, 0.07);
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--text-dim);
}

.page-products .pp-chips .mono {
  font-size: 0.76rem;
  color: var(--gold);
}

.page-products .pp-ios__foot {
  margin: 1.3rem 0 0;
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--text-mute);
}

.page-products .pp-ios__foot a,
.page-products .pp-first__links a {
  color: var(--neon);
  text-decoration-color: rgba(63, 240, 216, 0.4);
}

.page-products .pp-ios__shot {
  margin: 0;
  justify-self: center;
  width: min(100%, 18rem);
  border: 1px solid var(--pp-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(7, 20, 38, 0.6);
  box-shadow: var(--shadow-soft);
}

/* ---------- 内容板块 ---------- */
.page-products .pp-modules__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .pp-module {
  position: relative;
  overflow: hidden;
  padding: 1.55rem 1.25rem 1.35rem;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: linear-gradient(168deg, rgba(14, 43, 74, 0.8), rgba(7, 20, 38, 0.5));
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}

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

.page-products .pp-module:nth-child(2)::before {
  background: linear-gradient(90deg, var(--coral), var(--gold));
}

.page-products .pp-module:nth-child(3)::before {
  background: linear-gradient(90deg, var(--gold), var(--kelp));
}

.page-products .pp-module:nth-child(4)::before {
  background: linear-gradient(90deg, var(--violet), var(--coral));
}

.page-products .pp-module:hover {
  transform: translateY(-3px);
  border-color: rgba(63, 240, 216, 0.36);
}

.page-products .pp-module__icon {
  display: block;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.85rem;
  color: var(--neon);
}

.page-products .pp-module:nth-child(2) .pp-module__icon {
  color: var(--coral);
}

.page-products .pp-module:nth-child(3) .pp-module__icon {
  color: var(--gold);
}

.page-products .pp-module:nth-child(4) .pp-module__icon {
  color: var(--violet);
}

.page-products .pp-module p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.78;
  color: var(--text-dim);
}

.page-products .pp-module__meta {
  margin-top: 0.85rem !important;
  font-size: 0.84rem !important;
  color: var(--text-mute) !important;
}

.page-products .pp-module__meta .mono {
  margin-right: 0.35rem;
  color: var(--gold);
}

/* ---------- 房间导航 ---------- */
.page-products .pp-facets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.page-products .pp-facets li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--pp-line);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.page-products .pp-facets .mono {
  font-size: 0.76rem;
  color: var(--neon);
}

.page-products .pp-rooms__shot {
  margin: 0 0 1.6rem;
  border: 1px solid var(--pp-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(7, 20, 38, 0.6);
}

.page-products .pp-room-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--pp-line);
}

.page-products .pp-room {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.3rem 0.9rem;
  align-items: center;
  padding: 0.95rem 0.2rem;
  border-bottom: 1px solid var(--pp-line-soft);
  transition: background var(--t-fast) var(--ease);
}

.page-products .pp-room:hover {
  background: rgba(63, 240, 216, 0.045);
}

.page-products .pp-room--head {
  padding: 0.5rem 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  border-bottom-color: var(--pp-line);
}

.page-products .pp-room--head span:nth-child(n + 3) {
  display: none;
}

.page-products .pp-room__name {
  grid-column: 1 / -1;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text);
}

.page-products .pp-room__tag {
  font-size: 0.82rem;
  color: var(--mist);
}

.page-products .pp-room__diff,
.page-products .pp-room__stage {
  font-size: 0.82rem;
  color: var(--text-mute);
}

.page-products .pp-room__count {
  justify-self: end;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(63, 240, 216, 0.34);
  border-radius: var(--r-pill);
  background: rgba(63, 240, 216, 0.09);
  font-size: 0.8rem;
  color: var(--neon);
  white-space: nowrap;
}

/* ---------- 赛季 ---------- */
.page-products .pp-season {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7, 20, 38, 0) 0%, rgba(14, 43, 74, 0.92) 32%, rgba(14, 43, 74, 0.86) 72%, rgba(7, 20, 38, 0) 100%);
}

.page-products .pp-season__rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(52rem, 125vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(63, 240, 216, 0.1);
  box-shadow: 0 0 0 6rem rgba(63, 240, 216, 0.035), 0 0 0 12rem rgba(139, 92, 246, 0.03);
  pointer-events: none;
}

.page-products .pp-season__inner {
  position: relative;
}

.page-products .pp-season__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2.2rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.page-products .pp-season__stats li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.94rem;
  color: var(--text-dim);
}

.page-products .pp-season__stats .mono {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
}

.page-products .pp-progress {
  max-width: 46rem;
}

.page-products .pp-progress__label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-mute);
}

.page-products .pp-progress__label .mono {
  color: var(--neon);
}

.page-products .pp-bar {
  display: block;
  height: 0.5rem;
  border-radius: var(--r-pill);
  background: rgba(159, 217, 232, 0.14);
  overflow: hidden;
}

.page-products .pp-bar__fill {
  display: block;
  width: 67%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--neon), var(--violet));
  box-shadow: var(--glow-neon);
}

.page-products .pp-season__figure {
  margin: 1.9rem 0 1.2rem;
  border: 1px solid var(--pp-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(7, 20, 38, 0.55);
}

.page-products .pp-season__note {
  margin: 0;
  max-width: 46rem;
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--text-mute);
}

/* ---------- 设备要求（纸面） ---------- */
.page-products .pp-specs__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem;
  margin: 0;
}

.page-products .pp-specs__list > div {
  padding-left: 0.9rem;
  border-left: 2px solid rgba(42, 27, 18, 0.18);
}

.page-products .pp-specs__list dt {
  margin-bottom: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  color: rgba(42, 27, 18, 0.68);
}

.page-products .pp-specs__list dd {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.78;
  color: var(--ink);
}

.page-products .section--paper h2,
.page-products .section--paper h3 {
  color: var(--ink);
}

.page-products .section--paper .kicker {
  color: rgba(42, 27, 18, 0.62);
}

.page-products .section--paper a {
  color: var(--deep-red);
}

.page-products .pp-specs__note {
  max-width: 46rem;
  margin: 1.6rem 0 0;
  font-size: 0.92rem;
  line-height: 1.78;
  color: rgba(42, 27, 18, 0.78);
}

/* ---------- 前三十分钟 ---------- */
.page-products .pp-first__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
}

.page-products .pp-timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .pp-step {
  position: relative;
  padding: 0 0 1.8rem 1.9rem;
  border-left: 1px solid var(--pp-line);
}

.page-products .pp-step:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.page-products .pp-step::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: -6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 0 4px rgba(63, 240, 216, 0.14);
}

.page-products .pp-step:nth-child(2)::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 194, 75, 0.14);
}

.page-products .pp-step:nth-child(3)::before {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.14);
}

.page-products .pp-step:nth-child(4)::before {
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.16);
}

.page-products .pp-step__time {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}

.page-products .pp-step h3 {
  margin-bottom: 0.4rem;
}

.page-products .pp-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dim);
}

.page-products .pp-first__figure {
  margin: 0;
  justify-self: center;
  width: min(100%, 22rem);
  border: 1px solid var(--pp-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(7, 20, 38, 0.6);
  box-shadow: var(--shadow-soft);
}

.page-products .pp-first__links {
  margin: 1.8rem 0 0;
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--text-mute);
}

/* ---------- 收尾 ---------- */
.page-products .pp-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--pp-line);
  border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(14, 43, 74, 0.85), rgba(7, 20, 38, 0.55));
}

.page-products .pp-cta__inner p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ---------- 断点 ---------- */
@media (min-width: 700px) {
  .page-products .pp-modules__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-products .pp-room {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr) auto;
  }

  .page-products .pp-room__name {
    grid-column: auto;
  }

  .page-products .pp-room--head span:nth-child(n + 3) {
    display: block;
  }
}

@media (min-width: 820px) {
  .page-products .pp-room {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.85fr) minmax(0, 0.6fr) minmax(0, 0.85fr) auto;
  }
}

@media (min-width: 900px) {
  .page-products .pp-ios__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    align-items: center;
  }

  .page-products .pp-first__grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.55fr);
    align-items: start;
  }
}

@media (min-width: 940px) {
  .page-products .pp-entries__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
  }
}

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

  .page-products .pp-module:nth-child(2),
  .page-products .pp-module:nth-child(4) {
    margin-top: 1.75rem;
  }
}

@media (max-width: 560px) {
  .page-products .pp-season__stats .mono {
    font-size: 1.4rem;
  }

  .page-products .pp-cta__inner {
    padding: 1.25rem 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .pp-entry,
  .page-products .pp-module,
  .page-products .pp-entries__figure {
    transition: none;
  }
}
