.page-home {
  --home-shear: -8deg;
  position: relative;
  display: block;
  font-family: var(--font-sans);
  color: var(--text);
}

/* ---------- 首屏 ---------- */

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(26px, 5vw, 58px);
}

.page-home .home-hero__shear {
  position: absolute;
  top: -18%;
  right: -34%;
  width: 92%;
  height: 128%;
  border-radius: 56px;
  background: linear-gradient(150deg, rgba(22, 224, 200, 0.22), rgba(122, 92, 255, 0.16) 52%, rgba(11, 27, 42, 0) 78%);
  transform: rotate(var(--home-shear));
  pointer-events: none;
  z-index: 0;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: clamp(26px, 4vw, 46px);
}

.page-home .home-hero__context {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 15px;
  border: 1px solid rgba(22, 224, 200, 0.42);
  border-radius: var(--r-pill);
  color: var(--aqua);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.page-home .home-hero__copy h1 {
  margin: 0 0 18px;
}

.page-home .home-hero__copy .lede {
  margin: 0;
  max-width: 34em;
}

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

.page-home .home-hero__media {
  margin: 0;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-2);
  clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 91%);
}

.page-home .home-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* ---------- 赛季进度轨道 ---------- */

.page-home .season-track {
  position: relative;
  z-index: 1;
  margin-top: clamp(32px, 5vw, 60px);
  padding: clamp(40px, 5vw, 62px) 0 clamp(36px, 5vw, 56px);
  background: linear-gradient(180deg, rgba(20, 48, 74, 0.92), rgba(11, 27, 42, 0.96));
  clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
}

.page-home .season-track__inner {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-home .season-track__label {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--aqua);
}

.page-home .season-track__line {
  position: relative;
  height: 10px;
  border-radius: var(--r-pill);
  background: rgba(143, 163, 181, 0.2);
  overflow: hidden;
}

.page-home .season-track__fill {
  position: absolute;
  inset: 0 3% 0 0;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--aqua), var(--violet));
}

.page-home .season-track__marks {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  color: var(--haze);
}

.page-home .season-track__marks li:nth-child(2),
.page-home .season-track__marks li:nth-child(3) {
  text-align: center;
}

.page-home .season-track__marks li:last-child {
  text-align: right;
}

.page-home .season-track__marks .is-current {
  color: var(--sand);
}

.page-home .season-track__note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 46em;
}

/* ---------- 本轮速览 ---------- */

.page-home .home-snapshot {
  padding: clamp(52px, 8vw, 100px) 0;
}

.page-home .snap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: clamp(24px, 3vw, 40px);
}

.page-home .snap-card {
  position: relative;
  overflow: hidden;
  padding: 26px 22px 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(20, 48, 74, 0.92), rgba(11, 27, 42, 0.72));
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.page-home .snap-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(143, 163, 181, 0.16) 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: 0.55;
  pointer-events: none;
}

.page-home .snap-card:hover,
.page-home .snap-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(22, 224, 200, 0.45);
  box-shadow: 0 20px 42px -24px rgba(22, 224, 200, 0.55);
}

.page-home .snap-card__round {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: rgba(22, 224, 200, 0.14);
  color: var(--aqua);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-home .snap-card:hover .snap-card__round,
.page-home .snap-card:focus-within .snap-card__round {
  opacity: 1;
  transform: translateY(-2px);
}

.page-home .snap-card__label {
  position: relative;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--haze);
}

.page-home .snap-card__value {
  position: relative;
  margin: 10px 0 8px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--mist);
}

.page-home .snap-card:nth-child(1) .snap-card__value { color: var(--aqua); }
.page-home .snap-card:nth-child(2) .snap-card__value { color: var(--sand); }
.page-home .snap-card:nth-child(3) .snap-card__value { color: var(--palm); }
.page-home .snap-card:nth-child(4) .snap-card__value { color: var(--violet); }

.page-home .snap-card__hint {
  position: relative;
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-soft);
}

/* ---------- 主客对照 ---------- */

.page-home .home-split {
  padding: clamp(52px, 8vw, 96px) 0;
  background: linear-gradient(180deg, rgba(11, 27, 42, 0), rgba(20, 48, 74, 0.4) 45%, rgba(11, 27, 42, 0));
}

.page-home .home-split__media {
  margin: 0 0 clamp(22px, 3vw, 36px);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
}

.page-home .home-split__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.page-home .faceoff__card {
  padding: 24px 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(20, 48, 74, 0.55);
}

.page-home .faceoff__card--high {
  border-top: 3px solid var(--palm);
}

.page-home .faceoff__card--low {
  border-top: 3px solid var(--coral);
}

.page-home .faceoff__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .faceoff__team {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}

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

.page-home .faceoff__rows li {
  display: grid;
  grid-template-columns: 5.4em minmax(0, 1fr) 3.4em;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.page-home .faceoff__key {
  color: var(--haze);
}

.page-home .faceoff__bar {
  display: block;
  height: 8px;
  border-radius: var(--r-pill);
  background: rgba(143, 163, 181, 0.18);
  overflow: hidden;
}

.page-home .faceoff__bar i {
  display: block;
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--aqua), var(--violet));
}

.page-home .faceoff__card--high .faceoff__bar i {
  background: linear-gradient(90deg, var(--aqua), var(--palm));
}

.page-home .faceoff__card--low .faceoff__bar i {
  background: linear-gradient(90deg, var(--sand), var(--coral));
}

.page-home .faceoff__num {
  text-align: right;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  color: var(--text);
}

.page-home .home-split__more {
  margin: clamp(24px, 3vw, 36px) 0 0;
}

/* ---------- 双入口 ---------- */

.page-home .home-dual {
  padding: clamp(52px, 8vw, 96px) 0;
}

.page-home .dual-entry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: clamp(24px, 3vw, 40px);
}

.page-home .entry-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px 26px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(20, 48, 74, 0.9), rgba(11, 27, 42, 0.7));
}

.page-home .entry-card::after {
  content: "";
  position: absolute;
  top: -48px;
  right: -48px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 224, 200, 0.22), rgba(11, 27, 42, 0) 70%);
  pointer-events: none;
}

.page-home .entry-card--bottom::after {
  background: radial-gradient(circle, rgba(122, 92, 255, 0.26), rgba(11, 27, 42, 0) 70%);
}

.page-home .entry-card > * {
  position: relative;
  z-index: 1;
}

.page-home .entry-card h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--mist);
}

.page-home .entry-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
}

.page-home .entry-card__list {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .entry-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}

.page-home .entry-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
}

.page-home .entry-card--bottom .entry-card__list li::before {
  background: var(--violet);
}

.page-home .entry-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sand);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 179, 61, 0.42);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-home .entry-card__link::after {
  content: "→";
}

.page-home .entry-card__link:hover,
.page-home .entry-card__link:focus-visible {
  color: var(--mist);
  border-color: var(--mist);
}

/* ---------- 看台与曲线 ---------- */

.page-home .home-stand {
  padding: clamp(52px, 8vw, 96px) 0;
}

.page-home .stand-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
}

.page-home .home-stand__copy .lede {
  margin: 0;
  max-width: 34em;
}

.page-home .stand-facts {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}

.page-home .stand-facts li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(20, 48, 74, 0.6);
}

.page-home .stand-facts__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--sand);
}

.page-home .stand-facts li span:last-child {
  font-size: 13px;
  color: var(--haze);
}

.page-home .home-stand__media {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
}

.page-home .home-stand__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .curve-panel {
  margin-top: clamp(28px, 4vw, 46px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(20, 48, 74, 0.85), rgba(11, 27, 42, 0.62));
}

.page-home .curve-panel h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mist);
}

.page-home .curve-panel p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 46em;
}

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

.page-home .curve-axis {
  stroke: rgba(143, 163, 181, 0.22);
  stroke-width: 1;
}

.page-home .curve-line {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .curve-line--up { stroke: var(--palm); }
.page-home .curve-line--down { stroke: var(--coral); }

.page-home .curve-dot--palm { fill: var(--palm); }
.page-home .curve-dot--coral { fill: var(--coral); }

.page-home .curve-legend {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 13px;
  color: var(--haze);
}

.page-home .curve-legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-home .curve-dot-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.page-home .curve-dot-mark--palm { background: var(--palm); }
.page-home .curve-dot-mark--coral { background: var(--coral); }

/* ---------- 收束区 ---------- */

.page-home .home-close {
  padding: clamp(52px, 8vw, 96px) 0 clamp(64px, 9vw, 112px);
}

.page-home .home-close__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  min-height: 320px;
  display: grid;
  align-items: end;
}

.page-home .home-close__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.page-home .home-close__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11, 27, 42, 0.5), rgba(11, 27, 42, 0.94) 72%);
  pointer-events: none;
}

.page-home .home-close__body {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 54px);
}

.page-home .home-close__body h2 {
  margin: 0 0 16px;
}

.page-home .home-close__body p {
  margin: 0 0 24px;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
}

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

.page-home .close-links {
  list-style: none;
  margin: clamp(22px, 3vw, 32px) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 14px;
}

.page-home .close-links a {
  color: var(--aqua);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 224, 200, 0.28);
  padding-bottom: 2px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.page-home .close-links a:hover,
.page-home .close-links a:focus-visible {
  color: var(--mist);
  border-color: var(--mist);
}

/* ---------- 响应式 ---------- */

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

@media (min-width: 780px) {
  .page-home .faceoff {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 900px) {
  .page-home .stand-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .page-home .dual-entry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    align-items: start;
  }

  .page-home .dual-entry > :nth-child(2) {
    margin-top: 44px;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
  }

  .page-home .home-hero__media img {
    aspect-ratio: 8 / 5;
  }
}

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

@media (max-width: 560px) {
  .page-home .home-hero__shear {
    opacity: 0.6;
  }

  .page-home .season-track {
    clip-path: polygon(0 12px, 100% 0, 100% calc(100% - 12px), 0 100%);
  }

  .page-home .faceoff__rows li {
    grid-template-columns: 4.6em minmax(0, 1fr) 3em;
    gap: 8px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .snap-card,
  .page-home .snap-card__round,
  .page-home .entry-card__link,
  .page-home .close-links a {
    transition: none;
  }

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