.page-home {
  background: var(--c-bg-0);
}

/* ================= 首屏 · 左右分屏 ================= */
.page-home .hero-split {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-0);
}

.page-home .hero-split__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 520px;
  overflow: hidden;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 0 100%);
}

.page-home .hero-split__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.55), rgba(10, 31, 68, 0.92));
}

.page-home .hero-split__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

.page-home .hero-split__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .hero-split__left {
  padding: calc(var(--header-height) + 48px) 0 0;
}

.page-home .hero-split__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}

.page-home .hero-split__crumb a {
  color: var(--c-neon);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.page-home .hero-split__crumb a:hover,
.page-home .hero-split__crumb a:focus-visible {
  color: var(--c-white);
  text-decoration: underline;
}

.page-home .hero-split .display__eyebrow {
  color: var(--c-neon);
  margin-bottom: 12px;
}

.page-home .hero-split .display__title {
  font-size: clamp(52px, 12vw, 96px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  color: var(--c-white);
  margin: 0 0 20px;
}

.page-home .hero-split__lead {
  font-size: 16px;
  line-height: 1.75;
  color: #b8c7dd;
  max-width: 540px;
  margin: 0 0 24px;
}

.page-home .hero-split__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
}

.page-home .hero-split__tags li {
  margin: 0;
}

.page-home .hero-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .hero-split__right {
  position: relative;
  padding: 48px 24px 32px;
  z-index: 1;
}

.page-home .hero-split__right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-light);
  clip-path: polygon(0 44px, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.page-home .hero-split__right-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 0 0 18px;
}

.page-home .hero-path-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--c-white);
  padding: 22px 18px;
  margin-bottom: 18px;
  text-decoration: none;
  color: var(--c-ink);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}

.page-home .hero-path-card:hover,
.page-home .hero-path-card:focus-visible {
  transform: translateY(-6px);
  filter: brightness(0.95);
}

.page-home .hero-path-card__num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-purple);
}

.page-home .hero-path-card__body {
  min-width: 0;
  flex: 1;
}

.page-home .hero-path-card__title {
  display: block;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-ink);
  margin-bottom: 8px;
}

.page-home .hero-path-card__desc {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
}

.page-home .hero-path-card__arrow {
  font-size: 24px;
  line-height: 1;
  color: var(--c-neon);
  font-weight: 700;
}

.page-home .hero-split__faq {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--c-neon);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-home .hero-split__faq:hover,
.page-home .hero-split__faq:focus-visible {
  color: var(--c-purple);
  border-color: var(--c-purple);
}

/* ================= 核心赛程时间线 ================= */
.page-home .timeline-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--c-bg-0);
}

.page-home .timeline-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .timeline-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .match-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "time league"
    "teams score";
  align-items: center;
  gap: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid rgba(155, 89, 182, 0.6);
  border-radius: 10px;
  padding: 14px 16px;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.page-home .match-row:hover,
.page-home .match-row:focus-within {
  background: rgba(57, 255, 20, 0.08);
  border-left-color: var(--c-neon);
  transform: translateX(6px);
}

.page-home .match-row__time {
  grid-area: time;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-muted);
}

.page-home .match-row__league {
  grid-area: league;
  justify-self: end;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-purple);
  border: 1px solid rgba(155, 89, 182, 0.5);
  padding: 2px 8px;
  border-radius: 5px;
  white-space: nowrap;
}

.page-home .match-row__teams {
  grid-area: teams;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-white);
}

.page-home .match-row__vs {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-purple);
}

.page-home .match-row__score {
  grid-area: score;
  justify-self: end;
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-neon);
  white-space: nowrap;
}

.page-home .match-row__sep {
  margin: 0 3px;
  color: #6e84a0;
  font-weight: 400;
}

.page-home .timeline-art {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.page-home .timeline-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.18), transparent);
  pointer-events: none;
}

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

/* ================= 订阅步骤提示 ================= */
.page-home .subscribe-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: var(--c-light);
}

.page-home .subscribe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}

.page-home .subscribe-card {
  position: relative;
  background: var(--c-white);
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 10px 28px rgba(10, 31, 68, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.page-home .subscribe-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--c-neon), var(--c-purple));
}

.page-home .subscribe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(10, 31, 68, 0.14);
}

.page-home .subscribe-card__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-bg-0);
  background: rgba(57, 255, 20, 0.25);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.page-home .subscribe-card__title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0 0 10px;
}

.page-home .subscribe-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink);
  margin: 0;
}

.page-home .subscribe-section__media {
  width: 100%;
  max-width: 560px;
  margin: 40px auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--c-bg-0);
  transform: rotate(-1.2deg);
}

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

/* ================= 联赛覆盖矩阵 ================= */
.page-home .league-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: var(--c-light);
}

.page-home .league-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.page-home .league-card {
  position: relative;
  background: var(--c-white);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(10, 31, 68, 0.06);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-home .league-card:hover,
.page-home .league-card:focus-within {
  background: var(--c-bg-0);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10, 31, 68, 0.18);
}

.page-home .league-card__name {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 6px;
  transition: color 0.3s var(--ease);
}

.page-home .league-card:hover .league-card__name,
.page-home .league-card:focus-within .league-card__name {
  color: var(--c-neon);
}

.page-home .league-card__meta {
  font-size: 13px;
  color: var(--c-muted);
}

.page-home .league-card--champion {
  border: 1px solid var(--c-purple);
}

.page-home .league-section__bg {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #d9e2f1, var(--c-white));
}

.page-home .league-section__bg img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 260px;
}

.page-home .league-section__note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-muted);
  text-align: center;
  margin: 18px 0 0;
}

/* ================= 最新动态摘要 ================= */
.page-home .digest-section {
  padding-top: 64px;
  padding-bottom: 72px;
  background: var(--c-bg-0);
}

.page-home .digest-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
}

.page-home .digest-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-home .digest-item:hover,
.page-home .digest-item:focus-visible {
  background: rgba(57, 255, 20, 0.06);
  border-color: rgba(57, 255, 20, 0.3);
  transform: translateX(8px);
}

.page-home .digest-item__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-purple);
  white-space: nowrap;
  border: 1px solid rgba(155, 89, 182, 0.5);
  padding: 3px 8px;
  border-radius: 5px;
}

.page-home .digest-item__title {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-white);
}

.page-home .digest-item__arrow {
  font-size: 22px;
  color: var(--c-neon);
}

.page-home .digest-section__more {
  margin-top: 28px;
}

/* ================= 桌面端分屏与栅格增强 ================= */
@media (min-width: 992px) {
  .page-home .hero-split {
    min-height: 92vh;
  }

  .page-home .hero-split__bg {
    height: 100%;
    clip-path: polygon(0 0, 56% 0, 48% 100%, 0 100%);
  }

  .page-home .hero-split__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
    gap: 48px;
    align-items: center;
    min-height: inherit;
  }

  .page-home .hero-split__left {
    padding-bottom: 64px;
  }

  .page-home .hero-split__right {
    max-height: 74vh;
    overflow-y: auto;
    padding: 56px 40px 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--c-purple) var(--c-light);
  }

  .page-home .hero-split__right::before {
    clip-path: polygon(72px 0, 100% 0, 100% 100%, 0 100%);
  }

  .page-home .hero-path-card {
    padding: 26px 22px;
    margin-bottom: 22px;
  }

  .page-home .hero-path-card__title {
    font-size: 20px;
  }

  .page-home .timeline-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    gap: 48px;
  }

  .page-home .match-row {
    grid-template-columns: 110px minmax(0, 1fr) auto auto;
    grid-template-areas: "time teams score league";
    gap: 14px;
    padding: 16px 20px;
  }

  .page-home .match-row__league {
    justify-self: start;
  }

  .page-home .match-row__score {
    font-size: 36px;
  }

  .page-home .subscribe-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 920px;
  }

  .page-home .subscribe-section__media {
    max-width: 640px;
  }
}
