.page-home {
  --ph-pad: clamp(24px, 5vw, 88px);
  display: block;
  overflow-x: clip;
  background: var(--field);
  color: var(--paper);
  font-family: var(--font-sans);
}

.page-home img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---------- 页面上下文 ---------- */
.page-home .crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 22px 0 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--note);
}

.page-home .crumbs a {
  color: var(--note);
  text-decoration: none;
  transition: color .25s var(--ease);
}

.page-home .crumbs a:hover {
  color: var(--signal);
}

.page-home .crumbs [aria-current] {
  color: var(--silver);
}

/* ---------- 首屏：索引与主题声明 ---------- */
.home-open {
  padding-top: clamp(26px, 5vw, 60px);
}

.home-open__inner {
  display: grid;
  gap: clamp(28px, 5vw, 52px);
}

.home-open__kicker {
  position: relative;
  margin: 0 0 18px;
  padding-left: 34px;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--signal);
}

.home-open__kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--flare);
}

.home-open__title {
  margin: 0 0 22px;
  max-width: 14em;
}

.home-open__lede {
  margin: 0 0 28px;
  max-width: 34em;
  color: var(--ink-soft);
}

.home-open__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-open__aside {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 16px;
  background: var(--turf);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.home-open__fig {
  overflow: hidden;
  border-radius: var(--radius);
}

.home-open__fig img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(.85) contrast(1.04);
}

.home-open__aside-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-dim);
}

.home-open__jump {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--ember);
  text-decoration: none;
  transition: color .25s var(--ease);
}

.home-open__jump:hover {
  color: var(--signal);
}

@media (min-width: 900px) {
  .home-open__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: end;
    gap: clamp(40px, 5vw, 80px);
  }
}

/* ---------- 章节骨架 ---------- */
.page-home .chapter {
  padding-top: clamp(56px, 9vw, 132px);
}

.chapter__head {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(26px, 4vw, 52px);
}

.chapter__rail {
  display: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  letter-spacing: .08em;
  color: rgba(199, 206, 208, .17);
}

.chapter__num {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--flare);
}

.chapter__title {
  margin: 0 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-strong);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.16;
  letter-spacing: -.01em;
  color: var(--paper);
}

.chapter__lede {
  margin: 0;
  max-width: 44em;
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-dim);
}

@media (min-width: 1100px) {
  .chapter__head {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 0 24px;
  }

  .chapter__rail {
    display: block;
    grid-column: 1;
    grid-row: 1;
    height: 170px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .chapter__meta {
    grid-column: 2;
    grid-row: 1;
  }
}

/* ---------- 01 三条主线索引 ---------- */
.season-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.season-tabs__tab {
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--silver);
  text-decoration: none;
  transition: border-color .28s var(--ease), color .28s var(--ease), background .28s var(--ease);
}

.season-tabs__tab:hover,
.season-tabs__tab.is-active {
  border-color: var(--flare);
  color: var(--flare);
  background: rgba(255, 75, 31, .07);
}

.lines {
  display: grid;
  gap: 16px;
}

.line {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px 20px 20px;
  background: var(--turf);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.line:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.line__no {
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--signal);
}

.line__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .01em;
}

.line__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-dim);
}

.line__facts {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.line__facts li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.line__facts .mono {
  font-size: 15px;
  color: var(--ember);
}

.line__link {
  width: fit-content;
  font-size: 13px;
  color: var(--signal);
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 224, 200, .3);
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.line__link:hover {
  color: var(--paper);
  border-color: var(--paper);
}

@media (min-width: 760px) {
  .lines {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ---------- 02 主场地图 ---------- */
.map-stage {
  display: grid;
  gap: 18px;
}

.map-stage__visual {
  position: relative;
  order: -1;
  min-height: 280px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.map-stage__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
  filter: saturate(.55) contrast(1.06);
}

.map-stage__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-stage__svg .zone {
  fill: none;
  stroke: rgba(199, 206, 208, .32);
  stroke-width: 1;
  transition: stroke .3s var(--ease), stroke-width .3s var(--ease), fill .3s var(--ease);
}

.map-stage__svg .zone--turf {
  stroke: rgba(53, 224, 200, .38);
}

.map-stage__svg .zone--mark {
  stroke: rgba(199, 206, 208, .2);
}

.map-stage__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 6px 10px;
  background: rgba(11, 13, 12, .8);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--paper);
}

.map-stage__panel {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 22px 20px;
  background: var(--turf);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-stage__panel h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: .01em;
}

.map-stage__panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.76;
  color: var(--ink-dim);
}

.map-legend {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.map-legend__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  transition: background .25s var(--ease), color .25s var(--ease);
}

.map-legend__item:hover {
  background: rgba(53, 224, 200, .07);
  color: var(--paper);
}

.map-legend__swatch {
  width: 18px;
  height: 10px;
  border: 1px solid var(--silver);
  border-radius: 1px;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.map-legend__item:hover .map-legend__swatch {
  border-color: var(--signal);
  background: rgba(53, 224, 200, .28);
  transform: translateY(-1px);
}

.map-legend__item--turf .map-legend__swatch { background: rgba(53, 224, 200, .22); }
.map-legend__item--stand .map-legend__swatch { background: rgba(199, 206, 208, .2); }
.map-legend__item--passage .map-legend__swatch { background: rgba(255, 145, 71, .22); }
.map-legend__item--bench .map-legend__swatch { background: rgba(255, 75, 31, .22); }
.map-legend__item--media .map-legend__swatch { background: rgba(241, 245, 242, .22); }
.map-legend__item--outer .map-legend__swatch { background: rgba(59, 46, 74, .5); }

.map-stage__panel:has(.map-legend__item--turf:hover) ~ .map-stage__visual .zone--turf,
.map-stage__panel:has(.map-legend__item--stand:hover) ~ .map-stage__visual .zone--stand,
.map-stage__panel:has(.map-legend__item--passage:hover) ~ .map-stage__visual .zone--passage,
.map-stage__panel:has(.map-legend__item--bench:hover) ~ .map-stage__visual .zone--bench,
.map-stage__panel:has(.map-legend__item--media:hover) ~ .map-stage__visual .zone--media,
.map-stage__panel:has(.map-legend__item--outer:hover) ~ .map-stage__visual .zone--outer {
  stroke: var(--signal);
  stroke-width: 2;
  fill: rgba(53, 224, 200, .09);
}

@media (min-width: 960px) {
  .map-stage {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 0;
    align-items: stretch;
    margin-right: calc(-1 * var(--gutter) - 5vw);
  }

  .map-stage__visual {
    grid-column: 1;
    grid-row: 1;
    order: 0;
    min-height: 380px;
  }

  .map-stage__panel {
    grid-column: 2;
    grid-row: 1;
    border-left: none;
  }
}

/* ---------- 03 奖项与射门 ---------- */
.stats-layout {
  display: grid;
  gap: 22px;
}

.awards {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 22px 20px;
  background: var(--turf);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.awards__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: .01em;
}

.awards__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.awards__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
  color: var(--ink-dim);
}

.awards .btn {
  width: fit-content;
}

.shots {
  display: grid;
  gap: 14px;
  align-content: start;
}

.shots__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: .01em;
}

.page-home .shots .table-scroll {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 13, 12, .35);
}

.page-home .shots .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.page-home .shots .data-table th,
.page-home .shots .data-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.page-home .shots .data-table thead th {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--note);
  background: rgba(28, 60, 46, .7);
}

.page-home .shots .data-table tbody th {
  font-weight: 600;
  color: var(--ink-soft);
}

.page-home .shots .data-table td.num,
.page-home .shots .data-table th.num {
  text-align: right;
  font-family: var(--font-mono);
}

.page-home .shots .data-table td.hl {
  color: var(--flare);
  font-weight: 700;
}

.page-home .shots .data-table tbody tr:hover {
  background: rgba(53, 224, 200, .06);
}

.page-home .shots .data-table caption {
  caption-side: bottom;
  padding: 10px 12px 0;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--note);
}

@media (min-width: 900px) {
  .stats-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
    gap: 24px;
  }
}

/* ---------- 04 抢断读数 ---------- */
.tackle {
  display: grid;
  gap: 22px;
}

.tackle__board {
  display: grid;
  gap: 16px;
}

.tackle__pair {
  display: grid;
  gap: 12px;
}

.tackle__col {
  display: grid;
  gap: 10px;
  padding: 20px 18px;
  background: var(--turf);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.tackle__col--alt {
  background: rgba(28, 60, 46, .55);
}

.tackle__col .tag {
  width: fit-content;
}

.tackle__read {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--paper);
}

.tackle__semi {
  color: var(--flare);
  font-size: .78em;
}

.tackle__hint {
  margin: 0;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--note);
}

.tackle__meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--note);
}

.tackle__lead {
  margin: 0;
  max-width: 44em;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.read-note {
  background: rgba(11, 13, 12, .45);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.read-note summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
  cursor: pointer;
  list-style: none;
}

.read-note summary::-webkit-details-marker {
  display: none;
}

.read-note summary::after {
  content: "＋";
  color: var(--flare);
  font-family: var(--font-mono);
}

.read-note[open] summary::after {
  content: "－";
}

.read-note p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-dim);
}

.tackle__fig {
  display: grid;
  gap: 8px;
  margin: 0;
}

.tackle__frame {
  overflow: hidden;
  border-radius: var(--radius);
}

.tackle__frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.8) contrast(1.04);
}

@media (min-width: 620px) {
  .tackle__pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* ---------- 05 月度复盘 ---------- */
.notes__fig {
  display: grid;
  gap: 8px;
  margin: 0 0 30px;
}

.notes__frame {
  overflow: hidden;
  border-radius: var(--radius);
}

.notes__frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.7) brightness(.92);
}

.notes__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.notes__head h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: .01em;
}

.notes__conclusions {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  counter-reset: nc;
}

.notes__conclusions li {
  position: relative;
  counter-increment: nc;
  padding: 16px 0 16px 44px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-soft);
}

.notes__conclusions li::before {
  content: "0" counter(nc);
  position: absolute;
  left: 0;
  top: 19px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--flare);
}

.notes__sub {
  margin: 0 0 16px;
  font-size: 16px;
  letter-spacing: .01em;
}

.notes__cards {
  display: grid;
  gap: 12px;
}

.dcard {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 16px;
  background: var(--turf);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease);
}

.dcard:hover {
  border-color: var(--line-strong);
}

.dcard__label {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--note);
}

.dcard__value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--paper);
}

.dcard__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .03em;
  color: var(--note);
}

.notes__more {
  margin-top: 28px;
}

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

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

/* ---------- 06 跨联赛对照 ---------- */
.cross {
  display: grid;
  gap: 24px;
}

.cross__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: cs;
}

.cross__steps li {
  position: relative;
  counter-increment: cs;
  padding: 20px 0 20px 52px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-dim);
}

.cross__steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.cross__steps li::before {
  content: "0" counter(cs);
  position: absolute;
  left: 0;
  top: 23px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--signal);
}

.cross__steps strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  color: var(--paper);
}

.cross__aside {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px 20px;
  background: var(--turf);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.cross__aside h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: .01em;
}

.cross__aside p {
  margin: 0;
  font-size: 14px;
  line-height: 1.76;
  color: var(--ink-dim);
}

.cross__links {
  display: grid;
  gap: 10px;
}

.cross__links a {
  width: fit-content;
  font-size: 13px;
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 145, 71, .32);
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.cross__links a:hover {
  color: var(--signal);
  border-color: var(--signal);
}

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

/* ---------- 收尾 ---------- */
.closing {
  margin-top: clamp(72px, 11vw, 150px);
  padding: clamp(44px, 7vw, 88px) 0;
  background: var(--ink);
  border-top: 1px solid var(--line-strong);
}

.closing__inner {
  display: grid;
  gap: 16px;
}

.closing__inner h2 {
  margin: 0;
  max-width: 18em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--paper);
}

.closing__inner p {
  margin: 0;
  max-width: 42em;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-dim);
}

.closing__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ---------- 窄屏收口 ---------- */
@media (max-width: 520px) {
  .home-open__aside {
    padding: 14px;
  }

  .map-stage__panel {
    padding: 18px 14px;
  }

  .tackle__read {
    font-size: 30px;
  }

  .cross__steps li {
    padding-left: 40px;
  }
}
<<<END>>>
