/* ===== 首页 · 赛季总览 ===== */
.page-home {
  --home-line: rgba(169, 180, 176, 0.22);
  --home-line-strong: rgba(169, 180, 176, 0.45);
  --home-pad: clamp(2.25rem, 6vw, 5rem);
  --home-streak: clamp(1.5rem, 3vw, 2.75rem);
  display: block;
}

.page-home .home-section__inner {
  padding-block: var(--home-pad);
}

.page-home .panel-title {
  margin: 0;
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.page-home .panel-head {
  display: grid;
  gap: 0.7rem;
  max-width: 64ch;
  margin-bottom: var(--home-streak);
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--home-line);
}

.page-home .section-cta {
  margin: 1.5rem 0 0;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: var(--pitch-900);
  border-bottom: 1px solid var(--home-line);
  position: relative;
}

.page-home .hero-narrative {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(2.5rem, 8vw, 5rem) var(--gutter);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(14, 58, 63, 0.95) 0%, rgba(11, 42, 33, 0) 62%),
    var(--pitch-900);
}

.page-home .hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  font-size: clamp(2.15rem, 7vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 200;
  color: var(--paper);
}

.page-home .hero-title .tone-word {
  font-weight: 800;
  color: var(--orange);
}

.page-home .hero-lede {
  margin: 0;
  max-width: 46ch;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--mist);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 1px;
  margin: 1.35rem 0 0;
  padding: 0;
  background: var(--home-line);
  border: 1px solid var(--home-line);
}

.page-home .hero-stats > div {
  background: var(--pitch-900);
  padding: 0.85rem 0.95rem 1rem;
}

.page-home .hero-stats dt {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: var(--mist);
}

.page-home .hero-stats dd {
  margin: 0.4rem 0 0;
  font-family: var(--font-mono);
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  color: var(--paper);
}

.page-home .hero-visual {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  background: var(--teal-800);
  isolation: isolate;
}

.page-home .hero-visual__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.75) contrast(1.08);
}

.page-home .hero-visual__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(169, 180, 176, 0.55);
}

.page-home .hero-trail {
  stroke: var(--volt);
  stroke-width: 2;
  stroke-dasharray: 7 6;
  opacity: 0.85;
}

.page-home .hero-trail--b {
  stroke: var(--orange);
  opacity: 0.72;
}

.page-home .hero-node {
  fill: var(--volt);
}

.page-home .hero-node--dim {
  fill: var(--mist);
  opacity: 0.85;
}

/* ---------- 内容主线 ---------- */
.page-home .home-section--pillars {
  background: var(--burgundy-700);
}

.page-home .pillar-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--home-line);
}

.page-home .pillar {
  position: relative;
  padding: 1.5rem 0.25rem 1.75rem;
  border-bottom: 1px solid var(--home-line);
  transition: background-color 0.28s ease, transform 0.28s ease;
}

.page-home .pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.page-home .pillar:hover,
.page-home .pillar:focus-within {
  background: rgba(255, 106, 43, 0.07);
  transform: translateY(-3px);
}

.page-home .pillar:hover::before,
.page-home .pillar:focus-within::before {
  width: 100%;
}

.page-home .pillar__index {
  margin: 0 0 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--brass);
}

.page-home .pillar__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
  font-weight: 700;
  color: var(--paper);
}

.page-home .pillar__text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(243, 241, 233, 0.82);
}

.page-home .pillar__link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
}

.page-home .pillar__link:hover {
  color: var(--orange);
}

/* ---------- 赛程 ---------- */
.page-home .home-section--fixtures {
  background: var(--pitch-900);
}

.page-home .fixtures-figure {
  margin: 0 0 var(--home-streak);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--home-line);
}

.page-home .fixtures-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.06);
}

.page-home .fixture-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--home-line);
}

.page-home .fixture {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.85rem;
  padding: 0.9rem 0.25rem;
  border-bottom: 1px solid var(--home-line);
  transition: background-color 0.25s ease;
}

.page-home .fixture:hover {
  background: rgba(180, 255, 58, 0.06);
}

.page-home .fixture__node {
  position: relative;
  align-self: stretch;
  justify-self: center;
  width: 1px;
  background: var(--home-line-strong);
}

.page-home .fixture__node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.55rem;
  height: 0.55rem;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--mist);
}

.page-home .fixture--now .fixture__node::after {
  background: var(--volt);
  box-shadow: 0 0 0 4px rgba(180, 255, 58, 0.18);
}

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

.page-home .fixture__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.page-home .fixture__time {
  color: var(--paper);
}

.page-home .fixture__title {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(243, 241, 233, 0.9);
}

/* ---------- 标签 ---------- */
.page-home .tag {
  display: inline-block;
  padding: 0.18rem 0.5rem;
  border: 1px solid var(--home-line-strong);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--mist);
}

.page-home .tag--now {
  border-color: var(--volt);
  color: var(--volt);
}

.page-home .tag--health {
  background: var(--volt);
  color: #0B2A21;
  border-color: transparent;
}

.page-home .tag--doubt {
  background: var(--brass);
  color: #0B2A21;
  border-color: transparent;
}

.page-home .tag--ban {
  background: var(--orange);
  color: #0B2A21;
  border-color: transparent;
}

.page-home .tag--long {
  background: var(--burgundy-700);
  color: var(--paper);
  border-color: transparent;
}

/* ---------- 伤停速览 ---------- */
.page-home .home-section--injury {
  background: var(--paper);
  color: var(--ink);
  --home-line: rgba(10, 20, 18, 0.15);
  --home-line-strong: rgba(10, 20, 18, 0.42);
}

.page-home .home-section--injury .index-label {
  color: var(--burgundy-700);
}

.page-home .home-section--injury .prose {
  color: rgba(10, 20, 18, 0.78);
}

.page-home .injury-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-streak);
}

.page-home .injury-figure {
  margin: 0;
  border: 1px solid var(--home-line-strong);
  overflow: hidden;
  background: var(--ink);
}

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

.page-home .media-caption {
  display: block;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--mist);
  background: var(--ink);
}

.page-home .status-legend {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  font-size: 0.8125rem;
  color: rgba(10, 20, 18, 0.75);
}

.page-home .status-legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.page-home .table-caption {
  caption-side: top;
  text-align: left;
  padding: 0 0 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: rgba(10, 20, 18, 0.55);
}

.page-home .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.page-home .data-table th,
.page-home .data-table td {
  padding: 0.6rem 0.7rem;
  text-align: left;
  border-bottom: 1px solid var(--home-line);
}

.page-home .data-table thead th {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: rgba(10, 20, 18, 0.6);
  border-bottom: 1px solid var(--home-line-strong);
}

.page-home .data-table tbody tr:hover {
  background: rgba(90, 26, 42, 0.06);
}

.page-home .data-table .num,
.page-home .data-table .mono {
  font-family: var(--font-mono);
}

.page-home .data-table .num {
  text-align: right;
}

.page-home .injury-note {
  margin: 1.25rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(10, 20, 18, 0.78);
}

.page-home .injury-note strong {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--burgundy-700);
}

/* ---------- 复盘对照 ---------- */
.page-home .home-section--review {
  background: var(--indigo-700);
}

.page-home .review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-streak);
}

.page-home .review-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--home-line-strong);
}

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

.page-home .review-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 1.5rem 0 0;
  border: 1px solid var(--home-line);
  border-top: 2px solid var(--orange);
}

.page-home .review-col {
  padding: 1.25rem 1.15rem 1.4rem;
}

.page-home .review-col + .review-col {
  border-top: 1px solid var(--home-line);
}

.page-home .review-col h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--paper);
}

.page-home .review-col--alt h3 {
  color: var(--volt);
}

.page-home .review-col ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(243, 241, 233, 0.82);
}

/* ---------- 覆盖与更新 ---------- */
.page-home .home-section--coverage {
  background: var(--pitch-900);
}

.page-home .coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 1px;
  background: var(--home-line);
  border: 1px solid var(--home-line);
}

.page-home .coverage-item {
  background: var(--teal-800);
  padding: 1.25rem 1.15rem 1.45rem;
}

.page-home .coverage-num {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--volt);
}

.page-home .coverage-unit {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--mist);
}

.page-home .coverage-text {
  margin: 0.9rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(243, 241, 233, 0.8);
}

.page-home .cadence-list {
  list-style: none;
  margin: var(--home-streak) 0 0;
  padding: 0;
  border-top: 1px solid var(--home-line);
}

.page-home .cadence-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.3rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--home-line);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(243, 241, 233, 0.86);
}

.page-home .cadence-list .mono {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--orange);
}

/* ---------- 收束 ---------- */
.page-home .home-section--cta {
  background: linear-gradient(115deg, var(--pitch-900) 0%, var(--teal-800) 52%, var(--burgundy-700) 100%);
  border-top: 2px solid var(--orange);
}

.page-home .cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.page-home .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-content: flex-start;
}

/* ---------- 响应式 ---------- */
@media (min-width: 40rem) {
  .page-home .review-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .review-col + .review-col {
    border-top: 0;
    border-left: 1px solid var(--home-line);
  }

  .page-home .cadence-list li {
    grid-template-columns: 11rem minmax(0, 1fr);
    align-items: baseline;
    gap: 1.25rem;
  }
}

@media (min-width: 52rem) {
  .page-home .cta-inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: end;
    gap: var(--home-streak);
  }

  .page-home .cta-actions {
    justify-content: flex-end;
  }
}

@media (min-width: 58rem) {
  .page-home .pillar-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .pillar {
    border-bottom: 0;
    border-right: 1px solid var(--home-line);
    padding: 1.75rem 1.35rem 2rem;
  }

  .page-home .pillar:first-child {
    padding-left: 0;
  }

  .page-home .pillar:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .page-home .injury-grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
    align-items: start;
  }

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

@media (min-width: 62rem) {
  .page-home .hero {
    grid-template-columns: minmax(0, 41fr) minmax(0, 59fr);
    min-height: 34rem;
  }

  .page-home .hero-visual {
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
    min-height: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .pillar,
  .page-home .pillar::before,
  .page-home .fixture {
    transition: none;
  }

  .page-home .pillar:hover,
  .page-home .pillar:focus-within {
    transform: none;
  }
}
