.page-home {
  --home-lighter-blue: #15315E;
  --home-deeper-blue: #07162E;
  --home-card-light: #FFFDF9;
  --home-card-dark: rgba(27, 58, 107, .5);
  --home-text-muted: rgba(245, 240, 235, .74);
  --home-green-glow: rgba(0, 255, 127, .14);
  --home-gold-glow: rgba(212, 160, 23, .16);
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 160, 23, .08), transparent 30%),
    var(--deep-blue);
  color: var(--cream);
  overflow-x: clip;
  font-family: var(--font-body);
  line-height: 1.6;
}

.page-home .home-container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.page-home .home-section {
  padding-block: 72px 84px;
}

.page-home figure {
  margin: 0;
}

/* ---------- 英雄区 ---------- */
.page-home .home-hero {
  position: relative;
  padding-top: 28px;
  background:
    radial-gradient(ellipse at 88% 20%, rgba(21, 49, 94, .9), transparent 62%),
    linear-gradient(180deg, var(--deep-blue) 0%, var(--deep-blue) 58%, var(--home-deeper-blue) 100%);
}

.page-home .hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.page-home .hero-breadcrumb {
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--rock);
}

.page-home .hero-breadcrumb a {
  color: var(--rock);
  text-decoration: none;
}

.page-home .hero-breadcrumb a:hover {
  color: var(--gold);
}

.page-home .hero-breadcrumb .sep {
  margin-inline: 8px;
  color: var(--gold-deep);
}

.page-home .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bright-green);
}

.page-home .eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bright-green);
  box-shadow: 0 0 0 4px var(--home-green-glow);
}

.page-home .home-hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: .02em;
  color: var(--cream);
  text-transform: uppercase;
}

.page-home .hero-title-accent {
  color: var(--gold);
}

.page-home .hero-lead {
  max-width: 34em;
  margin: 0 0 28px;
  font-size: 1.02rem;
  color: var(--home-text-muted);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.page-home .home-hero .btn-ghost {
  border-color: rgba(212, 160, 23, .65);
  color: var(--cream);
}

.page-home .home-hero .btn-ghost:hover {
  background: var(--home-gold-glow);
  color: var(--cream);
}

.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 460px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--ink-blue);
}

.page-home .hero-stat {
  padding: 4px 10px 0 0;
}

.page-home .hero-stat dt {
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--rock);
}

.page-home .hero-stat dd {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--gold);
}

.page-home .hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.page-home .hero-pitch {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .35));
}

.page-home .hero-visual-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--rock);
}

.page-home .hero-visual-note .status-dot,
.page-home .snapshot-note .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bright-green);
  box-shadow: 0 0 0 3px var(--home-green-glow);
}

/* ---------- 全宽球场图带 ---------- */
.page-home .pano-strip {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--home-deeper-blue);
}

.page-home .pano-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}

.page-home .pano-caption {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  margin: 0;
  padding: 10px 20px;
  border: 1px solid rgba(212, 160, 23, .4);
  border-radius: 999px;
  background: rgba(7, 22, 46, .68);
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .12em;
  color: var(--cream);
  white-space: nowrap;
}

/* ---------- 章节标题节奏 ---------- */
.page-home .section-head {
  margin-bottom: 36px;
}

.page-home .home-section--light {
  background: var(--cream);
  color: var(--charcoal);
}

.page-home .home-section--light .section-head h2 {
  color: var(--deep-blue);
}

.page-home .home-section--light .sec-desc {
  color: #5E5A57;
}

.page-home .home-section--light .sec-index {
  color: var(--gold-deep);
}

/* ---------- 核心数据服务 ---------- */
.page-home .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-home .service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--home-card-light);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-panel);
  transition: transform .2s cubic-bezier(.4, 0, .2, 1), box-shadow .2s cubic-bezier(.4, 0, .2, 1), border-color .2s;
}

.page-home .service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, .6);
  box-shadow: var(--shadow-card);
}

.page-home .card-index {
  margin-bottom: 12px;
  padding: 3px 8px;
  border: 1px solid rgba(212, 160, 23, .3);
  border-radius: 999px;
  background: rgba(212, 160, 23, .08);
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .14em;
  color: var(--gold-deep);
}

.page-home .service-card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
  line-height: 1.4;
  color: var(--deep-blue);
}

.page-home .service-card p {
  margin: 0 0 16px;
  font-size: .88rem;
  color: #6B675F;
  flex: 1;
}

.page-home .mini-chart {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 4px 0 12px;
}

.page-home .text-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--deep-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 31, 68, .3);
}

.page-home .text-link:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.page-home .shot-heat {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  width: 100%;
  max-width: 220px;
  margin: 10px 0 14px;
}

.page-home .shot-heat i {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--h, var(--light-gray));
  transition: transform .2s;
}

.page-home .shot-heat i:hover {
  transform: scale(1.15);
}

.page-home .service-figure {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
}

.page-home .service-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.page-home .service-figure figcaption {
  padding-left: 4px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-mono);
  font-size: .82rem;
  color: #6B675F;
}

/* ---------- 大屏通道横幅 ---------- */
.page-home .cast-band {
  background: linear-gradient(120deg, var(--deep-blue) 0%, var(--home-lighter-blue) 65%, #0B2445 100%);
  color: var(--cream);
  border-block: 1px solid var(--ink-blue);
}

.page-home .cast-band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .cast-copy h2 {
  margin: 14px 0 12px;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--cream);
}

.page-home .cast-copy p {
  max-width: 30em;
  color: var(--home-text-muted);
}

.page-home .cast-band .btn-ghost {
  border-color: var(--gold);
  color: var(--cream);
}

.page-home .cast-band .btn-ghost:hover {
  background: var(--gold);
  color: var(--deep-blue);
}

.page-home .cast-band .tag-success {
  color: var(--cream);
  background: rgba(212, 160, 23, .18);
  border-color: rgba(212, 160, 23, .5);
}

.page-home .cast-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid rgba(212, 160, 23, .55);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* ---------- 今日数据快照 ---------- */
.page-home .match-snapshot {
  background:
    radial-gradient(circle at 18% 80%, rgba(0, 255, 127, .06), transparent 32%),
    var(--deep-blue);
  color: var(--cream);
}

.page-home .match-snapshot .section-head h2,
.page-home .quick-access .section-head h2 {
  color: var(--cream);
}

.page-home .match-snapshot .sec-desc,
.page-home .quick-access .sec-desc {
  color: rgba(245, 240, 235, .66);
}

.page-home .match-snapshot .sec-index,
.page-home .quick-access .sec-index {
  color: var(--gold);
}

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

.page-home .snapshot-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.page-home .possession-donut {
  width: min(320px, 100%);
  height: auto;
}

.page-home .donut-num {
  font-family: var(--font-head);
  font-size: 2.9rem;
  fill: var(--cream);
}

.page-home .donut-label {
  font-family: var(--font-mono);
  font-size: .78rem;
  fill: var(--rock);
}

.page-home .snapshot-legend {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: .84rem;
  color: var(--cream);
}

.page-home .legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 50%;
}

.page-home .legend-gold {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 160, 23, .5);
}

.page-home .legend-green {
  background: var(--bright-green);
  box-shadow: 0 0 8px rgba(0, 255, 127, .45);
}

.page-home .snapshot-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
}

.page-home .snap-stat {
  background: var(--home-card-dark);
  border: 1px solid var(--ink-blue);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color .2s, background .2s;
}

.page-home .snap-stat:hover {
  border-color: var(--gold);
  background: rgba(27, 58, 107, .78);
}

.page-home .snap-stat dt {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .08em;
  color: var(--rock);
}

.page-home .snap-stat dd {
  margin: 6px 0 0;
  font-family: var(--font-head);
  font-size: 1.68rem;
  letter-spacing: .02em;
  color: var(--cream);
}

.page-home .snap-stat dd em {
  margin-inline: 4px;
  color: var(--gold);
  font-style: normal;
}

.page-home .snapshot-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 0;
  padding: 14px 18px;
  border: 1px dashed rgba(212, 160, 23, .4);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: .84rem;
  color: var(--home-text-muted);
}

/* ---------- 赛前专家专栏 ---------- */
.page-home .insights-preview {
  background: var(--cream);
  color: var(--charcoal);
}

.page-home .insights-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-home .insights-list {
  display: flex;
  flex-direction: column;
}

.page-home .insight-item {
  padding: 24px 4px;
  border-bottom: 1px solid var(--light-gray);
}

.page-home .insight-item:first-child {
  padding-top: 0;
}

.page-home .insight-item h3 {
  margin: 10px 0 6px;
  font-size: 1.2rem;
  line-height: 1.45;
}

.page-home .insight-item h3 a {
  color: var(--charcoal);
  text-decoration: none;
}

.page-home .insight-item h3 a:hover {
  color: var(--deep-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-home .insight-item p {
  margin: 0;
  font-size: .9rem;
  color: #6B675F;
}

.page-home .insights-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.page-home .insights-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.page-home .insights-more {
  align-self: center;
}

.page-home .insights-preview .btn-ghost {
  border-color: var(--deep-blue);
  color: var(--deep-blue);
}

.page-home .insights-preview .btn-ghost:hover {
  background: var(--deep-blue);
  color: var(--cream);
}

/* ---------- 标签 ---------- */
.page-home .tag {
  padding: 4px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
}

.page-home .tag-live {
  color: var(--deep-blue);
  background: rgba(0, 255, 127, .18);
  border-color: rgba(0, 204, 102, .35);
}

.page-home .tag-warning {
  color: #7A3A20;
  background: rgba(184, 92, 56, .14);
  border-color: rgba(184, 92, 56, .35);
}

.page-home .insights-preview .tag-success {
  color: var(--deep-blue);
  background: rgba(212, 160, 23, .16);
  border-color: rgba(212, 160, 23, .36);
}

/* ---------- 常用入口 ---------- */
.page-home .quick-access {
  background:
    linear-gradient(135deg, var(--home-deeper-blue) 0%, var(--deep-blue) 55%, #14253F 100%);
  color: var(--cream);
  border-top: 1px solid rgba(212, 160, 23, .5);
}

.page-home .quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.page-home .quick-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  background: rgba(27, 58, 107, .4);
  border: 1px solid var(--ink-blue);
  border-radius: var(--radius-md);
  color: var(--cream);
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s cubic-bezier(.4, 0, .2, 1);
}

.page-home .quick-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(212, 160, 23, .1);
}

.page-home .quick-index {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .12em;
  color: var(--gold);
}

.page-home .quick-item strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

.page-home .quick-item span:last-child {
  font-size: .85rem;
  color: rgba(245, 240, 235, .65);
}

.page-home .quick-foot {
  margin: 28px 0 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .84rem;
  color: var(--rock);
}

.page-home .quick-foot a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 160, 23, .5);
}

.page-home .quick-foot a:hover {
  color: var(--gold);
}

.page-home .quick-sep {
  margin-inline: 12px;
  color: var(--gold-deep);
}

/* ---------- 错峰进入动画 ---------- */
@media (prefers-reduced-motion: no-preference) {
  .page-home [data-reveal] {
    animation: homeReveal .6s cubic-bezier(.22, 1, .36, 1) both;
  }
  .page-home .hero-visual {
    animation-delay: .12s;
  }
  .page-home .service-card:nth-child(2) {
    animation-delay: .08s;
  }
  .page-home .service-card:nth-child(3) {
    animation-delay: .16s;
  }
  .page-home .service-card:nth-child(4) {
    animation-delay: .24s;
  }
  .page-home .snapshot-note {
    animation-delay: .1s;
  }
  .page-home .insight-item:nth-child(2) {
    animation-delay: .08s;
  }
  .page-home .insight-item:nth-child(3) {
    animation-delay: .16s;
  }
  .page-home .quick-item:nth-child(2) {
    animation-delay: .05s;
  }
  .page-home .quick-item:nth-child(3) {
    animation-delay: .1s;
  }
  .page-home .quick-item:nth-child(4) {
    animation-delay: .15s;
  }
  .page-home .quick-item:nth-child(5) {
    animation-delay: .2s;
  }
  .page-home .quick-item:nth-child(6) {
    animation-delay: .25s;
  }
}

@keyframes homeReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 桌面端栅格 ---------- */
@media (min-width: 620px) {
  .page-home .snapshot-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 720px) {
  .page-home .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .service-figure {
    grid-template-columns: minmax(320px, 640px) 1fr;
  }
}

@media (min-width: 900px) {
  .page-home .hero-wrap {
    grid-template-columns: 5fr 6fr;
    gap: 48px;
  }
  .page-home .cast-band-inner {
    grid-template-columns: 5fr 6fr;
  }
  .page-home .snapshot-grid {
    grid-template-columns: 5fr 7fr;
    gap: 56px;
  }
  .page-home .insights-layout {
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .page-home .quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1080px) {
  .page-home .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-home {
  --h: transparent;
}
