.page-home {
  display: block;
  background: var(--xk-ink);
  color: var(--xk-white);
}

/* ============ 首屏 ============ */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--xk-line-soft);
}
.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 68% 50%;
  opacity: 0.38;
}
.page-home .home-hero__aura {
  position: absolute;
  top: -22%;
  right: -12%;
  z-index: -1;
  width: min(880px, 92vw);
  height: min(880px, 92vw);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(59, 240, 208, 0.22), rgba(154, 107, 255, 0.14) 44%, transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 10, 28, 0.52) 0%, rgba(6, 10, 28, 0.86) 62%, var(--xk-ink) 100%);
  pointer-events: none;
}
.page-home .home-hero__inner {
  position: relative;
}
.page-home .home-hero__title {
  margin: 1rem 0 0;
  max-width: 20ch;
  animation: home-rise 0.8s var(--xk-ease) both;
}
.page-home .home-hero__lead {
  margin: clamp(1.25rem, 3vw, 1.75rem) 0 0;
  max-width: 36ch;
  color: var(--xk-gray);
  animation: home-rise 0.8s var(--xk-ease) 0.12s both;
}
.page-home .home-hero__stats {
  list-style: none;
  margin: clamp(2rem, 5vw, 3.25rem) 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--xk-line);
  border: 1px solid var(--xk-line);
  border-radius: var(--xk-radius-m);
  overflow: hidden;
  animation: home-rise 0.8s var(--xk-ease) 0.24s both;
}
.page-home .home-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: clamp(1.1rem, 3vw, 1.6rem) clamp(1.2rem, 3vw, 1.75rem);
  background: rgba(12, 18, 48, 0.84);
}
.page-home .home-stat__num {
  font-family: var(--xk-font-mono);
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--xk-cyan);
}
.page-home .home-stat__label {
  font-size: 0.9375rem;
  color: var(--xk-white);
}
.page-home .home-stat__unit {
  font-family: var(--xk-font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--xk-gray);
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  animation: home-rise 0.8s var(--xk-ease) 0.36s both;
}
@keyframes home-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@media (min-width: 760px) {
  .page-home .home-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ============ 赛季星图 ============ */
.page-home .home-star {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}
.page-home .home-star__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.22;
}
.page-home .home-star::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--xk-ink), rgba(6, 10, 28, 0.5) 42%, var(--xk-ink));
  pointer-events: none;
}
.page-home .home-star__note {
  margin: 0.9rem 0 0;
  max-width: 40ch;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--xk-gray);
}
.page-home .home-star__rail {
  list-style: none;
  margin: clamp(2rem, 5vw, 3rem) 0 0;
  padding: 0.5rem var(--xk-gutter) 1.75rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--xk-obs) transparent;
  -webkit-overflow-scrolling: touch;
}
.page-home .home-star__rail::-webkit-scrollbar { height: 6px; }
.page-home .home-star__rail::-webkit-scrollbar-thumb {
  background: var(--xk-obs);
  border-radius: var(--xk-pill);
}
.page-home .home-star__rail::-webkit-scrollbar-track { background: transparent; }
.page-home .home-season {
  flex: 0 0 auto;
  width: clamp(230px, 76vw, 292px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--xk-line-soft);
  border-radius: var(--xk-radius-m);
  background: linear-gradient(165deg, rgba(27, 38, 87, 0.62), rgba(6, 10, 28, 0.9));
  transition: border-color 0.3s var(--xk-ease), transform 0.3s var(--xk-ease);
}
.page-home .home-season:hover,
.page-home .home-season:focus-within {
  border-color: rgba(59, 240, 208, 0.62);
  transform: translateY(-4px);
}
.page-home .home-season__year {
  font-family: var(--xk-font-mono);
  font-size: 1.65rem;
  letter-spacing: 0.06em;
  color: var(--xk-white);
}
.page-home .home-season__tag { align-self: flex-start; }
.page-home .home-season__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--xk-gray);
}
.page-home .home-season__link {
  margin-top: auto;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--xk-cyan);
  text-decoration: none;
}
.page-home .home-season__link:hover { text-decoration: underline; }

/* ============ 单场记录 ============ */
.page-home .home-record__intro {
  margin: 0.9rem 0 0;
  max-width: 40ch;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--xk-gray);
}
.page-home .home-record__layout {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.page-home .home-record__figure {
  margin: 0;
  border: 1px solid var(--xk-line-soft);
  border-radius: var(--xk-radius-l);
  overflow: hidden;
  background: var(--xk-night);
}
.page-home .home-record__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.page-home .home-record__figcaption {
  padding: 0.9rem 1.25rem 1.1rem;
  border-top: 1px solid var(--xk-line-soft);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--xk-gray);
}
.page-home .home-field-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.page-home .home-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.35rem 1.4rem 1.5rem;
  border: 1px solid var(--xk-line-soft);
  border-radius: var(--xk-radius-m);
  background: rgba(12, 18, 48, 0.62);
  transition: border-color 0.3s var(--xk-ease);
}
.page-home .home-field:hover { border-color: rgba(154, 107, 255, 0.55); }
.page-home .home-field__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.page-home .home-field__name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--xk-white);
}
.page-home .home-field__value {
  font-family: var(--xk-font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--xk-cyan);
}
.page-home .home-field__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--xk-gray);
}
@media (min-width: 620px) {
  .page-home .home-field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 980px) {
  .page-home .home-record__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
  }
}

/* ============ 横向维度带 ============ */
.page-home .home-dims {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--xk-line-soft);
  border-bottom: 1px solid var(--xk-line-soft);
  background: linear-gradient(180deg, rgba(27, 38, 87, 0.3), transparent);
}
.page-home .home-dims__band {
  list-style: none;
  margin: clamp(1.25rem, 3vw, 1.75rem) 0 0;
  padding: 0.25rem var(--xk-gutter) 1rem;
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.page-home .home-dim {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--xk-line-soft);
  border-radius: var(--xk-radius-m);
  background: rgba(6, 10, 28, 0.72);
}
.page-home .home-dim__key {
  font-family: var(--xk-font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: var(--xk-violet);
}
.page-home .home-dim__val {
  font-size: 0.9375rem;
  color: var(--xk-white);
}

/* ============ 焦点战报 ============ */
.page-home .home-news__figure {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--xk-line-soft);
  border-radius: var(--xk-radius-l);
  overflow: hidden;
}
.page-home .home-news__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.85;
}
.page-home .home-news__lead {
  margin: 0.9rem 0 1.6rem;
  max-width: 36ch;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--xk-gray);
}
.page-home .home-news__layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}
.page-home .home-tl {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.9rem;
  position: relative;
}
.page-home .home-tl::before {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.5rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(180deg, var(--xk-cyan), var(--xk-violet) 58%, rgba(255, 138, 60, 0.72));
}
.page-home .home-tl__item {
  position: relative;
  padding-bottom: 1.5rem;
}
.page-home .home-tl__item::before {
  content: "";
  position: absolute;
  left: -1.72rem;
  top: 0.42rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--xk-cyan);
  box-shadow: 0 0 0 4px rgba(59, 240, 208, 0.14);
}
.page-home .home-tl__item--amber::before {
  background: var(--xk-amber);
  box-shadow: 0 0 0 4px rgba(255, 138, 60, 0.16);
}
.page-home .home-tl__time {
  font-family: var(--xk-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--xk-gray);
}
.page-home .home-tl__title {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--xk-white);
}
.page-home .home-tl__text {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--xk-gray);
}
@media (min-width: 900px) {
  .page-home .home-news__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }
}

/* ============ 赛季区间 ============ */
.page-home .home-zone__intro {
  margin: 0.9rem 0 0;
  max-width: 40ch;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--xk-gray);
}
.page-home .home-zones {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.page-home .home-zone {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--xk-line-soft);
  border-radius: var(--xk-radius-l);
  background: rgba(12, 18, 48, 0.55);
}
.page-home .home-zone--up {
  border-color: rgba(70, 227, 155, 0.45);
  background: var(--xk-green-soft);
}
.page-home .home-zone--keep {
  border-color: rgba(59, 240, 208, 0.38);
  background: var(--xk-cyan-soft);
}
.page-home .home-zone--down {
  border-color: rgba(255, 138, 60, 0.45);
  background: var(--xk-amber-soft);
}
.page-home .home-zone__name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--xk-white);
}
.page-home .home-zone__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(234, 241, 255, 0.82);
}
@media (min-width: 780px) {
  .page-home .home-zones { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ============ 数据来源 ============ */
.page-home .home-source__list {
  list-style: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.page-home .home-source__item {
  padding: clamp(1.4rem, 3vw, 1.9rem);
  border-top: 2px solid var(--xk-obs);
  border-radius: 0 0 var(--xk-radius-m) var(--xk-radius-m);
  background: linear-gradient(180deg, rgba(27, 38, 87, 0.35), transparent);
}
.page-home .home-source__idx {
  display: block;
  font-family: var(--xk-font-mono);
  font-size: 1.5rem;
  color: var(--xk-cyan);
}
.page-home .home-source__title {
  margin: 0.6rem 0 0.4rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--xk-white);
}
.page-home .home-source__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--xk-gray);
}
.page-home .home-source__foot {
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  max-width: 46ch;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--xk-gray);
}
@media (min-width: 820px) {
  .page-home .home-source__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ============ 联络与支持 ============ */
.page-home .home-contact {
  border-top: 1px solid var(--xk-line-soft);
  background: linear-gradient(160deg, rgba(27, 38, 87, 0.42), rgba(6, 10, 28, 0.92));
}
.page-home .home-contact__layout {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}
.page-home .home-contact__lead {
  margin: 0.9rem 0 1.6rem;
  max-width: 36ch;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--xk-gray);
}
.page-home .home-contact__panel {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--xk-line-soft);
  border-radius: var(--xk-radius-l);
  background: rgba(6, 10, 28, 0.66);
}
.page-home .home-contact__legal {
  margin: 1.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--xk-gray);
}
@media (min-width: 900px) {
  .page-home .home-contact__layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__title,
  .page-home .home-hero__lead,
  .page-home .home-hero__stats,
  .page-home .home-hero__actions,
  .page-home .home-season {
    animation: none !important;
    transition: none !important;
  }
}
<<<END>>>
