.page-products {
  --prod-deep: #071527;
  --prod-panel: #0F2444;
  --prod-line-dark: rgba(244, 246, 250, 0.14);
  --prod-line-light: rgba(11, 30, 59, 0.10);
}

.page-products .mono {
  font-family: var(--font-mono);
}

/* ========= Hero / 首屏仪表盘 ========= */
.page-products .prod-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 104px;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 108, 29, 0.16) 0%, transparent 44%),
    linear-gradient(180deg, var(--c-navy-dark) 0%, var(--c-navy) 100%);
  color: var(--c-white);
}

.page-products .prod-hero::before {
  content: "";
  position: absolute;
  top: -8%;
  right: -8%;
  width: 46%;
  height: 130%;
  background: linear-gradient(
    115deg,
    transparent 0 38%,
    rgba(245, 108, 29, 0.10) 38.4% 39%,
    transparent 39.4% 56%,
    rgba(233, 196, 106, 0.08) 56.4% 57%,
    transparent 57.4%
  );
  transform: rotate(-10deg);
  pointer-events: none;
}

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

.page-products .prod-hero h1 {
  margin: 10px 0 0;
  max-width: 880px;
  font-size: clamp(30px, 7vw, 58px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--c-white);
}

.page-products .prod-hero__hl {
  color: var(--c-orange);
}

.page-products .prod-hero__lead {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(244, 246, 250, 0.82);
}

.page-products .prod-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 24px;
  max-width: 820px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--prod-line-dark);
}

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

.page-products .prod-hero__stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 6px;
  row-gap: 2px;
}

.page-products .prod-num {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-orange);
}

.page-products .prod-unit {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-gold);
}

.page-products .prod-label {
  flex-basis: 100%;
  margin-top: 7px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(244, 246, 250, 0.60);
}

.page-products .prod-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.page-products .prod-hero__ticker {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -6px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 11px 22px;
  background: var(--c-orange);
  color: var(--c-navy-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  white-space: nowrap;
  transform: rotate(-1.6deg);
  transform-origin: center;
  box-shadow: 0 8px 22px rgba(7, 21, 39, 0.30);
  pointer-events: none;
}

.page-products .prod-hero__ticker span {
  white-space: nowrap;
}

.page-products .prod-hero__ticker span + span::before {
  content: "/ /";
  margin: 0 22px;
  color: rgba(7, 21, 39, 0.50);
}

/* ========= 通用区块 ========= */
.page-products .prod-section {
  padding: 64px 0;
}

@media (min-width: 900px) {
  .page-products .prod-section {
    padding: 96px 0;
  }
}

.page-products .prod-section__head {
  max-width: 760px;
  margin-bottom: 40px;
}

.page-products .prod-section__head h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-navy);
}

.page-products .prod-section__head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-gray);
}

.page-products .prod-kicker {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-orange);
}

/* ========= 核心功能矩阵 ========= */
.page-products .prod-matrix {
  background: var(--c-light);
}

.page-products .prod-matrix__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 720px) {
  .page-products .prod-matrix__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-products .prod-card--wide {
    grid-column: span 4;
  }

  .page-products .prod-card:nth-of-type(2) {
    grid-column: span 2;
  }

  .page-products .prod-card:nth-of-type(3),
  .page-products .prod-card:nth-of-type(4),
  .page-products .prod-card:nth-of-type(5) {
    grid-column: span 2;
  }

  .page-products .prod-card--panel {
    grid-column: 1 / -1;
  }
}

.page-products .prod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--c-white);
  border: 1px solid var(--prod-line-light);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-products .prod-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-orange);
  box-shadow: var(--shadow-2);
}

.page-products .prod-card__index {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-gold);
}

.page-products .prod-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--c-navy);
}

.page-products .prod-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-gray);
}

.page-products .prod-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.page-products .prod-card__score {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 800;
  color: var(--c-navy);
}

.page-products .prod-card__score .mono-sep {
  color: var(--c-orange);
}

.page-products .prod-card--panel {
  flex-direction: column;
  align-items: flex-start;
  background:
    linear-gradient(120deg, rgba(245, 108, 29, 0.10) 0%, transparent 55%),
    var(--c-navy);
  color: var(--c-white);
}

@media (min-width: 720px) {
  .page-products .prod-card--panel {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }
}

.page-products .prod-card--panel img {
  width: 300px;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(233, 196, 106, 0.55);
}

.page-products .prod-card--panel div {
  min-width: 0;
}

.page-products .prod-card--panel p.prod-panel__title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-white);
}

.page-products .prod-card--panel div p {
  margin: 0;
  color: rgba(244, 246, 250, 0.78);
}

/* ========= 下载与版本 ========= */
.page-products .prod-download {
  background:
    linear-gradient(135deg, rgba(245, 108, 29, 0.10) 0%, transparent 42%),
    var(--c-navy);
  color: var(--c-white);
}

.page-products .prod-download__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 44px;
}

@media (min-width: 900px) {
  .page-products .prod-download__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 56px;
    align-items: start;
  }
}

.page-products .prod-download__info {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(244, 246, 250, 0.86);
}

.page-products .prod-download h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--c-white);
}

.page-products .prod-download__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(244, 246, 250, 0.88);
}

.page-products .prod-version-inline {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--c-gold);
}

.page-products .prod-check {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.page-products .prod-check li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 246, 250, 0.88);
}

.page-products .prod-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 13px;
  height: 13px;
  background: var(--c-orange);
  transform: rotate(45deg);
}

.page-products .prod-download__note {
  margin: 24px 0;
  padding-left: 16px;
  border-left: 3px solid var(--c-gold);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(244, 246, 250, 0.68);
}

.page-products .prod-download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.page-products .prod-download__panel {
  position: relative;
  padding: 34px 28px 28px;
  background: var(--c-navy-light);
  border: 1px solid rgba(233, 196, 106, 0.35);
}

.page-products .prod-download__panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 6px;
  background: var(--c-orange);
}

.page-products .prod-panel__tag {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: var(--c-gold);
}

.page-products .prod-version {
  margin: 0 0 28px;
  font-family: var(--font-mono);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-gold);
}

.page-products .prod-specs {
  margin: 0;
}

.page-products .prod-spec {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--prod-line-dark);
}

.page-products .prod-spec:last-child {
  padding-bottom: 2px;
  border-bottom: 0;
}

.page-products .prod-spec dt {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(244, 246, 250, 0.55);
}

.page-products .prod-spec dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-white);
}

/* ========= 数据同步机制 ========= */
.page-products .prod-sync {
  background: var(--c-light);
}

.page-products .prod-sync__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}

@media (min-width: 900px) {
  .page-products .prod-sync__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: center;
  }
}

.page-products .prod-sync__text > p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-gray);
}

.page-products .prod-sync__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 28px;
}

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

.page-products .prod-sync__step {
  padding: 14px 12px;
  background: var(--c-white);
  border-top: 3px solid var(--c-orange);
}

.page-products .prod-sync__step span {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange);
}

.page-products .prod-sync__step p {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-navy);
}

.page-products .prod-sync__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 24px;
  border-top: 1px solid var(--prod-line-light);
  border-bottom: 1px solid var(--prod-line-light);
}

.page-products .prod-sync__metrics div {
  padding: 18px 12px;
  border-right: 1px solid var(--prod-line-light);
}

.page-products .prod-sync__metrics div:last-child {
  border-right: 0;
}

.page-products .prod-sync__metrics .mono {
  display: block;
  font-family: var(--font-mono);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-orange);
}

.page-products .prod-sync__metrics p {
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-gray);
}

.page-products .prod-sync__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.page-products .prod-trust {
  padding: 8px 12px;
  background: var(--c-navy);
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-white);
}

.page-products .prod-trust::before {
  content: "◆";
  margin-right: 8px;
  font-size: 10px;
  color: var(--c-gold);
}

.page-products .prod-sync__more {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(245, 108, 29, 0.35);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--c-orange);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.page-products .prod-sync__more:hover {
  border-bottom-color: var(--c-orange);
  color: var(--c-orange-dark);
}

.page-products .prod-sync__figure {
  margin: 0;
}

.page-products .prod-sync__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--prod-line-light);
  box-shadow: 12px 12px 0 rgba(245, 108, 29, 0.14);
}

.page-products .prod-sync__figure figcaption,
.page-products .prod-compare__phone figcaption,
.page-products .prod-scenario__figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-gray);
}

/* ========= 赛程视图对比 ========= */
.page-products .prod-compare {
  background:
    linear-gradient(115deg, transparent 0 76%, rgba(233, 196, 106, 0.08) 76.4% 77%, transparent 77.4% 92%, rgba(245, 108, 29, 0.08) 92.4% 93%, transparent 93.4%),
    var(--c-navy);
  color: var(--c-white);
}

.page-products .prod-compare .prod-section__head h2 {
  color: var(--c-white);
}

.page-products .prod-compare .prod-section__head p {
  color: rgba(244, 246, 250, 0.72);
}

.page-products .prod-compare__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
}

@media (min-width: 900px) {
  .page-products .prod-compare__grid {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }
}

.page-products .prod-compare__phone {
  margin: 0;
}

.page-products .prod-compare__phone img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  border: 6px solid var(--c-navy-light);
  outline: 1px solid rgba(233, 196, 106, 0.45);
}

.page-products .prod-compare__cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

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

.page-products .prod-compare__col {
  padding: 24px;
}

.page-products .prod-compare__col--new {
  background: var(--c-navy-light);
  border-top: 4px solid var(--c-orange);
}

.page-products .prod-compare__col--old {
  background: rgba(7, 21, 39, 0.35);
  border: 1px dashed rgba(244, 246, 250, 0.28);
}

.page-products .prod-compare__col h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-white);
}

.page-products .prod-compare__col--new h3::before {
  content: "NEW / ";
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--c-orange);
}

.page-products .prod-compare__col--old h3::before {
  content: "OLD / ";
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--c-gray);
}

.page-products .prod-compare__col ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .prod-compare__col li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(244, 246, 250, 0.85);
}

.page-products .prod-compare__col--new li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--c-gold);
}

.page-products .prod-compare__col--old li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--c-gray);
}

/* ========= 用户场景 ========= */
.page-products .prod-scenario {
  background: var(--c-light);
}

.page-products .prod-scenario__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 44px;
}

@media (min-width: 900px) {
  .page-products .prod-scenario__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 56px;
    align-items: center;
  }
}

.page-products .prod-scenario__steps {
  display: grid;
  gap: 26px;
}

.page-products .prod-tl {
  position: relative;
  padding-left: 52px;
}

.page-products .prod-tl::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 44px;
  bottom: -28px;
  border-left: 1px dashed var(--c-orange);
}

.page-products .prod-tl:last-child::before {
  display: none;
}

.page-products .prod-tl__num {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--c-orange);
  color: var(--c-navy-dark);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
}

.page-products .prod-tl h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-navy);
}

.page-products .prod-tl p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-gray);
}

.page-products .prod-scenario__figure {
  margin: 0;
}

.page-products .prod-scenario__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--prod-line-light);
  box-shadow: -12px 12px 0 rgba(11, 30, 59, 0.10);
}

/* ========= 底部横幅 ========= */
.page-products .prod-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(118deg, var(--c-navy-dark) 0%, #12305C 100%);
}

.page-products .prod-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
}

.page-products .prod-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 56px 0;
}

@media (min-width: 900px) {
  .page-products .prod-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}

.page-products .prod-banner__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--c-white);
}

.page-products .prod-banner__copy p {
  max-width: 640px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(244, 246, 250, 0.78);
}

.page-products .prod-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ========= 页面按钮 ========= */
.page-products .prod-btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid var(--c-orange);
  background: var(--c-orange);
  color: var(--c-navy-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.page-products .prod-btn-orange:hover {
  background: transparent;
  color: var(--c-orange);
  transform: translateY(-2px);
}

.page-products .prod-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid rgba(244, 246, 250, 0.75);
  background: transparent;
  color: var(--c-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.page-products .prod-btn-ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}
