.page-products {
  --p-neon: #00FF9E;
  --p-blue: #00D4FF;
  --p-silver: #B8C5D9;
  --p-surface: #151A22;
  --p-surface-raised: #1A212C;
  --p-border: #26303D;
  --p-text: #F2F5F8;
  --p-text-secondary: #A8B2BD;
  --p-muted: #6B7A8A;
  --p-bg: #0A0D12;
  --p-radius: 4px;
  position: relative;
  background: linear-gradient(180deg, var(--p-bg) 0%, #0D1118 30%, var(--p-bg) 100%);
  isolation: isolate;
}

/* 斜向速度线背景装饰 */
.page-products::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(0, 255, 158, 0.02) 14px 15px),
    repeating-linear-gradient(135deg, transparent 0 40px, rgba(0, 212, 255, 0.02) 40px 41px);
  pointer-events: none;
}

.page-products .container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

.page-products img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

/* ========== 首屏 ========== */
.page-products .products-hero {
  padding: 32px 0 56px;
  position: relative;
}

.page-products .products-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 255, 158, 0.06), transparent 60%);
  clip-path: polygon(18% 0, 100% 0, 88% 100%, 0 100%);
  z-index: -1;
}

.page-products .products-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-products .products-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-products .page-header__kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p-neon);
  position: relative;
  padding-left: 16px;
}

.page-products .page-header__kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 2px;
  background: var(--p-blue);
  transform: translateY(-50%);
}

.page-products .page-header__title {
  margin: 0;
  font-size: clamp(30px, 6.4vw, 56px);
  line-height: 1.05;
  font-weight: 850;
  background: linear-gradient(135deg, var(--p-text) 0%, var(--p-text) 58%, var(--p-neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 640px;
}

.page-products .page-header__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--p-text-secondary);
  max-width: 600px;
}

.page-products .products-hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 520px;
}

.page-products .hero-metric {
  background: var(--p-surface);
  border: 1px solid var(--p-border);
  border-left: 2px solid var(--p-neon);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-products .hero-metric__num {
  font-family: var(--font-data);
  font-size: 28px;
  font-weight: 700;
  color: var(--p-neon);
  line-height: 1;
  letter-spacing: 0.02em;
}

.page-products .hero-metric__label {
  font-size: 12px;
  color: var(--p-muted);
  letter-spacing: 0.06em;
}

.page-products .products-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-products .products-hero__note {
  margin: 0;
  font-size: 13px;
  color: var(--p-muted);
}

.page-products .products-hero__visual {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%);
  background: var(--p-surface);
  border: 1px solid var(--p-border);
}

.page-products .products-hero__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-products .products-hero__badge {
  position: absolute;
  left: 16px;
  bottom: 44px;
  background: rgba(10, 13, 18, 0.86);
  border: 1px solid var(--p-blue);
  color: var(--p-text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
  backdrop-filter: blur(4px);
}

.page-products .products-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF4756;
  box-shadow: 0 0 12px rgba(255, 71, 86, 0.7);
  animation: p-hero-pulse 2s ease-in-out infinite;
}

@keyframes p-hero-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ========== 通用 SECTION ========== */
.page-products .section {
  padding: 56px 0;
  position: relative;
}

.page-products .section--tint {
  background: linear-gradient(180deg, rgba(21, 26, 34, 0.9), rgba(10, 13, 18, 1));
}

.page-products .section__head {
  max-width: 720px;
  margin-bottom: 32px;
  position: relative;
}

.page-products .section__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p-blue);
}

.page-products .section__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--p-text);
  position: relative;
  display: inline-block;
}

.page-products .section__title::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 4px;
  width: 28px;
  height: 10px;
  background: linear-gradient(135deg, var(--p-neon), var(--p-blue));
  opacity: 0.35;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  z-index: -1;
}

.page-products .section__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--p-text-secondary);
}

/* ========== 功能一览 ========== */
.page-products .products-features {
  padding-top: 8px;
}

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

.page-products .products-feature {
  position: relative;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.02), transparent 30%),
    var(--p-surface);
  border: 1px solid var(--p-border);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  padding: 28px 24px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-products .products-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 158, 0.5);
  box-shadow: 0 0 24px rgba(0, 255, 158, 0.12), 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-products .products-feature__index {
  font-family: var(--font-data);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--p-blue);
  position: absolute;
  top: 16px;
  right: 16px;
  opacity: 0.5;
}

.page-products .products-feature .card__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 750;
  color: var(--p-text);
  position: relative;
  padding-bottom: 10px;
}

.page-products .products-feature .card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--p-neon), var(--p-blue));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.page-products .products-feature .card__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--p-text-secondary);
}

.page-products .products-feature__data {
  border-top: 1px solid var(--p-border);
  padding-top: 12px;
  font-size: 13px;
  color: var(--p-muted);
}

.page-products .products-feature__stat {
  display: inline-block;
  background: rgba(0, 255, 158, 0.08);
  color: var(--p-neon);
  padding: 4px 10px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  font-size: 13px;
}

.page-products .products-feature__stat strong {
  font-family: var(--font-data);
  font-size: 17px;
  font-weight: 700;
}

/* ========== 球队库 ========== */
.page-products .products-teams__visual {
  position: relative;
  margin-bottom: 28px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  background: var(--p-surface);
  border: 1px solid var(--p-border);
  overflow: hidden;
}

.page-products .products-teams__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  filter: saturate(1.2) brightness(0.8);
}

.page-products .products-teams__visual-note {
  position: absolute;
  right: 16px;
  bottom: 20px;
  left: auto;
  background: rgba(10, 13, 18, 0.88);
  color: var(--p-text);
  font-size: 14px;
  padding: 10px 18px;
  border-right: 3px solid var(--p-blue);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-products .products-teams__visual-note .data-num {
  color: var(--p-neon);
  font-size: 22px;
  font-weight: 700;
}

.page-products .products-teams__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.page-products .products-teams__tag {
  display: inline-block;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--p-text);
  background: var(--p-surface);
  border: 1px solid var(--p-border);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  text-decoration: none;
  transition: all 0.2s ease;
}

.page-products .products-teams__tag:hover,
.page-products .products-teams__tag:focus-visible {
  color: var(--p-bg);
  background: var(--p-neon);
  border-color: var(--p-neon);
}

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

.page-products .league-card {
  background: var(--p-surface);
  border: 1px solid var(--p-border);
  padding: 20px 22px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-products .league-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.12);
}

.page-products .league-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--league-color, var(--p-blue));
}

.page-products .league-card--csl { --league-color: #00FF9E; }
.page-products .league-card--epl { --league-color: #00D4FF; }
.page-products .league-card--laliga { --league-color: #FF8A00; }
.page-products .league-card--bundesliga { --league-color: #FF4756; }
.page-products .league-card--seriea { --league-color: #8A7CFF; }
.page-products .league-card--ligue1 { --league-color: #FFC53D; }

.page-products .league-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.page-products .league-card__name {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--p-text);
}

.page-products .league-card__count {
  font-family: var(--font-data);
  font-size: 28px;
  font-weight: 700;
  color: var(--league-color, var(--p-neon));
  line-height: 1;
}

.page-products .league-card__text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--p-text-secondary);
  max-width: 480px;
}

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

.page-products .league-card__meta span {
  font-size: 12px;
  color: var(--p-muted);
  border: 1px solid var(--p-border);
  padding: 4px 10px;
  letter-spacing: 0.04em;
}

/* ========== 订阅费用表 ========== */
.page-products .products-pricing__visual {
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--p-border);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  background: var(--p-surface);
}

.page-products .products-pricing__img {
  width: 100%;
  aspect-ratio: 2 / 1;
  display: block;
  object-fit: cover;
}

.page-products .products-pricing__table-wrap {
  margin-bottom: 16px;
  overflow-x: auto;
  border: 1px solid var(--p-border);
  background: var(--p-surface);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.page-products .products-pricing__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 15px;
}

.page-products .products-pricing__table th,
.page-products .products-pricing__table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--p-border);
  vertical-align: middle;
}

.page-products .products-pricing__table thead th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--p-muted);
  background: #121821;
  position: sticky;
  top: 0;
  z-index: 1;
}

.page-products .products-pricing__table tbody tr:last-child td,
.page-products .products-pricing__table tbody tr:last-child th {
  border-bottom: none;
}

.page-products .products-pricing__table tbody th {
  font-weight: 600;
  color: var(--p-text);
  min-width: 200px;
}

.page-products .pricing-plan__name {
  display: block;
  font-size: 17px;
  font-weight: 750;
  color: var(--p-text);
}

.page-products .pricing-plan__note {
  display: block;
  font-size: 13px;
  color: var(--p-muted);
  margin-top: 4px;
}

.page-products .pricing-tag {
  display: inline-block;
  margin-top: 6px;
  background: var(--p-neon);
  color: #0A0D12;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
  letter-spacing: 0.08em;
}

.page-products .pricing-price {
  font-family: var(--font-data);
  font-size: 34px;
  font-weight: 700;
  color: var(--p-text);
  line-height: 1;
  margin-right: 2px;
}

.page-products .products-pricing__table td {
  color: var(--p-text-secondary);
  white-space: nowrap;
}

.page-products .pricing-row--hot td {
  background: rgba(0, 255, 158, 0.05);
  border-bottom-color: rgba(0, 255, 158, 0.35) !important;
}

.page-products .pricing-row--hot .pricing-price {
  color: var(--p-neon);
  text-shadow: 0 0 20px rgba(0, 255, 158, 0.4);
}

.page-products .products-pricing__note {
  font-size: 13px;
  color: var(--p-muted);
  margin-bottom: 24px;
  padding-left: 12px;
  border-left: 2px solid var(--p-blue);
}

.page-products .products-pricing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ========== 订阅周期说明 ========== */
.page-products .products-billing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.page-products .billing-card {
  background: var(--p-surface);
  border: 1px solid var(--p-border);
  padding: 24px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  border-top: 3px solid var(--p-neon);
}

.page-products .billing-card .card__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 750;
  color: var(--p-text);
}

.page-products .billing-card .card__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--p-text-secondary);
}

.page-products .billing-card__period {
  font-family: var(--font-data);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--p-blue);
  display: block;
  margin-bottom: 12px;
}

.page-products .billing-card__meta {
  border-top: 1px solid var(--p-border);
  padding-top: 12px;
}

.page-products .billing-card__meta-item {
  font-size: 13px;
  color: var(--p-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-products .billing-card__meta-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--p-neon);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.page-products .products-billing__rules {
  background:
    linear-gradient(135deg, rgba(0, 255, 158, 0.05), transparent 40%),
    var(--p-surface);
  border: 1px solid var(--p-border);
  padding: 24px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.page-products .products-billing__rules-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 750;
  color: var(--p-text);
}

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

.page-products .products-billing__rules-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--p-text-secondary);
  padding-left: 22px;
  position: relative;
}

.page-products .products-billing__rules-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--p-blue);
  font-size: 10px;
  top: 5px;
}

/* ========== 下载与适配 ========== */
.page-products .products-download__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-products .products-download__cta {
  background: var(--p-surface);
  border: 1px solid var(--p-border);
  padding: 20px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.page-products .products-download__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  object-fit: cover;
  margin-bottom: 16px;
  border: 1px solid var(--p-border);
}

.page-products .products-download__cta-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--p-text);
  margin: 0 0 10px;
}

.page-products .products-download__cta-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--p-text-secondary);
  margin: 0 0 20px;
}

.page-products .products-download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.page-products .products-download__note {
  font-size: 13px;
  color: var(--p-muted);
  margin: 0;
}

.page-products .products-download__compat {
  background: var(--p-surface);
  border: 1px solid var(--p-border);
  padding: 24px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.page-products .products-download__compat-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 750;
  color: var(--p-text);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--p-border);
}

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

.page-products .compat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(0, 212, 255, 0.04);
  border-left: 3px solid var(--p-blue);
  padding: 12px 14px;
}

.page-products .compat-item strong {
  font-size: 16px;
  font-weight: 750;
  color: var(--p-text);
}

.page-products .compat-item span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--p-text-secondary);
}

.page-products .products-download__compat-note {
  font-size: 13px;
  color: var(--p-muted);
  margin: 0;
  padding: 10px 14px;
  background: rgba(0, 255, 158, 0.05);
  border-right: 2px solid var(--p-neon);
}

/* ========== 资源下载中心 ========== */
.page-products .products-resources__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-products .resource-card {
  background: var(--p-surface);
  border: 1px solid var(--p-border);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-products .resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.1);
}

.page-products .resource-card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.page-products .resource-card__body {
  padding: 20px 20px 22px;
}

.page-products .resource-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--p-neon);
  background: rgba(0, 255, 158, 0.08);
  border: 1px solid rgba(0, 255, 158, 0.3);
  padding: 4px 10px;
  margin-bottom: 12px;
}

.page-products .resource-card__title {
  font-size: 18px;
  font-weight: 750;
  color: var(--p-text);
  margin: 0 0 10px;
}

.page-products .resource-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--p-text-secondary);
  margin: 0 0 14px;
}

.page-products .resource-card__meta {
  font-size: 12px;
  color: var(--p-muted);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--p-border);
}

.page-products .resource-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--p-border);
}

.page-products .resource-card__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--p-blue);
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

.page-products .resource-card__links a:hover {
  color: var(--p-neon);
}

.page-products .resource-card__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 16px;
  height: 2px;
  background: var(--p-blue);
}

/* ========== 共享按钮微调 ========== */
.page-products .btn {
  display: inline-block;
  min-height: 44px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
  transition: all 0.2s ease;
}

.page-products .btn--primary {
  background: var(--p-neon);
  color: #0A0D12;
  border-color: var(--p-neon);
  box-shadow: 0 0 20px rgba(0, 255, 158, 0.25);
}

.page-products .btn--primary:hover {
  background: #29ffab;
  box-shadow: 0 0 28px rgba(0, 255, 158, 0.45);
}

.page-products .btn--ghost {
  background: transparent;
  color: var(--p-blue);
  border-color: rgba(0, 212, 255, 0.6);
}

.page-products .btn--ghost:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.2);
}

/* ========== 滚动显现 ========== */
.page-products [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.page-products [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== 桌面端 ========== */
@media (min-width: 768px) {
  .page-products .products-hero {
    padding: 48px 0 72px;
  }

  .page-products .products-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }

  .page-products .products-hero__metrics {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-products .products-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-products .products-teams__leagues {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-products .products-billing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-products .products-download__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-products .products-resources__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .page-products .section {
    padding: 72px 0;
  }

  .page-products .products-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .products-teams__leagues {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .products-resources__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .products-download__cta {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: center;
    padding: 24px;
  }

  .page-products .products-download__img {
    margin-bottom: 0;
  }

  .page-products .products-pricing__table-wrap {
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
