.page-home {
  --home-pad: 18px;
  display: block;
  background: var(--ink);
  color: var(--body);
  font-family: var(--sans);
  line-height: 1.75;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

.page-home .home-frame {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--home-pad);
}

.page-home .home-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: var(--max);
  margin-inline: auto;
  padding: 14px var(--home-pad) 0;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--mute);
}

.page-home .crumb-sep {
  color: var(--dim);
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
  padding: 30px 0 44px;
}

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

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(158deg, rgba(5, 13, 22, 0.4) 0%, rgba(5, 13, 22, 0.78) 40%, rgba(5, 13, 22, 0.97) 74%, #050d16 100%);
}

.page-home .hero-slash {
  position: absolute;
  z-index: 1;
  top: -32%;
  right: -18%;
  width: 62%;
  height: 164%;
  background: linear-gradient(200deg, rgba(166, 255, 61, 0.16), rgba(47, 224, 200, 0.07) 44%, transparent 72%);
  transform: rotate(-14deg);
  pointer-events: none;
}

.page-home .hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
}

.page-home .hero-eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.page-home .hero-num {
  font-family: var(--mono);
}

.page-home .display {
  margin: 16px 0 0;
  font-size: clamp(40px, 11vw, 92px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ice);
}

.page-home .display em {
  font-style: normal;
  color: var(--lime);
  position: relative;
  display: inline-block;
}

.page-home .display em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), rgba(166, 255, 61, 0));
}

.page-home .lede {
  margin: 20px 0 0;
  max-width: 34em;
  font-size: 15px;
  color: var(--body);
}

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

.page-home .hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
}

.page-home .hero-facts {
  list-style: none;
  margin: 30px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--hair);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-home .hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.page-home .hero-fact-val {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ice);
}

.page-home .hero-facts li:first-child .hero-fact-val {
  color: var(--lime);
}

.page-home .hero-fact-lab {
  font-size: 12px;
  color: var(--mute);
  line-height: 1.5;
}

.page-home .hero-side {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  min-width: 0;
}

.page-home .hero-note {
  display: block;
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--lime);
}

.page-home .hero-figure {
  margin: 0;
  border: 1px solid var(--hair);
  overflow: hidden;
}

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

.page-home .score-stack {
  display: grid;
  gap: 12px;
}

.page-home .score-card {
  border: 1px solid var(--hair);
  background: linear-gradient(180deg, rgba(11, 27, 43, 0.95), rgba(11, 27, 43, 0.76));
  padding: 14px 16px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.page-home .score-card:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(18, 41, 63, 0.98), rgba(11, 27, 43, 0.9));
}

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

.page-home .score-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
}

.page-home .score-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 0;
}

.page-home .score-team {
  font-size: 14px;
  color: var(--body);
}

.page-home .score-num {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ice);
}

.page-home .score-num--lead {
  color: var(--orange);
}

.page-home .score-reset {
  margin: 10px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
}

.page-home .score-note {
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px dashed var(--hair);
  font-size: 12px;
  line-height: 1.6;
  color: var(--dim);
  transition: color 0.2s ease;
}

.page-home .score-card:hover .score-note {
  color: var(--body);
}

/* ---------- 章节通用 ---------- */
.page-home .chapter {
  position: relative;
  padding: clamp(44px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--hair);
}

.page-home .chapter-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  max-width: 780px;
}

.page-home .chapter-title {
  margin: 0;
  font-size: clamp(24px, 5.4vw, 40px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ice);
}

.page-home .chapter-deck {
  margin: 0;
  max-width: 40em;
  font-size: 14px;
  color: var(--body);
}

/* ---------- 时间轴 ---------- */
.page-home .timeline-block {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11, 27, 43, 0.5), rgba(5, 13, 22, 1));
}

.page-home .tl-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  pointer-events: none;
}

.page-home .timeline-block > .home-frame {
  position: relative;
  z-index: 1;
}

.page-home .timeline-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 26px 2px 16px;
  border-top: 1px solid rgba(47, 224, 200, 0.35);
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.page-home .tl-node {
  position: relative;
  flex: 0 0 216px;
  scroll-snap-align: start;
  border: 1px solid var(--hair);
  background: rgba(11, 27, 43, 0.9);
  padding: 18px 16px 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .tl-node::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 122, 41, 0));
}

.page-home .tl-node:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}

.page-home .tl-time {
  margin: 0;
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.2;
}

.page-home .tl-state {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--ice);
}

.page-home .tl-desc {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--mute);
}

.page-home .tl-foot {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--dim);
}

/* ---------- 三步走 ---------- */
.page-home .step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .step {
  display: grid;
  gap: 8px;
  padding: 22px 18px;
  border: 1px solid var(--hair);
  background: linear-gradient(180deg, rgba(11, 27, 43, 0.86), rgba(5, 13, 22, 0.62));
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .step:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}

.page-home .step-num {
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
}

.page-home .step h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ice);
}

.page-home .step p {
  margin: 0;
  font-size: 13px;
  color: var(--body);
}

/* ---------- 赛季索引 ---------- */
.page-home .season-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.page-home .season-card {
  flex: 0 0 268px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px;
  border: 1px solid var(--hair);
  background: var(--panel);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.page-home .season-card:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
  background: var(--raised);
}

.page-home .season-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-home .season-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ice);
}

.page-home .season-count {
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mute);
}

.page-home .season-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--lime);
  margin-right: 6px;
  line-height: 1;
}

.page-home .season-desc {
  margin: 0;
  flex: 1;
  font-size: 13px;
  line-height: 1.7;
  color: var(--body);
}

/* ---------- 客服边界 ---------- */
.page-home .support-panel {
  display: grid;
  gap: 24px;
  padding: 26px 20px;
  border: 1px solid var(--hair);
  background: linear-gradient(140deg, rgba(18, 41, 63, 0.92), rgba(11, 27, 43, 0.7));
}

.page-home .support-rules {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .support-rules li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--body);
}

.page-home .support-rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 2px;
  background: var(--lime);
}

.page-home .contact-list {
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-home .contact-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--dim);
}

.page-home .contact-value {
  margin: 2px 0 0;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--ice);
  word-break: break-all;
}

/* ---------- 收尾 ---------- */
.page-home .onward {
  overflow: hidden;
  background: linear-gradient(200deg, rgba(11, 27, 43, 0.9), rgba(5, 13, 22, 1));
}

.page-home .onward-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  pointer-events: none;
}

.page-home .onward-wrap {
  position: relative;
  z-index: 1;
}

.page-home .onward-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.page-home .onward-card {
  display: grid;
  gap: 8px;
  padding: 22px 18px;
  border: 1px solid var(--hair);
  background: rgba(11, 27, 43, 0.88);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.page-home .onward-card:hover,
.page-home .onward-card:focus-visible {
  border-color: var(--lime);
  transform: translateY(-2px);
  background: var(--raised);
}

.page-home .onward-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.page-home .onward-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ice);
  line-height: 1.5;
}

.page-home .onward-note {
  margin: 22px 0 0;
  font-size: 13px;
  color: var(--mute);
}

/* ---------- 响应式 ---------- */
@media (min-width: 760px) {
  .page-home {
    --home-pad: 24px;
  }

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

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

  .page-home .hero {
    padding: 48px 0 64px;
  }
}

@media (min-width: 900px) {
  .page-home .support-panel {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 44px;
    padding: 32px 30px;
  }
}

@media (min-width: 1000px) {
  .page-home .hero {
    padding: 64px 0 86px;
  }

  .page-home .hero-wrap {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 56px;
    padding-left: 60px;
  }

  .page-home .hero-note {
    position: absolute;
    left: -40px;
    top: 6px;
    writing-mode: vertical-rl;
    letter-spacing: 0.18em;
    color: var(--mute);
  }

  .page-home .chapter-head {
    margin-bottom: 34px;
  }

  .page-home .season-card {
    flex: 0 0 300px;
  }
}
</PAGE_CSS>>>
