.page-home {
  --home-line: rgba(139, 92, 246, .38);
  --home-dash: rgba(46, 34, 70, .78);
  display: block;
  overflow-x: clip;
}

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

/* ============ 首屏 ============ */
.page-home .hero {
  position: relative;
  padding: clamp(24px, 4.2vw, 54px) 0 clamp(40px, 6vw, 84px);
  background:
    radial-gradient(110% 82% at 92% 0%, rgba(139, 92, 246, .24), transparent 62%),
    linear-gradient(158deg, var(--zone) 0%, var(--abyss) 62%);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
}

.page-home .hero::before {
  content: "";
  position: absolute;
  top: -34%;
  right: -14%;
  width: 60%;
  height: 160%;
  background: linear-gradient(150deg, rgba(255, 122, 24, .17), transparent 64%);
  transform: rotate(14deg);
  pointer-events: none;
}

.page-home .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 34, 70, .55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 34, 70, .55) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .3;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(118deg, #000 8%, transparent 68%);
  mask-image: linear-gradient(118deg, #000 8%, transparent 68%);
}

.page-home .hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(26px, 4vw, 54px);
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.page-home .hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(29px, 5.4vw, 52px);
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--white);
  margin: 12px 0 0;
  max-width: 15em;
}

.page-home .hero__text {
  margin: 16px 0 0;
  max-width: 34em;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--mist);
}

.page-home .hero__entries {
  display: grid;
  gap: 10px;
  margin-top: clamp(22px, 3vw, 34px);
}

.page-home .entry {
  position: relative;
  display: grid;
  gap: 5px;
  align-content: start;
  padding: 15px 15px 17px;
  background: linear-gradient(160deg, var(--panel), rgba(19, 12, 34, .92));
  border: 1px solid var(--hair);
  border-left: 3px solid var(--purple);
  color: var(--white);
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.page-home .entry--gold { border-left-color: var(--gold); }
.page-home .entry--cyan { border-left-color: var(--cyan); }

.page-home .entry__idx {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--purple-glow);
}

.page-home .entry--gold .entry__idx { color: var(--gold-hi); }
.page-home .entry--cyan .entry__idx { color: var(--cyan); }

.page-home .entry__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .01em;
}

.page-home .entry__note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mist);
}

.page-home .entry:hover,
.page-home .entry:focus-visible {
  transform: translateY(-3px);
  border-top-color: var(--purple-glow);
  border-right-color: var(--purple-glow);
  border-bottom-color: var(--purple-glow);
  box-shadow: var(--shadow-lift);
}

.page-home .hero__media {
  position: relative;
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--hair);
  overflow: hidden;
  clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
}

.page-home .hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-home .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 42%, rgba(10, 7, 19, .74) 100%);
  pointer-events: none;
}

@media (min-width: 940px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
    align-items: center;
  }
  .page-home .hero__lede { transform: translateY(-14px); }
  .page-home .hero__media { transform: translateY(30px); }
  .page-home .hero__entries { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ============ 通用区块头 ============ */
.page-home .section__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.24;
  color: var(--white);
  margin: 8px 0 0;
}

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

/* ============ 三条主线 ============ */
.page-home .lines {
  display: grid;
  gap: clamp(14px, 2.2vw, 22px);
  margin-top: clamp(24px, 3.6vw, 40px);
}

.page-home .line {
  display: grid;
  align-content: start;
  gap: 13px;
  min-width: 0;
  padding: clamp(18px, 2.4vw, 26px);
  background: var(--panel);
  border: 1px solid var(--hair);
}

.page-home .line--bracket { border-top: 2px solid var(--purple); }
.page-home .line--score { border-top: 2px solid var(--gold); }
.page-home .line--player { border-top: 2px solid var(--cyan); }

.page-home .line__tag {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--mist);
}

.page-home .line__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.34;
  color: var(--white);
}

.page-home .line__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
  color: var(--mist);
}

.page-home .line__gain {
  margin: 2px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
  font-size: 13px;
  line-height: 1.7;
  color: var(--white);
}

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

.page-home .bracket__node {
  position: relative;
  padding: 9px 0;
  border-bottom: 1px solid var(--hair);
  font-size: 13px;
  color: var(--mist);
}

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

.page-home .bracket__node b {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--purple-glow);
}

.page-home .bracket__node::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--abyss);
  border: 1px solid var(--purple);
}

.page-home .bracket__node:first-child::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, .18);
}

.page-home .segs {
  display: grid;
  gap: 8px;
}

.page-home .seg {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  background: rgba(10, 7, 19, .62);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
}

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

.page-home .seg__bar {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), rgba(43, 227, 214, .08));
}

.page-home .seg--h1 .seg__bar {
  width: 46%;
  background: linear-gradient(90deg, var(--cyan), rgba(43, 227, 214, .08));
}

.page-home .seg--h2 .seg__bar {
  width: 100%;
  background: linear-gradient(90deg, var(--purple), rgba(139, 92, 246, .08));
}

.page-home .seg--ck .seg__bar {
  width: 68%;
  background: linear-gradient(90deg, var(--gold), rgba(255, 122, 24, .08));
}

.page-home .seg__val {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--gold-hi);
}

.page-home .line__figure {
  margin: 2px 0 0;
}

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

.page-home .player-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(10, 7, 19, .62);
  border: 1px solid var(--hair);
}

.page-home .player-card__big {
  margin: 0;
  font-size: 14px;
  color: var(--mist);
}

.page-home .player-card__big .num {
  font-family: var(--font-mono);
  font-size: 30px;
  line-height: 1;
  color: var(--cyan);
  margin-right: 4px;
}

.page-home .player-fields {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .player-fields li {
  display: grid;
  gap: 2px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--home-dash);
}

.page-home .player-fields li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.page-home .player-fields b {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: var(--mist);
}

@media (min-width: 920px) {
  .page-home .lines {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.34fr) minmax(0, 1fr);
    align-items: start;
  }
  .page-home .line--score { transform: translateY(-18px); }
}

/* ============ 轮次推进轴 ============ */
.page-home .axis {
  list-style: none;
  margin: clamp(22px, 3.4vw, 36px) 0 0;
  padding: 0 0 0 26px;
  border-left: 1px solid var(--hair);
}

.page-home .axis__item {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--home-dash);
}

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

.page-home .axis__item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 22px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--abyss);
  border: 1px solid var(--purple);
}

.page-home .axis__item.is-current {
  background: linear-gradient(90deg, rgba(255, 122, 24, .1), transparent 72%);
}

.page-home .axis__item.is-current::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, .16);
}

.page-home .axis__round {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.page-home .axis__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--purple-glow);
}

.page-home .axis__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.page-home .axis__item.is-current .axis__name { color: var(--gold-hi); }

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

.page-home .axis__num {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--gold-hi);
  margin-right: 4px;
}

.page-home .axis__time,
.page-home .axis__venue {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--mist);
}

.page-home .axis__foot {
  margin: 22px 0 0;
  max-width: 34em;
  font-size: 14px;
  line-height: 1.78;
  color: var(--mist);
  padding-left: 14px;
  border-left: 2px solid var(--purple);
}

@media (min-width: 780px) {
  .page-home .axis__item {
    grid-template-columns: 170px 128px 168px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 20px 0;
  }
  .page-home .axis__item::before {
    top: 50%;
    transform: translateY(-50%);
  }
  .page-home .axis__item.is-current {
    padding-left: 16px;
  }
}

/* ============ 更新节奏 ============ */
.page-home .cadence {
  position: relative;
  isolation: isolate;
  padding: clamp(44px, 7vw, 92px) 0;
  background: var(--abyss);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
}

.page-home .cadence__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-home .cadence__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}

.page-home .cadence::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(10, 7, 19, .96) 28%, rgba(10, 7, 19, .58) 100%);
}

.page-home .stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: clamp(22px, 3vw, 34px);
}

.page-home .stat {
  padding: 16px 16px 18px;
  background: rgba(27, 18, 48, .82);
  border: 1px solid var(--hair);
  border-top: 2px solid var(--cyan);
  display: grid;
  gap: 4px;
}

.page-home .stats .stat:nth-child(1) { border-top-color: var(--purple); }
.page-home .stats .stat:nth-child(2) { border-top-color: var(--gold); }
.page-home .stats .stat:nth-child(3) { border-top-color: var(--cyan); }
.page-home .stats .stat:nth-child(4) { border-top-color: var(--gold-hi); }

.page-home .stat__value {
  font-family: var(--font-mono);
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.1;
  letter-spacing: .01em;
  color: var(--gold-hi);
}

.page-home .stat__label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mist);
}

/* ============ 赛季里程碑 ============ */
.page-home .miles {
  list-style: none;
  margin: clamp(24px, 3.6vw, 40px) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(14px, 2vw, 20px);
}

.page-home .mile {
  position: relative;
  padding: 18px 18px 20px;
  background: var(--panel);
  border: 1px solid var(--hair);
  border-left: 2px solid var(--purple);
  min-width: 0;
}

.page-home .mile:nth-child(2) { border-left-color: var(--gold); }
.page-home .mile:nth-child(3) { border-left-color: var(--cyan); }
.page-home .mile:nth-child(4) { border-left-color: var(--gold-hi); }

.page-home .mile__year {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--gold-hi);
}

.page-home .mile__title {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.36;
  color: var(--white);
}

.page-home .mile__text {
  margin: 9px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--mist);
}

.page-home .mile-media {
  margin: clamp(22px, 3.4vw, 36px) 0 0;
  border: 1px solid var(--hair);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

.page-home .mile-media img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

@media (min-width: 860px) {
  .page-home .miles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  .page-home .mile:nth-child(even) { transform: translateY(22px); }
}

/* ============ 合作入口 ============ */
.page-home .partner {
  padding-bottom: clamp(48px, 7vw, 96px);
}

.page-home .partner__panel {
  display: grid;
  gap: clamp(22px, 3vw, 32px);
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(140deg, rgba(139, 92, 246, .2), transparent 58%),
    var(--zone);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.page-home .partner__title {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.26;
  color: var(--white);
}

.page-home .partner__text {
  margin: 14px 0 0;
  max-width: 34em;
  font-size: 15px;
  line-height: 1.78;
  color: var(--mist);
}

.page-home .partner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

@media (min-width: 880px) {
  .page-home .partner__panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}
<<<END>>>
