.page-home {
  --home-rail-w: 88px;
  --home-line: rgba(200, 162, 43, 0.36);
  --home-hair: rgba(44, 58, 52, 0.16);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background-color: var(--paper-50);
  background-image:
    repeating-linear-gradient(12deg, rgba(29, 74, 62, 0.05) 0 1px, transparent 1px 15px),
    linear-gradient(rgba(44, 58, 52, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 58, 52, 0.05) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  color: var(--slate-700);
}

/* ---------- 阅读进度条 ---------- */
.page-home .read-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  background: rgba(11, 21, 18, 0.14);
  z-index: 90;
  pointer-events: none;
}
.page-home .read-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--coral-500));
  transition: width 120ms linear;
}

/* ---------- 左侧章节时间轴 ---------- */
.page-home .rail {
  position: sticky;
  top: 0;
  z-index: 40;
  align-self: start;
  padding: 10px var(--gutter);
  background: var(--ink-950);
  border-bottom: 1px solid var(--home-line);
  overflow-x: auto;
  scrollbar-width: none;
}
.page-home .rail::-webkit-scrollbar {
  display: none;
}
.page-home .rail__list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .rail-link {
  display: inline-block;
  padding: 6px 12px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--moss-200);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease);
}
.page-home .rail-link:hover,
.page-home .rail-link:focus-visible {
  color: var(--gold-200);
  border-color: var(--home-line);
}
.page-home .rail-link.is-current {
  color: var(--ink-950);
  background: var(--gold-500);
  border-color: var(--gold-500);
  font-weight: 700;
}

/* ---------- 画板 ---------- */
.page-home .home-flow {
  min-width: 0;
}
.page-home .panel {
  position: relative;
  padding: clamp(52px, 8vw, 100px) var(--gutter);
  scroll-margin-top: 112px;
}
.page-home .panel__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.page-home .panel--ink {
  background: var(--ink-950);
  color: #e7e2d5;
}
.page-home .panel--moss {
  background: var(--moss-700);
  color: var(--paper-50);
}
.page-home .panel--alt {
  background: var(--paper-200);
}
.page-home .panel__num {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  left: var(--gutter);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold-500);
}
.page-home .panel__note {
  display: none;
}

/* ---------- 通用排版 ---------- */
.page-home .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(185, 207, 197, 0.78);
}
.page-home .eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-500);
}
.page-home .panel--ink .eyebrow,
.page-home .panel--moss .eyebrow {
  color: var(--gold-200);
}
.page-home .section-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink-950);
}
.page-home .panel--ink .section-title,
.page-home .panel--moss .section-title {
  color: var(--paper-50);
}
.page-home .prose {
  max-width: 42ch;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.85;
}
.page-home .prose--wide {
  max-width: 62ch;
}
.page-home .panel--moss .prose {
  color: rgba(247, 242, 231, 0.9);
}

/* ---------- 01 拼贴首屏 ---------- */
.page-home .collage {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 4px;
}
.page-home .collage__main {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-soft);
  background: var(--ink-800);
}
.page-home .collage__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-home .collage__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 21, 18, 0.1) 0%, rgba(11, 21, 18, 0.78) 58%, rgba(11, 21, 18, 0.96) 100%),
    linear-gradient(90deg, rgba(11, 21, 18, 0.65) 0%, rgba(11, 21, 18, 0) 70%);
}
.page-home .collage__main-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(22px, 3vw, 34px);
}
.page-home .collage__main-body h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.65rem, 4.4vw, 2.7rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--paper-50);
}
.page-home .collage__main-body .lede {
  max-width: 52ch;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247, 242, 231, 0.86);
}
.page-home .collage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .collage__tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 148px;
  padding: 20px;
  border-radius: var(--radius-card);
  border: 1px solid var(--home-line);
}
.page-home .collage__leagues {
  background: var(--moss-700);
  color: var(--paper-50);
}
.page-home .collage__corners {
  background: var(--gold-200);
  color: var(--ink-950);
  border-color: rgba(11, 21, 18, 0.14);
}
.page-home .collage__injuries {
  background: var(--ink-800);
  color: var(--paper-200);
}
.page-home .collage__coaches {
  background: var(--ink-800);
  color: var(--paper-200);
}
.page-home .collage__pass {
  background: var(--paper-50);
  color: var(--slate-700);
  border-color: rgba(11, 21, 18, 0.16);
}
.page-home .tile__kicker {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  opacity: 0.78;
}
.page-home .tile__big {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.page-home .tile__unit {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  opacity: 0.82;
}
.page-home .tile__foot {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.65;
  opacity: 0.82;
}
.page-home .tile__link {
  align-self: flex-start;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--volt-600);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.page-home .tile__link:hover,
.page-home .tile__link:focus-visible {
  color: var(--moss-700);
}

/* ---------- 02 战报流 ---------- */
.page-home .report-feed {
  margin: 30px 0 26px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--home-hair);
}
.page-home .report-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  padding: 20px 14px;
  border-bottom: 1px solid var(--home-hair);
  transition: background 180ms var(--ease), box-shadow 180ms var(--ease);
}
.page-home .report-item:hover {
  background: rgba(200, 162, 43, 0.09);
  box-shadow: inset 3px 0 0 var(--gold-500);
}
.page-home .report-item__round {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--slate-500);
}
.page-home .report-item__score {
  justify-self: start;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--gold-200);
  color: var(--ink-950);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.page-home .report-item__title {
  margin: 0 0 6px;
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--ink-950);
}
.page-home .report-item__excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-700);
}
.page-home .report-item .tag {
  justify-self: start;
}

/* ---------- 03 伤停雷达 ---------- */
.page-home .radar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 26px;
}
.page-home .radar {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.page-home .radar::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: conic-gradient(
    from -90deg,
    rgba(31, 107, 255, 0.34),
    rgba(200, 162, 43, 0.26),
    rgba(255, 106, 71, 0.2),
    rgba(31, 107, 255, 0.34)
  );
  filter: blur(16px);
  opacity: 0.6;
}
.page-home .radar__svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.page-home .radar__ring {
  fill: none;
  stroke: rgba(185, 207, 197, 0.4);
  stroke-width: 1;
}
.page-home .radar__ring--inner {
  stroke: rgba(185, 207, 197, 0.22);
  stroke-dasharray: 4 5;
}
.page-home .radar__data {
  fill: rgba(31, 107, 255, 0.24);
  stroke: var(--volt-600);
  stroke-width: 1.6;
}
.page-home .radar__dot {
  fill: var(--gold-500);
}
.page-home .injury-list {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.page-home .injury-list__item {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(247, 242, 231, 0.22);
}
.page-home .injury-list__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--moss-200);
}
.page-home .injury-list__dot--coral {
  background: var(--coral-500);
}
.page-home .injury-list__dot--gold {
  background: var(--gold-500);
}
.page-home .injury-list__label {
  font-size: 14.5px;
  line-height: 1.6;
}
.page-home .injury-list__count {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gold-200);
}

/* ---------- 04 季票 ---------- */
.page-home .pass-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}
.page-home .pass-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-soft);
  display: block;
}
.page-home .pass-tiers {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 24px 0 26px;
}
.page-home .tier-card {
  padding: 20px;
  border-radius: var(--radius-card);
}
.page-home .tier-card--single {
  background: var(--paper-50);
  border: 1px solid rgba(200, 162, 43, 0.5);
}
.page-home .tier-card--multi {
  background: var(--ink-950);
  color: var(--paper-200);
  border: 1px solid var(--moss-500);
}
.page-home .tier-card__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: inherit;
}
.page-home .tier-card--single .tier-card__title {
  color: var(--ink-950);
}
.page-home .tier-card__list {
  margin: 0;
  padding: 0 0 0 18px;
  list-style: none;
}
.page-home .tier-card__list li {
  position: relative;
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.7;
}
.page-home .tier-card__list li::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* ---------- 05 主客场与教练 ---------- */
.page-home .perf-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  margin-top: 26px;
}
.page-home .perf-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
}
.page-home .perf-metrics {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .perf-metric {
  padding: 12px 16px;
  background: rgba(247, 242, 231, 0.92);
  border-left: 3px solid var(--moss-500);
  border-radius: 0 12px 12px 0;
}
.page-home .perf-metric__name {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--moss-700);
}
.page-home .perf-metric__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--slate-500);
}
.page-home .coach-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--home-hair);
}
.page-home .coach-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
}
.page-home .coach-copy__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 900;
  line-height: 1.35;
  color: var(--ink-950);
}

/* ---------- 06 赛季阶段 ---------- */
.page-home .season-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.page-home .season-stage {
  position: relative;
  padding: 24px 22px 22px;
  background: var(--ink-800);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-card);
}
.page-home .season-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 44px;
  height: 2px;
  background: var(--gold-500);
}
.page-home .season-stage__key {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold-500);
}
.page-home .season-stage__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--paper-50);
}
.page-home .season-stage__body {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(233, 225, 208, 0.82);
}
.page-home .season-stage__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-200);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.page-home .season-stage__link:hover,
.page-home .season-stage__link:focus-visible {
  color: var(--coral-500);
}
.page-home .season-note {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(233, 225, 208, 0.78);
}
.page-home .season-note a {
  color: var(--gold-200);
}

/* ---------- 07 合作与联系 ---------- */
.page-home .partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.page-home .partner-card {
  padding: 22px;
  border-radius: var(--radius-card);
  background: var(--moss-700);
  color: var(--paper-50);
}
.page-home .partner-card:nth-child(2) {
  background: var(--ink-800);
  color: var(--paper-200);
}
.page-home .partner-card:nth-child(3) {
  background: var(--gold-200);
  color: var(--ink-950);
}
.page-home .partner-card__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 900;
  color: inherit;
}
.page-home .partner-card__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}
.page-home .contact-strip {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--ink-950);
  color: var(--paper-200);
}
.page-home .contact-strip__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(233, 225, 208, 0.85);
}
.page-home .contact-strip__line {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(185, 207, 197, 0.85);
}
.page-home .contact-strip__val {
  margin-left: 8px;
  font-size: 14.5px;
  color: var(--paper-50);
  word-break: break-all;
}
.page-home .contact-strip .btn {
  justify-self: start;
}
.page-home .about-hint {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-500);
}
.page-home .about-hint a {
  color: var(--volt-600);
  font-weight: 600;
}

/* ---------- 收尾呼吸区 ---------- */
.page-home .home-outro {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  background: var(--paper-50);
  border-top: 1px solid var(--home-line);
}
.page-home .outro-line {
  max-width: 26ch;
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.25rem, 2.4vw, 1.95rem);
  line-height: 1.55;
  color: var(--ink-950);
}
.page-home .outro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- 媒体基础 ---------- */
.page-home .media {
  margin: 0;
}
.page-home .media__caption {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--slate-500);
}
.page-home .panel--moss .media__caption {
  color: rgba(233, 225, 208, 0.8);
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-home .pass-tiers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .report-item {
    grid-template-columns: 92px 100px minmax(0, 1fr);
    align-items: center;
  }
  .page-home .report-item .tag {
    grid-column: 3;
    justify-self: start;
  }
}

@media (min-width: 780px) {
  .page-home .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-home .contact-strip {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px 28px;
  }
  .page-home .contact-strip__text {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .page-home .collage {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 196px 196px auto;
    grid-template-areas:
      "hero hero hero leagues"
      "hero hero hero corners"
      "injuries coaches pass pass";
    gap: 16px;
  }
  .page-home .collage__main {
    grid-area: hero;
    min-height: 408px;
  }
  .page-home .collage__leagues {
    grid-area: leagues;
  }
  .page-home .collage__corners {
    grid-area: corners;
  }
  .page-home .collage__injuries {
    grid-area: injuries;
  }
  .page-home .collage__coaches {
    grid-area: coaches;
  }
  .page-home .collage__pass {
    grid-area: pass;
  }
  .page-home .radar-layout {
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 54px;
  }
  .page-home .perf-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 40px;
    align-items: center;
  }
  .page-home .coach-strip {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 40px;
  }
  .page-home .season-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
  .page-home .report-item {
    grid-template-columns: 92px 100px minmax(0, 1fr) auto;
    align-items: center;
  }
  .page-home .report-item .tag {
    grid-column: auto;
    justify-self: end;
  }
}

@media (min-width: 1024px) {
  .page-home {
    grid-template-columns: var(--home-rail-w) minmax(0, 1fr);
    align-items: start;
  }
  .page-home .rail {
    top: 0;
    height: 100vh;
    padding: 34px 0;
    border-bottom: 0;
    border-right: 1px solid var(--home-line);
    overflow: visible;
  }
  .page-home .rail::before {
    content: "";
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(200, 162, 43, 0.4), transparent);
  }
  .page-home .rail__list {
    position: relative;
    z-index: 1;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .page-home .rail-link {
    padding: 8px 6px;
    font-size: 11px;
    border-radius: 8px;
    text-align: center;
  }
  .page-home .pass-split {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 46px;
    align-items: start;
  }
}

@media (min-width: 1240px) {
  .page-home .panel__note {
    display: block;
    position: absolute;
    top: 62px;
    right: 20px;
    writing-mode: vertical-rl;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--gold-500);
    opacity: 0.75;
  }
  .page-home .panel--ink .panel__note,
  .page-home .panel--moss .panel__note {
    color: var(--gold-500);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .read-progress__bar,
  .page-home .report-item,
  .page-home .rail-link {
    transition: none;
  }
}
<<<END>>>
