.page-home {
  padding-bottom: 72px;
}

.page-home .home-crumb {
  margin-bottom: 16px;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  padding: 6px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-home .hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 9.4vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.012em;
  color: var(--cream);
  margin: 14px 0 20px;
}

.page-home .hero__title em {
  display: inline-block;
  font-style: normal;
  color: var(--amber);
  position: relative;
}

.page-home .hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 4px;
  background: linear-gradient(90deg, var(--tactic), var(--amber));
  opacity: .6;
}

.page-home .hero__lede {
  font-size: 16px;
  line-height: 1.78;
  color: var(--slate-light);
  max-width: 40em;
  margin: 0;
}

.page-home .hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.page-home .hero__fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.page-home .hero__fact-num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
}

.page-home .hero__fact-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--slate-light);
}

.page-home .hero__aside {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.page-home .hero__figure {
  margin: 0;
  border: 1px solid var(--mid);
  overflow: hidden;
  position: relative;
}

.page-home .hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 42, 34, 0) 45%, rgba(11, 42, 34, .78) 100%);
  pointer-events: none;
}

.page-home .hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.85) contrast(1.06);
}

/* ---------- 章节索引 ---------- */
.page-home .chapter-index {
  border-top: 3px solid var(--amber);
  min-width: 0;
}

.page-home .density__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-home .chapter-index__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}

.page-home .chapter-index__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .09em;
  color: var(--slate-light);
}

.page-home .density__switch {
  display: inline-flex;
  border: 1px solid var(--mid);
}

.page-home .density__opt {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  padding: 5px 12px;
  color: var(--slate-light);
  cursor: pointer;
  user-select: none;
  transition: background .16s ease, color .16s ease;
}

.page-home #density-brief:checked ~ .chapter-index__bar .density__opt[for="density-brief"],
.page-home #density-full:checked ~ .chapter-index__bar .density__opt[for="density-full"] {
  background: var(--amber);
  color: var(--night);
}

.page-home #density-full:checked ~ .chapter-list .chapter__more {
  display: block;
}

.page-home .chapter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .chapter-list__item + .chapter-list__item {
  border-top: 1px solid var(--line-soft);
}

.page-home .chapter {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
  padding: 15px 12px 15px 11px;
  border-left: 4px solid var(--mid);
  text-decoration: none;
  color: inherit;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.page-home .chapter:hover,
.page-home .chapter:focus-visible {
  border-left-color: var(--tactic);
  background: rgba(53, 224, 139, .055);
  transform: translateX(3px);
}

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

.page-home .chapter__num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--amber);
}

.page-home .chapter__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.page-home .chapter__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .01em;
  color: var(--cream);
}

.page-home .chapter__brief {
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--slate-light);
}

.page-home .chapter__more {
  display: none;
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--cream);
  opacity: .82;
}

.page-home .chapter__stamp {
  grid-column: 2;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--slate-light);
  opacity: .55;
  transition: opacity .18s ease, color .18s ease;
}

.page-home .chapter:hover .chapter__stamp,
.page-home .chapter:focus-visible .chapter__stamp {
  opacity: 1;
  color: var(--glow);
}

/* ---------- 区块通用 ---------- */
.page-home .section {
  margin-top: 60px;
}

.page-home .section-head {
  max-width: 46em;
  margin-bottom: 26px;
}

.page-home .section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 5.6vw, 38px);
  line-height: 1.16;
  letter-spacing: -.005em;
  color: var(--cream);
  margin: 10px 0 12px;
}

.page-home .section-lede {
  font-size: 15px;
  line-height: 1.78;
  color: var(--slate-light);
  margin: 0;
}

.page-home .section-more {
  margin: 26px 0 0;
}

.page-home .score-rule {
  display: grid;
  grid-template-columns: 3fr 2fr;
  height: 3px;
  margin-top: 54px;
}

.page-home .score-rule span:first-child {
  background: var(--slate);
}

.page-home .score-rule span:last-child {
  background: var(--amber);
}

/* ---------- 伤停 ---------- */
.page-home .injury-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.page-home .injury-layout__figure {
  margin: 0;
  border: 1px solid var(--mid);
  overflow: hidden;
}

.page-home .injury-layout__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.page-home .injury-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.page-home .injury {
  background: var(--field);
  padding: 20px 18px 20px 20px;
  border-left: 4px solid var(--alert);
}

.page-home .injury__pos {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--alert);
}

.page-home .injury__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.34;
  color: var(--cream);
  margin: 8px 0 8px;
}

.page-home .injury__body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-light);
  margin: 0 0 10px;
}

.page-home .injury__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--amber-deep);
}

/* ---------- 号码 ---------- */
.page-home .number-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.page-home .number-cards {
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-home .jersey {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 18px;
  background: var(--field);
  border: 1px solid var(--mid);
  border-left: 4px solid var(--tactic);
}

.page-home .jersey__plate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 10px;
  background: var(--amber);
  color: var(--night);
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}

.page-home .jersey__plate--empty {
  background: transparent;
  color: var(--slate-light);
  border: 2px dashed var(--mid);
}

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

.page-home .jersey__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.36;
  color: var(--cream);
  margin: 10px 0 8px;
}

.page-home .jersey__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-light);
  margin: 0 0 10px;
}

.page-home .jersey__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--amber);
}

.page-home .number-layout__figure {
  margin: 0;
  border: 1px solid var(--mid);
  overflow: hidden;
}

.page-home .number-layout__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- 对比 ---------- */
.page-home .compare-figure {
  margin: 0 0 26px;
  border: 1px solid var(--mid);
  overflow: hidden;
}

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

.page-home .compare-split {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--mid);
}

.page-home .compare-side {
  padding: 22px 20px;
}

.page-home .compare-side--left {
  background: var(--slate);
  border-bottom: 1px solid var(--mid);
}

.page-home .compare-side--right {
  background: var(--field);
}

.page-home .compare-side__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--amber);
  margin: 0 0 16px;
}

.page-home .compare-side__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .compare-side__list li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--cream);
  padding-left: 14px;
  border-left: 2px solid var(--line);
}

.page-home .compare-side--right .compare-side__list li {
  color: var(--slate-light);
  border-left-color: var(--tactic);
}

/* ---------- 转会阶段 ---------- */
.page-home .phase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.page-home .phase {
  background: var(--field);
  padding: 24px 20px;
}

.page-home .phase__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--tactic);
  margin-bottom: 12px;
}

.page-home .phase__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--cream);
  margin: 0 0 10px;
}

.page-home .phase__text {
  font-size: 14px;
  line-height: 1.78;
  color: var(--slate-light);
  margin: 0;
}

/* ---------- 档案时间轴 ---------- */
.page-home .archive {
  border: 1px solid var(--mid);
  background: var(--field);
  padding: 26px 20px 22px;
}

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

.page-home .archive__rule {
  stroke: var(--tactic);
  stroke-width: 3;
  stroke-linecap: round;
}

.page-home .archive__tick {
  stroke: var(--slate-light);
  stroke-width: 2;
}

.page-home .archive__dot {
  fill: var(--mid);
  stroke: var(--night);
  stroke-width: 3;
}

.page-home .archive__node--anchor .archive__dot {
  fill: var(--amber);
}

.page-home .archive__node--anchor .archive__tick {
  stroke: var(--amber);
  stroke-width: 3;
}

.page-home .archive__year {
  fill: var(--cream);
  font-family: var(--font-mono);
  font-size: 21px;
  font-weight: 700;
  text-anchor: middle;
}

.page-home .archive__cap {
  fill: var(--slate-light);
  font-family: var(--font-mono);
  font-size: 15px;
  text-anchor: middle;
}

.page-home .archive__node--anchor .archive__cap {
  fill: var(--amber);
}

.page-home .archive__stats {
  list-style: none;
  margin: 26px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .archive__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .archive__stat-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
}

.page-home .archive__stat-label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--slate-light);
}

/* ---------- 联络带 ---------- */
.page-home .contact-strip {
  margin-top: 60px;
  border-top: 3px solid var(--alert);
  border-bottom: 1px solid var(--line);
  background: var(--slate);
}

.page-home .contact-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 30px 20px;
}

.page-home .contact-strip__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.34;
  color: var(--cream);
  margin: 0 0 10px;
}

.page-home .contact-strip__text p {
  font-size: 14px;
  line-height: 1.78;
  color: var(--cream);
  margin: 0;
  opacity: .88;
}

.page-home .contact-strip__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-home .hero__facts {
    gap: 18px 44px;
  }

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

  .page-home .contact-strip__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 32px 24px;
  }
}

@media (min-width: 760px) {
  .page-home .section {
    margin-top: 74px;
  }

  .page-home .injury-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 28px;
    align-items: start;
  }

  .page-home .number-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: 28px;
    align-items: start;
  }

  .page-home .compare-split {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .compare-side--left {
    border-bottom: 0;
    border-right: 1px solid var(--mid);
  }

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

@media (min-width: 900px) {
  .page-home .hero {
    padding-bottom: 62px;
  }

  .page-home .hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 44px;
    align-items: start;
  }

  .page-home .hero__figure img {
    aspect-ratio: 4 / 5;
  }

  .page-home .section-head {
    margin-left: 22px;
  }

  .page-home .injury-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }

  .page-home .number-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .page-home .archive {
    padding: 34px 32px 28px;
  }

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

@media (min-width: 1100px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 56px;
  }

  .page-home .hero__aside {
    transform: translateX(26px);
  }

  .page-home .section-head {
    margin-left: 44px;
  }

  .page-home .phase {
    padding: 28px 26px;
  }
}
</PAGE_CSS>>>
