.page-home {
  --h-chapter: clamp(68px, 9vw, 118px);
  --h-card-offset: 26px;
  display: block;
  background: var(--c-mist);
  color: var(--c-ink);
  overflow-x: clip;
}

/* ============ 首屏 ============ */
.page-home .hero {
  position: relative;
  padding: clamp(26px, 4vw, 48px) 0 clamp(64px, 9vw, 116px);
  background:
    radial-gradient(120% 88% at 92% 0%, rgba(31, 122, 90, 0.20), transparent 60%),
    radial-gradient(90% 70% at 0% 100%, rgba(255, 106, 19, 0.10), transparent 62%),
    var(--c-mist);
}

.page-home .hero__grid {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
}

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

.page-home .hero__title {
  margin: 16px 0 0;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  text-wrap: balance;
}

.page-home .hero__lede {
  max-width: 46ch;
  margin: 20px 0 32px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
  color: #2b3a46;
}

.page-home .entry-list {
  display: grid;
  gap: 14px;
}

.page-home .entry {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--c-steel);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.page-home .entry:hover,
.page-home .entry:focus-visible {
  transform: translateY(-3px);
  border-color: var(--c-orange);
  box-shadow: var(--shadow-soft);
}

.page-home .entry__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-orange);
  padding-top: 3px;
}

.page-home .entry__body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.page-home .entry__title {
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--c-ink);
}

.page-home .entry__text {
  font-size: 14.5px;
  line-height: 1.72;
  color: #46545f;
}

.page-home .entry__arrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-orange);
  line-height: 1.4;
  transition: transform 0.24s var(--ease);
}

.page-home .entry:hover .entry__arrow {
  transform: translateX(4px);
}

/* 首屏视觉 */
.page-home .hero__visual {
  position: relative;
  isolation: isolate;
  min-height: 320px;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--c-home), var(--c-night) 68%);
}

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

.page-home .hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(198deg, rgba(11, 43, 34, 0.18) 0%, rgba(11, 43, 34, 0.88) 74%);
}

.page-home .hero__pitch {
  position: absolute;
  top: 8%;
  left: 10%;
  width: 80%;
  height: auto;
  z-index: 2;
  opacity: 0.92;
}

.page-home .hero__score {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  display: grid;
  gap: 2px;
  padding: 15px 20px 17px;
  border-radius: var(--r-md);
  color: var(--c-mist);
}

.page-home .hero__score-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-orange-soft);
}

.page-home .hero__score .num--xl {
  font-family: var(--font-mono);
  font-size: clamp(38px, 5vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-orange);
  font-variant-numeric: tabular-nums;
}

.page-home .hero__score-sub {
  font-size: 13px;
  color: #cfe0d6;
}

/* ============ 章节通用 ============ */
.page-home .section {
  padding: var(--h-chapter) 0;
}

.page-home .chapter-head {
  max-width: 780px;
  margin-bottom: clamp(30px, 4.6vw, 54px);
}

.page-home .chapter-title {
  margin: 14px 0 16px;
  font-size: clamp(27px, 4.2vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  text-wrap: balance;
}

.page-home .lede {
  margin: 0;
  max-width: 62ch;
  font-size: 16.5px;
  line-height: 1.78;
  font-weight: 500;
}

/* ============ 01 赛程指挥板 ============ */
.page-home .board__grid {
  display: grid;
  gap: clamp(26px, 4vw, 46px);
  align-items: start;
}

.page-home .board__figure {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-night);
}

.page-home .board__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-home .board__caption {
  display: block;
  padding: 12px 16px 14px;
  background: var(--c-night);
  color: #bfd4c8;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

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

.page-home .board__row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 6px 14px;
  align-items: center;
  padding: 15px 18px;
  border-radius: var(--r-sm);
  border-left: 3px solid transparent;
  background: var(--c-ash);
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease);
}

.page-home .board__row:hover {
  border-left-color: var(--c-orange);
  background: #ffffff;
  transform: translateX(3px);
}

.page-home .board__sport {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--c-home);
}

.page-home .board__where {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 10px;
  min-width: 0;
}

.page-home .board__city {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--c-ink);
}

.page-home .board__venue {
  font-size: 13.5px;
  color: var(--c-mute);
}

.page-home .board__time {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-orange);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.page-home .board__note {
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--c-orange-soft);
  font-size: 14px;
  line-height: 1.7;
  color: #4d5c67;
}

/* ============ 02 主场网络 ============ */
.page-home .network {
  background: linear-gradient(168deg, var(--c-night) 0%, #071d17 100%);
  color: var(--c-mist);
  border-top-color: transparent;
}

.page-home .network__grid {
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.page-home .network__visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0a241c;
  aspect-ratio: 16 / 10;
}

.page-home .network__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.page-home .network__nodes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.page-home .network .chapter-title {
  color: var(--c-mist);
}

.page-home .network .lede {
  color: #c6d8cd;
}

.page-home .network__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
}

.page-home .network__facts li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 13.5px;
  color: #a9c0b3;
  letter-spacing: 0.02em;
}

.page-home .network__facts .num {
  font-family: var(--font-mono);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-orange);
  font-variant-numeric: tabular-nums;
}

/* ============ 03 季票对比 ============ */
.page-home .season__grid {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
}

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

.page-home .season__dims {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.page-home .season__dims li {
  position: relative;
  padding: 13px 14px 13px 34px;
  border: 1px solid var(--c-steel);
  border-radius: var(--r-sm);
  background: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--c-ink);
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.page-home .season__dims li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 2px;
  background: var(--c-orange);
}

.page-home .season__dims li:hover {
  border-color: var(--c-line);
  transform: translateY(-2px);
}

.page-home .season__figure {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-ash);
}

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

.page-home .season__caption {
  display: block;
  padding: 12px 16px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-night);
  opacity: 0.72;
  background: var(--c-ash);
}

/* ============ 04 大屏 ============ */
.page-home .desktop__grid {
  display: grid;
  gap: 18px;
}

.page-home .desktop__item {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 26px 24px 30px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-steel);
  background: #ffffff;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s var(--ease);
}

.page-home .desktop__item:hover {
  transform: translateY(-4px);
  border-color: var(--c-line);
  box-shadow: var(--shadow-soft);
}

.page-home .desktop__num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-line);
  letter-spacing: 0.04em;
}

.page-home .desktop__item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--c-ink);
}

.page-home .desktop__item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: #4d5c67;
}

/* ============ 05 下一步 ============ */
.page-home .next {
  background: linear-gradient(180deg, var(--c-mist) 0%, var(--c-ash) 100%);
}

.page-home .next__grid {
  display: grid;
  gap: 16px;
}

.page-home .next__card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 26px 24px 30px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-steel);
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.26s var(--ease), border-color 0.26s var(--ease), box-shadow 0.26s var(--ease);
}

.page-home .next__card:hover,
.page-home .next__card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--c-orange);
  box-shadow: var(--shadow-soft);
}

.page-home .next__idx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-home);
  color: var(--c-mist);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
}

.page-home .next__card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--c-ink);
}

.page-home .next__card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: #4d5c67;
}

.page-home .next__foot {
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: #4d5c67;
}

.page-home .next__link {
  color: var(--c-orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .page-home .desktop__item:nth-child(2) {
    margin-top: var(--h-card-offset);
  }

  .page-home .desktop__item:nth-child(3) {
    margin-top: calc(var(--h-card-offset) * 2);
  }

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

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

@media (min-width: 960px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
    gap: clamp(40px, 5.5vw, 84px);
  }

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

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

@media (min-width: 1024px) {
  .page-home .board__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.34fr);
  }

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

@media (max-width: 560px) {
  .page-home .board__row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 12px;
  }

  .page-home .board__sport {
    grid-column: 1 / -1;
    color: var(--c-line);
  }

  .page-home .hero__score {
    left: 14px;
    bottom: 14px;
    padding: 12px 16px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .entry,
  .page-home .entry__arrow,
  .page-home .board__row,
  .page-home .season__dims li,
  .page-home .desktop__item,
  .page-home .next__card {
    transition: none;
  }

  .page-home .entry:hover,
  .page-home .entry:focus-visible,
  .page-home .board__row:hover,
  .page-home .season__dims li:hover,
  .page-home .desktop__item:hover,
  .page-home .next__card:hover,
  .page-home .next__card:focus-visible {
    transform: none;
  }
}
