.page-home {
  --home-line-soft: rgba(36, 53, 46, .7);
  --home-gap: 22px;
  background: var(--bg);
  color: var(--mist);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

/* 面包屑 */
.page-home .breadcrumbs {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px var(--gutter) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--gray);
}
.page-home .breadcrumbs a {
  color: var(--gray);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.page-home .breadcrumbs a:hover {
  color: var(--lime);
  border-bottom-color: var(--lime);
}

/* 分屏首屏 */
.page-home .home-hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 20px var(--gutter) 46px;
  display: grid;
  gap: 30px;
}
.page-home .home-hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(38px, 7.4vw, 76px);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--mist);
}
.page-home .hero-copy .lede {
  margin: 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray);
}

.page-home .hero-index {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.page-home .hero-index a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 4px 12px;
  align-items: baseline;
  padding: 13px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--mist);
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.page-home .hero-index a:hover {
  background: rgba(200, 255, 61, .06);
  color: var(--lime);
}
.page-home .idx {
  font-size: 12px;
  color: var(--lime);
  letter-spacing: .06em;
}
.page-home .idx-label {
  font-size: 15px;
  font-weight: 600;
}
.page-home .idx-label em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--gray);
}

.page-home .hero-visual {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 20%, rgba(31, 107, 69, .38), transparent 58%),
    linear-gradient(155deg, var(--bg) 0%, var(--bg-2) 62%, var(--panel) 100%);
}
.page-home .hero-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .24;
  filter: saturate(.7) contrast(1.15);
  z-index: 0;
}
.page-home .pitch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page-home .pitch-lines rect,
.page-home .pitch-lines line,
.page-home .pitch-lines circle {
  fill: none;
  stroke: var(--mint);
  stroke-width: 1;
  opacity: .38;
}
.page-home .pitch-nodes circle {
  fill: var(--lime);
  opacity: .85;
}
.page-home .pitch-nodes circle:nth-child(3n) {
  fill: var(--mint);
}
.page-home .pitch-nodes circle:nth-child(4n) {
  opacity: .55;
}
.page-home .hero-tag {
  position: absolute;
  z-index: 2;
  padding: 5px 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--mist);
  background: rgba(7, 19, 9, .74);
  border: 1px solid var(--line);
}
.page-home .hero-tag--a {
  top: 14px;
  left: 14px;
}
.page-home .hero-tag--b {
  right: 14px;
  bottom: 14px;
  color: var(--lime);
  border-color: rgba(200, 255, 61, .4);
}

/* 章节通用 */
.page-home .section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 48px var(--gutter);
  border-top: 1px solid var(--line);
}
.page-home .section-head {
  max-width: 70ch;
  margin-bottom: 28px;
}
.page-home .section-title {
  margin: 10px 0 12px;
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.01em;
  color: var(--mist);
}
.page-home .section-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--gray);
}

/* 媒体框局部比例 */
.page-home .media-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}
.page-home .media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

/* 主场地图 */
.page-home .map-split {
  display: grid;
  gap: 24px;
}
.page-home .map-figure {
  aspect-ratio: 3 / 2;
}
.page-home .node-panel {
  border-top: 2px solid var(--turf);
  padding-top: 16px;
}
.page-home .node-panel .panel-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--mist);
}
.page-home .node-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .node-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 2px 12px;
  padding: 11px 4px;
  border-bottom: 1px solid var(--home-line-soft);
  transition: background var(--dur) var(--ease);
}
.page-home .node-list li:hover {
  background: rgba(86, 224, 176, .06);
}
.page-home .node-id {
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--lime);
}
.page-home .node-name {
  font-size: 14px;
  color: var(--mist);
}
.page-home .node-meta {
  grid-column: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--gray);
}
.page-home .node-panel .muted {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.8;
  color: var(--gray);
}

/* 赔率分档 */
.page-home .odds-split {
  display: grid;
  gap: 24px;
}
.page-home .odds-figure {
  aspect-ratio: 4 / 3;
}
.page-home .odds-rail {
  display: grid;
  gap: 20px;
}
.page-home .odds-tier {
  position: relative;
  padding: 0 0 20px 18px;
  border-left: 1px solid var(--line);
}
.page-home .odds-tier:last-child {
  padding-bottom: 0;
}
.page-home .odds-tier::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 5px;
  width: 5px;
  height: 5px;
  background: var(--mint);
}
.page-home .odds-tier:nth-child(2)::before {
  background: var(--turf);
}
.page-home .odds-tier:nth-child(3)::before {
  background: var(--lime);
}
.page-home .odds-tier h3 {
  margin: 10px 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--mist);
}
.page-home .odds-tier p {
  margin: 0;
  max-width: 46ch;
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray);
}
.page-home .tier-pulse {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 34px;
  margin-top: 14px;
  max-width: 220px;
}
.page-home .tier-pulse span {
  flex: 1 1 0;
  min-width: 0;
  background: linear-gradient(180deg, rgba(200, 255, 61, .85), rgba(31, 107, 69, .22));
}
.page-home .tier-pulse span:nth-child(1) { height: 44%; }
.page-home .tier-pulse span:nth-child(2) { height: 62%; }
.page-home .tier-pulse span:nth-child(3) { height: 36%; }
.page-home .tier-pulse span:nth-child(4) { height: 78%; }
.page-home .tier-pulse span:nth-child(5) { height: 52%; }
.page-home .tier-pulse span:nth-child(6) { height: 90%; }
.page-home .tier-pulse span:nth-child(7) { height: 68%; }
.page-home .tier-pulse span:nth-child(8) { height: 48%; }

/* 数据切片 */
.page-home .slice-grid {
  display: grid;
  gap: 20px;
}
.page-home .slice {
  position: relative;
  padding: 24px 20px 26px;
  background: var(--bg-2);
  border-top: 2px solid var(--turf);
  overflow: hidden;
}
.page-home .slice--lead {
  border-top-color: var(--lime);
}
.page-home .slice::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(86, 224, 176, .05) 0 1px, transparent 1px 9px);
  pointer-events: none;
}
.page-home .slice-title {
  position: relative;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--gray);
}
.page-home .slice-num {
  position: relative;
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(36px, 5.6vw, 58px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--lime);
}
.page-home .slice-label {
  position: relative;
  margin: 12px 0 0;
  max-width: 42ch;
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray);
}
.page-home .micro-bars {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-top: 18px;
}
.page-home .micro-bars span {
  flex: 1 1 0;
  min-width: 0;
  background: linear-gradient(180deg, rgba(86, 224, 176, .8), rgba(31, 107, 69, .2));
}
.page-home .micro-bars--youth span {
  background: linear-gradient(180deg, rgba(200, 255, 61, .8), rgba(31, 107, 69, .2));
}
.page-home .micro-bars span:nth-child(1) { height: 38%; }
.page-home .micro-bars span:nth-child(2) { height: 66%; }
.page-home .micro-bars span:nth-child(3) { height: 48%; }
.page-home .micro-bars span:nth-child(4) { height: 82%; }
.page-home .micro-bars span:nth-child(5) { height: 56%; }
.page-home .micro-bars span:nth-child(6) { height: 94%; }
.page-home .micro-bars span:nth-child(7) { height: 70%; }
.page-home .micro-bars span:nth-child(8) { height: 44%; }
.page-home .micro-bars span:nth-child(9) { height: 78%; }
.page-home .micro-bars span:nth-child(10) { height: 60%; }
.page-home .slice-figure {
  aspect-ratio: 3 / 2;
}

/* 赛季区间 */
.page-home .season-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.page-home .season-rail li {
  position: relative;
  padding: 20px 18px 24px;
  background: var(--bg-2);
  border-left: 2px solid var(--turf);
}
.page-home .season-rail li.is-current {
  border-left-color: var(--lime);
}
.page-home .season-tag {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: rgba(233, 241, 236, .16);
  letter-spacing: -.02em;
}
.page-home .season-rail li.is-current .season-tag {
  color: rgba(200, 255, 61, .42);
}
.page-home .season-rail h3 {
  margin: 10px 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--mist);
}
.page-home .season-rail p {
  margin: 0;
  max-width: 40ch;
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray);
}
.page-home .season-meta {
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.page-home .season-meta div {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.page-home .season-meta dt {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--gray);
}
.page-home .season-meta dd {
  margin: 0;
  font-size: 13px;
  color: var(--mist);
}

/* 核定与纠错 */
.page-home .verify-shell {
  display: grid;
  gap: 28px;
  padding: 26px 20px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(16, 31, 26, .92), rgba(14, 26, 22, .45));
}
.page-home .verify-copy p {
  margin: 0 0 12px;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.85;
  color: var(--mist);
}
.page-home .verify-copy .muted {
  margin-bottom: 0;
  font-size: 13px;
  color: var(--gray);
}
.page-home .verify-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.page-home .verify-list a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--home-line-soft);
  font-size: 14px;
  color: var(--mint);
  text-decoration: none;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.page-home .verify-list a:hover {
  color: var(--lime);
  padding-left: 6px;
}
.page-home .verify-side .copy-btn {
  margin-bottom: 12px;
}
.page-home .verify-side .contact-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: var(--gray);
}

/* 断点 */
@media (min-width: 760px) {
  .page-home .slice-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .odds-rail {
    gap: 22px;
  }
}

@media (min-width: 900px) {
  .page-home .home-hero {
    grid-template-columns: 5fr 7fr;
    gap: 44px;
    padding: 44px var(--gutter) 72px;
    align-items: start;
  }
  .page-home .hero-visual {
    min-height: 420px;
  }
  .page-home .section {
    padding: 76px var(--gutter);
  }
  .page-home .map-split {
    grid-template-columns: 1.1fr 1fr;
    gap: 34px;
    align-items: start;
  }
  .page-home .odds-split {
    grid-template-columns: 5fr 7fr;
    gap: 36px;
    align-items: stretch;
  }
  .page-home .odds-figure {
    aspect-ratio: 3 / 4;
    height: 100%;
  }
  .page-home .verify-shell {
    grid-template-columns: 7fr 5fr;
    gap: 44px;
    padding: 38px 34px;
  }
}

@media (min-width: 1000px) {
  .page-home .slice-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
    align-items: stretch;
    gap: 22px;
  }
  .page-home .slice-figure {
    aspect-ratio: 4 / 5;
    height: 100%;
  }
}

@media (min-width: 860px) {
  .page-home .season-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .page-home .season-rail li {
    padding: 24px 22px 28px;
    border-left-width: 2px;
    border-right: 1px solid var(--line);
    background: transparent;
  }
  .page-home .season-rail li:last-child {
    border-right: none;
  }
}

@media (max-width: 599px) {
  .page-home .hero-visual {
    min-height: 220px;
  }
  .page-home .node-list li {
    grid-template-columns: 46px 1fr;
  }
  .page-home .hero-tag--b {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .pitch-nodes circle {
    animation: homeNodePulse 3.8s var(--ease) infinite;
  }
  .page-home .pitch-nodes circle:nth-child(2n) {
    animation-delay: .5s;
  }
  .page-home .pitch-nodes circle:nth-child(3n) {
    animation-delay: 1s;
  }
}

@keyframes homeNodePulse {
  0%, 100% {
    opacity: .42;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .pitch-nodes circle,
  .page-home .hero-index a,
  .page-home .verify-list a {
    animation: none;
    transition: none;
  }
}
