.page-home {
  overflow-x: clip;
  display: block;
}

.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-home a:focus-visible,
.page-home button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ 首屏 ============ */
.page-home .home-hero {
  position: relative;
  padding-block: clamp(22px, 5vw, 52px) clamp(34px, 6vw, 76px);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: -8% -6% 0 -6%;
  background:
    radial-gradient(90% 70% at 78% 4%, rgba(41, 214, 232, .18), rgba(5, 10, 24, 0) 62%),
    radial-gradient(70% 60% at 4% 92%, rgba(255, 106, 31, .12), rgba(5, 10, 24, 0) 68%);
  pointer-events: none;
}

.page-home .home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.page-home .home-hero__rail {
  position: relative;
  order: 2;
  padding-left: 20px;
  border-left: 2px solid var(--line);
}

.page-home .home-hero__rail::after {
  content: "";
  position: absolute;
  left: -7px;
  top: -1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(41, 214, 232, .14);
}

.page-home .home-hero__railtitle {
  margin: 0 0 12px;
  font-family: var(--font-narrow);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-home .home-tick {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-tick__item {
  padding: 10px 0 12px;
  border-bottom: 1px solid rgba(148, 163, 184, .14);
}

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

.page-home .home-tick__day {
  display: inline-block;
  margin-right: 8px;
  font-family: var(--font-narrow);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
}

.page-home .home-tick__time {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--paper);
}

.page-home .home-tick__match {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--fog);
}

.page-home .home-hero__railnote {
  margin: 14px 0 0;
  padding-left: 10px;
  border-left: 2px solid var(--orange);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--fog);
}

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

.page-home .home-hero__body > .label {
  margin: 0 0 10px;
  display: block;
  color: var(--orange);
}

.page-home .home-hero__body > .h-display {
  margin: 0;
  max-width: 18ch;
}

.page-home .home-hero__lede {
  margin: 16px 0 0;
  max-width: 54ch;
  color: var(--fog);
}

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

.page-home .home-hero__media {
  position: relative;
  margin: 26px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.page-home .home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 24, 0) 46%, rgba(5, 10, 24, .74) 100%);
  pointer-events: none;
}

/* ============ 赛程速览 ============ */
.page-home .home-schedule__head {
  max-width: 62ch;
}

.page-home .home-schedule__head .label {
  display: block;
  margin: 0 0 8px;
  color: var(--cyan);
}

.page-home .home-schedule__head .h-sec {
  margin: 0 0 12px;
}

.page-home .home-schedule__head .prose {
  margin: 0;
  color: var(--fog);
}

.page-home .home-schedule .filter-bar {
  margin: 20px 0 22px;
}

.page-home .home-schedule__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.page-home .home-sched-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 26px;
  position: relative;
  display: grid;
  gap: 12px;
}

.page-home .home-sched-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--cyan) 0%, rgba(41, 214, 232, .05) 100%);
}

.page-home .home-sched-item {
  position: relative;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--glass);
  backdrop-filter: blur(8px);
  transition: border-color .18s ease, transform .18s ease;
}

.page-home .home-sched-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 22px;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--cyan);
}

.page-home .home-sched-item:hover,
.page-home .home-sched-item:focus-within {
  border-color: rgba(41, 214, 232, .55);
  transform: translateX(2px);
}

.page-home .home-sched-item[hidden],
.page-home .home-sched-item.is-hidden {
  display: none;
}

.page-home .home-sched-item__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.page-home .home-sched-item__date {
  font-family: var(--font-narrow);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-home .home-sched-item__time {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--paper);
}

.page-home .home-sched-item__title {
  margin: 6px 0 0;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--paper);
}

.page-home .home-sched-item__meta {
  margin: 4px 0 10px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--fog);
}

.page-home .home-schedule__aside {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  align-self: start;
}

.page-home .home-schedule__aside .label {
  display: block;
  margin: 0 0 8px;
  color: var(--lime);
}

.page-home .home-schedule__aside h3 {
  margin: 0 0 10px;
  font-family: var(--font-narrow);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: var(--paper);
}

.page-home .home-schedule__aside p {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--fog);
}

/* ============ 两个动作 ============ */
.page-home .home-steps__head {
  max-width: 58ch;
}

.page-home .home-steps__head .label {
  display: block;
  margin: 0 0 8px;
  color: var(--cyan);
}

.page-home .home-steps__head .h-sec {
  margin: 0 0 12px;
}

.page-home .home-steps__head .prose {
  margin: 0;
  color: var(--fog);
}

.page-home .home-steps__grid {
  margin-top: 24px;
}

.page-home .home-step {
  position: relative;
  padding: 24px 22px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.page-home .home-step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), rgba(41, 214, 232, 0));
}

.page-home .home-step__no {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(41, 214, 232, .3);
}

.page-home .home-step__title {
  margin: 0 0 10px;
  font-family: var(--font-narrow);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--paper);
}

.page-home .home-step__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--fog);
}

.page-home .home-step__note {
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--lime);
}

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

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

.page-home .home-step__media figcaption {
  padding: 8px 12px 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--fog);
}

/* ============ 周末连看 ============ */
.page-home .home-weekend__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

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

.page-home .home-weekend__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .home-weekend__body > .label {
  display: block;
  margin: 0 0 8px;
  color: var(--orange);
}

.page-home .home-weekend__body > .h-sec {
  margin: 0 0 14px;
}

.page-home .home-weekend__body > .prose {
  margin: 0 0 18px;
  color: var(--fog);
}

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

.page-home .home-weekend__list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--glass);
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--fog);
}

.page-home .home-weekend__k {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--cyan);
}

/* ============ 常用入口 ============ */
.page-home .home-entry__head {
  max-width: 54ch;
  margin-bottom: 22px;
}

.page-home .home-entry__head .label {
  display: block;
  margin: 0 0 8px;
  color: var(--cyan);
}

.page-home .home-entry__head .h-sec {
  margin: 0;
}

.page-home .home-entry__grid {
  gap: 16px;
}

.page-home .home-entry__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.page-home .home-entry__card:hover,
.page-home .home-entry__card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(41, 214, 232, .55);
  background: rgba(41, 214, 232, .05);
}

.page-home .home-entry__card .label {
  display: block;
  margin: 0;
  color: var(--orange);
}

.page-home .home-entry__title {
  margin: 0;
  font-family: var(--font-narrow);
  font-size: 19px;
  letter-spacing: .01em;
  color: var(--paper);
}

.page-home .home-entry__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--fog);
}

.page-home .home-entry__go {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  color: var(--cyan);
}

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

/* ============ 规模数据 ============ */
.page-home .home-stats__panel {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--hold);
}

.page-home .home-stats__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
}

.page-home .home-stats__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(80% 120% at 90% 0%, rgba(41, 214, 232, .16), rgba(5, 10, 24, 0) 60%),
    linear-gradient(160deg, rgba(5, 10, 24, .84), rgba(11, 18, 38, .95) 72%);
  pointer-events: none;
}

.page-home .home-stats__inner {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 4vw, 44px);
}

.page-home .home-stats__inner .label {
  display: block;
  margin: 0 0 8px;
  color: var(--lime);
}

.page-home .home-stats__inner .h-sec {
  margin: 0;
}

.page-home .home-stats__row {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-home .home-stat {
  padding: 18px 16px;
  background: rgba(11, 18, 38, .88);
}

.page-home .home-stat__num {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--cyan);
}

.page-home .home-stat__num--wide {
  font-size: clamp(15px, 1.8vw, 20px);
  letter-spacing: 0;
}

.page-home .home-stat__key {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--fog);
}

/* ============ 接下来去哪 ============ */
.page-home .home-next__head {
  max-width: 54ch;
  margin-bottom: 20px;
}

.page-home .home-next__head .label {
  display: block;
  margin: 0 0 8px;
  color: var(--cyan);
}

.page-home .home-next__head .h-sec {
  margin: 0;
}

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

.page-home .home-next__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color .18s ease, background-color .18s ease;
}

.page-home .home-next__card:hover,
.page-home .home-next__card:focus-visible {
  border-color: rgba(41, 214, 232, .55);
  background: rgba(41, 214, 232, .05);
}

.page-home .home-next__title {
  margin: 0;
  font-family: var(--font-narrow);
  font-size: 18px;
  letter-spacing: .02em;
  color: var(--paper);
}

.page-home .home-next__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--fog);
}

.page-home .home-next__go {
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}

.page-home .home-next__note {
  margin: 22px 0 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--fog);
}

.page-home .home-next__note a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 214, 232, .35);
}

.page-home .home-next__note a:hover {
  border-bottom-color: var(--cyan);
}

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

  .page-home .home-step {
    padding: 28px 26px;
  }
}

@media (min-width: 900px) {
  .page-home .home-schedule__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero__grid {
    grid-template-columns: minmax(200px, 250px) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
  }

  .page-home .home-hero__rail {
    order: 0;
  }

  .page-home .home-hero__body > .h-display {
    max-width: 15ch;
  }

  .page-home .home-hero__media {
    margin-top: 32px;
  }

  .page-home .home-weekend__grid {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 48px;
  }
}

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