.page-home {
  --home-line-strong: var(--color-ink-soft);
  --home-node: var(--space-6);
  --home-lean: 0.9deg;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  background: var(--color-contrast-surface);
  color: var(--color-contrast-ink);
  overflow: hidden;
  padding: var(--section-y-lg) 0 var(--section-y);
}

.page-home .home-hero__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-home .home-hero__wash::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 66%;
  background: var(--color-primary);
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.9;
}

.page-home .home-hero__wash::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46%;
  height: 30%;
  background: var(--color-accent);
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.88;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

.page-home .home-hero__eyebrow {
  color: var(--color-primary);
  letter-spacing: 0.22em;
  font-weight: var(--weight-heading);
  text-transform: uppercase;
}

.page-home .home-hero__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-display);
  line-height: 0.94;
  letter-spacing: calc(var(--tracking-heading) * 1.5);
  margin: var(--space-3) 0 var(--space-4);
  color: var(--color-contrast-ink);
  text-wrap: balance;
}

.page-home .home-hero__lede {
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-contrast-ink);
  opacity: 0.86;
  max-width: 48ch;
  margin: 0;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.page-home .home-hero__figure {
  margin: 0;
  position: relative;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  overflow: hidden;
  background: var(--color-contrast-line);
}

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

.page-home .home-hero__stats {
  position: relative;
  z-index: 1;
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-4);
}

.page-home .home-hero__stat {
  display: grid;
  gap: var(--space-1);
  padding-top: var(--space-2);
  border-top: var(--border-thick) solid var(--color-contrast-line);
}

.page-home .home-hero__stat:nth-child(odd) {
  border-top-color: var(--color-primary);
}

.page-home .home-hero__stat:nth-child(even) {
  border-top-color: var(--color-contrast-accent);
}

.page-home .home-hero__stat .stat__value {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: var(--weight-heading);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-contrast-ink);
}

.page-home .home-hero__stat .stat__label {
  font-size: var(--text-sm);
  color: var(--color-contrast-ink);
  opacity: 0.72;
}

/* ---------- 通用区块标题 ---------- */
.page-home .home-head {
  display: grid;
  gap: var(--space-2);
  max-width: 72ch;
  margin-bottom: var(--space-6);
}

.page-home .home-head__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-2xl);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--color-ink);
  margin: 0;
}

.page-home .home-head__lede {
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
  max-width: var(--measure);
  margin: 0;
}

/* ---------- 档位标签页 ---------- */
.page-home .home-tier {
  background: var(--color-surface);
}

.page-home .home-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  border-bottom: var(--border-thick) solid var(--color-line);
}

.page-home .home-tabs__tab {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-lg);
  letter-spacing: var(--tracking-heading);
  padding: var(--space-2) var(--space-3);
  border: 0;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: transparent;
  color: var(--color-ink-muted);
  cursor: pointer;
  box-shadow: inset 0 0 0 transparent;
  transition: color 0.16s ease, background-color 0.16s ease;
}

.page-home .home-tabs__tab:hover {
  color: var(--color-ink);
  background: var(--color-surface-alt);
}

.page-home .home-tabs__tab[aria-selected="true"] {
  color: var(--color-ink);
  background: var(--color-primary-soft);
  box-shadow: inset 0 -4px 0 var(--color-primary);
}

.page-home .home-tabs__tab:focus-visible {
  outline: var(--border-thick) solid var(--color-focus);
  outline-offset: -3px;
}

.page-home .home-tabs__panel {
  padding-top: var(--space-6);
}

.page-home .home-tabs__grid {
  display: grid;
  gap: var(--space-4);
}

.page-home .home-tabs__col {
  padding-top: var(--space-2);
  border-top: var(--border-thick) solid var(--color-line);
}

.page-home .home-tabs__col--wide {
  border-top-color: var(--color-primary);
}

.page-home .home-tabs__col:nth-child(2) {
  border-top-color: var(--color-accent);
}

.page-home .home-tabs__label {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin: 0 0 var(--space-2);
}

.page-home .home-tabs__col p {
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink);
}

/* ---------- 比分脉搏 ---------- */
.page-home .home-pulse {
  background: var(--color-surface-alt);
}

.page-home .home-pulse__grid {
  display: grid;
  gap: var(--space-6);
}

.page-home .home-pulse__lede {
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
  max-width: 46ch;
  margin: var(--space-2) 0 var(--space-4);
}

.page-home .home-pulse__figure {
  margin: 0 0 var(--space-3);
  border: var(--border-thick) solid var(--color-line);
  background: var(--color-surface);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

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

.page-home .home-pulse__link {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--weight-heading);
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: var(--border-thin) solid currentColor;
  padding-bottom: 2px;
}

.page-home .home-pulse__link:hover {
  color: var(--color-primary);
}

.page-home .home-pulse__board {
  border: var(--border-thick) solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow-2);
}

.page-home .home-pulse__board-head {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-ink);
  background: var(--color-primary);
  padding: var(--space-2) var(--space-3);
}

.page-home .home-pulse__match {
  position: relative;
  display: grid;
  gap: var(--space-1);
  padding: var(--space-3) var(--space-3) var(--space-3) var(--space-4);
  border-bottom: var(--border-thin) solid var(--color-line);
}

.page-home .home-pulse__match:last-child {
  border-bottom: 0;
}

.page-home .home-pulse__match::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--color-surface-deep);
}

.page-home .home-pulse__match--live::before {
  background: var(--color-primary);
}

.page-home .home-pulse__round {
  margin: 0;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--color-ink-muted);
}

.page-home .home-pulse__score-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: var(--space-2);
}

.page-home .home-pulse__side {
  font-size: var(--text-base);
  font-weight: var(--weight-heading);
  color: var(--color-ink);
}

.page-home .home-pulse__side--away {
  text-align: right;
}

.page-home .home-pulse__score {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: var(--weight-heading);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-ink);
  font-variant-numeric: tabular-nums;
}

.page-home .home-pulse__score i {
  font-style: normal;
  padding: 0 0.1em;
  color: var(--color-ink-muted);
}

.page-home .home-pulse__match--live .home-pulse__score {
  color: var(--color-primary);
}

.page-home .home-pulse__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-ink-soft);
}

/* ---------- 转会窗口时间轴 ---------- */
.page-home .home-window {
  background: var(--color-surface);
}

.page-home .home-head--split {
  max-width: none;
}

.page-home .home-head--split .home-head__lede {
  max-width: 62ch;
}

.page-home .home-window__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-4);
  position: relative;
}

.page-home .home-window__track::before {
  content: "";
  position: absolute;
  left: calc(var(--home-node) / 2 - 1.5px);
  top: var(--space-2);
  bottom: var(--space-2);
  width: var(--border-thick);
  background: var(--color-line);
}

.page-home .home-window__node {
  position: relative;
  display: grid;
  grid-template-columns: var(--home-node) minmax(0, 1fr);
  gap: var(--space-3);
  align-items: start;
}

.page-home .home-window__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--home-node);
  height: var(--home-node);
  font-size: var(--text-sm);
  font-weight: var(--weight-heading);
  color: var(--color-primary-ink);
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-1);
}

.page-home .home-window__node:nth-child(even) .home-window__num {
  background: var(--color-accent);
}

.page-home .home-window__body {
  display: grid;
  gap: var(--space-1);
  padding: var(--space-2) 0 var(--space-3);
  border-bottom: var(--border-thin) solid var(--color-line);
}

.page-home .home-window__name {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-lg);
  letter-spacing: var(--tracking-heading);
  color: var(--color-ink);
  margin: 0;
}

.page-home .home-window__body p {
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
  max-width: var(--measure);
}

.page-home .home-window__body .tag {
  justify-self: start;
}

/* ---------- 球队资料与积分区间 ---------- */
.page-home .home-clubs {
  background: var(--color-surface-alt);
}

.page-home .home-clubs__wrap {
  display: grid;
  gap: var(--space-6);
}

.page-home .home-clubs__chart {
  margin: 0;
  padding: var(--space-3);
  background: var(--color-surface);
  border: var(--border-thick) solid var(--color-line);
  box-shadow: var(--shadow-1);
}

.page-home .home-clubs__chart-title {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-2);
}

.page-home .home-clubs__svg {
  display: block;
  width: 100%;
  height: auto;
  color: var(--color-ink-soft);
}

.page-home .home-clubs__svg-num {
  font-family: var(--font-mono);
  font-size: 13px;
  fill: var(--color-ink);
}

.page-home .home-clubs__svg-label {
  font-family: var(--font-body);
  font-size: 12px;
  fill: var(--color-ink-muted);
}

.page-home .home-clubs__tablewrap {
  overflow-x: auto;
}

.page-home .home-clubs__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--color-surface);
  border: var(--border-thick) solid var(--color-line);
}

.page-home .home-clubs__caption {
  text-align: left;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface-deep);
  border-bottom: var(--border-thin) solid var(--color-line);
}

.page-home .home-clubs__table th,
.page-home .home-clubs__table td {
  text-align: left;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.5;
  border-bottom: var(--border-thin) solid var(--color-line);
}

.page-home .home-clubs__table thead th {
  background: var(--color-accent);
  color: var(--color-accent-ink);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  letter-spacing: 0.06em;
  border-bottom: 0;
}

.page-home .home-clubs__table tbody th {
  font-weight: var(--weight-heading);
  color: var(--color-ink);
}

.page-home .home-clubs__table tbody tr:nth-child(even) td,
.page-home .home-clubs__table tbody tr:nth-child(even) th {
  background: var(--color-surface-alt);
}

.page-home .home-clubs__table tbody tr:last-child th,
.page-home .home-clubs__table tbody tr:last-child td {
  border-bottom: 0;
}

/* ---------- 桌面端篮球 ---------- */
.page-home .home-hoops {
  background: var(--color-surface);
}

.page-home .home-hoops__grid {
  display: grid;
  gap: var(--space-6);
}

.page-home .home-hoops__lede {
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
  max-width: var(--measure);
  margin: var(--space-2) 0 var(--space-4);
}

.page-home .home-hoops__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}

.page-home .home-hoops__list li {
  display: grid;
  grid-template-columns: 5.5em minmax(0, 1fr);
  gap: var(--space-2);
  align-items: baseline;
  padding-bottom: var(--space-2);
  border-bottom: var(--border-thin) solid var(--color-line);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-ink-soft);
}

.page-home .home-hoops__k {
  font-weight: var(--weight-heading);
  color: var(--color-accent);
  font-size: var(--text-sm);
}

.page-home .home-hoops__figure {
  margin: 0 0 var(--space-4);
  border: var(--border-thick) solid var(--color-line);
  overflow: hidden;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}

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

.page-home .home-hoops__tablewrap {
  overflow-x: auto;
}

.page-home .home-hoops__table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--color-surface);
  border: var(--border-thick) solid var(--color-line);
}

.page-home .home-hoops__caption {
  caption-side: top;
  text-align: left;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  padding: 0 0 var(--space-2);
}

.page-home .home-hoops__table th,
.page-home .home-hoops__table td {
  text-align: center;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  border-bottom: var(--border-thin) solid var(--color-line);
}

.page-home .home-hoops__table thead th {
  background: var(--color-contrast-surface);
  color: var(--color-contrast-ink);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  letter-spacing: 0.06em;
  border-bottom: 0;
}

.page-home .home-hoops__table tbody th {
  text-align: left;
  font-weight: var(--weight-heading);
  color: var(--color-ink);
}

.page-home .home-hoops__table tbody tr:nth-child(odd) {
  background: var(--color-surface-alt);
}

.page-home .home-hoops__table tbody tr:last-child th,
.page-home .home-hoops__table tbody tr:last-child td {
  border-bottom: 0;
}

.page-home .home-hoops__table td.mono {
  font-variant-numeric: tabular-nums;
}

/* ---------- 赛后复盘 ---------- */
.page-home .home-review {
  background: var(--color-surface-alt);
}

.page-home .home-review__grid {
  display: grid;
  gap: var(--space-6);
}

.page-home .home-review__figure {
  margin: 0;
  border: var(--border-thick) solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

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

.page-home .home-review__lede {
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
  max-width: var(--measure);
  margin: var(--space-2) 0 var(--space-4);
}

.page-home .home-review__items {
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  display: grid;
  gap: 0;
  border-top: var(--border-thick) solid var(--color-line);
}

.page-home .home-review__item {
  display: grid;
  grid-template-columns: 7.5em minmax(0, 1fr);
  gap: var(--space-2);
  align-items: baseline;
  padding: var(--space-2) 0;
  border-bottom: var(--border-thin) solid var(--color-line);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-ink-soft);
}

.page-home .home-review__k {
  font-weight: var(--weight-heading);
  color: var(--color-ink);
}

/* ---------- 出口 ---------- */
.page-home .home-exits {
  background: var(--color-surface);
}

.page-home .home-exits__grid {
  display: grid;
  gap: var(--space-4);
}

.page-home .home-exit {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-4);
  background: var(--color-surface);
  border: var(--border-thick) solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.page-home .home-exit:hover,
.page-home .home-exit:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-2);
  border-color: var(--color-primary);
}

.page-home .home-exit:focus-visible {
  outline: var(--border-thick) solid var(--color-focus);
  outline-offset: 3px;
}

.page-home .home-exit--lead {
  background: var(--color-contrast-surface);
  color: var(--color-contrast-ink);
  border-color: var(--color-contrast-surface);
  box-shadow: var(--space-1) var(--space-1) 0 var(--color-primary);
}

.page-home .home-exit__kick {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.page-home .home-exit--lead .home-exit__kick {
  color: var(--color-primary);
}

.page-home .home-exit__name {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-lg);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  margin: 0;
  color: inherit;
}

.page-home .home-exit__text {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
}

.page-home .home-exit--lead .home-exit__text {
  color: var(--color-contrast-ink);
  opacity: 0.82;
}

.page-home .home-exit__go {
  font-size: var(--text-sm);
  font-weight: var(--weight-heading);
  color: var(--color-accent);
}

.page-home .home-exit--lead .home-exit__go {
  color: var(--color-contrast-accent);
}

.page-home .home-exits__tail {
  margin: var(--space-6) 0 0;
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
  max-width: var(--measure);
}

.page-home .home-exits__tail a {
  color: var(--color-accent);
  font-weight: var(--weight-heading);
  text-decoration: none;
  border-bottom: var(--border-thin) solid currentColor;
}

.page-home .home-exits__tail a:hover {
  color: var(--color-primary);
}

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

  .page-home .home-tabs__col--wide {
    grid-column: 1 / -1;
  }

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

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

@media (min-width: 980px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: var(--space-8);
  }

  .page-home .home-head--split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: end;
    gap: var(--space-6);
    max-width: none;
  }

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

  .page-home .home-tabs__col--wide {
    grid-column: auto;
  }

  .page-home .home-pulse__grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: var(--space-8);
    align-items: start;
  }

  .page-home .home-clubs__wrap {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: var(--space-8);
    align-items: start;
  }

  .page-home .home-hoops__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: var(--space-8);
    align-items: start;
  }

  .page-home .home-review__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: var(--space-8);
    align-items: center;
  }

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

  .page-home .home-exit--lead {
    grid-column: 1 / -1;
    padding: var(--space-6);
  }

  .page-home .home-exit--lead .home-exit__name {
    font-size: var(--text-xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-exit {
    transition: none;
  }

  .page-home .home-exit:hover,
  .page-home .home-exit:focus-visible {
    transform: none;
  }
}
<<<END>>>
