.page-products {
  --prod-cut: 22px;
  --prod-cut-sm: 14px;
  --prod-panel: rgba(21, 32, 72, 0.82);
  --prod-panel-hi: #1c2b60;
  background: var(--xp-void);
  color: var(--xp-porcelain);
  overflow-x: hidden;
}

/* ---------- 首屏 ---------- */

.page-products .prod-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 5vw, 3rem) 0 clamp(2.4rem, 6vw, 4.4rem);
  background:
    radial-gradient(120% 92% at 10% 0%, rgba(53, 232, 208, 0.17), transparent 58%),
    radial-gradient(95% 80% at 98% 10%, rgba(255, 122, 47, 0.15), transparent 62%),
    linear-gradient(178deg, var(--xp-navy) 0%, var(--xp-void) 74%);
}

.page-products .prod-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -34%;
  width: 62%;
  height: 130%;
  background: linear-gradient(150deg, rgba(53, 232, 208, 0.1), transparent 62%);
  clip-path: polygon(52% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-products .prod-hero .xp-container {
  position: relative;
  z-index: 1;
}

.page-products .prod-hero__kicker {
  margin: 1.4rem 0 0.9rem;
  font-family: var(--xp-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--xp-cyan);
}

.page-products .prod-hero__title {
  margin: 0 0 1.1rem;
  max-width: 17ch;
  font-family: var(--xp-font-display);
  font-weight: 800;
  font-size: clamp(2.15rem, 7.4vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--xp-porcelain);
}

.page-products .prod-hero__lede {
  max-width: 60ch;
  color: var(--xp-soft);
}

.page-products .prod-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: clamp(1.6rem, 4vw, 2.4rem) 0 0;
  padding: 0;
}

.page-products .prod-hero__stat {
  padding: 0.9rem 1rem 1rem;
  background: rgba(14, 23, 56, 0.72);
  border-left: 2px solid rgba(53, 232, 208, 0.4);
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--prod-cut-sm)) 100%, 0 100%);
}

.page-products .prod-hero__stat dt {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--xp-mist);
}

.page-products .prod-hero__stat dd {
  margin: 0.35rem 0 0;
  font-family: var(--xp-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--xp-porcelain);
}

.page-products .prod-hero__stat .xp-num {
  color: var(--xp-mint);
}

.page-products .prod-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.5rem, 4vw, 2.2rem);
}

/* ---------- 档位对比 ---------- */

.page-products .prod-tiers .xp-section__head {
  max-width: 62ch;
}

.page-products .tier-media {
  margin: clamp(1.5rem, 4vw, 2.4rem) 0 clamp(1.4rem, 3.5vw, 2rem);
  border: 1px solid var(--xp-line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--prod-cut)), var(--prod-cut) 100%, 0 100%);
  background: linear-gradient(120deg, rgba(53, 232, 208, 0.12), rgba(255, 122, 47, 0.1));
}

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

.page-products .tier-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
}

.page-products .tier-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.7rem;
  background: var(--prod-panel);
  clip-path: polygon(0 0, calc(100% - var(--prod-cut)) 0, 100% var(--prod-cut), 100% 100%, 0 100%);
  transition: transform 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

.page-products .tier-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 3px;
  background: linear-gradient(90deg, var(--xp-cyan), transparent);
}

.page-products .tier-card:hover,
.page-products .tier-card:focus-within {
  transform: translateY(-4px);
  background: var(--prod-panel-hi);
}

.page-products .tier-card--focus {
  background: linear-gradient(160deg, rgba(255, 122, 47, 0.16), var(--prod-panel) 58%);
}

.page-products .tier-card--focus::before {
  background: linear-gradient(90deg, var(--xp-orange), transparent);
}

.page-products .tier-card__tag {
  margin: 0 0 0.7rem;
  font-family: var(--xp-font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  color: var(--xp-mist);
}

.page-products .tier-card--focus .tier-card__tag {
  color: var(--xp-orange);
}

.page-products .tier-card__name {
  margin: 0 0 0.6rem;
  font-family: var(--xp-font-display);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--xp-porcelain);
}

.page-products .tier-card__for {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--xp-mist);
}

.page-products .tier-card__list {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.page-products .tier-card__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--xp-soft);
}

.page-products .tier-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: var(--xp-cyan);
  transform: rotate(45deg);
}

.page-products .tier-card__foot {
  margin: 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--xp-line);
  font-size: 0.88rem;
  color: var(--xp-mist);
}

/* ---------- 呼吸留白 ---------- */

.page-products .prod-breathe {
  padding: clamp(2.2rem, 7vw, 4.4rem) 0;
  background: var(--xp-void);
}

.page-products .prod-breathe__inner {
  display: grid;
  gap: 0.8rem;
  border-left: 2px solid rgba(53, 232, 208, 0.5);
  padding-left: 1.2rem;
}

.page-products .prod-breathe__inner .xp-num {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--xp-cyan);
}

.page-products .prod-breathe__inner p {
  margin: 0;
  font-family: var(--xp-font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 3.6vw, 1.7rem);
  line-height: 1.4;
  color: var(--xp-porcelain);
}

/* ---------- 领取流程 ---------- */

.page-products .prod-claim {
  background: linear-gradient(180deg, var(--xp-void) 0%, var(--xp-navy) 40%, var(--xp-void) 100%);
}

.page-products .claim-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.8rem;
  margin-top: clamp(1.5rem, 4vw, 2.2rem);
}

.page-products .step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.page-products .step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  padding: 1.25rem 1.2rem 1.3rem 1.35rem;
  background: linear-gradient(96deg, rgba(53, 232, 208, 0.09), rgba(21, 32, 72, 0.35) 68%);
  border-left: 2px solid rgba(53, 232, 208, 0.42);
  clip-path: polygon(0 0, calc(100% - var(--prod-cut-sm)) 0, 100% var(--prod-cut-sm), 100% 100%, 0 100%);
  transition: background-color 0.26s ease, transform 0.26s ease;
}

.page-products .step + .step {
  margin-top: 1rem;
}

.page-products .step:hover,
.page-products .step:focus-within {
  transform: translateY(-4px);
  background: linear-gradient(96deg, rgba(53, 232, 208, 0.15), rgba(21, 32, 72, 0.6) 72%);
}

.page-products .step__num {
  font-family: var(--xp-font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--xp-cyan);
}

.page-products .step__title {
  margin: 0 0 0.45rem;
  font-family: var(--xp-font-display);
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--xp-porcelain);
}

.page-products .step__main p {
  margin: 0 0 0.7rem;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--xp-soft);
}

.page-products .step__prep {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(143, 163, 200, 0.28);
  font-size: 0.86rem;
  color: var(--xp-mist);
}

.page-products .claim-figure {
  margin: 0;
  border: 1px solid var(--xp-line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--prod-cut)), var(--prod-cut) 100%, 0 100%);
  background: linear-gradient(180deg, rgba(53, 232, 208, 0.1), rgba(21, 32, 72, 0.5));
}

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

/* ---------- 会员等级 ---------- */

.page-products .member-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
  margin-top: clamp(1.5rem, 4vw, 2.2rem);
}

.page-products .member-bands {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.95rem;
  align-content: start;
}

.page-products .member-band {
  padding: 1.15rem 1.2rem 1.3rem;
  background: var(--prod-panel);
  border-left: 3px solid rgba(143, 163, 200, 0.34);
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
  transition: transform 0.26s ease, background-color 0.26s ease;
}

.page-products .member-band:hover,
.page-products .member-band:focus-within {
  transform: translateY(-4px);
  background: var(--prod-panel-hi);
}

.page-products .member-band--gold {
  background: linear-gradient(100deg, rgba(255, 201, 74, 0.18), rgba(21, 32, 72, 0.9) 62%);
  border-left-color: var(--xp-gold);
}

.page-products .member-band__level {
  margin: 0 0 0.35rem;
  font-family: var(--xp-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--xp-porcelain);
}

.page-products .member-band--gold .member-band__level {
  color: var(--xp-gold);
}

.page-products .member-band__lead {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--xp-mist);
}

.page-products .member-band__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.page-products .member-band__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--xp-soft);
}

.page-products .member-band__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  background: var(--xp-mist);
  transform: rotate(45deg);
}

.page-products .member-band--gold .member-band__list li::before {
  background: var(--xp-gold);
}

.page-products .member-figure {
  margin: 0;
  border: 1px solid var(--xp-line);
  clip-path: polygon(0 0, 100% 0, 100% 100%, var(--prod-cut) 100%, 0 calc(100% - var(--prod-cut)));
  background: linear-gradient(180deg, rgba(255, 122, 47, 0.12), rgba(14, 23, 56, 0.7));
}

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

/* ---------- 数据看板 ---------- */

.page-products .prod-dash {
  background:
    linear-gradient(180deg, var(--xp-void), var(--xp-navy) 55%, var(--xp-void));
}

.page-products .dash-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
  margin-top: clamp(1.5rem, 4vw, 2.2rem);
}

.page-products .dash-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.page-products .dash-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: baseline;
  padding: 0.85rem 1rem;
  background: rgba(14, 23, 56, 0.74);
  border-left: 2px solid rgba(53, 232, 208, 0.34);
  transition: background-color 0.24s ease, transform 0.24s ease;
}

.page-products .dash-list li:hover,
.page-products .dash-list li:focus-within {
  transform: translateY(-4px);
  background: rgba(21, 32, 72, 0.92);
}

.page-products .dash-list__num {
  font-family: var(--xp-font-mono);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--xp-cyan);
}

.page-products .dash-list__text {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--xp-soft);
}

.page-products .dash-note {
  margin: 1.1rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 122, 47, 0.5);
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--xp-mist);
}

.page-products .dash-shot {
  position: relative;
  margin: 0;
  padding: 12px;
  background: linear-gradient(180deg, rgba(53, 232, 208, 0.24), rgba(21, 32, 72, 0.9) 42%);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
}

.page-products .dash-shot::before {
  content: "";
  position: absolute;
  inset: 12px;
  background-image:
    linear-gradient(rgba(143, 163, 200, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 163, 200, 0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: 1;
}

.page-products .dash-shot img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-products .dash-shot .xp-media__caption {
  position: relative;
  z-index: 2;
}

/* ---------- 社群与企业 ---------- */

.page-products .partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
  margin-top: clamp(1.5rem, 4vw, 2.2rem);
}

.page-products .partner-figure {
  margin: 0;
  border: 1px solid var(--xp-line);
  clip-path: polygon(0 0, calc(100% - var(--prod-cut)) 0, 100% var(--prod-cut), 100% 100%, 0 100%);
  background: linear-gradient(140deg, rgba(255, 122, 47, 0.14), rgba(14, 23, 56, 0.7));
}

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

.page-products .partner-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.page-products .partner-col {
  padding: 1.4rem 1.3rem 1.5rem;
  background: var(--prod-panel);
  border-top: 2px solid rgba(53, 232, 208, 0.42);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--prod-cut-sm)), calc(100% - var(--prod-cut-sm)) 100%, 0 100%);
  transition: transform 0.26s ease, background-color 0.26s ease;
}

.page-products .partner-col:hover,
.page-products .partner-col:focus-within {
  transform: translateY(-4px);
  background: var(--prod-panel-hi);
}

.page-products .partner-col--accent {
  border-top-color: var(--xp-orange);
}

.page-products .partner-col__tag {
  margin: 0 0 0.5rem;
  font-family: var(--xp-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--xp-cyan);
}

.page-products .partner-col--accent .partner-col__tag {
  color: var(--xp-orange);
}

.page-products .partner-col__title {
  margin: 0 0 0.7rem;
  font-family: var(--xp-font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--xp-porcelain);
}

.page-products .partner-col p {
  margin: 0 0 0.85rem;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--xp-soft);
}

.page-products .partner-col__list {
  margin: 0;
  padding: 0.85rem 0 0;
  list-style: none;
  border-top: 1px dashed rgba(143, 163, 200, 0.28);
  display: grid;
  gap: 0.45rem;
}

.page-products .partner-col__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--xp-mist);
}

.page-products .partner-col__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: var(--xp-cyan);
  transform: rotate(45deg);
}

.page-products .partner-col--accent .partner-col__list li::before {
  background: var(--xp-orange);
}

/* ---------- 搭配推荐与保障 ---------- */

.page-products .combo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 2.2rem);
}

.page-products .combo-card {
  padding: 1.3rem 1.25rem 1.4rem;
  background: rgba(14, 23, 56, 0.78);
  border-bottom: 3px solid rgba(53, 232, 208, 0.45);
  clip-path: polygon(0 0, 100% 0, 100% 100%, var(--prod-cut-sm) 100%, 0 calc(100% - var(--prod-cut-sm)));
  transition: transform 0.26s ease, background-color 0.26s ease;
}

.page-products .combo-card:hover,
.page-products .combo-card:focus-within {
  transform: translateY(-4px);
  background: var(--prod-panel-hi);
}

.page-products .combo-card--accent {
  border-bottom-color: var(--xp-orange);
  background: linear-gradient(160deg, rgba(255, 122, 47, 0.14), rgba(14, 23, 56, 0.85) 62%);
}

.page-products .combo-card__scene {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--xp-mist);
}

.page-products .combo-card__pick {
  margin: 0 0 0.6rem;
  font-family: var(--xp-font-display);
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--xp-porcelain);
}

.page-products .combo-card p:last-child {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--xp-soft);
}

.page-products .assure-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: clamp(1.8rem, 4.5vw, 2.6rem);
  padding-top: clamp(1.4rem, 3.5vw, 2rem);
  border-top: 1px solid var(--xp-line);
}

.page-products .assure-strip__item {
  padding-left: 1rem;
  border-left: 2px solid rgba(53, 232, 208, 0.34);
}

.page-products .assure-strip__label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--xp-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--xp-cyan);
}

.page-products .assure-strip__item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--xp-soft);
}

/* ---------- 结尾行动区 ---------- */

.page-products .prod-cta {
  padding: clamp(2.4rem, 7vw, 4.4rem) 0;
  background:
    radial-gradient(110% 130% at 84% 10%, rgba(255, 122, 47, 0.2), transparent 60%),
    linear-gradient(180deg, var(--xp-navy), var(--xp-void));
}

.page-products .prod-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
}

.page-products .prod-cta__kicker {
  margin: 0 0 0.6rem;
  font-family: var(--xp-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--xp-orange);
}

.page-products .prod-cta__title {
  margin: 0;
  max-width: 22ch;
  font-family: var(--xp-font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4.6vw, 2.5rem);
  line-height: 1.25;
  color: var(--xp-porcelain);
}

.page-products .prod-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- 断点 ---------- */

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

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

  .page-products .prod-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 860px) {
  .page-products .tier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .page-products .tier-card {
    display: flex;
    flex-direction: column;
  }

  .page-products .tier-card__list {
    flex: 1 1 auto;
  }

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

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

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

  .page-products .claim-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    align-items: start;
    gap: 2rem;
  }

  .page-products .dash-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 2rem;
  }
}

@media (min-width: 1040px) {
  .page-products .member-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.55fr);
    align-items: start;
    gap: 2rem;
  }

  .page-products .partner-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    gap: 1.8rem;
  }

  .page-products .partner-cols {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .tier-card,
  .page-products .step,
  .page-products .member-band,
  .page-products .dash-list li,
  .page-products .partner-col,
  .page-products .combo-card {
    transition: none;
  }

  .page-products .tier-card:hover,
  .page-products .tier-card:focus-within,
  .page-products .step:hover,
  .page-products .step:focus-within,
  .page-products .member-band:hover,
  .page-products .member-band:focus-within,
  .page-products .dash-list li:hover,
  .page-products .dash-list li:focus-within,
  .page-products .partner-col:hover,
  .page-products .partner-col:focus-within,
  .page-products .combo-card:hover,
  .page-products .combo-card:focus-within {
    transform: none;
  }
}
