.page-home {
  display: block;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 7vw, 84px) 0 clamp(56px, 9vw, 112px);
}

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 107, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 107, 255, .08) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .95), transparent 78%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .95), transparent 78%);
  pointer-events: none;
}

.page-home .hero::after {
  content: "";
  position: absolute;
  top: -28%;
  right: -14%;
  width: 62vw;
  height: 62vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle, rgba(46, 107, 255, .3), transparent 68%);
  pointer-events: none;
}

.page-home .hero > .container {
  position: relative;
  z-index: 1;
}

.page-home .hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-home .hero__kicker {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--cyan);
  text-transform: uppercase;
}

.page-home .hero__title {
  margin: 0 0 20px;
  font-size: clamp(34px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--snow);
}

.page-home .hero__lede {
  margin: 0 0 32px;
  max-width: 30em;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.85;
  color: var(--mist);
}

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

.page-home .hero__visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
}

.page-home .hero__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
}

.page-home .hero__beam {
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 43%, rgba(111, 227, 255, .3) 50%, transparent 57%);
  animation: home-beam 9s var(--ease) infinite;
  pointer-events: none;
}

@keyframes home-beam {
  0%, 58% {
    transform: translateX(-70%);
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  100% {
    transform: translateX(70%);
    opacity: 0;
  }
}

.page-home .hero__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
}

@media (min-width: 940px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
    gap: 64px;
  }
}

/* ---------- 章节骨架 ---------- */
.page-home .chapter {
  position: relative;
  padding-block: clamp(72px, 13vh, 190px);
}

.page-home .chapter__inner {
  display: grid;
  gap: 18px;
}

.page-home .chapter__rail {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.page-home .chapter__num {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--blue);
}

.page-home .chapter__label {
  font-size: 12px;
  letter-spacing: .24em;
  color: var(--mist);
}

.page-home .chapter__title {
  margin: 0 0 16px;
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: -.02em;
  color: var(--snow);
}

.page-home .chapter__lead {
  margin: 0 0 28px;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.85;
  color: var(--mist);
}

@media (min-width: 880px) {
  .page-home .chapter__inner {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 48px;
  }
  .page-home .chapter__rail {
    position: sticky;
    top: calc(var(--bar-h) + 40px);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ---------- 01 数据胶囊 ---------- */
.page-home .capsules {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  margin-bottom: 28px;
}

.page-home .capsule {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 8px;
  padding: 22px 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--ink-800), var(--ink-900) 72%);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.page-home .capsule:hover {
  border-color: rgba(46, 107, 255, .55);
  transform: translateY(-3px);
}

.page-home .capsule__value {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--snow);
}

.page-home .capsule__unit {
  font-size: 14px;
  color: var(--cyan);
}

.page-home .capsule__label {
  flex: 1 0 100%;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--mist);
}

.page-home .pulse {
  max-width: 520px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(20, 27, 43, .6);
}

.page-home .pulse__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.page-home .pulse__label {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--mist);
}

.page-home .pulse__state {
  font-size: 13px;
  color: var(--green);
}

.page-home .pulse__track {
  height: 8px;
  border-radius: var(--r-pill);
  background: var(--ink-800);
  overflow: hidden;
}

.page-home .pulse__fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--blue), var(--green));
  animation: home-pulse 3.6s var(--ease) infinite;
}

@keyframes home-pulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}

/* ---------- 02 球员名录 ---------- */
.page-home .split {
  display: grid;
  gap: 36px;
}

.page-home .split__note {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mist);
}

.page-home .split__note b {
  color: var(--green);
  font-size: 18px;
}

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

.page-home .roster__cell {
  position: relative;
  outline: none;
}

.page-home .roster__avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: var(--r-pill);
  background: linear-gradient(150deg, var(--ink-800), var(--ink-950));
  border: 1px solid var(--line-strong);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.page-home .roster__no {
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
}

.page-home .roster__cell:hover .roster__avatar,
.page-home .roster__cell:focus-visible .roster__avatar {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(46, 107, 255, .18);
}

.page-home .roster__card {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  width: 214px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--ink-800);
  box-shadow: 0 18px 40px rgba(5, 7, 13, .72);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  z-index: 6;
}

.page-home .roster__cell:hover .roster__card,
.page-home .roster__cell:focus-visible .roster__card {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.page-home .roster__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 4px 0;
  font-size: 13px;
  line-height: 1.6;
}

.page-home .roster__key {
  color: var(--mist);
}

.page-home .roster__val {
  color: var(--snow);
  font-weight: 600;
}

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

@media (max-width: 640px) {
  .page-home .roster {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .page-home .roster__cell {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: rgba(20, 27, 43, .55);
  }
  .page-home .roster__card {
    position: static;
    width: auto;
    flex: 1;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

/* ---------- 03 三步查赛程 ---------- */
.page-home .chapter--band {
  overflow: hidden;
}

.page-home .chapter--band .band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .chapter--band .band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .17;
  filter: saturate(.6);
}

.page-home .chapter--band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, var(--ink-950) 0%, rgba(5, 7, 13, .74) 42%, var(--ink-950) 100%);
  pointer-events: none;
}

.page-home .chapter--band > .container {
  position: relative;
  z-index: 1;
}

.page-home .steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 26px;
}

.page-home .steps__item {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.page-home .steps__item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 58px;
  height: 2px;
  background: var(--blue);
}

.page-home .steps__num {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--blue);
}

.page-home .steps__title {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--snow);
}

.page-home .steps__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mist);
}

.page-home .steps__foot {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mist);
}

.page-home .steps__foot b {
  color: var(--green);
  font-size: 20px;
}

@media (min-width: 780px) {
  .page-home .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
}

/* ---------- 04 收藏 ---------- */
.page-home .savebox {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background:
    radial-gradient(125% 145% at 100% 0%, rgba(46, 107, 255, .18), transparent 62%),
    linear-gradient(155deg, var(--ink-850), var(--ink-950));
}

.page-home .savebox__text {
  margin: 0 0 28px;
  max-width: 40em;
  font-size: 16px;
  line-height: 1.85;
  color: var(--mist);
}

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

.page-home .savebox__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(11, 18, 32, .62);
  font-size: 15px;
  line-height: 1.6;
  color: var(--snow);
}

.page-home .savebox__item span {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--cyan);
}

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

/* ---------- 05 服务与支持 ---------- */
.page-home .support__cards {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .support__card {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(20, 27, 43, .72);
}

.page-home .support__key {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--mist);
}

.page-home .support__val {
  display: block;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--snow);
  word-break: break-word;
}

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

.page-home .support__trust {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: .02em;
  color: var(--mist);
}

@media (min-width: 720px) {
  .page-home .support__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
<<<END>>>
