.page-home {
  --home-pad-y: 68px;
  --home-gap: 20px;
  --home-grid-line: rgba(182, 255, 59, .07);
  display: block;
  background: var(--ink-900);
  color: var(--body-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

@media (min-width: 900px) {
  .page-home {
    --home-pad-y: 112px;
    --home-gap: 28px;
  }
}

.page-home .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.page-home .home-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 12px 0 0;
  max-width: 22ch;
}

.page-home .home-section {
  position: relative;
  padding: var(--home-pad-y) 0;
}

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

.page-home .home-hero {
  position: relative;
  isolation: isolate;
  padding: 32px 0 56px;
  border-bottom: var(--border);
  overflow: hidden;
}

@media (min-width: 900px) {
  .page-home .home-hero {
    padding: 48px 0 96px;
  }
}

.page-home .home-hero__bg {
  position: absolute;
  inset: -6% -6% -6% -6%;
  z-index: -1;
}

.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: saturate(.85) contrast(1.06);
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 15, 28, .5) 0%, rgba(10, 15, 28, .88) 52%, var(--ink-900) 100%),
    repeating-linear-gradient(90deg, var(--home-grid-line) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, var(--home-grid-line) 0 1px, transparent 1px 88px);
}

.page-home .home-hero__inner {
  position: relative;
}

.page-home .home-hero__crumb {
  margin-bottom: 26px;
}

.page-home .home-hero__eyebrow {
  margin-top: 8px;
}

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 10vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 16px 0 0;
  max-width: 16ch;
}

.page-home .home-hero__lede {
  margin-top: 24px;
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body-text);
}

@media (min-width: 900px) {
  .page-home .home-hero__lede {
    font-size: 1.06rem;
  }
}

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

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

@media (min-width: 900px) {
  .page-home .home-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: var(--border);
    background: rgba(13, 21, 36, .72);
  }
}

.page-home .home-stats__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 14px 14px;
  border: var(--border);
  border-left: 4px solid var(--turf);
  background: rgba(18, 26, 46, .8);
}

@media (min-width: 900px) {
  .page-home .home-stats__item {
    border: 0;
    border-left: 1px solid var(--line-600);
    background: transparent;
    padding: 26px 22px 22px;
  }

  .page-home .home-stats__item:first-child {
    border-left: 4px solid var(--turf);
  }
}

.page-home .home-stats__value {
  font-size: clamp(1.9rem, 6vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--turf);
}

.page-home .home-stats__label {
  font-size: .78rem;
  line-height: 1.5;
  letter-spacing: .03em;
  color: var(--mute);
}

.page-home .home-hero__scope {
  margin-top: 22px;
  padding-left: 14px;
  border-left: 3px solid var(--signal);
  max-width: 60ch;
}

/* ---------- 赛季进度 ---------- */

.page-home .home-round {
  background: var(--ink-900);
}

.page-home .home-round__grid {
  display: grid;
  gap: 34px;
}

@media (min-width: 960px) {
  .page-home .home-round__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: 56px;
  }
}

.page-home .home-round__text {
  margin: 20px 0 0;
  max-width: 52ch;
  line-height: 1.8;
  color: var(--body-text);
}

.page-home .home-round__bar {
  position: relative;
  height: 12px;
  margin-top: 30px;
  border: 2px solid var(--line-600);
  background: var(--ink-850);
}

.page-home .home-round__bar span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 63%;
  background: linear-gradient(90deg, var(--turf), var(--amber));
}

.page-home .home-round__timeline {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  font-size: .74rem;
  color: var(--mute);
}

.page-home .home-round__tick {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.page-home .home-round__tick .num {
  font-size: .92rem;
  font-weight: 700;
  color: var(--paper);
}

.page-home .home-round__tick--now .num {
  color: var(--amber);
}

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

.page-home .home-round__list li {
  position: relative;
  padding-left: 22px;
  font-size: .92rem;
  line-height: 1.7;
  color: var(--body-text);
}

.page-home .home-round__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 12px;
  height: 2px;
  background: var(--turf);
}

.page-home .home-round__media .media__frame {
  border: var(--border);
  box-shadow: var(--shadow-hard);
  background: var(--ink-850);
}

/* ---------- 双线底盘 ---------- */

.page-home .home-lines {
  background: var(--ink-850);
  border-top: var(--border);
  border-bottom: var(--border);
}

.page-home .home-lines__head {
  max-width: 60ch;
}

.page-home .home-lines__tabs {
  margin-top: 36px;
}

.page-home .home-lines__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.page-home .home-lines__tab {
  font-family: var(--font-mono);
  font-size: .84rem;
  letter-spacing: .04em;
  padding: 11px 22px;
  border: 2px solid var(--line-600);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--body-text);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.page-home .home-lines__tab[aria-selected="true"] {
  background: var(--turf);
  border-color: var(--turf);
  color: var(--ink-900);
  font-weight: 700;
}

.page-home .home-lines__tab:hover {
  border-color: var(--turf);
}

.page-home .home-lines__panel {
  border: var(--border);
  border-top: 4px solid var(--amber);
  background: var(--ink-800);
  padding: 26px 20px;
  box-shadow: var(--shadow-hard);
}

@media (min-width: 760px) {
  .page-home .home-lines__panel {
    padding: 36px 34px;
  }
}

.page-home .home-line__facts {
  display: grid;
  gap: 22px;
  margin: 0;
}

@media (min-width: 760px) {
  .page-home .home-line__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 36px;
  }
}

.page-home .home-line__fact dt {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 8px;
}

.page-home .home-line__fact dd {
  margin: 0;
  font-size: .92rem;
  line-height: 1.75;
  color: var(--body-text);
}

/* ---------- 专题入口 ---------- */

.page-home .home-topics {
  background: var(--ink-900);
}

.page-home .home-topics__head {
  max-width: 58ch;
}

.page-home .home-topics__layout {
  display: grid;
  gap: 30px;
  margin-top: 38px;
}

@media (min-width: 960px) {
  .page-home .home-topics__layout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: start;
  }
}

.page-home .home-topics__media .media__frame {
  border: var(--border);
  background: var(--ink-850);
  box-shadow: var(--shadow-hard);
}

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

.page-home .home-topic {
  padding: 22px 20px 20px;
  background: var(--ink-800);
  border-left: 4px solid var(--turf);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}

.page-home .home-topic:nth-child(2) {
  border-left-color: var(--signal);
}

.page-home .home-topic:nth-child(3) {
  border-left-color: var(--amber);
}

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

.page-home .home-topic__title {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 800;
  color: var(--paper);
  margin: 10px 0 0;
}

.page-home .home-topic__text {
  margin: 10px 0 0;
  font-size: .92rem;
  line-height: 1.75;
  color: var(--body-text);
}

.page-home .home-topic__link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .05em;
  color: var(--turf);
  text-decoration: none;
  border-bottom: 2px solid rgba(182, 255, 59, .35);
  padding-bottom: 2px;
  transition: border-color .25s var(--ease);
}

.page-home .home-topic__link:hover,
.page-home .home-topic__link:focus-visible {
  border-color: var(--turf);
}

/* ---------- 季票与场次 ---------- */

.page-home .home-tickets {
  background: linear-gradient(160deg, var(--ink-800) 0%, var(--ink-850) 58%, var(--ink-900) 100%);
  border-top: var(--border);
  border-bottom: var(--border);
}

.page-home .home-tickets__head {
  max-width: 60ch;
}

.page-home .home-tickets__grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

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

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

.page-home .home-tickets__panel {
  background: var(--ink-850);
  padding: 24px 20px;
  border-top: 4px solid var(--amber);
}

.page-home .home-tickets__sub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--paper);
  margin: 0 0 16px;
}

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

.page-home .home-tickets__row {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  border-left: 3px solid transparent;
  background: rgba(10, 15, 28, .5);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

.page-home .home-tickets__row:hover,
.page-home .home-tickets__row:focus-within {
  border-left-color: var(--turf);
  background: rgba(182, 255, 59, .07);
}

@media (min-width: 620px) {
  .page-home .home-tickets__row {
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: baseline;
    gap: 14px;
  }
}

.page-home .home-tickets__key {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--amber);
}

.page-home .home-tickets__val {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--body-text);
}

.page-home .home-tickets__media .media__frame {
  border: var(--border);
  background: var(--ink-850);
  box-shadow: var(--shadow-hard);
}

.page-home .home-tickets__note {
  margin-top: 24px;
  padding-left: 14px;
  border-left: 3px solid var(--line-600);
  max-width: 68ch;
}

/* ---------- 交付与场景 ---------- */

.page-home .home-delivery {
  background: var(--ink-900);
}

.page-home .home-delivery__head {
  max-width: 58ch;
}

.page-home .home-delivery__grid {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

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

.page-home .home-delivery__card {
  position: relative;
  padding: 26px 20px 22px;
  background: var(--ink-800);
  border-left: 4px solid var(--line-600);
  transition: border-color .25s var(--ease);
}

.page-home .home-delivery__card:nth-child(1) {
  border-left-color: var(--turf);
}

.page-home .home-delivery__card:nth-child(2) {
  border-left-color: var(--amber);
}

.page-home .home-delivery__card:nth-child(3) {
  border-left-color: var(--violet);
}

.page-home .home-delivery__card:nth-child(4) {
  border-left-color: var(--signal);
}

.page-home .home-delivery__card:hover {
  border-left-color: var(--paper);
}

.page-home .home-delivery__idx {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--mute);
  border: 1px solid var(--line-600);
  padding: 3px 9px;
  border-radius: var(--radius-s);
}

.page-home .home-delivery__card h3 {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--paper);
  margin: 14px 0 0;
}

.page-home .home-delivery__card p {
  margin: 10px 0 0;
  font-size: .92rem;
  line-height: 1.78;
  color: var(--body-text);
}

.page-home .home-figures {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: var(--border);
}

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

.page-home .home-figures__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line-600);
}

@media (min-width: 760px) {
  .page-home .home-figures__item {
    border-bottom: 0;
    border-right: 1px solid var(--line-600);
    padding: 24px 18px;
  }

  .page-home .home-figures__item:last-child {
    border-right: 0;
  }
}

.page-home .home-figures__num {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--turf);
  flex: 0 0 auto;
}

.page-home .home-figures__label {
  font-size: .8rem;
  line-height: 1.55;
  color: var(--mute);
}

/* ---------- 服务联络 ---------- */

.page-home .home-contact {
  background: linear-gradient(140deg, var(--violet) 0%, #2A1358 42%, var(--ink-900) 100%);
  border-top: var(--border);
}

.page-home .home-contact__grid {
  display: grid;
  gap: 34px;
}

@media (min-width: 960px) {
  .page-home .home-contact__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 56px;
    align-items: start;
  }
}

.page-home .home-contact__text {
  margin: 20px 0 0;
  max-width: 52ch;
  line-height: 1.8;
  color: var(--body-text);
}

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

@media (min-width: 620px) {
  .page-home .home-contact__actions .btn {
    flex: 0 0 auto;
  }
}

.page-home .home-contact__aside {
  margin: 24px 0 0;
  font-size: .84rem;
  line-height: 1.75;
  color: var(--mute);
}

.page-home .home-contact__aside a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 240, 246, .35);
}

.page-home .home-contact__aside a:hover,
.page-home .home-contact__aside a:focus-visible {
  border-bottom-color: var(--turf);
  color: var(--turf);
}

.page-home .home-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line-600);
  border: var(--border);
  box-shadow: var(--shadow-hard);
}

.page-home .home-contact__item {
  display: grid;
  gap: 5px;
  padding: 18px 18px 16px;
  background: rgba(10, 15, 28, .82);
}

.page-home .home-contact__label {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--amber);
  text-transform: uppercase;
}

.page-home .home-contact__value {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--paper);
  word-break: break-word;
}

.page-home .home-contact__item--note .home-contact__value {
  color: var(--body-text);
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-topic,
  .page-home .home-tickets__row,
  .page-home .home-delivery__card,
  .page-home .home-lines__tab {
    transition: none;
  }

  .page-home .home-topic:hover {
    transform: none;
  }
}
<<<END>>>
