.page-home {
  --home-rail-w: 108px;
  --home-line: rgba(237, 242, 238, .12);
  display: block;
  background: var(--ink-900);
  color: var(--cold);
  overflow-x: hidden;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  padding: calc(var(--header-h) + 32px) 0 64px;
  background:
    radial-gradient(120% 70% at 82% 0%, rgba(62, 142, 90, .16), transparent 62%),
    var(--ink-900);
  overflow: hidden;
}

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(237, 242, 238, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 242, 238, .035) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.page-home .hero__crumb {
  position: relative;
  margin-bottom: 20px;
}

.page-home .hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.page-home .hero__rail {
  display: none;
}

.page-home .hero__rail-title {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--text-55);
}

.page-home .hero__rail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .hero__rail-link {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-70);
  text-decoration: none;
  transition: color .2s var(--ease);
}

.page-home .hero__rail-link:hover,
.page-home .hero__rail-link:focus-visible {
  color: var(--cold);
}

.page-home .hero__rail-link[aria-current="true"] {
  color: var(--signal);
}

.page-home .hero__rail-code {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--turf);
}

.page-home .hero__focus {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 400px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-line);
  background: var(--green-900);
  overflow: hidden;
}

.page-home .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.3) brightness(.52) contrast(1.06);
}

.page-home .hero__focus::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 13, .1) 0%, rgba(10, 15, 13, .78) 66%, rgba(10, 15, 13, .96) 100%);
  pointer-events: none;
}

.page-home .hero__body {
  position: relative;
  z-index: 2;
  padding: 26px 22px 28px;
}

.page-home .hero__title {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4.4vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--cold);
}

.page-home .hero__num {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: clamp(50px, 9.4vw, 104px);
  line-height: .94;
  letter-spacing: -.02em;
  color: var(--signal);
}

.page-home .hero__dash {
  display: inline-block;
  margin: 0 .06em;
  font-size: .52em;
  color: var(--amber);
  transform: translateY(-.22em);
}

.page-home .hero__lede {
  max-width: 46ch;
  margin: 0 0 22px;
  color: var(--text-70);
  font-size: 15.5px;
  line-height: 1.75;
}

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

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

.page-home .hero__stat {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(8px);
}

.page-home .hero__stat-label {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--text-55);
}

.page-home .hero__stat-num {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--cold);
}

.page-home .hero__stat-num span {
  margin-left: 5px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text-55);
}

.page-home .hero__stat-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-55);
}

/* ---------- 章节通用 ---------- */
.page-home .section {
  padding: 68px 0;
}

.page-home .band--cream {
  color: var(--brown);
}

.page-home .band--cream .lede,
.page-home .band--cream p {
  color: rgba(43, 28, 18, .78);
}

.page-home .chapter__num {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--signal);
}

.page-home .chapter__title {
  margin: 0 0 14px;
  font-size: clamp(22px, 3.1vw, 32px);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: -.005em;
}

.page-home .section__head .lede {
  max-width: 62ch;
  margin: 0;
}

/* ---------- 01 联赛档位 ---------- */
.page-home .leagues__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.page-home .league-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--green-900);
  border: 1px solid var(--home-line);
  overflow: hidden;
  transition: transform .24s var(--ease), border-color .24s var(--ease));
}

.page-home .league-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--turf);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .34s var(--ease);
}

.page-home .league-card:hover,
.page-home .league-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--glass-line);
}

.page-home .league-card:hover::before,
.page-home .league-card:focus-within::before {
  transform: scaleX(1);
}

.page-home .league-card--lead::before {
  background: var(--signal);
}

.page-home .league-card--lead {
  background: linear-gradient(180deg, rgba(255, 107, 26, .1) 0%, var(--green-900) 58%);
}

.page-home .league-card__code {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--turf);
}

.page-home .league-card--lead .league-card__code {
  color: var(--signal);
}

.page-home .league-card__name {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cold);
}

.page-home .league-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-70);
}

.page-home .league-card__more {
  margin: 4px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--home-line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--text-55);
}

.page-home .league-card__bar {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--amber);
  transition: max-height .3s var(--ease), opacity .3s var(--ease), margin .3s var(--ease);
}

.page-home .league-card:hover .league-card__bar,
.page-home .league-card:focus-within .league-card__bar {
  max-height: 72px;
  margin-top: 6px;
  opacity: 1;
}

/* ---------- 宽幅数据带 ---------- */
.page-home .wide-band {
  position: relative;
  overflow: hidden;
  background: var(--ink-800);
}

.page-home .wide-band__img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: saturate(.3) brightness(.6) contrast(1.05);
}

.page-home .wide-band__inner {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding: 20px 24px;
  background: linear-gradient(0deg, rgba(10, 15, 13, .92) 0%, rgba(10, 15, 13, 0) 100%);
}

.page-home .wide-band__item {
  min-width: 180px;
}

.page-home .wide-band__num {
  margin: 0 0 4px;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: var(--signal);
}

.page-home .wide-band__num span {
  font-size: 18px;
  color: var(--amber);
}

.page-home .wide-band__label {
  margin: 0;
  max-width: 30ch;
  font-size: 12.5px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: var(--text-55);
}

/* ---------- 02 核心指标 ---------- */
.page-home .metrics__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}

.page-home .metrics__items {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin: 26px 0 28px;
}

.page-home .metric {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(43, 28, 18, .045);
  border: 1px solid rgba(43, 28, 18, .16);
  border-top: 3px solid var(--turf);
}

.page-home .metric--signal {
  border-top-color: var(--signal);
}

.page-home .metric__code {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--turf);
}

.page-home .metric--signal .metric__code {
  color: var(--signal);
}

.page-home .metric__name {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
}

.page-home .metric__text {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(43, 28, 18, .78);
}

.page-home .metric .caption {
  margin: 0;
  color: rgba(43, 28, 18, .55);
}

.page-home .metrics__media {
  margin: 0;
}

/* ---------- 03 阵容成本 ---------- */
.page-home .squad__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.page-home .squad__media {
  margin: 0;
}

.page-home .tabs__bar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: var(--glass);
  border: 1px solid var(--glass-line);
}

.page-home .tab {
  appearance: none;
  border: 0;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-70);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.page-home .tab:hover {
  color: var(--cold);
}

.page-home .tab[aria-selected="true"] {
  background: var(--signal);
  color: #170A02;
  font-weight: 700;
}

.page-home .tabpanel[hidden] {
  display: none;
}

.page-home .squad__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .squad__item {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border-left: 3px solid var(--turf);
}

.page-home .squad__item--signal {
  border-left-color: var(--signal);
}

.page-home .squad__item-title {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--cold);
}

.page-home .squad__item-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-70);
}

/* ---------- 04 查档流程 ---------- */
.page-home #path {
  background: var(--ink-800);
}

.page-home .path__list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-home .path__step {
  padding: 24px 22px;
  border-radius: var(--radius);
  background: var(--green-900);
  border: 1px solid var(--home-line);
}

.page-home .path__num {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--signal);
}

.page-home .path__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--cold);
}

.page-home .path__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-70);
}

.page-home .path__links {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--text-55);
}

.page-home .path__links a {
  color: var(--signal);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 26, .4);
}

.page-home .path__links a:hover {
  border-bottom-color: var(--signal);
}

/* ---------- 05 更新节奏 ---------- */
.page-home .updates__list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.page-home .updates__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  padding: 22px 0;
  border-top: 1px solid var(--home-line);
}

.page-home .updates__time {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--signal);
}

.page-home .updates__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-70);
}

.page-home .updates__text a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 154, 45, .45);
}

/* ---------- 收尾 ---------- */
.page-home .closing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.page-home .closing__title {
  margin: 0 0 12px;
  color: var(--brown);
}

.page-home .closing__main .lede {
  margin: 0 0 22px;
  max-width: 40ch;
}

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

.page-home .closing__links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.page-home .closing__link {
  display: block;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(43, 28, 18, .18);
  background: rgba(43, 28, 18, .03);
  color: var(--brown);
  font-size: 14.5px;
  text-decoration: none;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.page-home .closing__link:hover {
  background: rgba(43, 28, 18, .08);
  border-color: rgba(43, 28, 18, .38);
  transform: translateX(3px);
}

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

  .page-home .hero__actions .btn,
  .page-home .closing__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-home .hero__focus {
    min-height: 360px;
  }

  .page-home .section {
    padding: 56px 0;
  }
}

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

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

  .page-home .wide-band__img {
    height: 260px;
  }
}

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

  .page-home .league-card--lead {
    grid-column: span 6;
  }

  .page-home .league-card--a,
  .page-home .league-card--b {
    grid-column: span 3;
  }

  .page-home .league-card--c,
  .page-home .league-card--d,
  .page-home .league-card--e {
    grid-column: span 4;
  }

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

  .page-home .updates__item {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 28px;
    align-items: baseline;
  }

  .page-home .wide-band__img {
    height: 320px;
  }
}

@media (min-width: 900px) {
  .page-home .section {
    padding: 96px 0;
  }

  .page-home .hero {
    padding: calc(var(--header-h) + 48px) 0 88px;
  }

  .page-home .hero__grid {
    grid-template-columns: var(--home-rail-w) minmax(0, 2fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
  }

  .page-home .hero__rail {
    display: block;
    position: sticky;
    top: calc(var(--header-h-compact) + 32px);
    padding-left: 14px;
    border-left: 1px solid var(--home-line);
  }

  .page-home .hero__focus {
    min-height: 520px;
  }

  .page-home .hero__body {
    padding: 32px 30px 34px;
  }

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

  .page-home .metrics__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
    gap: 52px;
    align-items: start;
  }

  .page-home .squad__grid {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 52px;
    align-items: start;
  }

  .page-home .closing__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 64px;
    align-items: start;
  }

  .page-home .wide-band__inner {
    padding: 28px 40px;
  }
}

@media (min-width: 1200px) {
  .page-home .hero__grid {
    grid-template-columns: var(--home-rail-w) minmax(0, 1.9fr) minmax(0, 1.1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .league-card,
  .page-home .league-card__bar,
  .page-home .league-card::before,
  .page-home .closing__link,
  .page-home .hero__rail-link {
    transition: none;
  }

  .page-home .league-card:hover {
    transform: none;
  }
}
<<<END>>>
