.page-home {
  --home-gap: clamp(16px, 2.4vw, 26px);
  --home-block-y: clamp(40px, 6vw, 76px);
  --home-radius: 18px;
  display: block;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  padding: clamp(26px, 4.6vw, 54px) 0 clamp(30px, 5vw, 62px);
  background:
    radial-gradient(115% 85% at 92% 0%, rgba(196, 71, 43, .16), transparent 58%),
    radial-gradient(90% 70% at 4% 100%, rgba(15, 138, 106, .12), transparent 62%),
    var(--mist);
}

.page-home .home-hero__top {
  display: grid;
  gap: clamp(22px, 3.4vw, 38px);
  margin-top: clamp(16px, 2.4vw, 26px);
}

.page-home .home-hero h1 {
  margin: 12px 0 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5.6vw, 3.5rem);
  line-height: 1.14;
  letter-spacing: -0.022em;
  color: var(--night);
  max-width: 20ch;
}

.page-home .home-hero__copy .lede {
  margin-top: 18px;
  max-width: 46ch;
  color: var(--night-2);
}

.page-home .home-hero__figure {
  margin: 0;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.page-home .home-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.page-home .home-chips__more {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-style: dashed;
}

/* ---------- 赛季阶段 + 核心数字 ---------- */
.page-home .home-board {
  display: grid;
  gap: var(--home-gap);
  margin-top: clamp(30px, 4.6vw, 52px);
}

.page-home .home-board__heading {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  letter-spacing: -0.01em;
  color: var(--night);
}

.page-home .home-timeline {
  position: relative;
  margin: 20px 0 0;
  padding: 0 0 0 30px;
  list-style: none;
}

.page-home .home-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 14px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--clay) 0%, var(--jade) 52%, var(--night) 100%);
}

.page-home .home-timeline__node {
  position: relative;
  padding: 0 0 22px;
}

.page-home .home-timeline__node:last-child {
  padding-bottom: 0;
}

.page-home .home-timeline__node::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mist);
  border: 2px solid var(--clay);
  box-sizing: border-box;
}

.page-home .home-timeline__node.is-current::before {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 0 5px rgba(240, 180, 41, .22);
}

.page-home .home-timeline__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--night);
  line-height: 1.4;
}

.page-home .home-timeline__node.is-current .home-timeline__title {
  color: var(--clay-deep);
}

.page-home .home-timeline__text {
  margin: 5px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 52ch;
}

.page-home .home-board__figures {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 4px;
  padding: clamp(22px, 3.2vw, 32px);
  border-radius: var(--radius-lg) 6px var(--radius-lg) var(--radius-lg);
  background: var(--night);
  box-shadow: var(--shadow-soft);
}

.page-home .home-board__figures::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, rgba(196, 71, 43, .55), rgba(240, 180, 41, .34), transparent 72%);
  filter: blur(6px);
  opacity: .75;
  pointer-events: none;
}

.page-home .home-figure {
  position: relative;
  z-index: 1;
  padding: 14px 0;
  border-bottom: 1px solid rgba(217, 222, 231, .14);
}

.page-home .home-figure:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}

.page-home .home-figure__value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--amber);
}

.page-home .home-figure__label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247, 243, 236, .78);
}

/* ---------- 射手榜 ---------- */
.page-home .home-leaders {
  background: var(--mist);
}

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

.page-home .home-leaders h2 {
  margin: 10px 0 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--night);
}

.page-home .home-leaders__intro .lede {
  margin-top: 14px;
  max-width: 54ch;
  color: var(--night-2);
}

.page-home .home-leaders__table {
  margin-top: clamp(22px, 3.4vw, 34px);
  border-top: 3px solid var(--clay);
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
}

.page-home .home-table tbody tr:hover {
  background: rgba(15, 138, 106, .07);
}

.page-home .home-table tbody tr td:first-child {
  color: var(--slate);
  font-weight: 600;
}

.page-home .home-leaders .annot a {
  color: var(--clay-deep);
  font-weight: 600;
}

/* ---------- 四条主线 ---------- */
.page-home .home-paths {
  background: var(--mist);
}

.page-home .home-paths h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--night);
}

.page-home .home-paths .lede {
  margin-top: 12px;
  max-width: 50ch;
  color: var(--night-2);
}

.page-home .home-entries {
  display: grid;
  gap: var(--home-gap);
  margin-top: clamp(24px, 3.6vw, 40px);
}

.page-home .home-entry {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius-lg) 6px var(--radius-lg) var(--radius-lg);
  border: 0;
  color: var(--mist);
}

.page-home .home-entry--b {
  border-radius: 6px var(--radius-lg) var(--radius-lg) var(--radius-lg);
}

.page-home .home-entry--c {
  border-radius: var(--radius-lg) var(--radius-lg) 6px var(--radius-lg);
}

.page-home .home-entry--d {
  border-radius: var(--radius-lg) 6px var(--radius-lg) var(--radius-lg);
  color: var(--night);
  border: 2px solid var(--amber);
}

.page-home .home-entry__media {
  margin: 0 0 6px;
  border-radius: var(--radius) var(--radius) 4px var(--radius);
  overflow: hidden;
  opacity: .92;
}

.page-home .home-entry__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  letter-spacing: -0.01em;
  color: inherit;
}

.page-home .home-entry__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: inherit;
  opacity: .88;
  flex: 1 1 auto;
}

.page-home .home-entry__link {
  align-self: flex-start;
  margin-top: 4px;
}

/* ---------- 横向数据带 ---------- */
.page-home .home-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--home-block-y) 0;
  background: var(--night);
  color: var(--mist);
}

.page-home .home-band__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .22;
  z-index: -1;
}

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

.page-home .home-band__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--mist);
}

.page-home .home-band__lede {
  margin: 12px 0 0;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(247, 243, 236, .78);
}

.page-home .home-band__grid {
  display: grid;
  gap: clamp(24px, 3.6vw, 40px);
  margin-top: clamp(24px, 3.6vw, 38px);
}

.page-home .home-band__compare {
  border-top: 2px solid rgba(240, 180, 41, .5);
}

.page-home .home-band__row {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(217, 222, 231, .18);
  font-size: 15px;
}

.page-home .home-band__row--head {
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, .6);
}

.page-home .home-band__team {
  font-weight: 700;
  color: var(--mist);
}

.page-home .home-band__col {
  color: rgba(247, 243, 236, .6);
}

.page-home .home-band__cell {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--amber);
}

.page-home .home-band__tip {
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(247, 243, 236, .66);
  opacity: 1;
}

.page-home .home-band__notes {
  display: grid;
  gap: 18px;
  align-content: start;
}

.page-home .home-band__note {
  padding: 16px 18px;
  border-left: 3px solid var(--jade-bright);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(39, 50, 90, .72);
}

.page-home .home-band__note h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--mist);
}

.page-home .home-band__note p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 243, 236, .76);
}

/* ---------- 三步路径 ---------- */
.page-home .home-steps {
  background: var(--mist);
}

.page-home .home-steps h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--night);
}

.page-home .home-steps .lede {
  margin-top: 12px;
  max-width: 46ch;
  color: var(--night-2);
}

.page-home .home-steps__list {
  display: grid;
  gap: var(--home-gap);
  margin: clamp(24px, 3.6vw, 38px) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.page-home .home-step {
  position: relative;
  padding: 24px 22px 26px;
  border-radius: var(--radius-lg) 6px var(--radius-lg) var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.page-home .home-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--night);
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.page-home .home-step__title {
  margin: 16px 0 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--night);
}

.page-home .home-step__text {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--slate);
}

.page-home .home-step__text a {
  color: var(--clay-deep);
  font-weight: 600;
}

/* ---------- 年鉴延伸 ---------- */
.page-home .home-more {
  background: var(--mist);
  padding-top: 0;
}

.page-home .home-more__inner {
  padding-top: var(--home-block-y);
  border-top: 2px dashed var(--line);
}

.page-home .home-more h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--night);
}

.page-home .home-more .lede {
  margin-top: 12px;
  max-width: 44ch;
  color: var(--night-2);
}

.page-home .home-more__list {
  display: grid;
  gap: var(--home-gap);
  margin-top: clamp(24px, 3.6vw, 38px);
}

.page-home .home-more__item {
  position: relative;
  padding: 22px 0 22px 22px;
  border-left: 3px solid var(--clay);
}

.page-home .home-more__item h3 {
  margin: 12px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--night);
  line-height: 1.45;
}

.page-home .home-more__item p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
}

.page-home .home-more__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--clay-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
}

/* ---------- 咨询 ---------- */
.page-home .home-ask {
  padding: var(--home-block-y) 0 calc(var(--home-block-y) + 12px);
  background: var(--night-2);
  color: var(--mist);
}

.page-home .home-ask__inner {
  display: grid;
  gap: clamp(24px, 3.6vw, 40px);
}

.page-home .home-ask h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--mist);
}

.page-home .home-ask__copy > p {
  margin: 14px 0 0;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(247, 243, 236, .82);
}

.page-home .home-ask__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-home .home-ask__list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 243, 236, .82);
}

.page-home .home-ask__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--jade-bright);
}

.page-home .home-ask__card {
  align-self: start;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius-lg) 6px var(--radius-lg) var(--radius-lg);
  background: var(--night);
  border: 1px solid rgba(240, 180, 41, .35);
}

.page-home .home-ask__label {
  margin: 0;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, .58);
}

.page-home .home-ask__mail {
  margin: 10px 0 0;
  font-family: var(--font-mono);
  font-size: clamp(15px, 3.4vw, 18px);
  font-weight: 700;
  color: var(--amber);
  word-break: break-all;
}

.page-home .home-ask__time {
  margin: 12px 0 0;
  font-size: 15px;
  color: rgba(247, 243, 236, .78);
}

.page-home .home-ask__btn {
  margin-top: 22px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 720px) {
  .page-home .home-steps__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (min-width: 900px) {
  .page-home .home-hero__top {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: end;
  }

  .page-home .home-board {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
  }

  .page-home .home-leaders__head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

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

  .page-home .home-entry--a {
    grid-column: span 7;
  }

  .page-home .home-entry--b {
    grid-column: span 5;
  }

  .page-home .home-entry--c {
    grid-column: span 5;
  }

  .page-home .home-entry--d {
    grid-column: span 7;
  }

  .page-home .home-band__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
  }

  .page-home .home-ask__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
  }
}

@media (max-width: 639px) {
  .page-home .home-band__row {
    grid-template-columns: 1fr 1fr;
    row-gap: 6px;
  }

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

  .page-home .home-band__row--head {
    display: none;
  }

  .page-home .home-band__cell::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: rgba(247, 243, 236, .55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-timeline__node.is-current::before {
    box-shadow: none;
  }
}
</｜｜DSML｜｜ parameter>
</invoke>
