.page-products {
  --page-gold-glow: rgba(212, 175, 55, .35);
  --page-line-color: rgba(212, 175, 55, .38);
  --page-dot-color: #00A859;
  --page-hero-grad: linear-gradient(128deg, #071631 0%, #0A1F44 58%, #123063 100%);
  --page-card-radius: 16px;
}

.page-products .container {
  max-width: var(--container);
}

.page-products img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-products__img {
  width: 100%;
  border-radius: var(--page-card-radius);
  object-fit: cover;
}

.page-products__figcaption {
  display: block;
  margin-top: 12px;
  font-size: .82rem;
  color: #6b7280;
  text-align: center;
  letter-spacing: .02em;
}

/* ---------- 首屏 ---------- */
.page-products__hero {
  position: relative;
  background: var(--page-hero-grad);
  color: #fff;
  overflow: hidden;
  padding: 34px 0 58px;
}

.page-products__hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(180deg, rgba(212, 175, 55, .2), rgba(212, 175, 55, 0));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-products__hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 64px;
  background: #F5F7FA;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 44%);
  pointer-events: none;
}

.page-products__hero .breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 26px;
  padding: 10px 14px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: .82rem;
}

.page-products__hero .breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .68);
}

.page-products__hero .breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  color: rgba(255, 255, 255, .35);
}

.page-products__hero .breadcrumb__link {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: color 160ms ease;
}

.page-products__hero .breadcrumb__link:hover,
.page-products__hero .breadcrumb__link:focus-visible {
  color: #D4AF37;
}

.page-products__hero .breadcrumb__item--current {
  color: #D4AF37;
}

.page-products__hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-products__hero-copy .eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .22em;
  color: #D4AF37;
  border-bottom: 1px solid rgba(212, 175, 55, .5);
  padding-bottom: 8px;
}

.page-products__hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 4.4vw, 3rem);
  line-height: 1.14;
  letter-spacing: .01em;
  margin: 18px 0 18px;
  max-width: 12em;
}

.page-products__hero-copy .lead {
  max-width: 38em;
  color: rgba(255, 255, 255, .84);
  font-size: 1.04rem;
  line-height: 1.72;
}

.page-products__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 28px;
}

.page-products__hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-family: var(--font-data);
  font-size: .8rem;
  color: rgba(255, 255, 255, .8);
}

.page-products__hero-meta li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.page-products__hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-products__hero-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.page-products__hero-svg circle {
  filter: drop-shadow(0 0 14px rgba(0, 168, 89, .22));
}

.page-products__hero-svg path {
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, .14));
}

/* ---------- 通用区块头 ---------- */
.page-products__section-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.page-products__index {
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, .5);
  border-radius: 999px;
  padding: 6px 14px;
  line-height: 1.2;
  margin-top: 4px;
}

.page-products__section-head .eyebrow {
  margin: 0 0 8px;
}

.page-products__section-head .section-title {
  margin: 0;
  line-height: 1.25;
}

.page-products__section-head .lead {
  margin: 14px 0 0;
  max-width: 46em;
}

/* ---------- 01 订阅流程 ---------- */
.page-products__subscribe {
  background: #F5F7FA;
  padding: 76px 0 60px;
}

.page-products__subscribe-grid {
  display: grid;
  gap: 44px;
  align-items: start;
}

.page-products__steps {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 28px;
}

.page-products__steps::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 20px;
  bottom: 22px;
  border-left: 1px dashed rgba(212, 175, 55, .6);
}

.page-products__step {
  position: relative;
  background: #fff;
  border: 1px solid #e9edf4;
  border-radius: 14px;
  padding: 24px 22px 24px 54px;
  box-shadow: 0 4px 18px rgba(10, 31, 68, .06);
  transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.page-products__step::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 32px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #D4AF37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .12);
}

.page-products__step:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(10, 31, 68, .1);
  border-color: rgba(212, 175, 55, .42);
}

.page-products__step-num {
  display: inline-block;
  font-family: var(--font-data);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, .4);
  background: rgba(212, 175, 55, .07);
  border-radius: 999px;
  padding: 4px 11px;
  margin-bottom: 10px;
}

.page-products__step .path-step__title {
  font-family: var(--font-head);
  font-size: 1.12rem;
  margin: 0 0 8px;
  color: #101820;
}

.page-products__step .path-step__text {
  font-size: .92rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

.page-products__subscribe-figure img {
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(10, 31, 68, .14);
}

.page-products__subscribe-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding: 20px 24px;
  background: #fff;
  border-left: 3px solid #D4AF37;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(10, 31, 68, .05);
}

.page-products__subscribe-note p {
  margin: 0;
  font-size: .9rem;
  color: #4a5568;
  max-width: 46em;
}

/* ---------- 02 推送设置 ---------- */
.page-products__push {
  background: linear-gradient(145deg, #0A1F44 0%, #102a54 70%, #153b6b 100%);
  color: #fff;
  padding: 78px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-products__push::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(212, 175, 55, .07);
}

.page-products__push .page-products__index {
  color: #D4AF37;
  border-color: rgba(212, 175, 55, .6);
}

.page-products__push .page-products__section-head .eyebrow {
  color: rgba(212, 175, 55, .9);
}

.page-products__push .section-title,
.page-products__push .lead {
  color: #fff;
}

.page-products__push .lead {
  opacity: .78;
}

.page-products__push-grid {
  display: grid;
  gap: 36px;
  align-items: start;
}

.page-products__push-config {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 24px 22px;
}

.page-products__subhead {
  font-family: var(--font-head);
  font-size: .88rem;
  letter-spacing: .08em;
  color: #D4AF37;
  text-transform: uppercase;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.page-products__push-types {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-products__push-type {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.page-products__push-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
}

.page-products__push-icon--gold {
  color: #0A1F44;
  background: linear-gradient(135deg, #dfc05f, #c9a227);
}

.page-products__push-icon--green {
  color: #0A1F44;
  background: linear-gradient(135deg, #23b971, #00A859);
}

.page-products__push-type strong {
  display: block;
  font-size: .98rem;
  color: #fff;
  margin-bottom: 3px;
}

.page-products__push-type p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .68);
}

.page-products__custom-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-products__custom-list li {
  position: relative;
  padding-left: 22px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.55;
}

.page-products__custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #00A859;
  border-radius: 50%;
}

/* 手机模拟 */
.page-products__phone {
  max-width: 330px;
  margin: 0 auto;
  width: 100%;
}

.page-products__phone-frame {
  background: #101820;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(7, 22, 49, .5), inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.page-products__phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 20px 12px;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-data);
  font-size: .76rem;
  letter-spacing: .04em;
}

.page-products__phone-signal {
  font-size: .6rem;
  letter-spacing: .15em;
  color: #D4AF37;
}

.page-products__phone-screen {
  background: linear-gradient(168deg, #0A1F44 0%, #0e2852 100%);
  border-radius: 32px;
  padding: 16px 14px 26px;
  display: grid;
  gap: 12px;
  min-height: 400px;
}

.page-products__phone-label {
  margin: 0;
  padding: 0 8px 2px;
  color: rgba(255, 255, 255, .48);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: var(--font-data);
}

.page-products__phone-card {
  background: #fff;
  border-radius: 15px;
  padding: 13px 15px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .18);
  border-left: 3px solid #D4AF37;
}

.page-products__phone-card--green {
  border-left-color: #00A859;
}

.page-products__phone-card--dark {
  background: #1A1A2E;
  color: #fff;
  border-left-color: #D4AF37;
}

.page-products__phone-cat {
  margin: 0 0 4px;
  font-size: .66rem;
  letter-spacing: .1em;
  color: #7a7a7a;
  text-transform: uppercase;
  font-family: var(--font-data);
}

.page-products__phone-card--dark .page-products__phone-cat {
  color: rgba(255, 255, 255, .5);
}

.page-products__phone-title {
  margin: 0 0 2px;
  font-size: .95rem;
  font-weight: 700;
  color: #101820;
  line-height: 1.35;
}

.page-products__phone-card--dark .page-products__phone-title {
  color: #fff;
}

.page-products__phone-meta {
  margin: 0;
  font-size: .72rem;
  color: #8a8f98;
  font-family: var(--font-data);
}

.page-products__phone-card--dark .page-products__phone-meta {
  color: rgba(255, 255, 255, .55);
}

.page-products__phone-home {
  width: 130px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .45);
  margin: 10px auto 0;
}

.page-products__phone-caption {
  text-align: center;
  margin-top: 14px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
}

.page-products__push-figure img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(7, 22, 49, .42);
}

.page-products__push-figure .page-products__figcaption {
  color: rgba(255, 255, 255, .55);
}

/* ---------- 03 服务能力 ---------- */
.page-products__capabilities {
  background: #F5F7FA;
  padding: 78px 0 64px;
}

.page-products__cap-figure {
  margin: 0 0 34px;
}

.page-products__img--cap {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 14px 44px rgba(10, 31, 68, .12);
}

.page-products__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 38px;
}

.page-products__stat {
  background: #fff;
  border: 1px solid #e9edf4;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(10, 31, 68, .06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.page-products__stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(10, 31, 68, .1);
}

.page-products__stat .stat-card__value {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: #0A1F44;
  line-height: 1.1;
  margin-bottom: 6px;
}

.page-products__stat .stat-card__label {
  font-size: .82rem;
  color: #6b7280;
  letter-spacing: .06em;
}

.page-products__league-wrap {
  margin-bottom: 38px;
}

.page-products__league-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-products__league-item {
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .88rem;
  color: #0A1F44;
  font-weight: 600;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.page-products__league-item:hover {
  border-color: #D4AF37;
  color: #B8942E;
  background: rgba(212, 175, 55, .06);
}

.page-products__table-wrap {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e9edf4;
  box-shadow: 0 4px 18px rgba(10, 31, 68, .05);
  overflow-x: auto;
}

.page-products__table-caption {
  padding: 18px 20px 4px;
  text-align: left;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #D4AF37;
  font-family: var(--font-data);
}

.page-products__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  min-width: 520px;
}

.page-products__table th {
  text-align: left;
  padding: 12px 20px;
  font-size: .8rem;
  letter-spacing: .08em;
  color: #6b7280;
  border-bottom: 1px solid #e9edf4;
  white-space: nowrap;
}

.page-products__table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f2f7;
  color: #101820;
  line-height: 1.55;
}

.page-products__table tbody tr:last-child td {
  border-bottom: 0;
}

.page-products__table tbody tr:nth-child(1) td:last-child::after {
  content: " • 日更";
  color: #00A859;
  font-family: var(--font-data);
  font-size: .82rem;
}

.page-products__table tbody tr:nth-child(2) td:last-child::after {
  content: " • 实时";
  color: #00A859;
  font-family: var(--font-data);
  font-size: .82rem;
}

.page-products__table tbody tr:hover td {
  background: #fafbfc;
}

/* ---------- 04 数据查询 ---------- */
.page-products__data {
  background: #fff;
  padding: 78px 0 72px;
}

.page-products__data-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-products__data-copy .eyebrow {
  color: #B8942E;
}

.page-products__data-copy .lead {
  max-width: 38em;
  color: #4a5568;
}

.page-products__data-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-products__data-list li {
  position: relative;
  padding-left: 26px;
  font-size: .95rem;
  line-height: 1.6;
  color: #101820;
}

.page-products__data-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  background: #00A859;
  border-radius: 2px;
}

.page-products__data-figure img {
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(10, 31, 68, .14);
}

/* ---------- 05 旧版入口 ---------- */
.page-products__legacy {
  background: linear-gradient(135deg, #0A1F44 0%, #071631 100%);
  color: #fff;
  padding: 78px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-products__legacy::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #D4AF37 0%, #D4AF37 30%, #00A859 30%, #00A859 50%, transparent 50%);
}

.page-products__legacy .page-products__index {
  color: #D4AF37;
  border-color: rgba(212, 175, 55, .6);
}

.page-products__legacy .section-title {
  color: #fff;
}

.page-products__legacy .lead {
  color: rgba(255, 255, 255, .78);
  max-width: 38em;
}

.page-products__legacy-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-products__legacy-list {
  list-style: none;
  margin: 24px 0 30px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-products__legacy-list li {
  position: relative;
  padding-left: 26px;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .84);
}

.page-products__legacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border: 2px solid #D4AF37;
  border-radius: 50%;
}

.page-products__legacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-products__legacy-figure img {
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.page-products__legacy-figure .page-products__figcaption {
  color: rgba(255, 255, 255, .55);
}

/* ---------- 底部 CTA ---------- */
.page-products__next {
  background: #F5F7FA;
  padding: 72px 0 84px;
}

.page-products__next-card {
  position: relative;
  background: linear-gradient(125deg, #e2c357 0%, #D4AF37 55%, #c9a227 100%);
  border-radius: 24px;
  padding: 48px 28px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(212, 175, 55, .25);
}

.page-products__next-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border: 28px solid rgba(10, 31, 68, .08);
  border-radius: 50%;
}

.page-products__next-card::after {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 20px solid rgba(10, 31, 68, .06);
  border-radius: 50%;
}

.page-products__next-card .eyebrow {
  color: #0A1F44;
  opacity: .65;
}

.page-products__next-card .section-title {
  color: #0A1F44;
  max-width: 16em;
  margin: 12px auto 28px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.page-products__next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.page-products__btn-dark {
  background: #0A1F44;
  color: #fff;
  border-color: #0A1F44;
}

.page-products__btn-dark:hover,
.page-products__btn-dark:focus-visible {
  background: #123060;
  border-color: #123060;
}

.page-products__btn-ghost {
  background: transparent;
  color: #0A1F44;
  border: 1px solid #0A1F44;
}

.page-products__btn-ghost:hover,
.page-products__btn-ghost:focus-visible {
  background: rgba(10, 31, 68, .08);
}

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

  .page-products__subscribe-grid {
    grid-template-columns: 1fr;
  }

  .page-products__push-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .page-products__push-figure {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
  }

  .page-products__subscribe-figure,
  .page-products__data-figure,
  .page-products__legacy-figure {
    max-width: 720px;
  }
}

@media (min-width: 900px) {
  .page-products__hero {
    padding: 40px 0 72px;
  }

  .page-products__hero-inner {
    grid-template-columns: 1.08fr .92fr;
    gap: 48px;
    padding-top: 12px;
  }

  .page-products__hero-svg {
    max-width: 500px;
  }

  .page-products__subscribe-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
  }

  .page-products__push-grid {
    grid-template-columns: 1fr .82fr 1fr;
    gap: 36px;
  }

  .page-products__push-figure {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .page-products__data-inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
  }

  .page-products__legacy-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
  }

  .page-products__next-card {
    padding: 60px 48px;
  }
}

@media (min-width: 1200px) {
  .page-products__hero-inner {
    gap: 64px;
  }

  .page-products__subscribe-grid {
    gap: 76px;
  }

  .page-products__push-grid {
    gap: 44px;
  }

  .page-products__data-inner {
    gap: 88px;
  }
}
