/* ============ 页面作用域基础 ============ */
.page-home {
  display: block;
  width: 100%;
  padding-bottom: clamp(48px, 8vw, 96px);
  background:
    radial-gradient(1100px 560px at 10% -8%, rgba(20, 67, 58, .55), transparent 68%),
    radial-gradient(900px 500px at 96% 32%, rgba(255, 90, 43, .07), transparent 70%),
    var(--night);
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

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

.page-home a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-home :focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* ============ 面包屑补充 ============ */
.page-home .breadcrumb {
  padding-top: clamp(16px, 3vw, 28px);
}

.page-home .breadcrumb__sep {
  color: var(--grass);
  padding: 0 6px;
  font-family: var(--font-data);
}

/* ============ 框景首屏 ============ */
.page-home .hero-frame {
  position: relative;
  max-width: var(--maxw);
  margin: clamp(14px, 2.4vw, 26px) auto clamp(32px, 5vw, 60px);
  padding: 0;
  border: 1px solid var(--grass);
  border-radius: var(--radius-sm);
  background: var(--night-2);
  isolation: isolate;
  overflow: hidden;
}

/* 四边刻度 */
.page-home .hero-frame::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 4;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(53, 230, 208, .30) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(90deg, rgba(53, 230, 208, .30) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(0deg, rgba(53, 230, 208, .30) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(0deg, rgba(53, 230, 208, .30) 0 1px, transparent 1px 30px);
  background-size: 100% 6px, 100% 6px, 6px 100%, 6px 100%;
  background-position: top left, bottom left, top left, top right;
  background-repeat: no-repeat;
}

/* 暗化遮罩 */
.page-home .hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 26, 22, .62) 0%, rgba(6, 26, 22, .86) 52%, rgba(6, 26, 22, .96) 100%);
}

.page-home .hero-frame__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
  filter: saturate(.72) contrast(1.08);
  pointer-events: none;
}

.page-home .hero-frame__corner {
  position: absolute;
  z-index: 5;
  padding: 1px 6px;
  border: 1px solid var(--grass);
  background: var(--night);
  color: var(--cyan);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: .08em;
  line-height: 1.5;
}

.page-home .hero-frame__corner--tl { top: 8px; left: 8px; }
.page-home .hero-frame__corner--tr { top: 8px; right: 8px; }
.page-home .hero-frame__corner--bl { bottom: 8px; left: 8px; }
.page-home .hero-frame__corner--br { bottom: 8px; right: 8px; }

.page-home .hero-frame__inner {
  position: relative;
  z-index: 2;
  padding: clamp(26px, 4.6vw, 48px);
  padding-bottom: clamp(20px, 3vw, 32px);
}

/* 首屏头部 */
.page-home .hero-head__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-home .hero-head h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 5.2vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--paper);
  max-width: 22ch;
}

.page-home .hero-head__desc {
  margin: 0 0 16px;
  max-width: 60ch;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}

.page-home .hero-head__stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 5px 12px;
  border: 1px solid var(--grass);
  border-radius: 999px;
  background: rgba(11, 36, 32, .7);
  color: var(--amber);
  font-family: var(--font-data);
  font-size: 12.5px;
  letter-spacing: .02em;
}

.page-home .stamp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(53, 230, 208, .18);
  flex: 0 0 auto;
}

/* 首屏 Bento 网格 */
.page-home .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: clamp(22px, 3.4vw, 34px);
}

/* 比分模块 */
.page-home .hero-scores,
.page-home .hero-setpiece {
  position: relative;
  border: 1px solid var(--grass);
  border-radius: var(--radius);
  background: rgba(11, 36, 32, .72);
  padding: clamp(16px, 2.4vw, 22px);
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.page-home .hero-scores:hover,
.page-home .hero-setpiece:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 230, 208, .45);
}

.page-home .block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 14px;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--grass-line);
}

.page-home .block-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--paper);
}

.page-home .block-head__meta {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: .02em;
}

/* 比分列表 */
.page-home .score-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .score-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "min team added"
    "min score added";
  align-items: center;
  gap: 2px 10px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--grass-line);
}

.page-home .score-row:last-child {
  border-bottom: 0;
}

.page-home .score-row__min {
  grid-area: min;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--mist);
  min-width: 3.4em;
}

.page-home .score-row__team {
  grid-area: team;
  font-size: 15px;
  color: var(--paper);
  line-height: 1.4;
}

.page-home .score-row__team--away {
  color: var(--text-soft);
  font-size: 13px;
}

.page-home .score-row__score {
  grid-area: score;
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--cyan);
}

.page-home .score-row__added {
  grid-area: added;
  align-self: center;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  background: var(--flare);
  color: #fff;
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  font-weight: 700;
}

.page-home .hero-scores__note {
  margin: 14px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--cyan);
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist);
}

/* 定位球速览 */
.page-home .hero-setpiece__art {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--grass);
  margin-bottom: 14px;
  opacity: .85;
}

.page-home .kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 8px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.page-home .kpi {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 11px;
  border: 1px solid var(--grass);
  border-radius: var(--radius-sm);
  background: rgba(6, 26, 22, .6);
}

.page-home .kpi--flare {
  border-color: rgba(255, 90, 43, .5);
  background: rgba(255, 90, 43, .12);
}

.page-home .kpi__num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
  color: var(--paper);
}

.page-home .kpi--flare .kpi__num {
  color: var(--flare);
}

.page-home .kpi__unit {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--mist);
}

.page-home .kpi__team {
  font-size: 13px;
  color: var(--text-soft);
}

.page-home .hero-setpiece .btn {
  display: inline-block;
}

/* 首屏底部索引条 */
.page-home .hero-index {
  position: relative;
  z-index: 2;
  padding: 14px clamp(26px, 4.6vw, 48px) clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--grass);
  background: rgba(6, 26, 22, .82);
}

.page-home .hero-index__label {
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mist);
}

.page-home .hero-index .chipbar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.page-home .hero-index .chip {
  flex: 0 0 auto;
  white-space: nowrap;
}

.page-home .hero-index__panels {
  margin-top: 10px;
}

.page-home .panel-line {
  display: block;
  font-family: var(--font-data);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: var(--text-soft);
}

.page-home .hero-index__panels .tabpanel {
  padding: 9px 12px;
  border-left: 2px solid var(--cyan);
  background: rgba(20, 67, 58, .3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ============ 章节通用 ============ */
.page-home .chapter {
  max-width: var(--maxw);
  margin: 0 auto clamp(30px, 5vw, 56px);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .chapter__rail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--grass);
}

.page-home .chapter__no {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--flare);
}

.page-home .chapter__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mist);
}

.page-home .chapter__body {
  min-width: 0;
}

.page-home .chapter__head {
  margin-bottom: 20px;
}

.page-home .chapter__head h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--paper);
}

.page-home .chapter--paper .chapter__head h2 {
  color: var(--ink);
}

.page-home .chapter__lead {
  margin: 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.75;
}

.page-home .chapter--paper .chapter__lead {
  color: #443626;
}

/* 纸面章节 */
.page-home .chapter--paper {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  padding: clamp(22px, 3.6vw, 40px) var(--gutter);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .32);
}

.page-home .chapter--paper .chapter__rail {
  border-bottom-color: rgba(28, 20, 16, .22);
}

.page-home .chapter--paper .chapter__no {
  color: var(--flare-ink);
}

.page-home .chapter--paper .chapter__label {
  color: #6a5844;
}

.page-home .chapter--paper a {
  color: var(--flare-ink);
}

/* 夜场章节 */
.page-home .chapter--night {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11, 36, 32, .9), rgba(6, 26, 22, .96));
  border: 1px solid var(--grass);
  border-radius: var(--radius);
  padding: clamp(22px, 3.6vw, 40px) var(--gutter);
}

/* ============ 01 裁判名单 ============ */
.page-home .split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.page-home .table-scroll {
  overflow-x: auto;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.page-home .dtable {
  width: 100%;
  min-width: 340px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.page-home .dtable caption {
  caption-side: top;
  text-align: left;
  padding: 11px 14px;
  background: var(--paper-2);
  border-bottom: 1px solid rgba(28, 20, 16, .22);
  font-family: var(--font-data);
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--ink);
}

.page-home .dtable th {
  text-align: left;
  padding: 10px 14px;
  background: var(--night-2);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-home .dtable td {
  padding: 11px 14px;
  border-top: 1px solid rgba(28, 20, 16, .16);
  color: var(--ink);
}

.page-home .dtable tbody tr:nth-child(even) {
  background: rgba(222, 211, 190, .55);
}

.page-home .dtable td:nth-child(3) {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: #55432f;
}

.page-home .media-frame {
  margin: 0;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--night-2);
}

.page-home .media-frame__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .media-frame--portrait .media-frame__img {
  aspect-ratio: 4 / 3;
}

.page-home .media-frame__caption {
  display: block;
  padding: 8px 12px;
  background: var(--paper-2);
  border-top: 1px solid rgba(28, 20, 16, .2);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .02em;
  color: #55432f;
}

.page-home .note {
  padding: 14px 16px;
  border-left: 3px solid var(--cyan);
  background: rgba(20, 67, 58, .28);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.page-home .chapter--paper .note {
  border-left-color: var(--flare-ink);
  background: rgba(222, 211, 190, .62);
}

.page-home .note p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
}

.page-home .note p:last-child {
  margin-bottom: 0;
}

.page-home .chapter--paper .note p {
  color: #3d2e1e;
}

/* ============ 02 定位球效率 ============ */
.page-home .kpi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.page-home .kpi-block {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "key num"
    "team stamp";
  align-items: end;
  gap: 4px 12px;
  padding: 16px 18px;
  border: 1px solid var(--grass);
  border-radius: var(--radius);
  background: rgba(11, 36, 32, .78);
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.page-home .kpi-block:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 230, 208, .5);
}

.page-home .kpi-block--flare {
  border-color: rgba(255, 90, 43, .55);
  background: rgba(255, 90, 43, .14);
}

.page-home .kpi-block__key {
  grid-area: key;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mist);
}

.page-home .kpi-block__num {
  grid-area: num;
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums slashed-zero;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--cyan);
}

.page-home .kpi-block--flare .kpi-block__num {
  color: var(--flare);
}

.page-home .kpi-block__team {
  grid-area: team;
  font-size: 15px;
  color: var(--paper);
}

.page-home .kpi-block__stamp {
  grid-area: stamp;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--amber);
  text-align: right;
}

.page-home .setpiece-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--grass-line);
}

.page-home .setpiece-foot p {
  margin: 0;
  flex: 1 1 240px;
  font-size: 15px;
  color: var(--text-soft);
}

/* ============ 03 收藏与战绩 ============ */
.page-home .saved-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .step-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  counter-reset: none;
}

.page-home .step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(28, 20, 16, .25);
}

.page-home .step-item:last-child {
  border-bottom: 0;
}

.page-home .step-item__no {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--flare-ink);
  color: var(--flare-ink);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
}

.page-home .step-item p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #33261a;
}

.page-home .note--ink {
  margin-bottom: 14px;
}

.page-home .saved-stamp {
  margin: 0;
  font-family: var(--font-data);
  font-size: 12.5px;
  letter-spacing: .02em;
  color: #6a5844;
}

.page-home .saved-figure {
  margin: 0;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.page-home .saved-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .saved-figure figcaption {
  padding: 8px 12px;
  background: var(--paper-2);
  border-top: 1px solid rgba(28, 20, 16, .2);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .02em;
  color: #55432f;
}

/* ============ 04 更新节奏时间线 ============ */
.page-home .timeline {
  list-style: none;
  margin: 0 0 22px;
  padding: 0 0 0 22px;
  border-left: 1px solid var(--grass);
}

.page-home .timeline__item {
  position: relative;
  padding: 0 0 22px 18px;
}

.page-home .timeline__item:last-child {
  padding-bottom: 0;
}

.page-home .timeline__mark {
  position: absolute;
  left: -27px;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background: var(--night);
}

.page-home .timeline__item h3 {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--paper);
}

.page-home .timeline__item p {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-soft);
}

.page-home .timeline-stamp {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--amber);
}

.page-home .flow-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-home .flow-meta__cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 14px;
  border: 1px solid var(--grass);
  border-radius: var(--radius-sm);
  background: rgba(6, 26, 22, .62);
}

.page-home .flow-meta__cell--flare {
  border-color: rgba(255, 90, 43, .5);
  background: rgba(255, 90, 43, .12);
}

.page-home .flow-meta__num {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
  color: var(--paper);
}

.page-home .flow-meta__cell--flare .flow-meta__num {
  color: var(--flare);
}

.page-home .flow-meta__key {
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--mist);
}

/* ============ 05 下一步 ============ */
.page-home .chapter--next {
  padding: 0 var(--gutter);
}

.page-home .chapter__body--solo {
  border-top: 2px solid var(--grass);
  padding-top: 26px;
}

.page-home .next-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.page-home .next-card a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  padding: 18px 20px;
  border: 1px solid var(--grass);
  border-radius: var(--radius);
  background: rgba(11, 36, 32, .72);
  color: var(--paper);
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}

.page-home .next-card a:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: rgba(20, 67, 58, .6);
  text-decoration: none;
}

.page-home .next-card__no {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--flare);
}

.page-home .next-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.page-home .next-card__foot {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--cyan);
}

.page-home .next-tail {
  margin: 0;
  font-size: 15px;
  color: var(--mist);
}

/* ============ 动效 ============ */
@keyframes home-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.page-home [data-reveal].is-visible {
  animation: home-rise var(--dur-block) var(--ease) both;
}

/* ============ 平板及以上 ============ */
@media (min-width: 720px) {
  .page-home .split {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: start;
  }

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

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

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

/* ============ 桌面端 ============ */
@media (min-width: 960px) {
  .page-home .chapter {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
  }

  .page-home .chapter__rail {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-bottom: 0;
    border-left: 2px solid var(--grass);
    padding: 4px 0 4px 14px;
    position: sticky;
    top: calc(var(--header-offset) + 12px);
  }

  .page-home .chapter--paper .chapter__rail {
    border-left-color: rgba(28, 20, 16, .28);
  }

  .page-home .chapter__no {
    font-size: 22px;
    letter-spacing: .04em;
  }

  .page-home .chapter__label {
    writing-mode: vertical-rl;
    letter-spacing: .34em;
  }

  .page-home .chapter--next .chapter__body--solo {
    grid-column: 2 / -1;
  }

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

  .page-home .hero-scores {
    grid-column: span 7;
  }

  .page-home .hero-setpiece {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
  }

  .page-home .hero-setpiece .btn {
    margin-top: auto;
    align-self: flex-start;
  }

  .page-home .saved-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
  }

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

  .page-home .score-row {
    grid-template-columns: 3.6em 1fr auto auto;
    grid-template-areas: "min team score added";
    gap: 0 14px;
  }

  .page-home .score-row__team--away {
    display: none;
  }
}

/* ============ 动效降级 ============ */
@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal].is-visible {
    animation: none;
  }

  .page-home .hero-scores,
  .page-home .hero-setpiece,
  .page-home .kpi-block,
  .page-home .next-card a {
    transition: none;
  }
}
