.page-products {
  --products-pad-y: 4.5rem;
  --products-gap-lg: 3rem;
  --products-gap-md: 2rem;
}

/* ---------- 服务概览 ---------- */
.page-products .products-hero {
  position: relative;
  background: var(--primary-deep-green);
  color: var(--pure-white);
  padding: 2.5rem 0 var(--products-pad-y);
  overflow: hidden;
}
.page-products .products-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, transparent 50%, var(--accent-brick-red) 50%);
  opacity: 0.7;
  pointer-events: none;
}
.page-products .products-hero .container {
  position: relative;
  z-index: 2;
}
.page-products .products-hero .breadcrumb {
  margin-bottom: 2rem;
}
.page-products .products-hero .breadcrumb__item {
  color: rgba(255, 255, 255, 0.72);
}
.page-products .products-hero .breadcrumb__item--current {
  color: var(--secondary-gold);
}
.page-products .products-hero .breadcrumb__separator {
  color: rgba(255, 255, 255, 0.4);
}
.page-products .products-hero__grid {
  display: grid;
  gap: var(--products-gap-md);
  align-items: center;
}
.page-products .products-hero__title {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.1;
  margin: 0.75rem 0 1.25rem;
}
.page-products .products-hero__lead {
  max-width: 36em;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
}
.page-products .products-hero__lead em {
  color: var(--secondary-gold);
  font-style: normal;
}
.page-products .products-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.75rem;
  margin: 1.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  list-style: none;
}
.page-products .products-hero__stats li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}
.page-products .products-hero__stats .data-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-gold);
  margin-right: 0.3rem;
}
.page-products .products-hero__figure {
  margin: 0;
  border: 1px solid var(--secondary-gold);
  box-shadow: 12px 12px 0 rgba(212, 175, 55, 0.16);
}
.page-products .products-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-products .products-hero__cards {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}
.page-products .service-card {
  position: relative;
  background: var(--pure-white);
  color: var(--dark-text);
  padding: 1.5rem 1.25rem 1.25rem;
  border-top: 3px solid var(--secondary-gold);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-products .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}
.page-products .service-card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--light-green-tint);
  color: var(--primary-deep-green);
  border-radius: 50%;
  margin-bottom: 0.75rem;
}
.page-products .service-card__icon svg {
  width: 22px;
  height: 22px;
}
.page-products .service-card__title {
  font-family: var(--heading-font);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}
.page-products .service-card__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}
.page-products .service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--accent-brick-red);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.page-products .service-card__link span {
  transition: transform 0.3s ease;
}
.page-products .service-card__link:hover {
  border-color: currentColor;
}
.page-products .service-card__link:hover span {
  transform: translateX(4px);
}

/* ---------- 赛事订阅入口 ---------- */
.page-products .products-sub {
  position: relative;
  background: var(--off-white);
  padding: var(--products-pad-y) 0;
}
.page-products .products-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-gold) 0%, var(--secondary-gold) 60%, var(--accent-brick-red) 60%, var(--accent-brick-red) 100%);
}
.page-products .products-sub__grid {
  display: grid;
  gap: var(--products-gap-lg);
  align-items: center;
}
.page-products .products-sub__content .section-label {
  margin-bottom: 1rem;
}
.page-products .products-sub__content h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}
.page-products .products-sub__text {
  max-width: 36em;
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.5rem;
}
.page-products .products-sub__steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-left: 3px solid var(--secondary-gold);
}
.page-products .products-sub__steps li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #333;
}
.page-products .step-number {
  font-family: var(--data-font);
  font-weight: 700;
  color: var(--accent-brick-red);
}
.page-products .sub-panel {
  background: var(--pure-white);
  border: 1px solid #e3ddd0;
  border-top: 4px solid var(--primary-deep-green);
  box-shadow: 0 12px 30px rgba(11, 61, 46, 0.1);
  padding: 1.25rem 1.5rem;
}
.page-products .sub-panel__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold-tint);
}
.page-products .sub-panel__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-brick-red);
}
.page-products .sub-panel__title {
  font-weight: 700;
  font-size: 1rem;
}
.page-products .sub-panel__tag {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--accent-brick-red);
  background: var(--gold-tint);
  padding: 0.2rem 0.5rem;
}
.page-products .sub-panel__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.page-products .sub-panel__list li {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px dashed #e5dfd3;
  font-size: 0.9375rem;
}
.page-products .sub-panel__list li:last-child {
  border-bottom: 0;
}
.page-products .sub-panel__list strong {
  color: var(--primary-deep-green);
}
.page-products .sub-panel__foot {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: var(--data-font);
  font-size: 0.875rem;
  color: var(--neutral-gray);
  padding-top: 0.75rem;
  border-top: 1px solid var(--gold-tint);
}

/* ---------- 赛事视频集锦 ---------- */
.page-products .products-video {
  background: var(--deep-black);
  color: var(--pure-white);
  padding: var(--products-pad-y) 0;
}
.page-products .products-video .section-label__text {
  color: var(--pure-white);
}
.page-products .products-video__head h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin: 1rem 0;
}
.page-products .products-video__lead {
  max-width: 44em;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}
.page-products .video-player {
  margin-top: 2.5rem;
  border: 1px solid var(--secondary-gold);
  background: #0d0d0d;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.page-products .video-player__screen {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, transparent 60%), #101010;
}
.page-products .video-player__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.page-products .video-player__play {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--secondary-gold);
  color: var(--deep-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.25);
}
.page-products .video-player__hint {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
}
.page-products .video-player__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #050505;
}
.page-products .video-player__progress {
  flex: 1;
  height: 4px;
  background: #2a2a2a;
  border-radius: 2px;
  position: relative;
}
.page-products .video-player__progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  background: var(--secondary-gold);
  border-radius: 2px;
}
.page-products .video-player__time {
  font-family: var(--data-font);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}
.page-products .video-player__meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid #222;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.page-products .products-video__feat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.page-products .feat-chip {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--secondary-gold);
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}
.page-products .products-video .btn--ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--pure-white);
  margin-left: auto;
}
.page-products .products-video .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- 伤停信息检索 ---------- */
.page-products .products-injury {
  background: var(--light-green-tint);
  padding: var(--products-pad-y) 0;
}
.page-products .products-injury__grid {
  display: grid;
  gap: var(--products-gap-lg);
  align-items: center;
}
.page-products .products-injury__figure {
  margin: 0;
  border: 1px solid var(--primary-deep-green);
  overflow: hidden;
}
.page-products .products-injury__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.page-products .products-injury__figure:hover img {
  transform: scale(1.02);
}
.page-products .products-injury__content .section-label {
  margin-bottom: 1rem;
}
.page-products .products-injury__content h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}
.page-products .products-injury__text {
  max-width: 36em;
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.75rem;
}
.page-products .products-injury__text span {
  color: var(--primary-deep-green);
  font-weight: 600;
}
.page-products .injury-filter {
  background: var(--pure-white);
  border-left: 4px solid var(--accent-brick-red);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 20px rgba(11, 61, 46, 0.06);
}
.page-products .injury-filter__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9375rem;
  padding: 0.4rem 0;
}
.page-products .injury-filter__label {
  color: var(--neutral-gray);
}
.page-products .injury-filter__value {
  font-weight: 600;
  color: var(--primary-deep-green);
}
.page-products .injury-filter__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 64px;
  margin-top: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--gold-tint);
}
.page-products .injury-filter__bar {
  flex: 1;
  background: var(--primary-deep-green);
  border-radius: 2px 2px 0 0;
}
.page-products .injury-filter__bar--a { height: 45%; }
.page-products .injury-filter__bar--b { height: 70%; }
.page-products .injury-filter__bar--c { height: 52%; }
.page-products .injury-filter__bar--d { height: 82%; }
.page-products .injury-filter__bar--e { height: 30%; }
.page-products .injury-filter__meta {
  font-size: 0.9375rem;
  margin: 0.75rem 0 0;
  color: var(--dark-text);
}
.page-products .injury-filter__meta .data-text {
  color: var(--accent-brick-red);
  font-weight: 700;
}

/* ---------- 会员权益 ---------- */
.page-products .products-member {
  background: var(--gold-tint);
  padding: var(--products-pad-y) 0;
}
.page-products .products-member__grid {
  display: grid;
  gap: var(--products-gap-lg);
  align-items: center;
}
.page-products .products-member__content .section-label {
  margin-bottom: 1rem;
}
.page-products .products-member__content h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}
.page-products .products-member__text {
  max-width: 36em;
  font-size: 1rem;
  line-height: 1.85;
  color: #574d2a;
  margin-bottom: 1.5rem;
}
.page-products .products-member__benefits {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.page-products .products-member__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.55);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.page-products .benefit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-brick-red);
  flex-shrink: 0;
  margin-top: 0.4rem;
}
.page-products .products-member__content .btn + .btn {
  margin-left: 0.75rem;
}
.page-products .products-member__figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--secondary-gold);
}
.page-products .products-member__figure::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 8px solid rgba(212, 175, 55, 0.25);
  pointer-events: none;
  z-index: 1;
}
.page-products .products-member__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-products .products-member .divider-gold {
  margin-top: 3rem;
}
.page-products .member-tier {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.page-products .member-tier__card {
  background: var(--pure-white);
  border-top: 4px solid var(--neutral-gray);
  text-align: center;
  padding: 1.25rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-products .member-tier__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(11, 61, 46, 0.12);
}
.page-products .member-tier__card--mid {
  border-top-color: var(--primary-deep-green);
}
.page-products .member-tier__card--pro {
  border-top-color: var(--secondary-gold);
  background: linear-gradient(180deg, var(--pure-white), var(--gold-tint));
}
.page-products .member-tier__name {
  font-family: var(--heading-font);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}
.page-products .member-tier__card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ---------- 技术体验 ---------- */
.page-products .products-exp {
  background: var(--pure-white);
  padding: var(--products-pad-y) 0;
}
.page-products .products-exp__head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.page-products .products-exp__head .section-label {
  margin-bottom: 1rem;
}
.page-products .products-exp__head h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin: 0;
}
.page-products .products-exp__grid {
  display: grid;
  gap: var(--products-gap-lg);
  align-items: center;
}
.page-products .products-exp__text {
  max-width: 36em;
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 0;
}
.page-products .products-exp__text .data-text {
  color: var(--primary-deep-green);
  font-weight: 700;
}
.page-products .products-exp__stats {
  list-style: none;
  margin: 1.75rem 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
.page-products .products-exp__stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.page-products .products-exp__stats .stats-num {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-deep-green);
}
.page-products .products-exp__stats li span:last-child {
  font-size: 0.875rem;
  color: var(--neutral-gray);
}
.page-products .products-exp__figure {
  margin: 0;
  border: 1px solid var(--primary-deep-green);
  overflow: hidden;
}
.page-products .products-exp__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- 焦点样式 ---------- */
.page-products a:focus-visible {
  outline: 3px solid var(--secondary-gold);
  outline-offset: 3px;
}

/* ---------- 平板以上 ---------- */
@media (min-width: 640px) {
  .page-products .products-hero__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-products .products-exp__stats {
    flex-wrap: nowrap;
  }
}

/* ---------- 桌面 ---------- */
@media (min-width: 960px) {
  .page-products .products-hero {
    padding-bottom: 5rem;
  }
  .page-products .products-hero__grid {
    grid-template-columns: 1fr 1.35fr;
    gap: 3rem;
  }
  .page-products .products-hero__cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
  }
  .page-products .products-sub__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
  .page-products .products-injury__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .page-products .products-member__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
  .page-products .member-tier {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .page-products .products-exp__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
  }
}
