.page-products {
  --pd-lime: var(--accent-lime);
  --pd-orange: var(--accent-orange);
  --pd-blue: var(--chart-blue);
  --pd-silver: var(--text-silver);
  --pd-panel: var(--bg-elevated);
  --pd-line: var(--line);
  --pd-shadow: var(--shadow-deep);
}

/* ========== 面包屑 ========== */
.page-products .breadcrumbs {
  margin: 0 auto;
  padding: 28px 24px 0;
  max-width: 1200px;
  font-size: 0.9rem;
  color: var(--pd-silver);
  letter-spacing: 0.02em;
}
.page-products .breadcrumbs a {
  color: var(--pd-silver);
  text-decoration: none;
  transition: color 0.2s;
}
.page-products .breadcrumbs a:hover,
.page-products .breadcrumbs a:focus-visible {
  color: var(--pd-lime);
}
.page-products .breadcrumbs a[aria-current="page"] {
  color: var(--text-white);
  font-weight: 600;
}

/* ========== 首屏 Hero ========== */
.page-products .pd-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 24px 72px;
}
.page-products .pd-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 255, 63, 0.16) 0%, rgba(212, 255, 63, 0) 70%);
  pointer-events: none;
}
.page-products .pd-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.14) 0%, rgba(255, 90, 31, 0) 70%);
  pointer-events: none;
}
.page-products .pd-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.page-products .pd-hero__copy {
  max-width: 640px;
}
.page-products .pd-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 4rem);
  line-height: 1.05;
  color: var(--text-white);
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}
.page-products .pd-hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.4vw, 1.6rem);
  line-height: 1.4;
  color: var(--pd-lime);
  margin: 0 0 20px;
}
.page-products .pd-hero__lead {
  font-size: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--pd-silver);
  max-width: 48em;
  margin: 0 0 32px;
}
.page-products .pd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.page-products .pd-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--pd-line);
  padding-top: 24px;
}
.page-products .pd-hero__stats .stat {
  padding: 8px 4px 4px 0;
}
.page-products .pd-hero__stats .stat__value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--pd-lime);
  display: block;
}

/* 手机设备框 */
.page-products .pd-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.page-products .pd-phone {
  position: relative;
  width: 230px;
  max-width: 100%;
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(145deg, #1c2542 0%, #0d1330 100%);
  border: 1px solid rgba(200, 208, 224, 0.22);
  box-shadow: 0 28px 64px var(--pd-shadow), 0 0 0 1px rgba(212, 255, 63, 0.06);
}
.page-products .pd-phone__screen {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 2;
  background: #0a0f24;
}
.page-products .pd-phone__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .pd-phone__beam {
  position: absolute;
  top: -20px;
  right: -24px;
  width: 90px;
  height: 16px;
  transform: rotate(-12deg);
  background: linear-gradient(90deg, transparent, var(--pd-orange), transparent);
  border-radius: 999px;
  opacity: 0.8;
}
.page-products .pd-hero__glow {
  position: absolute;
  inset: 8%;
  background:
    linear-gradient(0deg, rgba(0, 163, 255, 0.12), transparent 45%),
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(212, 255, 63, 0.04) 18px 19px, transparent 19px 36px);
  border-radius: 40px;
  z-index: -1;
  transform: translateZ(0);
}

/* ========== 版本亮点 ========== */
.page-products .pd-highlights {
  background:
    linear-gradient(180deg, rgba(20, 26, 51, 0.9), rgba(11, 16, 38, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 90, 31, 0.03) 0 14px, transparent 14px 40px);
  padding: 72px 24px;
}
.page-products .pd-section-head {
  max-width: 680px;
  margin-bottom: 48px;
  text-align: left;
}
.page-products .pd-section-head--left {
  margin-left: 0;
}
.page-products .pd-section-head .lead {
  margin-top: 12px;
  line-height: 1.7;
  color: var(--pd-silver);
}
.page-products .pd-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto 56px;
}
.page-products .pd-highlight-card {
  position: relative;
  background: linear-gradient(135deg, rgba(28, 37, 66, 0.8), rgba(11, 16, 38, 0.9));
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.page-products .pd-highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--pd-lime);
  opacity: 0.7;
}
.page-products .pd-highlight-card--lime::before {
  background: var(--pd-lime);
}
.page-products .pd-highlight-card--orange {
  border-color: rgba(255, 90, 31, 0.3);
}
.page-products .pd-highlight-card--orange::before {
  background: var(--pd-orange);
}
.page-products .pd-highlight-card:hover,
.page-products .pd-highlight-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(212, 255, 63, 0.4);
}
.page-products .pd-highlight-card--orange:hover {
  border-color: rgba(255, 90, 31, 0.5);
}
.page-products .pd-highlight-card__index {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 255, 63, 0.7);
  display: block;
  margin-bottom: 18px;
}
.page-products .pd-highlight-card--orange .pd-highlight-card__index {
  -webkit-text-stroke: 1px rgba(255, 90, 31, 0.8);
}
.page-products .pd-highlight-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-white);
  margin: 0 0 12px;
}
.page-products .pd-highlight-card__text {
  margin: 0 0 22px;
  line-height: 1.7;
  color: var(--pd-silver);
  font-size: 0.98rem;
}
.page-products .pd-card-link {
  color: var(--pd-lime);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  font-size: 0.95rem;
}
.page-products .pd-card-link:hover,
.page-products .pd-card-link:focus-visible {
  border-bottom-color: var(--pd-lime);
  color: #e7ff85;
}
.page-products .pd-highlight-card--orange .pd-card-link {
  color: var(--pd-orange);
}
.page-products .pd-highlight-card--orange .pd-card-link:hover {
  border-bottom-color: var(--pd-orange);
}

/* 桌面截图 */
.page-products .pd-desktop-demo {
  max-width: 1200px;
  margin: 0 auto;
}
.page-products .pd-desktop-demo__frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0a0f24;
  border: 1px solid rgba(0, 163, 255, 0.28);
  box-shadow: 0 24px 60px var(--pd-shadow), 0 0 0 1px rgba(212, 255, 63, 0.04);
}
.page-products .pd-desktop-demo__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(20, 26, 51, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-products .pd-desktop-demo__bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #3b4spanel;
  background: #2a3554;
}
.page-products .pd-desktop-demo__bar span:first-child {
  background: var(--pd-orange);
}
.page-products .pd-desktop-demo__bar span:nth-child(2) {
  background: rgba(255, 255, 255, 0.25);
}
.page-products .pd-desktop-demo__bar span:nth-child(3) {
  background: var(--pd-lime);
}
.page-products .pd-desktop-demo__frame img {
  display: block;
  width: 100%;
  height: auto;
}
.page-products .pd-desktop-demo figcaption {
  margin-top: 14px;
  color: var(--pd-silver);
}
.page-products .pd-desktop-demo figcaption a {
  color: var(--pd-lime);
  text-decoration: none;
  font-weight: 600;
}
.page-products .pd-desktop-demo figcaption a:hover {
  text-decoration: underline;
}

/* ========== 功能详解 ========== */
.page-products .pd-features {
  padding: 72px 24px 48px;
}
.page-products .pd-features .pd-feature-list {
  max-width: 1200px;
  margin: 0 auto;
}
.page-products .pd-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 52px 0;
  border-top: 1px solid var(--pd-line);
}
.page-products .pd-feature:first-child {
  border-top-color: rgba(212, 255, 63, 0.3);
}
.page-products .pd-feature__sticky {
  position: relative;
}
.page-products .pd-feature__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #0b1026;
  background: var(--pd-lime);
  margin-bottom: 16px;
}
.page-products .pd-feature__index--lime {
  background: var(--pd-blue);
  color: #0b1026;
}
.page-products .pd-feature__index--orange {
  background: var(--pd-orange);
  color: #fff;
}
.page-products .pd-feature__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--text-white);
  margin: 0 0 14px;
  line-height: 1.15;
}
.page-products .pd-feature__desc {
  line-height: 1.75;
  color: var(--pd-silver);
  font-size: 1rem;
  max-width: 34em;
}
.page-products .pd-feature__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-content: start;
}
.page-products .pd-feature__content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 163, 255, 0.16);
  box-shadow: 0 16px 40px var(--pd-shadow);
}

/* 战报预览卡 */
.page-products .pd-report-preview {
  border-radius: var(--radius-lg);
  border: 1px solid var(--pd-line);
  background: linear-gradient(160deg, rgba(30, 40, 68, 0.7), rgba(11, 16, 38, 0.92));
  overflow: hidden;
  box-shadow: 0 16px 36px var(--pd-shadow);
}
.page-products .pd-report-preview__bar {
  display: flex;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(11, 16, 38, 0.55);
  border-bottom: 1px solid var(--pd-line);
}
.page-products .pd-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.page-products .pd-dot--orange {
  background: var(--pd-orange);
}
.page-products .pd-dot--lime {
  background: var(--pd-lime);
}
.page-products .pd-report-preview__body {
  padding: 26px 26px 28px;
}
.page-products .pd-report-preview__body h4 {
  font-size: 1.28rem;
  color: var(--text-white);
  margin: 16px 0 10px;
  line-height: 1.3;
}
.page-products .pd-report-preview__body p {
  color: var(--pd-silver);
  line-height: 1.7;
  font-size: 0.96rem;
  margin-bottom: 22px;
}
.page-products .pd-report-preview__meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--pd-line);
  padding-top: 14px;
  color: var(--pd-lime);
}

/* 订阅数据网格 */
.page-products .pd-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.page-products .pd-sub-grid__item {
  background: rgba(20, 26, 51, 0.7);
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.page-products .pd-sub-grid__item:hover {
  border-color: rgba(212, 255, 63, 0.4);
  transform: translateY(-3px);
}
.page-products .pd-sub-grid__item--lime {
  border-color: rgba(0, 163, 255, 0.28);
}
.page-products .pd-sub-grid__item--orange {
  border-color: rgba(255, 90, 31, 0.28);
}
.page-products .pd-sub-grid__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--pd-lime);
  line-height: 1;
  margin-bottom: 8px;
}
.page-products .pd-sub-grid__item--lime .pd-sub-grid__num {
  color: var(--pd-blue);
}
.page-products .pd-sub-grid__item--orange .pd-sub-grid__num {
  color: var(--pd-orange);
}
.page-products .pd-sub-grid__label {
  font-size: 0.92rem;
  color: var(--pd-silver);
}

/* 列表要点 */
.page-products .pd-feature__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-products .pd-feature__points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.6;
  color: var(--pd-silver);
  font-size: 0.98rem;
}
.page-products .pd-bullet {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--pd-lime);
  margin-top: 7px;
  transform: rotate(45deg);
}
.page-products .pd-bullet--lime {
  background: var(--pd-blue);
}
.page-products .pd-bullet--orange {
  background: var(--pd-orange);
}

/* ========== 下载区 ========== */
.page-products .pd-download {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 72px;
}
.page-products .pd-download__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-products .pd-download__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11, 16, 38, 0.94) 0%, rgba(11, 16, 38, 0.82) 50%, rgba(20, 26, 51, 0.9) 100%);
}
.page-products .pd-download__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .pd-download__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
}
.page-products .pd-download__head {
  margin-bottom: 56px;
}
.page-products .pd-download__head .lead {
  color: var(--pd-silver);
  margin-top: 12px;
  max-width: 42em;
}
.page-products .pd-download__steps {
  margin-bottom: 40px;
}
.page-products .pd-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-products .pd-step {
  background: rgba(11, 16, 38, 0.68);
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s, transform 0.3s;
}
.page-products .pd-step:hover {
  border-color: rgba(212, 255, 63, 0.34);
  transform: translateY(-4px);
}
.page-products .pd-step__num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--pd-lime);
  display: block;
  margin-bottom: 12px;
  -webkit-text-stroke: 1px rgba(212, 255, 63, 0.4);
}
.page-products .pd-step__title {
  font-size: 1.18rem;
  color: var(--text-white);
  margin-bottom: 8px;
}
.page-products .pd-step__text {
  color: var(--pd-silver);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.page-products .pd-download__platform {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.page-products .pd-platform-card {
  background: rgba(11, 16, 38, 0.7);
  border: 1px solid var(--pd-line);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  text-align: center;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.page-products .pd-platform-card:hover,
.page-products .pd-platform-card:focus-visible,
.page-products .pd-platform-card:focus {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.18);
  transform: translateY(-4px);
}
.page-products .pd-platform-card--lime {
  border-color: rgba(212, 255, 63, 0.28);
}
.page-products .pd-platform-card--lime:hover {
  border-color: rgba(212, 255, 63, 0.62);
  box-shadow: 0 0 0 3px rgba(212, 255, 63, 0.16);
}
.page-products .pd-platform-card--orange {
  border-color: rgba(255, 90, 31, 0.28);
}
.page-products .pd-platform-card--orange:hover {
  border-color: rgba(255, 90, 31, 0.62);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.16);
}
.page-products .pd-platform-card__icon {
  display: block;
  font-size: 2.2rem;
  color: var(--pd-lime);
  margin-bottom: 8px;
  line-height: 1;
}
.page-products .pd-platform-card--lime .pd-platform-card__icon {
  color: var(--pd-blue);
}
.page-products .pd-platform-card--orange .pd-platform-card__icon {
  color: var(--pd-orange);
}
.page-products .pd-platform-card h3 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 6px;
}
.page-products .pd-platform-card .caption {
  color: var(--pd-silver);
}
.page-products .pd-download__hint {
  color: var(--pd-silver);
  text-align: center;
}
.page-products .pd-download__hint a {
  color: var(--pd-lime);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.page-products .pd-download__hint a:hover {
  border-bottom-color: var(--pd-lime);
}

/* ========== 系统要求 ========== */
.page-products .pd-specs {
  background: linear-gradient(180deg, #0b1026, #10162b);
  padding: 72px 24px;
}
.page-products .pd-specs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin-inline: auto;
}
.page-products .pd-spec-card {
  background: linear-gradient(145deg, rgba(28, 37, 66, 0.72), rgba(11, 16, 38, 0.85));
  border: 1px solid var(--pd-line);
  border-left: 4px solid var(--pd-orange);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  outline: none;
  transition: border-color 0.3s, transform 0.3s;
}
.page-products .pd-spec-card:hover,
.page-products .pd-spec-card:focus-visible {
  transform: translateY(-4px);
  border-left-color: var(--pd-orange);
  border-color: rgba(255, 90, 31, 0.4);
}
.page-products .pd-spec-card--lime {
  border-left-color: var(--pd-lime);
}
.page-products .pd-spec-card--lime:hover,
.page-products .pd-spec-card--lime:focus-visible {
  border-left-color: var(--pd-lime);
  border-color: rgba(212, 255, 63, 0.36);
}
.page-products .pd-spec-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.page-products .pd-spec-card__icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  background: var(--pd-orange);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.page-products .pd-spec-card--lime .pd-spec-card__icon {
  background: var(--pd-lime);
  color: #0b1026;
}
.page-products .pd-spec-card h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin: 0;
}
.page-products .pd-spec-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.page-products .pd-spec-list div {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--pd-line);
}
.page-products .pd-spec-list div:first-child {
  border-top: none;
  padding-top: 4px;
}
.page-products .pd-spec-list dt {
  color: var(--pd-silver);
  font-weight: 600;
  font-size: 0.92rem;
}
.page-products .pd-spec-list dd {
  margin: 0;
  color: var(--text-white);
  font-size: 0.94rem;
  line-height: 1.5;
  text-align: right;
}

/* ========== 继续了解 ========== */
.page-products .pd-more {
  padding: 56px 24px 72px;
  text-align: center;
}
.page-products .pd-more__inner {
  max-width: 1200px;
  margin-inline: auto;
}
.page-products .pd-more h2 {
  margin: 14px auto 36px;
  max-width: 26rem;
}
.page-products .pd-more__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.page-products .pd-more__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border: 1px solid var(--pd-line);
  border-radius: 999px;
  color: var(--pd-silver);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
}
.page-products .pd-more__link:hover,
.page-products .pd-more__link:focus-visible {
  color: #0b1026;
  background: var(--pd-lime);
  border-color: var(--pd-lime);
  transform: translateY(-3px);
}

/* ========== 按钮震动反馈 ========== */
.page-products .btn--solid:active {
  animation: pd-shake 0.18s ease;
}
@keyframes pd-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-1px); }
}

/* ========== 平板以上 ========== */
@media (min-width: 600px) {
  .page-products .pd-sub-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-products .pd-download__platform {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-products .pd-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-products .pd-specs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== 桌面端 ========== */
@media (min-width: 1024px) {
  .page-products .pd-hero {
    padding-top: 88px;
    padding-bottom: 100px;
  }
  .page-products .pd-hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 48px;
  }
  .page-products .pd-hero__title {
    font-size: 4.4rem;
  }
  .page-products .pd-hero__visual {
    min-height: 560px;
  }
  .page-products .pd-phone {
    width: 280px;
  }
  .page-products .pd-highlights__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
  }
  .page-products .pd-highlight-card:nth-child(2) {
    transform: translateY(36px);
  }
  .page-products .pd-highlight-card:nth-child(3) {
    transform: translateY(72px);
  }
  .page-products .pd-highlight-card:nth-child(2):hover,
  .page-products .pd-highlight-card:nth-child(3):hover {
    transform: translateY(30px);
  }
  .page-products .pd-highlight-card:nth-child(3):hover {
    transform: translateY(66px);
  }
  .page-products .pd-feature {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 72px;
    align-items: start;
  }
  .page-products .pd-feature__sticky {
    position: sticky;
    top: 110px;
    padding-top: 8px;
  }
  .page-products .pd-feature__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-products .pd-report-preview {
    max-width: 560px;
  }
  .page-products .pd-feature__content img {
    border-radius: var(--radius-lg);
  }
  .page-products .pd-download {
    padding: 120px 24px 100px;
  }
  .page-products .pd-download__head .display-xl {
    font-size: 3.6rem;
  }
  .page-products .pd-more {
    padding-top: 72px;
  }
}

/* ========== 宽屏 ========== */
@media (min-width: 1400px) {
  .page-products .pd-hero__title {
    font-size: 4.8rem;
  }
  .page-products .pd-download__head .display-xl {
    font-size: 4.2rem;
  }
}

/* ========== 降低动效偏好 ========== */
@media (prefers-reduced-motion: reduce) {
  .page-products *,
  .page-products *::before,
  .page-products *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
