.page-products {
  padding-top: clamp(16px, 2.5vw, 28px);
  padding-bottom: clamp(48px, 7vw, 96px);
}

/* ---------- 面包屑 ---------- */
.page-products .breadcrumb {
  margin-bottom: clamp(16px, 2.6vw, 28px);
}

/* ---------- 首屏 ---------- */
.page-products .tools-hero {
  position: relative;
  padding-bottom: clamp(40px, 6vw, 72px);
}

.page-products .tools-hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--cyan);
  margin: 0 0 14px;
  text-transform: uppercase;
}

.page-products .tools-hero h1 {
  font-size: clamp(30px, 5.2vw, 62px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0 0 clamp(16px, 2.4vw, 24px);
  max-width: 620px;
}

.page-products .tools-hero .lead {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  color: var(--mist);
  max-width: 62ch;
  margin: 0 0 clamp(24px, 3.6vw, 38px);
}

/* 筛选条 */
.page-products .filter-bar {
  position: relative;
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(18px, 2.6vw, 28px);
  background: var(--glass);
  border: 1px solid var(--line);
  border-left: 2px solid var(--cyan);
  backdrop-filter: blur(12px);
  margin-bottom: clamp(26px, 4vw, 44px);
}

.page-products .filter-group {
  display: grid;
  gap: 9px;
}

.page-products .filter-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mist);
  text-transform: uppercase;
}

.page-products .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-products .tool-chip {
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--mist);
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.page-products .tool-chip:hover {
  color: var(--paper);
  border-color: var(--cyan-deep);
}

.page-products .tool-chip.is-on {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
  font-weight: 500;
}

.page-products .filter-foot {
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
  font-family: var(--font-mono);
}

/* 首屏通栏图 */
.page-products .hero-media {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.page-products .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.15) 0%, rgba(5, 7, 10, 0.72) 100%);
  pointer-events: none;
}

.page-products .hero-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.5) contrast(1.06);
}

/* ---------- 通用章节微调 ---------- */
.page-products .section {
  padding-block: clamp(44px, 6.5vw, 82px);
}

.page-products .section-head {
  margin-bottom: clamp(24px, 3.6vw, 40px);
}

.page-products .section-title {
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.2;
  font-weight: 900;
  color: var(--paper);
  margin: 10px 0 14px;
  max-width: 22ch;
}

.page-products .section-head .lead {
  font-size: clamp(15px, 1.5vw, 16.5px);
  line-height: 1.85;
  color: var(--mist);
  max-width: 64ch;
  margin: 0;
}

.page-products .grid {
  gap: clamp(16px, 2.6vw, 32px);
}

/* ---------- 赛程检索器 ---------- */
.page-products .schedule-facets {
  padding: clamp(18px, 2.4vw, 26px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 2px solid var(--cyan);
}

.page-products .facet-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--paper);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}

.page-products .facet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-products .facet-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.page-products .facet-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-products .facet-key {
  font-size: 13px;
  color: var(--cyan);
  padding-top: 2px;
}

.page-products .facet-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 5px;
}

.page-products .facet-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist);
}

.page-products .schedule-stats {
  padding: clamp(18px, 2.4vw, 26px);
  background: var(--panel-deep);
  border: 1px solid var(--line);
}

.page-products .stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}

.page-products .stat-row:first-child {
  padding-top: 0;
}

.page-products .stat-row--accent .stat-val {
  color: var(--cyan);
}

.page-products .stat-key {
  font-size: 14px;
  color: var(--mist);
}

.page-products .stat-val {
  font-size: 17px;
  color: var(--ice);
  white-space: nowrap;
}

.page-products .stat-note {
  margin: 18px 0 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--mist);
  border-left: 2px solid var(--orange);
  padding-left: 12px;
}

/* ---------- 球员面板 ---------- */
.page-products .player-visual {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  align-self: start;
}

.page-products .player-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.05);
}

.page-products .player-right {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
}

.page-products .dim-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-products .dim-item {
  display: grid;
  gap: 6px;
  padding: 15px clamp(14px, 2vw, 20px);
  background: var(--panel);
  transition: background 0.25s var(--ease);
}

.page-products .dim-item:hover {
  background: var(--panel-deep);
}

.page-products .dim-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ice);
  position: relative;
  padding-left: 14px;
}

.page-products .dim-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  transform: skewX(-18deg);
}

.page-products .dim-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist);
  padding-left: 14px;
}

/* 球员样本卡 */
.page-products .player-sample {
  padding: clamp(16px, 2.2vw, 24px);
  background: var(--glass-strong);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.page-products .sample-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.page-products .sample-span {
  font-size: 12px;
  color: var(--mist);
}

.page-products .sample-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-products .sample-metrics .metric {
  display: grid;
  gap: 5px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.page-products .sample-metrics .metric--accent {
  border-left-color: var(--cyan);
}

.page-products .metric-label {
  font-size: 12.5px;
  color: var(--mist);
  letter-spacing: 0.02em;
}

.page-products .metric-value {
  font-size: 26px;
  line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}

.page-products .metric--accent .metric-value {
  color: var(--ice);
}

.page-products .metric-unit {
  font-size: 12px;
  font-style: normal;
  color: var(--mist);
  margin-left: 3px;
}

.page-products .sample-note {
  margin: 18px 0 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--mist);
}

/* ---------- 对照视图 ---------- */
.page-products .compare-banner {
  margin: 0 0 clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  overflow: hidden;
}

.page-products .compare-banner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.5) contrast(1.05);
}

.page-products .compare-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.page-products .mode-chip {
  font: inherit;
  font-size: 13.5px;
  padding: 9px 18px;
  border-radius: 2px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--mist);
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.page-products .mode-chip:hover {
  color: var(--paper);
  border-color: var(--cyan-deep);
}

.page-products .mode-chip.is-on {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
  font-weight: 600;
}

.page-products .compare-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-products .compare-card {
  padding: clamp(20px, 2.8vw, 30px);
  background: var(--panel);
  position: relative;
}

.page-products .compare-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan) 0%, transparent 100%);
}

.page-products .compare-title {
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 700;
  color: var(--paper);
  margin: 0 0 18px;
  line-height: 1.4;
}

.page-products .compare-lines {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 11px;
}

.page-products .compare-lines li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}

.page-products .compare-lines li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-products .compare-key {
  font-size: 13.5px;
  color: var(--mist);
}

.page-products .compare-val {
  font-size: 15px;
  color: var(--orange);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.page-products .compare-note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--mist);
}

/* ---------- 杯赛签表 ---------- */
.page-products .bracket-copy .section-title {
  margin-top: 10px;
}

.page-products .bracket-list {
  list-style: none;
  margin: clamp(20px, 3vw, 30px) 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.page-products .bracket-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.page-products .bracket-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-products .bracket-num {
  font-size: 13px;
  color: var(--orange);
  padding-top: 2px;
}

.page-products .bracket-item strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 6px;
}

.page-products .bracket-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--mist);
}

.page-products .bracket-visual {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  align-self: start;
}

.page-products .bracket-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.45) contrast(1.08);
}

/* ---------- 订阅与导出 ---------- */
.page-products .sub-grid {
  align-items: start;
}

.page-products .sub-card {
  padding: clamp(20px, 2.8vw, 30px);
  background: var(--panel);
  border: 1px solid var(--line);
}

.page-products .sub-card-title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--paper);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.page-products .sub-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}

.page-products .sub-text {
  display: grid;
  gap: 5px;
}

.page-products .sub-label {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--paper);
}

.page-products .sub-hint {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
}

.page-products .sub-switch {
  flex: 0 0 auto;
  width: 46px;
  height: 25px;
  padding: 2px;
  border-radius: 999px;
  border: 1px solid var(--cyan);
  background: rgba(37, 240, 206, 0.14);
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-products .sub-switch[aria-pressed="false"] {
  justify-content: flex-start;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.page-products .sub-knob {
  display: block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--cyan);
  transition: background 0.2s var(--ease);
}

.page-products .sub-switch[aria-pressed="false"] .sub-knob {
  background: var(--mist);
}

.page-products .sub-note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--mist);
}

.page-products .export-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-products .export-item {
  padding-left: 14px;
  border-left: 2px solid var(--line);
  transition: border-color 0.25s var(--ease);
}

.page-products .export-item:hover {
  border-left-color: var(--cyan);
}

.page-products .export-item strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ice);
  margin-bottom: 6px;
}

.page-products .export-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--mist);
}

.page-products .sub-banner {
  margin: clamp(26px, 4vw, 42px) 0 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.page-products .sub-banner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.5) contrast(1.05);
}

/* ---------- 三步查询 ---------- */
.page-products .step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  counter-reset: step;
}

.page-products .step-item {
  background: var(--panel-deep);
  padding: clamp(20px, 2.8vw, 32px);
  position: relative;
  transition: background 0.25s var(--ease);
}

.page-products .step-item:hover {
  background: var(--panel);
}

.page-products .step-num {
  display: block;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1;
  color: var(--cyan);
  opacity: 0.85;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.page-products .step-title {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  color: var(--paper);
  margin: 0 0 10px;
}

.page-products .step-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--mist);
}

/* ---------- 使用场景 ---------- */
.page-products .audience-grid {
  align-items: stretch;
}

.page-products .audience-card {
  padding: clamp(20px, 2.8vw, 30px);
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}

.page-products .audience-card:hover {
  border-color: var(--cyan);
}

.page-products .audience-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(37, 240, 206, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.page-products .audience-role {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--orange);
  padding: 4px 10px;
  border: 1px solid rgba(255, 106, 26, 0.35);
  border-radius: 2px;
  margin-bottom: 16px;
}

.page-products .audience-title {
  font-size: clamp(16.5px, 1.9vw, 20px);
  font-weight: 700;
  color: var(--paper);
  margin: 0 0 12px;
  line-height: 1.4;
}

.page-products .audience-use {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--mist);
}

.page-products .audience-foot {
  margin: clamp(26px, 4vw, 40px) 0 0;
  padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-left: 2px solid var(--cyan);
  background: var(--glass);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--mist);
}

.page-products .audience-foot a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 240, 206, 0.4);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-products .audience-foot a:hover {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-products .sample-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .page-products .compare-pair {
    grid-template-columns: 1fr 1fr;
  }

  .page-products .filter-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .filter-foot {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  .page-products .filter-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-products .hero-media img {
    max-height: 420px;
  }

  .page-products .compare-banner img {
    max-height: 320px;
  }

  .page-products .sub-banner img {
    max-height: 300px;
  }

  .page-products .player-visual img,
  .page-products .bracket-visual img {
    max-height: 520px;
  }
}

@media (max-width: 480px) {
  .page-products .tool-chip {
    font-size: 12.5px;
    padding: 6px 11px;
  }

  .page-products .stat-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .page-products .compare-lines li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .tool-chip,
  .page-products .mode-chip,
  .page-products .sub-switch,
  .page-products .dim-item,
  .page-products .step-item,
  .page-products .audience-card,
  .page-products .export-item,
  .page-products .audience-foot a {
    transition: none;
  }
}
