.page-products {
  --products-accent: #FF6B35;
  --products-accent-hover: #E0552A;
  --products-deep: #0A1F44;
  --products-deep-light: #0D2A5B;
  --products-card-bg: #FFFFFF;
  --products-border: rgba(255, 255, 255, 0.16);
  max-width: 100%;
  overflow-x: hidden;
  background: var(--products-deep);
  color: #FFFFFF;
  font-family: var(--font-body);
}

/* ===== 面包屑 ===== */
.page-products .breadcrumb {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-muted);
}

.page-products .breadcrumb__link {
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-products .breadcrumb__link:hover {
  color: var(--products-accent);
}

.page-products .breadcrumb__sep {
  color: rgba(176, 183, 195, 0.5);
}

.page-products .breadcrumb__current {
  color: var(--products-accent);
  font-weight: 600;
}

/* ===== 首屏 Hero ===== */
.page-products .products-hero {
  position: relative;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  gap: 32px;
}

.page-products .products-hero__kicker {
  display: inline-block;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--products-accent);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  right: 12px;
  top: 48px;
  text-transform: uppercase;
}

.page-products .products-hero__title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 5ch;
  font-weight: 900;
  background: linear-gradient(135deg, #FFFFFF 0%, #D5DCEC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-products .products-hero__lead {
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: #CAD2E2;
  max-width: 56ch;
}

.page-products .products-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.page-products .products-hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.page-products .products-hero__img {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ===== 章节通用头部 ===== */
.page-products .section {
  margin-top: 8px;
}

.page-products .section__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.page-products .section__index {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.9;
  color: var(--products-accent);
  flex-shrink: 0;
}

.page-products .section__heading-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-products .section__title {
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-family: var(--font-headline);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-products .section__note {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  text-transform: uppercase;
}

/* ===== 产品总览 ===== */
.page-products .products-index {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 64px 24px 24px;
}

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

.page-products .products-overview-card {
  background: linear-gradient(145deg, #0D2A5B 0%, #16356E 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-std), box-shadow var(--transition-std);
  position: relative;
  overflow: hidden;
}

.page-products .products-overview-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.08);
  pointer-events: none;
}

.page-products .products-overview-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.page-products .products-overview-card__num {
  font-family: var(--font-headline);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--products-accent);
  display: block;
  line-height: 1;
}

.page-products .products-overview-card__title {
  margin: 14px 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.page-products .products-overview-card__desc {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #B9C3D6;
}

/* ===== 积分榜资料库 ===== */
.page-products .products-league {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 56px 24px 24px;
}

.page-products .products-league__layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-products .products-league__desc {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: #D4DCEC;
}

.page-products .products-league__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.page-products .products-league__stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 10px;
  text-align: center;
}

.page-products .products-league__stat-num {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 900;
  color: var(--products-accent);
}

.page-products .products-league__stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #A9B3C5;
}

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

.page-products .products-league__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.94rem;
  color: #C5CFE2;
  line-height: 1.5;
}

.page-products .products-league__item:last-child {
  border-bottom: none;
}

.page-products .products-league__media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--products-deep-light);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.page-products .products-league__skew {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--products-accent);
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
}

.page-products .products-league__img {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-products .products-league__caption {
  padding: 12px 16px 16px 20px;
  font-size: 13px;
  color: var(--color-muted);
}

/* ===== 场馆切换对照表 ===== */
.page-products .products-venue {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 56px 24px 24px;
}

.page-products .products-venue__grid {
  display: grid;
  gap: 28px;
}

.page-products .products-venue__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transform: rotate(-0.6deg);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.page-products .products-venue__img {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-products .products-venue__caption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--color-muted);
  background: rgba(10, 31, 68, 0.85);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.page-products .products-venue__desc {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: #D4DCEC;
}

.page-products .products-venue__compare {
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
}

.page-products .products-venue__compare-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.page-products .products-venue__compare-row:not(:last-child) {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.page-products .products-venue__compare-label {
  flex-shrink: 0;
  font-size: 13px;
  color: #AEB8CC;
  width: 4.2em;
}

.page-products .products-venue__compare-line {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
}

.page-products .products-venue__compare-line::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 18%;
  top: 0;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--products-accent) 0%, #0D2A5B 100%);
  opacity: 0.75;
}

.page-products .products-venue__compare-value {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

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

.page-products .products-venue__list li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 0.93rem;
  color: #C5CFE2;
  line-height: 1.6;
}

.page-products .products-venue__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--products-accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 75%, 0 100%);
}

/* ===== 苹果手机场馆信息 ===== */
.page-products .products-apple {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 56px 24px 24px;
}

.page-products .products-apple__layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-products .products-apple__desc {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: #D4DCEC;
}

.page-products .products-apple__features {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.page-products .products-apple__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  border-left: 3px solid var(--products-accent);
  transition: background var(--transition-std), transform var(--transition-std);
}

.page-products .products-apple__feature:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}

.page-products .products-apple__feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-products .products-apple__feature strong {
  display: block;
  font-size: 0.98rem;
  color: #FFFFFF;
}

.page-products .products-apple__feature span:last-child {
  font-size: 0.84rem;
  color: #AEB8CC;
}

.page-products .products-apple__note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #8E9BB2;
  padding-left: 12px;
  border-left: 2px solid rgba(255, 107, 53, 0.5);
}

.page-products .products-apple__media {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.page-products .products-apple__img {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-products .products-apple__caption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--color-muted);
  background: rgba(10, 31, 68, 0.9);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* ===== 控球率工具 ===== */
.page-products .products-possession {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 56px 24px 24px;
}

.page-products .products-possession__layout {
  display: grid;
  gap: 28px;
}

.page-products .products-possession__visual {
  background: linear-gradient(160deg, #123063 0%, #0A1F44 80%);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.page-products .products-possession__gauge {
  position: relative;
  display: inline-block;
  margin: 0 auto 24px;
}

.page-products .products-possession__gauge-ring svg {
  display: block;
}

.page-products .products-possession__gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-products .products-possession__gauge-percent {
  font-family: var(--font-headline);
  font-size: 2.6rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.page-products .products-possession__gauge-label {
  font-size: 12px;
  color: #AEB8CC;
  margin-top: 4px;
  letter-spacing: 0.1em;
}

.page-products .products-possession__gauge-teams {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 4px;
  font-size: 13px;
  color: #CAD2E2;
}

.page-products .products-possession__gauge-teams span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-products .products-possession__gauge-teams i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.page-products .products-possession__gauge-home i {
  background: var(--products-accent);
}

.page-products .products-possession__gauge-away i {
  background: #6E84A9;
}

.page-products .products-possession__shots {
  max-width: 280px;
  margin: 0 auto;
  text-align: left;
}

.page-products .products-possession__shot-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.page-products .products-possession__shot-label {
  width: 3em;
  font-size: 13px;
  color: #AEB8CC;
  flex-shrink: 0;
}

.page-products .products-possession__shot-bar {
  flex: 1;
  height: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.page-products .products-possession__shot-fill {
  display: inline-block;
  height: 100%;
  border-radius: 8px;
  padding-left: 6px;
  font-size: 10px;
  line-height: 14px;
  color: #FFFFFF;
  font-weight: 600;
}

.page-products .products-possession__shot-fill--home {
  width: 62%;
  background: linear-gradient(90deg, var(--products-accent), #FF8A5C);
}

.page-products .products-possession__shot-fill--away {
  width: 38%;
  background: linear-gradient(90deg, #6E84A9, #16356E);
}

.page-products .products-possession__desc {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: #D4DCEC;
}

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

.page-products .products-possession__list li {
  padding-left: 22px;
  position: relative;
  font-size: 0.94rem;
  color: #C5CFE2;
  line-height: 1.6;
}

.page-products .products-possession__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--products-accent);
  transform: rotate(45deg);
}

.page-products .products-possession__chart {
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

/* ===== 应用场景 ===== */
.page-products .products-scenarios {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 56px 24px 24px;
}

.page-products .products-scenarios__grid {
  display: grid;
  gap: 16px;
}

.page-products .products-scenario-card {
  background: #F5F7FA;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-std), box-shadow var(--transition-std);
}

.page-products .products-scenario-card::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 80px;
  height: 80px;
  background: rgba(10, 31, 68, 0.06);
  border-radius: 50%;
  transition: transform var(--transition-std);
}

.page-products .products-scenario-card:hover {
  transform: translateY(-6px) rotate(0.4deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.page-products .products-scenario-card:hover::before {
  transform: scale(1.8);
}

.page-products .products-scenario-card__tag {
  display: inline-block;
  background: var(--products-accent);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

.page-products .products-scenario-card__title {
  margin: 16px 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--products-deep);
  font-family: var(--font-headline);
}

.page-products .products-scenario-card__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4A5568;
}

/* ===== 底部 CTA ===== */
.page-products .products-cta {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.page-products .products-cta__inner {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.16) 0%, rgba(13, 42, 91, 0.96) 55%, #0A1F44 100%);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.2);
  position: relative;
  overflow: hidden;
}

.page-products .products-cta__inner::after {
  content: "18";
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-headline);
  font-size: 9rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.page-products .products-cta__title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-family: var(--font-headline);
  font-weight: 800;
  color: #FFFFFF;
}

.page-products .products-cta__desc {
  margin: 0 auto 24px;
  max-width: 46ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #BFCBDE;
}

.page-products .products-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ===== 桌面端样式 ===== */
@media (min-width: 1024px) {
  .page-products .products-hero {
    grid-template-columns: 5fr 7fr;
    align-items: center;
    padding-top: 80px;
    gap: 48px;
  }

  .page-products .products-hero__kicker {
    right: -12px;
    top: 40px;
  }

  .page-products .products-hero__title {
    max-width: 7ch;
  }

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

  .page-products .products-league__layout {
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
  }

  .page-products .products-venue__grid {
    grid-template-columns: 6fr 5fr;
    gap: 48px;
    align-items: center;
  }

  .page-products .products-venue__media {
    transform: rotate(-1deg);
  }

  .page-products .products-apple__layout {
    grid-template-columns: 7fr 4fr;
    gap: 48px;
  }

  .page-products .products-possession__layout {
    grid-template-columns: 5fr 6fr;
    gap: 48px;
    align-items: center;
  }

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

  .page-products .products-cta__inner {
    padding: 56px 48px;
  }
}

/* ===== 动效与无障碍 ===== */
@media (prefers-reduced-motion: no-preference) {
  .page-products [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    animation: products-reveal 0.7s ease forwards;
    animation-play-state: paused;
  }

  .page-products [data-reveal][data-reveal-delay="80"] {
    animation-delay: 0.08s;
  }

  .page-products [data-reveal][data-reveal-delay="100"] {
    animation-delay: 0.1s;
  }

  .page-products [data-reveal][data-reveal-delay="120"] {
    animation-delay: 0.12s;
  }

  .page-products [data-reveal][data-reveal-delay="160"] {
    animation-delay: 0.16s;
  }

  .page-products [data-reveal][data-reveal-delay="240"] {
    animation-delay: 0.24s;
  }

  @keyframes products-reveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

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

/* ===== 窄屏防溢出 ===== */
@media (max-width: 480px) {
  .page-products .products-league__stats {
    grid-template-columns: 1fr 1fr;
  }

  .page-products .products-league__stat:last-child {
    grid-column: 1 / -1;
  }

  .page-products .products-possession__gauge-ring svg {
    width: 160px;
    height: 160px;
  }

  .page-products .products-possession__gauge-percent {
    font-size: 2rem;
  }

  .page-products .products-cta__actions .btn {
    width: 100%;
    text-align: center;
  }
}
