.page-products {
  --pt-line: rgba(51, 32, 96, 0.9);
  --pt-line-soft: rgba(51, 32, 96, 0.6);
  --pt-glow: rgba(47, 243, 214, 0.3);
  --pt-gold-soft: rgba(255, 193, 77, 0.45);
  display: block;
}

.page-products .jx-section {
  padding-block: clamp(52px, 7.4vw, 100px);
}

.page-products .jx-breadcrumb {
  background: linear-gradient(180deg, var(--jx-night), rgba(8, 5, 15, 0.5));
  border-bottom: 1px solid var(--pt-line-soft);
  padding-block: 14px;
}

/* ============ 首屏 ============ */
.page-products .pt-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(860px 520px at 78% 6%, rgba(122, 85, 232, 0.36), transparent 64%),
    radial-gradient(600px 420px at 4% 94%, rgba(47, 243, 214, 0.13), transparent 62%),
    var(--jx-night);
  border-bottom: 1px solid var(--pt-line-soft);
}

.page-products .pt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(51, 32, 96, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 32, 96, 0.4) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(760px 500px at 72% 18%, #000 0%, transparent 78%);
  mask-image: radial-gradient(760px 500px at 72% 18%, #000 0%, transparent 78%);
  opacity: 0.65;
}

.page-products .pt-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(30px, 5vw, 52px);
  padding-block: clamp(36px, 6vw, 72px) clamp(46px, 7vw, 92px);
}

.page-products .pt-hero__title {
  margin: 14px 0 0;
  font-family: var(--jx-font-display);
  font-size: clamp(38px, 7.6vw, 86px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--jx-star);
}

.page-products .pt-hero__title-glow {
  display: block;
  color: var(--jx-neon);
  text-shadow: 0 0 22px rgba(47, 243, 214, 0.5), 0 0 64px rgba(47, 243, 214, 0.26);
}

.page-products .pt-hero__lead {
  margin-top: 20px;
  max-width: 54ch;
  color: var(--jx-dusk);
}

.page-products .pt-hero__facts {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-products .pt-hero__fact {
  display: grid;
  gap: 4px;
  min-width: 126px;
  padding: 14px 20px;
  border: 1px solid var(--pt-line);
  border-radius: var(--jx-radius-sm);
  background: linear-gradient(180deg, rgba(30, 18, 64, 0.82), rgba(12, 7, 26, 0.72));
}

.page-products .pt-hero__fact-num {
  font-family: var(--jx-font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--jx-gold);
}

.page-products .pt-hero__fact-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--jx-dusk);
}

.page-products .pt-hero__figure {
  margin: 0;
}

.page-products .pt-hero__media {
  box-shadow:
    0 44px 96px -54px rgba(47, 243, 214, 0.7),
    0 0 0 1px rgba(122, 85, 232, 0.35);
}

/* ============ 三端选择器 ============ */
.page-products .pt-picker {
  background: linear-gradient(180deg, rgba(20, 11, 41, 0.55), transparent 72%);
}

.page-products .pt-picker__lead {
  max-width: 58ch;
  color: var(--jx-dusk);
}

.page-products .pt-picker__panel {
  position: relative;
  margin-top: clamp(26px, 4vw, 40px);
}

.page-products .pt-tabinput {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.page-products .pt-tabs {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.page-products .pt-tab {
  display: grid;
  gap: 4px;
  padding: 15px 20px;
  cursor: pointer;
  border: 1px solid var(--pt-line);
  border-radius: var(--jx-radius-sm);
  background: linear-gradient(180deg, rgba(30, 18, 64, 0.88), rgba(14, 8, 30, 0.88));
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.page-products .pt-tab__name {
  font-family: var(--jx-font-display);
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--jx-dusk);
  transition: color 0.25s ease;
}

.page-products .pt-tab__hint {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(180, 155, 255, 0.72);
  transition: color 0.25s ease;
}

.page-products .pt-tab:hover {
  border-color: rgba(47, 243, 214, 0.5);
}

.page-products .pt-tab:hover .pt-tab__name {
  color: var(--jx-star);
}

.page-products #pt-tab-win:checked ~ .pt-tabs label[for="pt-tab-win"],
.page-products #pt-tab-android:checked ~ .pt-tabs label[for="pt-tab-android"],
.page-products #pt-tab-web:checked ~ .pt-tabs label[for="pt-tab-web"] {
  border-color: var(--jx-neon);
  background: linear-gradient(120deg, var(--jx-neon), #58e6d0);
  box-shadow:
    0 0 0 1px rgba(47, 243, 214, 0.4),
    0 20px 44px -26px rgba(47, 243, 214, 0.85);
}

.page-products #pt-tab-win:checked ~ .pt-tabs label[for="pt-tab-win"] .pt-tab__name,
.page-products #pt-tab-android:checked ~ .pt-tabs label[for="pt-tab-android"] .pt-tab__name,
.page-products #pt-tab-web:checked ~ .pt-tabs label[for="pt-tab-web"] .pt-tab__name {
  color: var(--jx-void);
}

.page-products #pt-tab-win:checked ~ .pt-tabs label[for="pt-tab-win"] .pt-tab__hint,
.page-products #pt-tab-android:checked ~ .pt-tabs label[for="pt-tab-android"] .pt-tab__hint,
.page-products #pt-tab-web:checked ~ .pt-tabs label[for="pt-tab-web"] .pt-tab__hint {
  color: rgba(8, 5, 15, 0.68);
}

.page-products #pt-tab-win:focus-visible ~ .pt-tabs label[for="pt-tab-win"],
.page-products #pt-tab-android:focus-visible ~ .pt-tabs label[for="pt-tab-android"],
.page-products #pt-tab-web:focus-visible ~ .pt-tabs label[for="pt-tab-web"] {
  outline: 2px solid var(--jx-neon);
  outline-offset: 3px;
}

.page-products .pt-panels > .pt-terminal {
  display: none;
}

.page-products #pt-tab-win:checked ~ .pt-panels > .pt-terminal:nth-child(1),
.page-products #pt-tab-android:checked ~ .pt-panels > .pt-terminal:nth-child(2),
.page-products #pt-tab-web:checked ~ .pt-panels > .pt-terminal:nth-child(3) {
  display: grid;
}

.page-products .pt-terminal {
  gap: 26px;
  padding: clamp(22px, 3.4vw, 38px);
  border: 1px solid var(--pt-line);
  border-radius: var(--jx-radius);
  background:
    radial-gradient(460px 240px at 88% 4%, rgba(122, 85, 232, 0.3), transparent 70%),
    linear-gradient(180deg, rgba(30, 18, 64, 0.94), rgba(11, 6, 24, 0.94));
  animation: pt-fade 320ms ease-out both;
}

@keyframes pt-fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-products .pt-terminal__head {
  display: grid;
  gap: 10px;
}

.page-products .pt-terminal__title {
  margin: 0;
  font-family: var(--jx-font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--jx-star);
}

.page-products .pt-terminal__desc {
  margin: 0;
  max-width: 62ch;
  color: var(--jx-dusk);
  line-height: 1.75;
}

.page-products .pt-terminal__body {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.page-products .pt-meter {
  display: grid;
  gap: 9px;
  width: min(100%, 420px);
}

.page-products .pt-meter__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.page-products .pt-meter__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--jx-dusk);
}

.page-products .pt-meter__value {
  font-family: var(--jx-font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 16px;
  color: var(--jx-gold);
}

.page-products .pt-meter__bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(51, 32, 96, 0.85);
  overflow: hidden;
}

.page-products .pt-meter__fill {
  display: block;
  height: 100%;
  width: var(--pt-fill, 0%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--jx-crown), var(--jx-neon));
}

.page-products .pt-terminal__badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px dashed rgba(47, 243, 214, 0.5);
  border-radius: 999px;
  font-family: var(--jx-font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--jx-neon);
}

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

.page-products .pt-terminal__list li {
  position: relative;
  padding-left: 20px;
  color: var(--jx-star);
  line-height: 1.7;
}

.page-products .pt-terminal__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--jx-neon), var(--jx-crown));
}

/* ============ 三步流程 ============ */
.page-products .pt-flow {
  background: linear-gradient(180deg, transparent, rgba(20, 11, 41, 0.5) 45%, transparent);
}

.page-products .pt-steps {
  position: relative;
  list-style: none;
  margin: clamp(28px, 4vw, 44px) 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.page-products .pt-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 26px 24px;
  border: 1px solid var(--pt-line);
  border-radius: var(--jx-radius);
  background: linear-gradient(180deg, rgba(30, 18, 64, 0.78), rgba(10, 6, 22, 0.8));
}

.page-products .pt-step__num {
  font-family: var(--jx-font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(47, 243, 214, 0.9);
}

.page-products .pt-step__title {
  margin: 0;
  font-family: var(--jx-font-display);
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--jx-star);
}

.page-products .pt-step__text {
  margin: 0;
  color: var(--jx-dusk);
  line-height: 1.75;
}

/* ============ 测试版区间 ============ */
.page-products .pt-beta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
}

.page-products .pt-beta__figure {
  margin: 0;
}

.page-products .pt-beta__lead {
  margin-top: 18px;
  max-width: 58ch;
  color: var(--jx-dusk);
  line-height: 1.8;
}

.page-products .pt-beta__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-products .pt-beta__list li {
  padding: 16px 18px;
  border-left: 2px solid rgba(47, 243, 214, 0.55);
  border-radius: 0 var(--jx-radius-sm) var(--jx-radius-sm) 0;
  background: linear-gradient(90deg, rgba(30, 18, 64, 0.72), rgba(30, 18, 64, 0.12));
  color: var(--jx-dusk);
  line-height: 1.75;
}

.page-products .pt-beta__key {
  display: block;
  margin-bottom: 4px;
  font-family: var(--jx-font-display);
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--jx-gold);
}

.page-products .pt-beta__cta {
  margin-top: 28px;
}

/* ============ 转盘玩法 ============ */
.page-products .pt-wheel-block {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 440px at 62% 0%, rgba(122, 85, 232, 0.28), transparent 70%),
    linear-gradient(180deg, rgba(20, 11, 41, 0.7), transparent 82%);
}

.page-products .pt-wheel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.page-products .pt-wheel__intro {
  margin-top: 18px;
  max-width: 56ch;
  color: var(--jx-dusk);
  line-height: 1.8;
}

.page-products .pt-wheel__flow {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-products .pt-wheel__flow-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--pt-line);
  border-radius: var(--jx-radius-sm);
  background: rgba(30, 18, 64, 0.55);
}

.page-products .pt-wheel__flow-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(47, 243, 214, 0.6);
  font-family: var(--jx-font-mono);
  font-size: 14px;
  color: var(--jx-neon);
}

.page-products .pt-wheel__flow-text {
  color: var(--jx-star);
  line-height: 1.65;
}

.page-products .pt-wheel__note {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(180, 155, 255, 0.85);
  line-height: 1.7;
}

.page-products .pt-wheel__stage {
  display: grid;
  gap: 26px;
  justify-items: center;
}

.page-products .pt-wheel {
  position: relative;
  width: min(320px, 74vw);
  aspect-ratio: 1 / 1;
}

.page-products .pt-wheel__disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(47, 243, 214, 0.35);
  background: conic-gradient(
    from 0deg,
    rgba(122, 85, 232, 0.85) 0deg 45deg,
    rgba(47, 243, 214, 0.7) 45deg 90deg,
    rgba(255, 193, 77, 0.78) 90deg 135deg,
    rgba(30, 18, 64, 0.96) 135deg 180deg,
    rgba(122, 85, 232, 0.85) 180deg 225deg,
    rgba(47, 243, 214, 0.7) 225deg 270deg,
    rgba(255, 193, 77, 0.78) 270deg 315deg,
    rgba(30, 18, 64, 0.96) 315deg 360deg
  );
  box-shadow:
    inset 0 0 60px rgba(8, 5, 15, 0.85),
    0 34px 74px -44px rgba(47, 243, 214, 0.85);
  animation: pt-spin 60s linear infinite;
}

.page-products .pt-wheel__hub {
  position: absolute;
  inset: 36%;
  border-radius: 50%;
  border: 1px solid rgba(47, 243, 214, 0.55);
  background: radial-gradient(circle at 34% 28%, #2a1a52, #08050f 72%);
  box-shadow: 0 0 34px rgba(47, 243, 214, 0.35);
}

.page-products .pt-wheel__pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 18px solid var(--jx-gold);
  filter: drop-shadow(0 0 8px rgba(255, 193, 77, 0.8));
}

.page-products .pt-wheel:hover .pt-wheel__disc {
  animation-play-state: paused;
  box-shadow:
    inset 0 0 60px rgba(8, 5, 15, 0.8),
    0 0 0 1px rgba(47, 243, 214, 0.55),
    0 34px 90px -40px rgba(47, 243, 214, 1);
}

@keyframes pt-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.page-products .pt-wheel__figure {
  margin: 0;
  width: 100%;
}

/* ============ 设备要求 ============ */
.page-products .pt-specs__lead {
  max-width: 56ch;
  color: var(--jx-dusk);
}

.page-products .pt-table-wrap {
  margin-top: clamp(26px, 4vw, 40px);
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--pt-line);
  border-radius: var(--jx-radius);
  background: linear-gradient(180deg, rgba(30, 18, 64, 0.6), rgba(10, 6, 22, 0.6));
  -webkit-overflow-scrolling: touch;
}

.page-products .pt-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 15px;
}

.page-products .pt-table__caption {
  padding: 16px 20px 0;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--jx-dusk);
}

.page-products .pt-table th,
.page-products .pt-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(51, 32, 96, 0.7);
  color: var(--jx-star);
}

.page-products .pt-table thead th {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--jx-neon);
  background: rgba(20, 11, 41, 0.92);
  white-space: nowrap;
}

.page-products .pt-table tbody th {
  font-weight: 600;
  color: var(--jx-star);
}

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

.page-products .pt-table tbody tr {
  transition: background 0.2s ease;
}

.page-products .pt-table tbody tr:hover {
  background: rgba(122, 85, 232, 0.14);
}

.page-products .pt-table__num {
  font-family: var(--jx-font-mono);
  font-variant-numeric: tabular-nums;
  color: var(--jx-gold);
  white-space: nowrap;
}

.page-products .pt-specs__figure {
  margin: clamp(26px, 4vw, 38px) 0 0;
}

.page-products .pt-specs__note {
  margin-top: 22px;
  max-width: 68ch;
  color: var(--jx-dusk);
  line-height: 1.8;
}

/* ============ 版本节奏 ============ */
.page-products .pt-cadence {
  background: linear-gradient(180deg, transparent, rgba(20, 11, 41, 0.55) 60%, transparent);
}

.page-products .pt-cadence__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 50px);
  align-items: center;
}

.page-products .pt-cadence__text {
  margin-top: 16px;
  max-width: 58ch;
  color: var(--jx-dusk);
  line-height: 1.8;
}

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

.page-products .pt-cadence__figure {
  margin: 0;
}

/* ============ 收尾 ============ */
.page-products .pt-tail {
  padding-block: clamp(44px, 6vw, 76px);
  border-top: 1px solid var(--pt-line-soft);
  background:
    radial-gradient(620px 320px at 20% 0%, rgba(47, 243, 214, 0.12), transparent 68%),
    var(--jx-void);
}

.page-products .pt-tail__inner {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.page-products .pt-tail__title {
  margin: 0;
  font-family: var(--jx-font-display);
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--jx-star);
}

.page-products .pt-tail__text {
  margin: 0;
  max-width: 62ch;
  color: var(--jx-dusk);
  line-height: 1.8;
}

.page-products .pt-tail__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

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

  .page-products .pt-hero__facts {
    gap: 14px;
  }
}

@media (min-width: 900px) {
  .page-products .pt-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .page-products .pt-steps::before {
    content: "";
    position: absolute;
    top: 46px;
    left: 4%;
    right: 4%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(47, 243, 214, 0.55),
      rgba(255, 193, 77, 0.45),
      transparent
    );
    z-index: 0;
  }
}

@media (min-width: 1000px) {
  .page-products .pt-hero__inner {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: end;
  }

  .page-products .pt-beta__grid {
    grid-template-columns: 1fr 1.05fr;
  }

  .page-products .pt-wheel__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .page-products .pt-cadence__grid {
    grid-template-columns: 1fr 1.05fr;
  }

  .page-products .pt-wheel__stage {
    justify-items: stretch;
  }

  .page-products .pt-wheel {
    width: min(340px, 34vw);
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .pt-wheel__disc {
    animation: none;
  }

  .page-products .pt-terminal {
    animation: none;
  }
}

.page-products {
  --pt-fill: currentColor;
}
