.page-products {
  --ds-gap: 16px;
  --ds-radius: 14px;
  --ds-line: rgba(140, 153, 168, 0.22);
  background: var(--ink);
  background-image:
    radial-gradient(1100px 560px at 84% -6%, rgba(33, 182, 232, 0.12), transparent 62%),
    radial-gradient(820px 520px at 6% 34%, rgba(75, 240, 208, 0.07), transparent 64%);
  background-repeat: no-repeat;
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: clip;
}

/* ---------- 面包屑 ---------- */
.page-products .breadcrumb {
  padding: 18px 0 0;
}

.page-products .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.page-products .breadcrumb__node {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-products .breadcrumb__item {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}

a.breadcrumb__item:hover {
  color: var(--cyan);
}

.page-products .breadcrumb__sep {
  color: rgba(140, 153, 168, 0.55);
}

/* ---------- 首屏 ---------- */
.page-products .ds-hero {
  padding: 26px 0 46px;
}

.page-products .ds-hero__inner {
  display: grid;
  gap: 28px;
  align-items: end;
}

.page-products .ds-kicker {
  margin: 0;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.page-products .ds-hero h1 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--white);
}

.page-products .ds-hero__lead {
  margin: 18px 0 0;
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(244, 247, 250, 0.76);
}

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

/* 首屏数据看板 */
.page-products .ds-hero__board {
  border: 1px solid var(--glass);
  border-radius: var(--ds-radius);
  background: linear-gradient(158deg, rgba(33, 182, 232, 0.12), rgba(14, 22, 32, 0.92) 62%);
  box-shadow: var(--shadow-card);
  padding: 18px 18px 8px;
}

.page-products .ds-board__title {
  margin: 0 0 6px;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-products .ds-board__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .ds-board__list li {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--ds-line);
}

.page-products .ds-board__list li:first-child {
  border-top: 0;
}

.page-products .ds-board__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}

.page-products .ds-board__label {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(244, 247, 250, 0.72);
}

/* ---------- 横向主题带 ---------- */
.page-products .ds-band {
  border-top: 1px solid var(--ds-line);
  border-bottom: 1px solid var(--ds-line);
  background: linear-gradient(90deg, rgba(33, 182, 232, 0.14), rgba(14, 22, 32, 0.4) 42%, rgba(255, 90, 43, 0.12));
  overflow-x: auto;
  scrollbar-width: thin;
}

.page-products .ds-band__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 14px 16px;
}

/* ---------- 通用章节 ---------- */
.page-products .ds-sec {
  padding: 46px 0;
}

.page-products .ds-sec__head {
  margin-bottom: 26px;
}

.page-products .ds-sec__lead {
  margin: 14px 0 0;
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(244, 247, 250, 0.72);
}

.page-products .ds-subtitle {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-products .ds-copy p {
  margin: 0 0 15px;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(244, 247, 250, 0.76);
}

.page-products .ds-note {
  margin: 14px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--blue);
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
}

.page-products .ds-inline-links {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--grey);
}

.page-products .ds-inline-links a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(33, 182, 232, 0.42);
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.page-products .ds-inline-links a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* 分栏 */
.page-products .ds-split {
  display: grid;
  gap: 26px;
  align-items: center;
}

/* 配图 */
.page-products .ds-figure {
  margin: 0;
}

.page-products .ds-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--ds-radius);
  border: 1px solid var(--glass);
  background: var(--ink-2);
}

.page-products .ds-figure .media__caption {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--grey);
}

/* 要点列表 */
.page-products .ds-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-products .ds-points li {
  position: relative;
  padding: 12px 14px 12px 34px;
  border: 1px solid var(--glass);
  border-radius: 10px;
  background: rgba(19, 30, 41, 0.72);
  font-size: 14px;
  line-height: 1.72;
  color: rgba(244, 247, 250, 0.76);
}

.page-products .ds-points li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(75, 240, 208, 0.6);
}

.page-products .ds-points strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14.5px;
  color: var(--white);
}

/* ---------- 六模块卡片 ---------- */
.page-products .ds-grid {
  display: grid;
  gap: 14px;
}

.page-products .ds-mod {
  position: relative;
  padding: 20px 18px;
  border: 1px solid var(--glass);
  border-radius: var(--ds-radius);
  background: var(--ink-2);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-products .ds-mod:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 182, 232, 0.55);
}

.page-products .ds-mod__no {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.page-products .ds-mod .card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-products .ds-mod .card__meta {
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--grey);
}

.page-products .ds-mod .card__fields {
  display: grid;
  gap: 7px;
  margin: 15px 0 0;
  padding: 14px 0 0;
  list-style: none;
  border-top: 1px dashed var(--ds-line);
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(244, 247, 250, 0.7);
}

.page-products .ds-mod .card__fields li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.page-products .ds-mod .card__fields li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--blue);
}

/* ---------- 球队数据面板 ---------- */
.page-products .ds-squad__grid {
  display: grid;
  gap: 22px;
}

.page-products .ds-squad__panel {
  border: 1px solid var(--glass);
  border-radius: var(--ds-radius);
  background: linear-gradient(180deg, rgba(19, 30, 41, 0.9), rgba(14, 22, 32, 0.95));
  padding: 20px 18px;
}

.page-products .ds-meter {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.page-products .ds-meter__row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 76px;
  gap: 12px;
  align-items: center;
}

.page-products .ds-meter__label {
  font-size: 13px;
  color: rgba(244, 247, 250, 0.8);
}

.page-products .ds-meter__bar {
  position: relative;
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(140, 153, 168, 0.16);
  overflow: hidden;
}

.page-products .ds-meter__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.page-products .ds-meter__fill--corner {
  background: linear-gradient(90deg, var(--corner-low), var(--corner-high));
}

.page-products .ds-meter__fill--yellow {
  background: linear-gradient(90deg, #b39000, var(--yellow));
}

.page-products .ds-meter__fill--red {
  background: linear-gradient(90deg, #a81b33, var(--red));
}

.page-products .ds-meter__fill--w78 { width: 78%; }
.page-products .ds-meter__fill--w62 { width: 62%; }
.page-products .ds-meter__fill--w44 { width: 44%; }
.page-products .ds-meter__fill--w22 { width: 22%; }

.page-products .ds-meter__value {
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: right;
  color: var(--cyan);
  white-space: nowrap;
}

/* 字段表 */
.page-products .ds-table__wrap {
  margin-top: 26px;
  overflow-x: auto;
  border: 1px solid var(--glass);
  border-radius: var(--ds-radius);
  background: rgba(14, 22, 32, 0.86);
  scrollbar-width: thin;
}

.page-products .ds-table {
  min-width: 640px;
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.page-products .ds-table__head,
.page-products .ds-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 1.4fr;
  gap: 12px;
  padding: 13px 16px;
  border-top: 1px solid var(--ds-line);
}

.page-products .ds-table__head {
  border-top: 0;
  background: rgba(33, 182, 232, 0.1);
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11.5px;
}

.page-products .ds-table__row {
  color: rgba(244, 247, 250, 0.76);
  transition: background 0.18s var(--ease);
}

.page-products .ds-table__row:hover {
  background: rgba(33, 182, 232, 0.07);
}

.page-products .ds-table__row span:first-child {
  color: var(--white);
}

/* 通栏图 */
.page-products .ds-banner {
  margin: 0;
  width: 100%;
}

.page-products .ds-banner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-top: 1px solid var(--glass);
  border-bottom: 1px solid var(--glass);
}

/* ---------- 伤停时间线 ---------- */
.page-products .ds-timeline {
  display: grid;
  gap: 14px;
}

.page-products .ds-timeline__item {
  position: relative;
  padding: 18px 18px 18px 40px;
  border: 1px solid var(--glass);
  border-left: 2px solid var(--yellow);
  border-radius: 10px;
  background: rgba(19, 30, 41, 0.76);
}

.page-products .ds-timeline__dot {
  position: absolute;
  left: 17px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(255, 212, 0, 0.55);
}

.page-products .ds-timeline__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-products .ds-timeline__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(244, 247, 250, 0.72);
}

/* ---------- 接入流程 ---------- */
.page-products .ds-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  counter-reset: none;
}

.page-products .ds-flow__item {
  position: relative;
  padding: 20px 18px;
  border: 1px solid var(--glass);
  border-radius: var(--ds-radius);
  background: linear-gradient(165deg, rgba(33, 182, 232, 0.08), rgba(14, 22, 32, 0.94));
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-products .ds-flow__item:hover {
  transform: translateY(-4px);
  border-color: rgba(75, 240, 208, 0.45);
}

.page-products .ds-flow__no {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 8px;
  border: 1px solid rgba(75, 240, 208, 0.5);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.page-products .ds-flow__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-products .ds-flow__item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.74;
  color: rgba(244, 247, 250, 0.72);
}

/* ---------- 适用对象 ---------- */
.page-products .ds-usecase__grid {
  display: grid;
  gap: 14px;
}

.page-products .ds-usecase__item {
  padding: 20px 18px;
  border: 1px solid var(--glass);
  border-radius: var(--ds-radius);
  background: var(--ink-2);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-products .ds-usecase__item:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 182, 232, 0.5);
}

.page-products .ds-usecase__no {
  margin: 0 0 12px;
  font-family: var(--font-cond);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: rgba(33, 182, 232, 0.85);
}

.page-products .ds-usecase__item h3 {
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-products .ds-usecase__item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.74;
  color: rgba(244, 247, 250, 0.7);
}

/* ---------- 结尾行动区 ---------- */
.page-products .ds-cta {
  margin-top: 30px;
  padding: 24px 20px;
  border: 1px solid var(--glass);
  border-radius: var(--ds-radius);
  background: linear-gradient(115deg, rgba(33, 182, 232, 0.14), rgba(7, 9, 12, 0.9) 58%);
  display: grid;
  gap: 16px;
  align-items: center;
}

.page-products .ds-cta__text h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.page-products .ds-cta__text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.74;
  color: rgba(244, 247, 250, 0.72);
}

.page-products .ds-cta .btn {
  justify-self: start;
}

/* ---------- 平板 ---------- */
@media (min-width: 660px) {
  .page-products .ds-hero {
    padding: 34px 0 58px;
  }

  .page-products .ds-hero h1 {
    font-size: 40px;
  }

  .page-products .ds-hero__lead {
    font-size: 16px;
  }

  .page-products .ds-sec {
    padding: 58px 0;
  }

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

  .page-products .ds-mod--a { grid-column: span 7; }
  .page-products .ds-mod--b { grid-column: span 5; }
  .page-products .ds-mod--c { grid-column: span 5; }
  .page-products .ds-mod--d { grid-column: span 7; }
  .page-products .ds-mod--e { grid-column: span 7; }
  .page-products .ds-mod--f { grid-column: span 5; }

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

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

  .page-products .ds-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 28px 26px;
  }

  .page-products .ds-cta .btn {
    justify-self: end;
  }

  .page-products .ds-band__inner {
    padding: 16px 16px;
  }
}

/* ---------- 桌面 ---------- */
@media (min-width: 980px) {
  .page-products .ds-hero__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 52px;
  }

  .page-products .ds-hero h1 {
    font-size: 50px;
  }

  .page-products .ds-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }

  .page-products .ds-split--flip .ds-figure {
    order: 2;
  }

  .page-products .ds-squad__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: center;
  }

  .page-products .ds-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .page-products .ds-usecase__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-products .ds-sec {
    padding: 68px 0;
  }
}

/* ---------- 减少动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-products .ds-mod,
  .page-products .ds-flow__item,
  .page-products .ds-usecase__item,
  .page-products .ds-points li,
  .page-products .ds-inline-links a {
    transition: none;
  }

  .page-products .ds-mod:hover,
  .page-products .ds-flow__item:hover,
  .page-products .ds-usecase__item:hover {
    transform: none;
  }
}
