.page-home {
  --home-glow: rgba(198, 255, 0, 0.18);
  --home-glow-strong: rgba(198, 255, 0, 0.55);
  --home-gold-glow: rgba(245, 197, 24, 0.22);
  --home-gradient-night: linear-gradient(135deg, #0B1E3A 0%, #0D2B52 55%, #121212 100%);
  --home-gradient-schedule: linear-gradient(180deg, #F4E8C1 0%, #FFFFFF 45%, #F4E8C1 100%);
  --home-rotate: -3deg;
  --home-card-radius: 22px;
  color: var(--c-ink);
  background: var(--c-ink);
  max-width: 100vw;
  overflow-x: hidden;
}

/* ============ 首屏 Hero ============ */
.page-home .home-hero {
  position: relative;
  min-height: 620px;
  background: var(--c-ink);
  display: flex;
  align-items: center;
  padding: calc(var(--header-total) + 40px) 0 0;
  overflow: hidden;
  color: var(--c-white);
}

.page-home .home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.page-home .home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 30, 58, 0.97) 0%, rgba(11, 30, 58, 0.76) 45%, rgba(13, 43, 82, 0.52) 100%);
  z-index: 1;
}

.page-home .home-hero-geo {
  position: absolute;
  top: 12%;
  right: 4%;
  width: 180px;
  height: 180px;
  z-index: 2;
  background: linear-gradient(135deg, rgba(198, 255, 0, 0.85), rgba(198, 255, 0, 0.08));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.55;
  animation: homeGeoFloat 7s ease-in-out infinite;
}

@keyframes homeGeoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(6deg); }
}

.page-home .home-league-tape {
  display: none;
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 3;
  padding-top: 48px;
  padding-bottom: 160px;
}

.page-home .home-eyebrow {
  color: var(--c-lime);
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.page-home .home-hero-title {
  margin: 0 0 28px;
  max-width: 12ch;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-white);
  text-shadow: 0 0 20px var(--home-glow-strong), 0 0 70px var(--home-glow);
}

.page-home .home-hero-accent {
  color: var(--c-lime);
  text-shadow: 0 0 30px rgba(198, 255, 0, 0.7);
}

.page-home .home-hero-desc {
  max-width: 640px;
  margin: 0 0 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.page-home .home-hero-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--c-white);
}

.page-home .home-hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-brd);
  border-bottom: 0;
}

.page-home .home-stat-item {
  background: rgba(11, 30, 58, 0.82);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}

.page-home .home-stat-num {
  font-family: var(--font-num);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--c-lime);
  line-height: 1;
}

.page-home .home-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

/* ============ 第二屏：联赛对照面板 ============ */
.page-home .home-panel {
  color: var(--c-ink);
  padding: 96px 0;
}

.page-home .home-panel-head {
  margin-bottom: 56px;
}

.page-home .home-panel-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}

.page-home .home-panel-copy .lead {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.85;
  color: rgba(18, 18, 18, 0.88);
  margin-bottom: 28px;
}

.page-home .home-panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.page-home .home-panel-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-home .home-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background: var(--c-lime);
  border-radius: 3px;
  transform: rotate(12deg);
  box-shadow: 0 0 12px rgba(198, 255, 0, 0.45);
}

.page-home .home-panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.page-home .home-panel-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .home-panel-chart {
  width: 100%;
  height: auto;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 16px;
  box-sizing: border-box;
}

.page-home .home-chart-num,
.page-home .home-chart-label,
.page-home .home-chart-legend-text {
  font-family: var(--font-num);
  font-size: 12px;
  fill: var(--c-charcoal);
}

.page-home .home-chart-label {
  font-weight: 700;
  fill: var(--c-ink);
}

.page-home .home-chart-legend-text {
  font-size: 12px;
}

.page-home .home-panel-figure {
  margin: 0;
}

.page-home .home-panel-figure figcaption {
  font-size: 0.85rem;
  color: rgba(18, 18, 18, 0.62);
  margin-top: 10px;
  border-left: 3px solid var(--c-lime);
  padding-left: 12px;
  font-family: var(--font-body);
}

/* ============ 第三屏：2026重点场次 ============ */
.page-home .home-matches {
  background: var(--home-gradient-night);
  color: var(--c-white);
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-home .home-matches::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--home-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .home-matches-head {
  position: relative;
}

.page-home .home-matches-head .section-anno {
  color: rgba(255, 255, 255, 0.62);
}

.page-home .home-matches-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.page-home .home-matches-meta .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.75;
}

.page-home .home-matches-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.page-home .home-matches-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.page-home .home-matches-scroll {
  position: relative;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 20px 28px;
  scroll-snap-type: x mandatory;
  background: linear-gradient(90deg, transparent 0%, rgba(198, 255, 0, 0.04) 28%, rgba(245, 197, 24, 0.05) 72%, transparent 100%);
  scrollbar-width: thin;
  scrollbar-color: var(--c-lime) rgba(255, 255, 255, 0.08);
}

.page-home .home-match-card {
  scroll-snap-align: start;
  flex: 0 0 86%;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--glass-brd);
  border-radius: var(--home-card-radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition), background var(--transition);
}

.page-home .home-match-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.085);
}

.page-home .home-match-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.page-home .home-match-score {
  font-family: var(--font-num);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-lime);
  background: rgba(198, 255, 0, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.page-home .home-match-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin: 0;
  color: var(--c-white);
}

.page-home .home-match-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.page-home .home-match-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .home-match-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 12px;
}

.page-home .home-match-row dt {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.46);
}

.page-home .home-match-row dd {
  font-family: var(--font-num);
  font-size: 0.9rem;
  color: var(--c-white);
  margin: 0;
}

.page-home .home-match-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.page-home .home-match-stage {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
}

.page-home .home-matches-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

.page-home .home-matches-cta .link-arrow {
  color: var(--c-white);
}

/* ============ 第四屏：CN赛程栏目 ============ */
.page-home .home-schedule {
  background: var(--home-gradient-schedule);
  color: var(--c-ink);
  padding: 96px 0;
  position: relative;
  clip-path: polygon(0 0, 100% 3vw, 100% 100%, 0 100%);
}

.page-home .home-schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}

.page-home .home-schedule-copy .lead {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.82;
  color: rgba(18, 18, 18, 0.84);
  margin-bottom: 28px;
}

.page-home .home-schedule-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.page-home .home-schedule-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.94rem;
  line-height: 1.65;
}

.page-home .home-schedule-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 10px;
  background: var(--c-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--home-gold-glow);
}

.page-home .home-schedule-demo {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(11, 30, 58, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-home .home-schedule-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.page-home .home-schedule-filter span {
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(11, 30, 58, 0.05);
  color: var(--c-ink);
  border: 1px solid transparent;
}

.page-home .home-schedule-filter span.is-active {
  background: var(--c-lime);
  color: var(--c-ink);
  font-weight: 700;
  box-shadow: 0 0 16px rgba(198, 255, 0, 0.4);
}

.page-home .home-schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-schedule-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11, 30, 58, 0.1);
  align-items: center;
  font-size: 0.92rem;
  line-height: 1.4;
}

.page-home .home-schedule-list li:last-child {
  border-bottom: 0;
}

.page-home .home-schedule-focus {
  font-weight: 700;
  color: var(--c-ink);
}

.page-home .home-schedule-stage {
  color: rgba(18, 18, 18, 0.54);
  font-size: 0.82rem;
}

.page-home .home-schedule-status {
  font-size: 0.78rem;
  color: var(--c-ink);
  background: rgba(245, 197, 24, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ============ 第五屏：会员中心同步 ============ */
.page-home .home-sync {
  background: var(--home-gradient-night);
  color: var(--c-white);
  padding: 96px 0;
}

.page-home .home-sync-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}

.page-home .home-sync-figure {
  margin: 0;
}

.page-home .home-sync-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--shadow);
}

.page-home .home-sync-figure figcaption {
  margin-top: 10px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  border-left: 3px solid var(--c-lime);
  padding-left: 12px;
  font-family: var(--font-body);
}

.page-home .home-sync-copy .lead {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.page-home .home-sync-steps {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page-home .home-sync-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.page-home .home-sync-num {
  font-family: var(--font-num);
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-ink);
  background: var(--c-lime);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--home-glow);
}

.page-home .home-sync-text h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--c-white);
}

.page-home .home-sync-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
}

.page-home .home-sync-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.page-home .home-sync-actions .link-arrow {
  color: var(--c-white);
}

/* ============ 第六屏：数据更新节奏 ============ */
.page-home .home-fresh {
  background: var(--c-paper);
  color: var(--c-ink);
  padding: 96px 0;
}

.page-home .home-fresh-head {
  margin-bottom: 48px;
}

.page-home .home-fresh-head .section-title {
  color: var(--c-ink);
}

.page-home .home-fresh-head .section-anno {
  color: rgba(18, 18, 18, 0.56);
}

.page-home .home-fresh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.page-home .home-fresh-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 10px 24px rgba(11, 30, 58, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.page-home .home-fresh-num {
  font-family: var(--font-num);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1;
}

.page-home .home-fresh-card:nth-child(3) .home-fresh-num,
.page-home .home-fresh-card:nth-child(5) .home-fresh-num {
  color: var(--c-lime);
  text-shadow: 0 0 24px var(--home-glow);
}

.page-home .home-fresh-card:nth-child(4) .home-fresh-num,
.page-home .home-fresh-card:nth-child(6) .home-fresh-num {
  color: var(--c-gold);
}

.page-home .home-fresh-label {
  font-size: 0.88rem;
  color: rgba(18, 18, 18, 0.64);
}

.page-home .home-fresh-timeline {
  background: var(--c-ink);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: var(--c-white);
}

.page-home .home-fresh-timeline ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.page-home .home-fresh-timeline li {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 6px;
}

.page-home .home-fresh-timeline li:last-child {
  border-bottom: 0;
}

.page-home .home-fresh-timeline li span:first-child {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
}

.page-home .home-fresh-timeline li span:last-child {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
}

.page-home .home-fresh-footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgba(18, 18, 18, 0.72);
}

.page-home .home-fresh-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ============ 信任声明 ============ */
.page-home .home-trust {
  background: var(--c-ink);
  color: var(--c-white);
  padding: 64px 0;
}

.page-home .home-trust-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-home .home-trust-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--c-lime);
  margin: 0 0 16px;
}

.page-home .home-trust-text {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* ============ 滚动显现 ============ */
.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.page-home [data-reveal-delay="1"] { transition-delay: 0.08s; }
.page-home [data-reveal-delay="2"] { transition-delay: 0.16s; }
.page-home [data-reveal-delay="3"] { transition-delay: 0.24s; }
.page-home [data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ============ 响应式：760px ============ */
@media (min-width: 760px) {
  .page-home .home-hero {
    min-height: 720px;
  }

  .page-home .home-hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-panel-layout {
    grid-template-columns: 5fr 7fr;
    gap: 44px;
  }

  .page-home .home-match-card {
    flex-basis: 44%;
  }

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

  .page-home .home-schedule-list li {
    grid-template-columns: auto 1fr auto auto;
  }

  .page-home .home-sync-grid {
    grid-template-columns: 7fr 5fr;
  }

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

  .page-home .home-fresh-timeline ol {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .page-home .home-fresh-timeline li {
    border-bottom: 0;
    border-left: 2px solid rgba(198, 255, 0, 0.3);
    padding: 8px 0 8px 20px;
  }

  .page-home .home-fresh-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ============ 响应式：1024px ============ */
@media (min-width: 1024px) {
  .page-home .home-hero {
    min-height: 92vh;
    padding-top: var(--header-total);
  }

  .page-home .home-hero-inner {
    padding-bottom: 190px;
  }

  .page-home .home-hero-title {
    font-size: clamp(4rem, 9vw, 7rem);
    max-width: 10ch;
  }

  .page-home .home-hero-desc {
    font-size: 1.06rem;
    max-width: 560px;
  }

  .page-home .home-league-tape {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    gap: 18px;
    z-index: 2;
  }

  .page-home .home-league-tape span {
    writing-mode: vertical-rl;
    font-family: var(--font-head);
    font-size: 13px;
    letter-spacing: 0.34em;
    color: rgba(255, 255, 255, 0.24);
  }

  .page-home .home-hero-geo {
    width: 240px;
    height: 240px;
    top: 11%;
    right: 7%;
  }

  .page-home .home-panel,
  .page-home .home-matches,
  .page-home .home-schedule,
  .page-home .home-sync,
  .page-home .home-fresh {
    padding: 120px 0;
  }

  .page-home .home-panel-layout {
    grid-template-columns: 4fr 8fr;
    gap: 72px;
  }

  .page-home .home-match-card {
    flex-basis: 360px;
  }

  .page-home .home-matches-scroll {
    padding-left: calc((100vw - var(--container-w)) / 2 + 16px);
    padding-right: 16px;
  }

  .page-home .home-fresh-grid {
    gap: 20px;
  }

  .page-home .home-fresh-card {
    padding: 40px 32px;
  }
}

/* ============ 减少动效 ============ */
@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero-geo {
    animation: none;
  }

  .page-home .home-hero-title,
  .page-home .home-hero-accent {
    text-shadow: none;
  }

  .page-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-home .home-match-card:hover {
    transform: none;
  }
}
