.page-products {
  --p-green: #00FF9C;
  --p-gold: #F5B942;
  --p-cyan: #00D4FF;
  --p-red: #FF4D4D;
  --p-bg-deep: #0C1126;
  --p-bg-card: #1D2C6E;
  --p-line: #2B3A73;
  --p-white: #F0F4FF;
  --p-muted: #8A96BE;

  background: var(--p-bg-deep);
  color: var(--p-white);
  font-family: system-ui, 'Noto Sans SC', 'PingFang SC', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-products .p-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 面包屑 */
.page-products .p-breadcrumb {
  background: rgba(6, 8, 15, 0.72);
  border-bottom: 1px solid var(--p-line);
  padding: 12px 0;
}

.page-products .p-breadcrumb .p-container {
  font-size: 13px;
  display: flex;
  gap: 8px;
  color: var(--p-muted);
}

.page-products .p-breadcrumb a {
  color: var(--p-cyan);
  text-decoration: none;
  transition: color 0.25s;
}

.page-products .p-breadcrumb a:hover {
  color: var(--p-green);
}

.page-products .p-breadcrumb span[aria-current="page"] {
  color: var(--p-white);
}

/* 首屏 */
.page-products .p-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(6, 8, 15, 0.4) 0%, rgba(29, 44, 110, 0.2) 50%, rgba(0, 255, 156, 0.06) 100%),
    var(--p-bg-deep);
  padding: 48px 0 88px;
}

.page-products .p-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(180deg, rgba(29, 44, 110, 0.55), rgba(6, 8, 15, 0.65));
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.page-products .p-hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-products .p-hero-copy {
  max-width: 560px;
}

.page-products .p-hero-kicker {
  font-family: 'DIN Alternate', 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--p-cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-products .p-hero-kicker::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--p-green);
  display: block;
}

.page-products .p-hero-title {
  font-family: 'DIN Alternate', 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  transform: skewX(-2deg);
}

.page-products .p-hero-lead {
  font-size: 16px;
  color: var(--p-white);
  opacity: 0.92;
  margin-bottom: 28px;
  line-height: 1.7;
}

.page-products .p-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.page-products .p-download-primary {
  background: var(--p-green);
  color: #06080F;
  font-weight: 800;
  border: none;
  padding: 14px 30px;
  cursor: pointer;
  font-family: 'DIN Alternate', 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.page-products .p-download-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease-out, height 0.5s ease-out;
}

.page-products .p-download-primary:active::after {
  width: 260px;
  height: 260px;
}

.page-products .p-download-primary:hover {
  box-shadow: 0 0 32px rgba(0, 255, 156, 0.35);
  transform: translateY(-1px);
}

.page-products .p-download-secondary {
  border: 1px solid var(--p-line);
  color: var(--p-cyan);
  padding: 13px 26px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.25s, color 0.25s;
}

.page-products .p-download-secondary:hover {
  border-color: var(--p-cyan);
  color: var(--p-white);
}

.page-products .p-hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-products .p-hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-products .p-point-text {
  font-size: 14px;
  color: var(--p-muted);
}

/* 手机模型 */
.page-products .p-hero-mock {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 520px;
}

.page-products .p-phone-frame {
  position: relative;
  width: 260px;
  height: 520px;
  background: #06080F;
  border: 3px solid var(--p-line);
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 24px 60px rgba(6, 8, 15, 0.7);
  transform: rotate(3deg);
}

.page-products .p-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #06080F;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.page-products .p-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1D2C6E 0%, #0C1126 72%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.page-products .p-screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 38px 16px 10px;
}

.page-products .p-screen-live {
  font-size: 11px;
  color: var(--p-red);
  background: rgba(255, 77, 77, 0.12);
  padding: 3px 8px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.page-products .p-screen-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p-red);
  animation: p-pulse 1.6s ease-in-out infinite;
}

@keyframes p-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}

.page-products .p-screen-full {
  font-size: 11px;
  color: var(--p-muted);
}

.page-products .p-screen-status {
  padding: 6px 16px 8px;
}

.page-products .p-screen-label {
  font-size: 11px;
  color: var(--p-muted);
  margin: 0 0 4px;
}

.page-products .p-screen-score {
  font-family: 'DIN Alternate', 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--p-white);
  margin: 0;
  letter-spacing: 0.03em;
}

.page-products .p-screen-split {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p-line), transparent);
  margin: 8px 16px;
}

.page-products .p-screen-away {
  padding: 0 16px;
}

.page-products .p-screen-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0 0;
}

.page-products .p-bar {
  display: block;
  font-size: 11px;
  color: var(--p-white);
  padding: 5px 8px;
  white-space: nowrap;
}

.page-products .p-bar-home {
  background: linear-gradient(90deg, rgba(0, 255, 156, 0.75), rgba(0, 255, 156, 0.25));
  width: 68%;
}

.page-products .p-bar-away {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.7), rgba(0, 212, 255, 0.2));
  width: 54%;
}

.page-products .p-screen-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(6, 8, 15, 0.85);
  border-top: 1px solid var(--p-line);
}

.page-products .p-screen-tab {
  flex: 1;
  text-align: center;
  font-size: 10px;
  padding: 10px 0;
  color: var(--p-muted);
  border-bottom: 2px solid transparent;
}

.page-products .p-screen-tab.is-active {
  color: var(--p-green);
  border-bottom-color: var(--p-green);
}

.page-products .p-phone-home {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  border-radius: 2px;
  background: var(--p-line);
}

.page-products .p-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.page-products .p-hero-orb-1 {
  width: 160px;
  height: 160px;
  background: rgba(0, 255, 156, 0.14);
  top: 20px;
  right: 40px;
}

.page-products .p-hero-orb-2 {
  width: 80px;
  height: 80px;
  background: rgba(245, 185, 66, 0.12);
  bottom: 30px;
  left: 40px;
}

.page-products .p-hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--p-green) 0%, var(--p-gold) 50%, var(--p-cyan) 100%);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
  opacity: 0.85;
}

/* 区块通用 */
.page-products .p-section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
  position: relative;
}

.page-products .p-section-index {
  font-family: 'DIN Alternate', 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--p-green);
  letter-spacing: 0.16em;
}

.page-products .p-section-title {
  font-family: 'DIN Alternate', 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.015em;
  position: relative;
}

.page-products .p-section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--p-green), transparent);
  margin-top: 10px;
}

.page-products .p-section-subtitle {
  font-size: 14px;
  color: var(--p-muted);
  margin: 0;
}

/* 下载与适配 */
.page-products .p-download,
.page-products .p-tier,
.page-products .p-list,
.page-products .p-price,
.page-products .p-package {
  padding: 64px 0;
}

.page-products .p-download-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-products .p-card {
  background: linear-gradient(160deg, rgba(29, 44, 110, 0.8), rgba(12, 17, 38, 0.9));
  border: 1px solid var(--p-line);
  padding: 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-products .p-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--p-green);
  opacity: 0.7;
}

.page-products .p-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 156, 0.4);
}

.page-products .p-card-icon {
  font-family: 'DIN Alternate', 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--p-green);
  line-height: 1;
  margin-bottom: 14px;
}

.page-products .p-card-title {
  font-family: 'DIN Alternate', 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px;
}

.page-products .p-card-text {
  font-size: 14px;
  color: var(--p-muted);
  margin: 0 0 16px;
  line-height: 1.7;
}

.page-products .p-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-products .p-card-list li {
  font-size: 14px;
  color: var(--p-white);
  padding-left: 16px;
  position: relative;
}

.page-products .p-card-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--p-cyan);
  font-size: 12px;
  top: 1px;
}

.page-products .p-card-guide {
  background: linear-gradient(150deg, rgba(0, 212, 255, 0.08), rgba(29, 44, 110, 0.55));
}

.page-products .p-card-guide::before {
  background: var(--p-cyan);
}

.page-products .p-card-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.page-products .p-card-steps {
  list-style: none;
  padding: 0;
  margin: 14px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-products .p-card-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-products .p-step-num {
  font-family: 'DIN Alternate', 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #06080F;
  background: var(--p-cyan);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-products .p-step-text {
  font-size: 14px;
  color: var(--p-white);
}

.page-products .p-card-note {
  font-size: 13px;
  color: var(--p-muted);
  border-top: 1px solid var(--p-line);
  padding-top: 14px;
  margin-bottom: 0;
}

.page-products .p-download-tip {
  margin-top: 24px;
  font-size: 13px;
  color: var(--p-muted);
  border-left: 3px solid var(--p-gold);
  padding-left: 12px;
}

/* 首页信息架构 */
.page-products .p-arch {
  padding: 64px 0;
  background: linear-gradient(180deg, #0C1126 0%, #06080F 100%);
  position: relative;
}

.page-products .p-arch::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p-line), transparent);
}

.page-products .p-arch-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-products .p-arch-copy {
  order: 2;
}

.page-products .p-arch-visual {
  order: 1;
}

.page-products .p-arch-desc {
  font-size: 15px;
  color: var(--p-muted);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.page-products .p-arch-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-products .p-arch-features li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: rgba(29, 44, 110, 0.35);
  border-left: 2px solid var(--p-cyan);
}

.page-products .p-feature-title {
  font-family: 'DIN Alternate', 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--p-white);
}

.page-products .p-feature-text {
  font-size: 14px;
  color: var(--p-muted);
  line-height: 1.6;
}

.page-products .p-arch-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border: 1px solid var(--p-line);
  border-radius: 4px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 18px 50px rgba(6, 8, 15, 0.6);
}

/* 会员菜单第2层级 */
.page-products .p-tier-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-products .p-tier-desc {
  font-size: 15px;
  color: var(--p-muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.page-products .p-strong {
  color: var(--p-gold);
  font-weight: 700;
}

.page-products .p-path {
  display: inline-block;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 2px 10px;
  font-size: 13px;
  color: var(--p-cyan);
  font-family: 'DIN Alternate', 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

.page-products .p-tier-structure {
  margin: 20px 0 24px;
}

.page-products .p-tier-level {
  padding: 18px 20px;
  border: 1px solid var(--p-line);
  background: rgba(29, 44, 110, 0.3);
  position: relative;
}

.page-products .p-tier-level-label {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 11px;
  color: var(--p-muted);
  letter-spacing: 0.1em;
}

.page-products .p-tier-level-name {
  font-family: 'DIN Alternate', 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 4px;
}

.page-products .p-tier-level-items {
  font-size: 13px;
  color: var(--p-muted);
  margin: 0;
}

.page-products .p-tier-level.level-2 {
  border-color: rgba(245, 185, 66, 0.4);
  background: linear-gradient(120deg, rgba(245, 185, 66, 0.06), rgba(29, 44, 110, 0.3));
}

.page-products .p-tier-arrow {
  text-align: center;
  font-size: 20px;
  color: var(--p-green);
  padding: 6px 0;
  line-height: 1;
}

.page-products .p-tier-img {
  width: 100%;
  height: auto;
  border: 1px solid var(--p-line);
  margin-top: 20px;
  display: block;
}

.page-products .p-tier-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-products .p-tier-feature {
  background: rgba(6, 8, 15, 0.4);
  border: 1px solid var(--p-line);
  padding: 22px 24px;
}

.page-products .p-tier-feature-icon {
  font-size: 24px;
  color: var(--p-gold);
  display: block;
  margin-bottom: 8px;
}

.page-products .p-tier-feature-title {
  font-family: 'DIN Alternate', 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 12px;
}

.page-products .p-tier-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-products .p-tier-feature-list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  color: var(--p-white);
}

.page-products .p-tier-feature-text {
  font-size: 14px;
  color: var(--p-muted);
  margin: 0;
  line-height: 1.7;
}

/* 测试版清单 */
.page-products .p-list {
  background: linear-gradient(120deg, rgba(0, 255, 156, 0.04), rgba(12, 17, 38, 0.4));
}

.page-products .p-list-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-products .p-list-desc {
  font-size: 14px;
  color: var(--p-muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.page-products .p-list-schedule {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.page-products .p-list-schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(29, 44, 110, 0.45);
  border-left: 2px solid var(--p-green);
}

.page-products .p-schedule-label {
  font-size: 13px;
  color: var(--p-muted);
}

.page-products .p-schedule-value {
  font-family: 'DIN Alternate', 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--p-white);
}

.page-products .p-list-note {
  font-size: 13px;
  color: var(--p-muted);
  background: rgba(0, 212, 255, 0.06);
  border-left: 3px solid var(--p-cyan);
  padding: 12px 16px;
  margin-bottom: 18px;
  line-height: 1.7;
}

.page-products .p-list-link {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.page-products .p-list-img {
  width: 100%;
  height: auto;
  border: 1px solid var(--p-line);
  border-radius: 2px;
  display: block;
}

/* 重点场次单场票价 */
.page-products .p-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-products .p-price-card {
  background: linear-gradient(170deg, rgba(29, 44, 110, 0.7), rgba(12, 17, 38, 0.85));
  border: 1px solid var(--p-line);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-products .p-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(6, 8, 15, 0.45);
}

.page-products .p-price-card-hot {
  border-top: 3px solid var(--p-gold);
}

.page-products .p-price-card-final {
  border-top: 3px solid var(--p-red);
}

.page-products .p-price-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.page-products .p-price-label {
  font-size: 14px;
  color: var(--p-muted);
  margin: 0 0 12px;
}

.page-products .p-price-amount {
  font-family: 'DIN Alternate', 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--p-gold);
  margin: 0 0 16px;
  line-height: 1;
}

.page-products .p-price-amount span {
  font-size: 16px;
  color: var(--p-muted);
  font-weight: 400;
}

.page-products .p-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-products .p-price-features li {
  font-size: 14px;
  color: var(--p-white);
  padding-left: 18px;
  position: relative;
}

.page-products .p-price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--p-green);
  font-weight: 700;
}

.page-products .p-price-range {
  font-size: 13px;
  color: var(--p-muted);
  border-top: 1px solid var(--p-line);
  padding-top: 12px;
  margin: 0;
}

.page-products .p-price-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--p-muted);
  text-align: center;
  border-top: 1px solid var(--p-line);
  padding-top: 14px;
}

/* 球员数据服务包 */
.page-products .p-package {
  background: rgba(6, 8, 15, 0.35);
}

.page-products .p-package-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-products .p-tab-list {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--p-line);
  margin-bottom: 20px;
}

.page-products .p-tab-button {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 8px;
  font-family: 'DIN Alternate', 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--p-muted);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.page-products .p-tab-button:hover {
  color: var(--p-white);
}

.page-products .p-tab-button.is-active {
  color: var(--p-green);
  border-bottom-color: var(--p-green);
  background: rgba(0, 255, 156, 0.04);
}

.page-products .p-tab-panel {
  background: linear-gradient(150deg, rgba(29, 44, 110, 0.5), rgba(12, 17, 38, 0.6));
  border: 1px solid var(--p-line);
  padding: 24px;
}

.page-products .p-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-products .p-panel-title {
  font-family: 'DIN Alternate', 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 8px;
}

.page-products .p-panel-desc {
  font-size: 14px;
  color: var(--p-muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.page-products .p-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-products .p-panel-list li {
  font-size: 14px;
  color: var(--p-white);
  padding-left: 18px;
  position: relative;
}

.page-products .p-panel-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--p-cyan);
}

.page-products .p-panel-price {
  background: rgba(6, 8, 15, 0.35);
  border: 1px solid var(--p-line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.page-products .p-panel-price-label {
  font-size: 13px;
  color: var(--p-muted);
  margin-bottom: 6px;
}

.page-products .p-panel-price-value {
  font-family: 'DIN Alternate', 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--p-green);
  line-height: 1;
  margin-bottom: 6px;
}

.page-products .p-panel-price-value span {
  font-size: 14px;
  color: var(--p-muted);
  font-weight: 400;
}

.page-products .p-panel-price-note {
  font-size: 12px;
  color: var(--p-muted);
  margin: 0;
}

.page-products .p-package-chart {
  width: 100%;
  height: auto;
  border: 1px solid var(--p-line);
  border-radius: 2px;
  display: block;
}

.page-products .p-package-note {
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(29, 44, 110, 0.3);
  border-left: 3px solid var(--p-cyan);
  font-size: 13px;
  color: var(--p-muted);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-products .p-package-note .tag {
  display: inline-block;
}

.page-products .p-package-note p {
  margin: 0;
}

.page-products .p-package-cta {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  text-align: center;
}

/* 底部行动条 */
.page-products .p-bottom-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, #06080F 0%, #1D2C6E 55%, #0C1126 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-products .p-bottom-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 156, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-products .p-bottom-title {
  font-family: 'DIN Alternate', 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}

.page-products .p-bottom-text {
  font-size: 15px;
  color: var(--p-muted);
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}

.page-products .p-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.page-products .p-bottom-link {
  text-decoration: none;
}

.page-products .p-bottom-meta {
  font-size: 13px;
  color: var(--p-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  border-top: 1px solid var(--p-line);
  padding-top: 16px;
  position: relative;
  z-index: 1;
}

/* 标签通用覆盖 */
.page-products .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}

.page-products .tag-green {
  background: rgba(0, 255, 156, 0.14);
  color: var(--p-green);
  border: 1px solid rgba(0, 255, 156, 0.35);
}

.page-products .tag-gold {
  background: rgba(245, 185, 66, 0.12);
  color: var(--p-gold);
  border: 1px solid rgba(245, 185, 66, 0.35);
}

.page-products .tag-cyan {
  background: rgba(0, 212, 255, 0.12);
  color: var(--p-cyan);
  border: 1px solid rgba(0, 212, 255, 0.35);
}

.page-products .tag-red {
  background: rgba(255, 77, 77, 0.12);
  color: var(--p-red);
  border: 1px solid rgba(255, 77, 77, 0.35);
}

/* 响应式 */
@media (min-width: 720px) {
  .page-products .p-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .page-products .p-download-cards {
    grid-template-columns: 1fr 1fr;
  }

  .page-products .p-card-guide {
    grid-column: 1 / -1;
  }

  .page-products .p-price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-products .p-price-card-final {
    grid-column: 1 / -1;
  }

  .page-products .p-list-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-products .p-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-products .p-arch-inner {
    grid-template-columns: 1fr 0.9fr;
  }

  .page-products .p-arch-copy {
    order: 1;
  }

  .page-products .p-arch-visual {
    order: 2;
  }

  .page-products .p-package-layout {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
  }

  .page-products .p-panel-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .page-products .p-tier-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .page-products .p-list-schedule {
    grid-template-columns: 1fr;
  }

  .page-products .p-hero {
    padding: 56px 0 96px;
  }
}

@media (min-width: 1024px) {
  .page-products .p-download-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .page-products .p-card-guide {
    grid-column: auto;
  }

  .page-products .p-price-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .page-products .p-price-card-final {
    grid-column: auto;
  }

  .page-products .p-section-head {
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px;
  }

  .page-products .p-section-head .p-section-index {
    font-size: 16px;
  }

  .page-products .p-section-head .p-section-subtitle {
    flex-basis: 100%;
    padding-left: 0;
  }

  .page-products .p-section-title::after {
    width: 80px;
  }

  .page-products .p-bottom-actions {
    justify-content: center;
  }
}

@media (min-width: 1280px) {
  .page-products .p-hero-grid {
    padding: 0 40px;
  }

  .page-products .p-container {
    padding: 0 32px;
  }
}
