.page-home {
  position: relative;
  overflow-x: hidden;
  background: var(--color-space);
  color: var(--color-cream);
  font-family: var(--font-body);
  line-height: 1.6;
}

.page-home section {
  scroll-margin-top: 5rem;
}

.page-home a:focus-visible,
.page-home .round-select:focus-visible {
  outline: 2px solid var(--color-neon);
  outline-offset: 3px;
}

/* ===== Hero / 首屏数据通道 ===== */
.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 3.5rem;
  isolation: isolate;
}

.page-home .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(11, 27, 61, 0.55), rgba(11, 27, 61, 0.75) 55%, rgba(11, 27, 61, 0.96) 100%),
    radial-gradient(circle at 82% 18%, rgba(57, 255, 20, 0.10), transparent 42%);
}

.page-home .hero-gridlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(245, 245, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 240, 0.035) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.page-home .hero-bgtext {
  position: absolute;
  left: -3vw;
  right: -3vw;
  bottom: -2vw;
  z-index: 3;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(4.6rem, 14vw, 15rem);
  line-height: 0.8;
  text-align: center;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 245, 240, 0.14);
  user-select: none;
  pointer-events: none;
}

.page-home .hero-inner {
  position: relative;
  z-index: 4;
  width: 100%;
}

.page-home .hero-layout {
  display: grid;
  gap: 2.5rem;
}

.page-home .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: var(--font-number);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--color-neon);
}

.page-home .hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.8);
}

.page-home .hero-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--color-cream);
}

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

.page-home .hero-description {
  max-width: 60ch;
  margin: 0 0 1.6rem;
  padding-left: 1rem;
  border-left: 3px solid var(--color-heat);
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.74);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.page-home .hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(74, 85, 104, 0.35);
  border: 1px solid rgba(74, 85, 104, 0.35);
}

.page-home .metric-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  background: rgba(11, 27, 61, 0.78);
  padding: 1.25rem 1.1rem;
  backdrop-filter: blur(4px);
}

.page-home .metric-item dd {
  margin: 0;
  padding: 0;
}

.page-home .metric-item dt {
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.6);
}

.page-home .metric-value {
  font-family: var(--font-number);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  color: var(--color-heat);
}

.page-home .metric-unit {
  font-size: 0.75rem;
  color: rgba(245, 245, 240, 0.65);
}

/* ===== 联赛导航 / 选择比赛日 ===== */
.page-home .home-league {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(74, 85, 104, 0.35);
  background: linear-gradient(180deg, rgba(26, 29, 35, 0.25), rgba(11, 27, 61, 0.45));
}

.page-home .league-layout {
  display: grid;
  gap: 2.5rem;
}

.page-home .league-intro .section-label {
  margin-bottom: 0.8rem;
}

.page-home .league-title {
  margin: 0 0 1rem;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--color-cream);
}

.page-home .league-lead {
  max-width: 46ch;
  margin: 0 0 1.5rem;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.7);
}

.page-home .round-label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-number);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--color-neon);
}

.page-home .round-picker {
  position: relative;
  max-width: 24rem;
}

.page-home .round-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(26, 29, 35, 0.85);
  border: 1px solid rgba(74, 85, 104, 0.45);
  border-radius: 4px;
  color: var(--color-cream);
  font-family: var(--font-number);
  font-size: 0.95rem;
  padding: 0.9rem 2.8rem 0.9rem 1rem;
  cursor: pointer;
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.page-home .round-select:hover {
  border-color: rgba(57, 255, 20, 0.6);
}

.page-home .round-select:focus {
  outline: 2px solid var(--color-neon);
  outline-offset: 3px;
  border-color: var(--color-neon);
}

.page-home .round-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.7rem;
  height: 0.45rem;
  color: var(--color-neon);
  pointer-events: none;
}

.page-home .round-hint {
  margin: 0.55rem 0 1rem;
  font-size: 0.82rem;
  color: rgba(245, 245, 240, 0.52);
}

.page-home .text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-neon);
  font-size: 0.92rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(57, 255, 20, 0.45);
  padding-bottom: 2px;
  transition: color var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

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

.page-home .league-map {
  background: rgba(26, 29, 35, 0.55);
  border: 1px solid rgba(74, 85, 104, 0.35);
  border-radius: 6px;
  padding: 1.25rem;
}

.page-home .league-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.page-home .league-map-title {
  font-family: var(--font-number);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--color-cream);
}

.page-home .league-map-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(245, 245, 240, 0.6);
}

.page-home .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.7);
}

.page-home .round-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.page-home .round-cell {
  border: 1px solid rgba(74, 85, 104, 0.35);
  background: rgba(11, 27, 61, 0.5);
  color: rgba(245, 245, 240, 0.68);
  font-family: var(--font-number);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.7rem 0.35rem;
  border-radius: 3px;
  transition: border-color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.page-home .round-cell:hover {
  border-color: var(--color-neon);
  color: var(--color-neon);
  background: rgba(57, 255, 20, 0.07);
}

/* ===== 射手榜控球率数据平台 ===== */
.page-home .home-platform {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(74, 85, 104, 0.35);
}

.page-home .platform-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-home .platform-head .section-label {
  margin-bottom: 0.7rem;
}

.page-home .platform-title {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--color-cream);
}

.page-home .platform-intro {
  max-width: 48ch;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.68);
}

.page-home .platform-grid {
  display: grid;
  gap: 1.5rem;
}

.page-home .platform-map {
  background: rgba(26, 29, 35, 0.6);
  border: 1px solid rgba(74, 85, 104, 0.4);
  border-radius: 6px;
  padding: 1.25rem;
}

.page-home .map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.page-home .map-source {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: rgba(245, 245, 240, 0.66);
}

.page-home .map-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.5);
}

.page-home .map-live {
  font-family: var(--font-number);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-neon);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.35);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.page-home .map-svg {
  margin-bottom: 1rem;
}

.page-home .map-trace {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .map-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(74, 85, 104, 0.35);
  border: 1px solid rgba(74, 85, 104, 0.35);
}

.page-home .map-kpi {
  display: flex;
  flex-direction: column;
  background: rgba(11, 27, 61, 0.75);
  padding: 0.9rem;
}

.page-home .map-kpi-value {
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.2;
  color: var(--color-heat);
}

.page-home .map-kpi-label {
  font-size: 0.76rem;
  color: rgba(245, 245, 240, 0.6);
}

.page-home .platform-guide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.page-home .guide-figure {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(74, 85, 104, 0.35);
  background: rgba(11, 27, 61, 0.4);
}

.page-home .guide-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .guide-title {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-cream);
}

.page-home .guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.page-home .guide-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(245, 245, 240, 0.7);
}

.page-home .guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5em;
  height: 0.5em;
  background: var(--color-neon);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* ===== V3适配清单下载 ===== */
.page-home .home-v3 {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(74, 85, 104, 0.35);
  background:
    radial-gradient(circle at 8% 20%, rgba(57, 255, 20, 0.05), transparent 35%),
    linear-gradient(180deg, rgba(26, 29, 35, 0.4), rgba(11, 27, 61, 0.35));
}

.page-home .v3-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-home .v3-figure {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.page-home .v3-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .v3-copy .section-label {
  margin-bottom: 0.7rem;
}

.page-home .v3-title {
  margin: 0 0 1rem;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--color-cream);
}

.page-home .v3-lead {
  max-width: 52ch;
  margin: 0 0 1.4rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 245, 240, 0.7);
}

.page-home .speed-compare {
  display: grid;
  gap: 0.8rem;
  background: rgba(26, 29, 35, 0.75);
  border: 1px solid rgba(74, 85, 104, 0.35);
  border-radius: 6px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.3rem;
}

.page-home .speed-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr 5rem;
  gap: 0.7rem;
  align-items: center;
  font-family: var(--font-number);
  font-size: 0.78rem;
  color: rgba(245, 245, 240, 0.66);
}

.page-home .speed-track {
  height: 0.6rem;
  border-radius: 99px;
  background: rgba(245, 245, 240, 0.08);
  overflow: hidden;
}

.page-home .speed-fill {
  display: block;
  height: 100%;
  border-radius: 99px;
}

.page-home .speed-fill-v2 {
  width: 100%;
  background: linear-gradient(90deg, var(--color-slate), rgba(245, 245, 240, 0.18));
}

.page-home .speed-fill-v3 {
  width: 60%;
  background: linear-gradient(90deg, var(--color-neon), var(--color-heat));
}

.page-home .v3-points {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.page-home .v3-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: rgba(245, 245, 240, 0.65);
}

.page-home .v3-points li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-moss);
}

/* ===== 战报专栏 ===== */
.page-home .home-reports {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(74, 85, 104, 0.35);
}

.page-home .reports-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-home .reports-head .section-label {
  margin-bottom: 0.6rem;
}

.page-home .reports-title {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--color-cream);
}

.page-home .reports-grid {
  display: grid;
  gap: 1.5rem;
}

.page-home .report-feature {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.page-home .report-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(74, 85, 104, 0.35);
}

.page-home .report-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .report-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-heat);
  color: var(--color-space);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

.page-home .report-feature-title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.4;
}

.page-home .report-feature-title a {
  color: var(--color-cream);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.page-home .report-feature-title a:hover {
  color: var(--color-neon);
}

.page-home .report-feature-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.66);
}

.page-home .report-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  color: var(--color-neon);
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(57, 255, 20, 0.45);
  padding-bottom: 2px;
}

.page-home .report-mini-list {
  display: grid;
  gap: 1px;
  background: rgba(74, 85, 104, 0.35);
  border: 1px solid rgba(74, 85, 104, 0.35);
  border-radius: 6px;
  overflow: hidden;
}

.page-home .report-mini {
  background: rgba(11, 27, 61, 0.75);
  padding: 1.25rem 1.1rem;
}

.page-home .report-mini-tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-family: var(--font-number);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--color-terra);
  background: rgba(210, 125, 86, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.page-home .report-mini-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.45;
}

.page-home .report-mini-title a {
  color: var(--color-cream);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.page-home .report-mini-title a:hover {
  color: var(--color-neon);
}

.page-home .report-mini-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(245, 245, 240, 0.62);
}

/* ===== 湖南本地化服务说明 ===== */
.page-home .home-local {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(180deg, rgba(26, 29, 35, 0.6), rgba(11, 27, 61, 0.65));
}

.page-home .local-layout {
  display: grid;
  gap: 2.5rem;
}

.page-home .local-label {
  color: var(--color-terra);
}

.page-home .local-title {
  margin: 0 0 1rem;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--color-cream);
}

.page-home .local-lead {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 245, 240, 0.7);
}

.page-home .local-speed {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.6);
}

.page-home .local-meta {
  margin: 0 0 1.5rem;
  font-size: 0.88rem;
  color: rgba(245, 245, 240, 0.55);
  border-left: 2px solid var(--color-moss);
  padding-left: 0.75rem;
  line-height: 1.65;
}

.page-home .local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.page-home .local-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(74, 85, 104, 0.35);
  border: 1px solid rgba(74, 85, 104, 0.35);
  border-radius: 6px;
  overflow: hidden;
}

.page-home .local-fact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-height: 8rem;
  background: rgba(11, 27, 61, 0.75);
  padding: 1.8rem 1.2rem;
}

.page-home .local-fact-num {
  font-family: var(--font-number);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  color: var(--color-heat);
}

.page-home .local-fact-label {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.64);
}

/* ===== 桌面端非对称网格 ===== */
@media (min-width: 900px) {
  .page-home .hero-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 3rem;
    align-items: end;
  }

  .page-home .hero-title {
    font-size: clamp(3.4rem, 7vw, 5.5rem);
  }

  .page-home .league-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 3.5rem;
    align-items: start;
  }

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

  .page-home .platform-head {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 2.5rem;
    align-items: end;
  }

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

  .page-home .platform-map {
    grid-column: 1 / span 8;
  }

  .page-home .platform-guide {
    grid-column: 9 / span 4;
  }

  .page-home .v3-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 3.5rem;
  }

  .page-home .reports-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 2.5rem;
  }

  .page-home .report-feature {
    align-self: start;
    position: sticky;
    top: 8rem;
  }

  .page-home .local-layout {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 3.5rem;
    align-items: center;
  }
}
