.page-home {
  --home-gap: clamp(18px, 3.2vw, 34px);
}

/* ---------- 面包屑 ---------- */
.page-home .breadcrumbs {
  padding-block: 18px 0;
}
.page-home .breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--grey);
}

/* ---------- 首屏仪表盘 ---------- */
.page-home .hero-dash {
  position: relative;
  overflow: hidden;
  padding-block: clamp(18px, 3.6vw, 38px) 0;
}

.page-home .hero-dash__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  filter: saturate(0.6) contrast(0.95);
  pointer-events: none;
}

.page-home .hero-dash__head,
.page-home .hero-dash__grid,
.page-home .hero-dash__band {
  position: relative;
  z-index: 1;
}

.page-home .hero-dash__intro {
  max-width: 34em;
  margin: 14px 0 0;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.78;
  color: var(--grey);
}

.page-home .hero-dash__grid {
  display: grid;
  gap: 24px;
  margin-top: clamp(22px, 4vw, 42px);
}

@media (min-width: 900px) {
  .page-home .hero-dash__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 40px;
    align-items: start;
  }
}

/* ---------- 签表树 ---------- */
.page-home .tree {
  padding: 18px 16px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-home .tree__caption {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--wash-1);
}

.page-home .tree__fig {
  display: block;
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  background: var(--wash-4);
}

.page-home .tree-node {
  position: relative;
  margin-left: 14px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.page-home .tree-node + .tree-node {
  margin-top: 2px;
}

.page-home .tree-node::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 20px;
  width: 9px;
  height: 9px;
  background: var(--wash-3);
  transform: rotate(45deg);
  transition: background-color 0.24s var(--ease);
}

.page-home .tree-node[open]::before {
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(22, 35, 43, 0.85);
}

.page-home .tree-node__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}

.page-home .tree-node__head::-webkit-details-marker {
  display: none;
}

.page-home .tree-node__round {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.page-home .tree-node__time {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--wash-1);
  font-variant-numeric: tabular-nums;
}

.page-home .tree-node__list {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.page-home .tree-node__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 4px 10px;
  padding: 9px 11px;
  border-radius: 8px;
  background: rgba(216, 222, 224, 0.36);
}

.page-home .tree-node__row + .tree-node__row {
  margin-top: 6px;
}

.page-home .tree-node__team {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.4;
}

.page-home .tree-node__team--away {
  text-align: right;
}

.page-home .tree-node__score {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums slashed-zero;
  color: var(--dai);
}

.page-home .tree-node__half {
  grid-column: 1 / -1;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--wash-1);
}

/* ---------- 比分卡 ---------- */
.page-home .score-deck {
  display: grid;
  gap: 16px;
}

.page-home .score-card {
  position: relative;
  padding: 18px 20px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-home .score-card--lead {
  background: linear-gradient(158deg, #16232B 12%, #22515E 100%);
  border-color: transparent;
}

.page-home .score-card__stage {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--wash-1);
}

.page-home .score-card--lead .score-card__stage {
  color: rgba(246, 243, 236, 0.7);
}

.page-home .score-card__line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.page-home .score-card__team {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.page-home .score-card__team--away {
  text-align: right;
}

.page-home .score-card--lead .score-card__team {
  color: var(--paper);
}

.page-home .score-card__score {
  font-family: var(--mono);
  font-size: clamp(36px, 8vw, 56px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums slashed-zero;
  color: var(--ink);
}

.page-home .score-card--lead .score-card__score {
  color: var(--green);
}

.page-home .score-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.page-home .score-card__stat {
  flex: 1 1 118px;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(216, 222, 224, 0.42);
}

.page-home .score-card--lead .score-card__stat {
  background: rgba(246, 243, 236, 0.1);
}

.page-home .score-card__stat dt {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--grey);
}

.page-home .score-card--lead .score-card__stat dt {
  color: rgba(246, 243, 236, 0.72);
}

.page-home .score-card__stat dd {
  margin: 4px 0 0;
  font-family: var(--mono);
  font-size: 20px;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--dai);
}

.page-home .score-card--lead .score-card__stat dd {
  color: var(--green);
}

/* ---------- 底部数据带 ---------- */
.page-home .hero-dash__band {
  margin-top: clamp(26px, 4vw, 46px);
}

.page-home .band {
  max-width: 1480px;
  margin-inline: auto;
  padding: 18px var(--pad) 14px;
  background: var(--ink);
  border-radius: var(--radius) var(--radius) 0 0;
}

.page-home .band__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  margin-bottom: 12px;
}

.page-home .band__title {
  margin: 0;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--green);
}

.page-home .band__hint {
  margin: 0;
  font-size: 12px;
  color: rgba(246, 243, 236, 0.55);
}

.page-home .band__list {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 2px 0 10px;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.page-home .band__figure {
  flex: 0 0 260px;
  margin: 0;
  scroll-snap-align: start;
}

.page-home .band__figure img {
  display: block;
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  opacity: 0.85;
}

.page-home .band__item {
  flex: 0 0 196px;
  scroll-snap-align: start;
  padding: 12px 14px;
  border: 1px solid rgba(246, 243, 236, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(246, 243, 236, 0.07);
}

.page-home .band__team {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  color: rgba(246, 243, 236, 0.84);
}

.page-home .band__bar {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: rgba(246, 243, 236, 0.16);
  overflow: hidden;
}

.page-home .band__fill {
  display: block;
  height: 100%;
  width: var(--pct, 50%);
  border-radius: 99px;
  background: var(--green);
  transition: width 0.6s var(--ease);
}

.page-home .band__num {
  display: block;
  margin-top: 9px;
  font-family: var(--mono);
  font-size: 19px;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums slashed-zero;
  color: var(--green);
}

/* ---------- 主客场对比 ---------- */
.page-home .venue {
  background: linear-gradient(180deg, rgba(216, 222, 224, 0.42), rgba(246, 243, 236, 0) 70%);
}

.page-home .venue__grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .page-home .venue__grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 46px;
    align-items: center;
  }
}

.page-home .venue__intro .btn {
  margin-top: 18px;
}

.page-home .venue__panels {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .page-home .venue__panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

.page-home .venue-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 22px 20px 18px;
  border-radius: var(--radius);
}

.page-home .venue-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -52px;
  z-index: -1;
  width: 200px;
  height: 158px;
  border-radius: 46% 54% 38% 62% / 52% 44% 56% 48%;
  background: rgba(255, 255, 255, 0.16);
}

.page-home .venue-card--home {
  background: linear-gradient(150deg, #FF7A2E 0%, #d95f16 100%);
}

.page-home .venue-card--away {
  background: linear-gradient(150deg, #22515E 0%, #16232B 100%);
}

.page-home .venue-card__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(22, 35, 43, 0.72);
}

.page-home .venue-card--away .venue-card__kicker {
  color: rgba(246, 243, 236, 0.72);
}

.page-home .venue-card__value {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(34px, 7vw, 52px);
  line-height: 1;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums slashed-zero;
  color: var(--ink);
}

.page-home .venue-card--away .venue-card__value {
  color: var(--paper);
}

.page-home .venue-card__label {
  margin: 10px 0 0;
  font-size: 13.5px;
  color: rgba(22, 35, 43, 0.78);
}

.page-home .venue-card--away .venue-card__label {
  color: rgba(246, 243, 236, 0.74);
}

.page-home .venue-card__meta {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(22, 35, 43, 0.22);
}

.page-home .venue-card--away .venue-card__meta {
  border-top-color: rgba(246, 243, 236, 0.22);
}

.page-home .venue-card__meta li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  color: rgba(22, 35, 43, 0.86);
}

.page-home .venue-card--away .venue-card__meta li {
  color: rgba(246, 243, 236, 0.86);
}

.page-home .venue-card__meta li + li {
  border-top: 1px solid rgba(22, 35, 43, 0.14);
}

.page-home .venue-card--away .venue-card__meta li + li {
  border-top-color: rgba(246, 243, 236, 0.14);
}

.page-home .venue-card__meta em {
  font-family: var(--mono);
  font-style: normal;
  font-variant-numeric: tabular-nums slashed-zero;
}

/* ---------- 内容目录 ---------- */
.page-home .catalog__grid {
  display: grid;
  gap: 30px;
}

@media (min-width: 960px) {
  .page-home .catalog__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: 48px;
    align-items: start;
  }
}

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

.page-home .catalog__link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px 6px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: padding-left 0.24s var(--ease), background-color 0.24s var(--ease);
}

.page-home .catalog__link:hover,
.page-home .catalog__link:focus-visible {
  padding-left: 14px;
  background: rgba(216, 222, 224, 0.3);
}

.page-home .catalog__num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.page-home .catalog__name {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dai);
}

.page-home .catalog__desc {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--grey);
}

.page-home .catalog__aside {
  padding: 22px 20px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-home .catalog__aside h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

.page-home .catalog__aside p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--grey);
}

.page-home .catalog__benefits {
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}

.page-home .catalog__benefits li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}

.page-home .catalog__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.page-home .catalog__aside .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- 覆盖与更新 ---------- */
.page-home .coverage__grid {
  display: grid;
  gap: 26px;
}

@media (min-width: 900px) {
  .page-home .coverage__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 46px;
    align-items: start;
  }
}

.page-home .coverage__intro .btn {
  margin-top: 16px;
}

.page-home .coverage__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-home .coverage__stats > li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background: var(--card);
}

.page-home .coverage__stats .stat__value {
  font-family: var(--mono);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums slashed-zero;
  color: var(--dai);
}

.page-home .coverage__stats .stat__label {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--grey);
}

/* ---------- 收尾 ---------- */
.page-home .closing {
  padding-bottom: 0;
}

.page-home .closing__inner {
  max-width: 720px;
}

.page-home .closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.page-home .closing__mark {
  display: block;
  width: 100%;
  height: clamp(118px, 20vw, 210px);
  object-fit: cover;
  margin-top: clamp(28px, 5vw, 54px);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0.9;
}

/* ---------- 窄屏与降级 ---------- */
@media (max-width: 480px) {
  .page-home .tree-node__row {
    grid-template-columns: 1fr auto;
  }
  .page-home .tree-node__team--away {
    grid-column: 1 / -1;
    text-align: left;
  }
  .page-home .score-card__line {
    grid-template-columns: 1fr auto;
    row-gap: 6px;
  }
  .page-home .score-card__team--away {
    grid-column: 1 / -1;
    text-align: left;
  }
  .page-home .coverage__stats {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .band__list {
    scroll-snap-type: none;
  }
  .page-home .band__fill {
    transition: none;
  }
  .page-home .catalog__link,
  .page-home .tree-node::before {
    transition: none;
  }
}
<<<END>>>

.page-home {
  --pct: 1rem;
}
