.page-home {
  --home-rule: rgba(40, 64, 58, .92);
  --home-pad: 64px;
}

/* ---------- 首屏章节索引 ---------- */
.page-home .hero-index {
  position: relative;
  padding: calc(var(--header-h) + 44px) 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.page-home .hero-index__bg {
  position: absolute;
  inset: 0;
}

.page-home .hero-index__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
}

.page-home .hero-index__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 31, 26, .6) 0%, rgba(11, 31, 26, .9) 46%, var(--ink-green-900) 100%),
    repeating-linear-gradient(90deg, rgba(47, 212, 255, .05) 0 1px, transparent 1px 72px);
}

.page-home .hero-index__body {
  position: relative;
}

.page-home .hero-index__title {
  margin: 16px 0 0;
  max-width: 20em;
  font-size: clamp(29px, 6vw, 58px);
  line-height: 1.08;
  color: var(--bone-050);
}

.page-home .hero-index__lead {
  margin: 20px 0 0;
  max-width: 36em;
  color: var(--bone-70);
}

.page-home .chapter-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}

.page-home .chapter-item {
  border-bottom: 1px solid var(--line-soft);
}

.page-home .chapter-item__link {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas:
    "no title"
    "no note";
  gap: 3px 14px;
  padding: 15px 12px 15px 4px;
  text-decoration: none;
  color: inherit;
  transition: background-color .22s ease, padding-left .22s ease;
}

.page-home .chapter-item__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--flare-orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .24s ease;
}

.page-home .chapter-item__link:hover,
.page-home .chapter-item__link:focus-visible {
  background: var(--flare-soft);
  padding-left: 16px;
}

.page-home .chapter-item__link:hover::before,
.page-home .chapter-item__link:focus-visible::before {
  transform: scaleY(1);
}

.page-home .chapter-item__link:focus-visible {
  outline: 2px solid var(--volt-blue);
  outline-offset: 2px;
}

.page-home .chapter-item__no {
  grid-area: no;
  align-self: start;
  font-family: var(--font-mono);
  font-size: 19px;
  line-height: 1.4;
  color: var(--flare-orange);
  letter-spacing: .04em;
}

.page-home .chapter-item__title {
  grid-area: title;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--bone-050);
}

.page-home .chapter-item__note {
  grid-area: note;
  font-size: 13px;
  line-height: 1.55;
  color: var(--bone-45);
}

/* ---------- 通用章节 ---------- */
.page-home .story-section {
  position: relative;
  padding: 8px 0 var(--home-pad);
}

.page-home .story-section .section-head {
  margin-top: 34px;
}

/* ---------- 01 赔率 ---------- */
.page-home .odds-grid {
  row-gap: 30px;
  margin-top: 26px;
}

.page-home .odds-chart {
  margin: 0;
  padding: 18px 16px 14px;
  border: 1px solid var(--line-soft);
  background:
    repeating-linear-gradient(0deg, rgba(40, 64, 58, .28) 0 1px, transparent 1px 24px),
    linear-gradient(155deg, rgba(22, 48, 42, .94), rgba(11, 31, 26, .96));
}

.page-home .odds-chart__svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .oc-grid line {
  stroke: var(--grid-line);
  stroke-width: 1;
}

.page-home .oc-axis line {
  stroke: var(--slate-600);
  stroke-width: 1;
}

.page-home .oc-line {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .oc-line--median {
  stroke: var(--flare-orange);
}

.page-home .oc-line--top3 {
  stroke: var(--volt-blue);
  stroke-dasharray: 7 5;
}

.page-home .oc-dot--median {
  fill: var(--flare-orange);
}

.page-home .oc-dot--top3 {
  fill: var(--volt-blue);
}

.page-home .oc-tick {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  fill: var(--slate-600);
}

.page-home .odds-chart__legend {
  margin: 14px 0 0;
  padding: 0;
}

.page-home .odds-side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.page-home .def-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}

.page-home .def-list__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.page-home .def-list__key {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--bone-050);
}

.page-home .def-list__key::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 13px;
  margin-right: 8px;
  background: var(--flare-orange);
  vertical-align: -1px;
}

.page-home .def-list__val {
  margin: 0;
  font-size: 14px;
  line-height: 1.62;
  color: var(--bone-70);
}

.page-home .odds-side__media {
  margin: 0;
}

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

.page-home .odds-foot {
  max-width: 62em;
  margin: 28px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--verdict-yellow);
  font-size: 13px;
  line-height: 1.65;
}

/* ---------- 02 赛事日历 ---------- */
.page-home .cal-track {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  padding: 4px 2px 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.page-home .cal-track:focus-visible {
  outline: 2px solid var(--volt-blue);
  outline-offset: 4px;
}

.page-home .cal-track::-webkit-scrollbar {
  height: 6px;
}

.page-home .cal-track::-webkit-scrollbar-track {
  background: var(--moss-800);
}

.page-home .cal-track::-webkit-scrollbar-thumb {
  background: var(--slate-600);
}

.page-home .fixture {
  position: relative;
  flex: 0 0 212px;
  padding: 16px 16px 20px;
  border: 1px solid var(--line-soft);
  background:
    repeating-linear-gradient(135deg, rgba(47, 212, 255, .05) 0 6px, transparent 6px 12px),
    var(--moss-800);
  scroll-snap-align: start;
}

.page-home .fixture::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--volt-blue) 0 6px, transparent 6px 12px);
  opacity: .55;
}

.page-home .fixture__line {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--volt-blue);
}

.page-home .fixture__score {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 22px;
  line-height: 1.15;
  color: var(--bone-050);
}

.page-home .fixture__score small {
  display: block;
  margin-bottom: 2px;
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--slate-600);
}

.page-home .fixture__tag {
  margin: 12px 0 0;
}

.page-home .cal-note {
  max-width: 58em;
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

/* ---------- 03 半场比分与积分榜 ---------- */
.page-home .ht-grid {
  row-gap: 28px;
  margin-top: 26px;
}

.page-home .ht-media {
  margin: 0;
  aspect-ratio: 4 / 3;
}

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

.page-home .ht-body {
  display: grid;
  gap: 24px;
  align-content: start;
}

.page-home .ht-scores {
  padding: 16px;
  border: 1px solid var(--line-soft);
  background: rgba(22, 48, 42, .6);
}

.page-home .ht-scores__label {
  margin: 0;
}

.page-home .ht-scores__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
}

.page-home .ht-score {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border-left: 3px solid var(--clay-600);
  background: var(--ink-green-900);
}

.page-home .ht-score .num {
  font-size: 17px;
  color: var(--bone-050);
}

.page-home .ht-score small {
  font-size: 11px;
  line-height: 1.3;
  text-align: right;
  color: var(--slate-600);
}

.page-home .ht-scores__note {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
}

.page-home .table-slice {
  overflow-x: auto;
}

.page-home .table-slice table {
  min-width: 540px;
}

.page-home .table-slice__note {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
}

/* ---------- 04 替补影响值 ---------- */
.page-home .bench-grid {
  row-gap: 30px;
  margin-top: 26px;
}

.page-home .bench-radar {
  margin: 0;
}

.page-home .bench-radar__svg {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}

.page-home .radar-ring {
  fill: none;
  stroke: var(--grid-line);
  stroke-width: 1;
}

.page-home .radar-ring--outer {
  stroke: var(--slate-600);
  stroke-dasharray: 4 4;
}

.page-home .radar-spokes line {
  stroke: var(--grid-line);
  stroke-width: 1;
}

.page-home .radar-spokes .radar-spoke--minus {
  stroke: var(--volt-blue);
  stroke-dasharray: 3 4;
}

.page-home .radar-shape {
  fill: rgba(255, 106, 31, .2);
  stroke: var(--flare-orange);
  stroke-width: 2;
}

.page-home .radar-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  fill: var(--bone-70);
}

.page-home .radar-value {
  font-family: var(--font-mono);
  font-size: 12px;
  fill: var(--flare-orange);
}

.page-home .bench-radar__caption {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  text-align: center;
}

.page-home .bench-weights {
  display: grid;
  gap: 20px;
  align-content: start;
}

.page-home .weight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}

.page-home .weight-list__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}

.page-home .weight-list__k {
  font-size: 14px;
  color: var(--bone-70);
}

.page-home .weight-list__v {
  font-size: 15px;
  color: var(--flare-orange);
}

.page-home .weight-list__item--minus .weight-list__v {
  color: var(--volt-blue);
}

.page-home .bench-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--bone-70);
}

.page-home .bench-weights .btn {
  justify-self: start;
}

/* ---------- 05 档案袋 ---------- */
.page-home .archive-sec {
  isolation: isolate;
}

.page-home .archive-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.page-home .archive-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .16;
}

.page-home .archive-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 26, .92), rgba(11, 31, 26, .97));
}

.page-home .archive-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.page-home .archive-card {
  position: relative;
  padding: 20px 18px;
  border: 1px solid var(--line-soft);
  background: rgba(22, 48, 42, .74);
  transition: border-color .22s ease, transform .22s ease;
}

.page-home .archive-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 34px;
  height: 3px;
  background: var(--flare-orange);
}

.page-home .archive-card:hover,
.page-home .archive-card:focus-within,
.page-home .archive-card:focus-visible {
  border-color: var(--flare-orange);
  transform: translateY(-3px);
}

.page-home .archive-card:focus-visible {
  outline: 2px solid var(--volt-blue);
  outline-offset: 3px;
}

.page-home .archive-card__num {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--bone-050);
}

.page-home .archive-card__title {
  margin: 10px 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--flare-orange);
}

.page-home .archive-card__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--bone-70);
}

.page-home .archive-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
}

.page-home .archive-foot {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.page-home .archive-foot .muted {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.page-home .archive-foot .btn {
  justify-self: start;
}

/* ---------- 06 阅读路径 ---------- */
.page-home .path-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.page-home .path-card {
  display: block;
  padding: 18px;
  border: 1px solid var(--line-soft);
  background: var(--moss-800);
  text-decoration: none;
  color: inherit;
  transition: background-color .22s ease, border-color .22s ease;
}

.page-home .path-card:hover,
.page-home .path-card:focus-visible {
  border-color: var(--volt-blue);
  background: var(--volt-soft);
}

.page-home .path-card:focus-visible {
  outline: 2px solid var(--volt-blue);
  outline-offset: 3px;
}

.page-home .path-card__k {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  color: var(--volt-blue);
}

.page-home .path-card__t {
  display: block;
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--bone-050);
}

.page-home .path-card__d {
  display: block;
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--bone-70);
}

.page-home .path-index {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.page-home .path-index__label {
  margin: 0;
}

.page-home .path-index__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
}

/* ---------- 响应式 ---------- */
@media (max-width: 719px) {
  .page-home .hero-index {
    padding-top: calc(var(--header-h) + 28px);
  }

  .page-home .odds-chart {
    padding: 12px 8px 10px;
  }

  .page-home .archive-card__num {
    font-size: 32px;
  }
}

@media (min-width: 720px) {
  .page-home {
    --home-pad: 88px;
  }

  .page-home .chapter-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 44px;
  }

  .page-home .ht-scores__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .archive-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .page-home .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .page-home .archive-foot {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
  }

  .page-home .archive-foot .btn {
    justify-self: end;
  }
}

@media (min-width: 1040px) {
  .page-home .ht-scores__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .archive-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .path-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .odds-chart {
    padding: 22px 20px 16px;
  }

  .page-home .fixture {
    flex: 0 0 232px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .chapter-item__link,
  .page-home .chapter-item__link::before,
  .page-home .archive-card,
  .page-home .path-card {
    transition: none;
  }

  .page-home .archive-card:hover,
  .page-home .archive-card:focus-within {
    transform: none;
  }
}
<<<END>>>
