.page-home {
  --hp-line: rgba(14, 46, 40, 0.16);
  --hp-line-inv: rgba(246, 241, 231, 0.2);
  --hp-space: 64px;
  background: var(--c-paper);
  color: var(--c-graphite);
  overflow-x: hidden;
}

.page-home .section {
  padding-top: var(--hp-space);
  padding-bottom: var(--hp-space);
}

.page-home .prose {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.85;
  max-width: 36em;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  background: var(--c-green-deep);
  color: var(--c-paper);
  padding-top: calc(var(--header-h) + 48px);
  overflow: hidden;
}

.page-home .hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-home .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.62);
}

.page-home .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 28, 24, 0.68) 0%, rgba(7, 28, 24, 0.86) 55%, rgba(7, 28, 24, 0.97) 100%);
}

.page-home .hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}

.page-home .hero__eyebrow {
  color: var(--c-gold);
}

.page-home .hero__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 6.4vw, 58px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 18px 0 0;
  max-width: 22ch;
}

.page-home .hero__text {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(246, 241, 231, 0.78);
  max-width: 36em;
}

.page-home .hero__figure {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  border-top: 1px solid var(--hp-line-inv);
  padding-top: 24px;
}

.page-home .hero__vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.28em;
  font-size: 11px;
  font-weight: 500;
  color: var(--c-gold);
  margin: 0 0 8px;
  flex: none;
}

.page-home .hero__figure-inner {
  min-width: 0;
}

.page-home .hero__num {
  margin: 0;
  display: flex;
  align-items: flex-start;
  font-family: var(--font-mono);
  line-height: 0.85;
  color: var(--c-gold-hi);
}

.page-home .hero__num-value {
  font-size: clamp(76px, 19vw, 138px);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.page-home .hero__num-plus {
  font-size: clamp(26px, 5.5vw, 46px);
  line-height: 1;
  margin-left: 4px;
  padding-top: 4px;
}

.page-home .hero__num-label {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(246, 241, 231, 0.7);
  max-width: 22em;
}

.page-home .hero__breakdown {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-gold);
  transition: max-height 240ms var(--ease), opacity 240ms var(--ease), margin-top 240ms var(--ease);
}

.page-home .hero__figure:hover .hero__breakdown,
.page-home .hero__figure:focus-within .hero__breakdown {
  max-height: 80px;
  opacity: 1;
  margin-top: 10px;
}

@media (hover: none) {
  .page-home .hero__breakdown {
    max-height: 80px;
    opacity: 1;
    margin-top: 10px;
  }
}

/* ---------- 四条展区 ---------- */
.page-home .zones {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  border-top: 1px solid var(--hp-line-inv);
}

.page-home .zones__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.page-home .zone {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hp-line-inv);
}

.page-home .zone:last-child {
  border-bottom: 0;
  padding-bottom: 40px;
}

.page-home .zone__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-gold);
}

.page-home .zone__title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  color: var(--c-paper);
}

.page-home .zone__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(246, 241, 231, 0.66);
  flex: 1;
}

.page-home .zone .link-arrow {
  color: var(--c-gold-hi);
  align-self: flex-start;
}

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

  .page-home .zone {
    border-bottom: 0;
    border-left: 1px solid var(--hp-line-inv);
    padding: 28px 24px 40px;
    min-height: 196px;
  }

  .page-home .zone:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .page-home .zone:last-child {
    padding-right: 0;
  }
}

/* ---------- 数据规模 ---------- */
.page-home .scale {
  background: var(--c-green-deep);
  color: var(--c-paper);
}

.page-home .scale__head {
  max-width: 30em;
}

.page-home .scale__grid {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.page-home .scale__cell {
  padding: 26px 0;
  border-top: 1px solid var(--hp-line-inv);
}

.page-home .scale__num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(46px, 11vw, 86px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--c-gold-hi);
}

.page-home .scale__unit {
  font-size: 0.3em;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  margin-left: 8px;
  vertical-align: 0.28em;
}

.page-home .scale__label {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(246, 241, 231, 0.72);
  max-width: 24em;
}

.page-home .scale__foot {
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--hp-line-inv);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(246, 241, 231, 0.66);
  max-width: 46em;
}

@media (min-width: 760px) {
  .page-home .scale__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
  }
}

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

/* ---------- 逐轮形势 ---------- */
.page-home .rank {
  background: var(--c-paper);
}

.page-home .rank__grid {
  display: grid;
  gap: 36px;
}

.page-home .rank__media {
  margin: 0;
}

.page-home .rank__body .section__title {
  margin-top: 14px;
}

.page-home .rank__scale-wrap {
  margin: 36px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--hp-line);
}

.page-home .rank__scale {
  display: block;
  width: 100%;
  height: auto;
  color: var(--c-green);
}

.page-home .rank__scale-line,
.page-home .rank__scale-tick {
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0.3;
}

.page-home .rank__scale-mark {
  fill: none;
  stroke: var(--c-gold);
  stroke-width: 1.5;
}

.page-home .rank__scale-mark--hot {
  fill: var(--c-brick);
  stroke: var(--c-brick);
}

.page-home .rank__scale-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--c-slate);
}

.page-home .rank__body .btn {
  margin-top: 32px;
}

@media (min-width: 960px) {
  .page-home .rank__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 56px;
    align-items: center;
  }
}

/* ---------- 履历与奖项 ---------- */
.page-home .honors {
  background: var(--c-green);
  color: var(--c-paper);
}

.page-home .honors__grid {
  display: grid;
  gap: 44px;
}

.page-home .honors__body .section__title {
  margin-top: 14px;
}

.page-home .honors__body .prose {
  color: rgba(246, 241, 231, 0.74);
}

.page-home .timeline {
  list-style: none;
  margin: 36px 0 0;
  padding: 0 0 0 28px;
  border-left: 1px solid var(--hp-line-inv);
}

.page-home .timeline__item {
  position: relative;
  padding-bottom: 28px;
}

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

.page-home .timeline__item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--c-green-deep);
  border: 1px solid var(--c-slate);
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease);
}

.page-home .timeline__item:hover::before,
.page-home .timeline__item:focus-within::before {
  border-color: var(--c-gold);
  background: var(--c-gold);
}

.page-home .timeline__no {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-gold);
  margin-bottom: 6px;
}

.page-home .timeline__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(246, 241, 231, 0.78);
  max-width: 34em;
}

.page-home .honors__body .link-arrow {
  color: var(--c-gold-hi);
  margin-top: 28px;
  display: inline-block;
}

.page-home .honors__aside {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.page-home .honors__aside .media {
  margin: 0;
}

.page-home .honor-medals {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-home .honor-medal {
  width: 92px;
  height: 92px;
  border: 1px solid var(--hp-line-inv);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: border-color 200ms var(--ease);
}

.page-home .honor-medal:hover,
.page-home .honor-medal:focus-within {
  border-color: var(--c-gold-hi);
}

.page-home .honor-medal__num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-paper);
}

.page-home .honor-medal__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-slate);
}

.page-home .honor-medal--gold {
  border-color: var(--c-gold);
}

.page-home .honor-medal--gold .honor-medal__num {
  color: var(--c-gold-hi);
}

.page-home .honor-medal--silver .honor-medal__num {
  color: var(--c-mist);
}

.page-home .honor-medal--bronze {
  border-color: var(--c-brick);
}

.page-home .honor-medal--bronze .honor-medal__num {
  color: var(--c-brick);
}

@media (min-width: 960px) {
  .page-home .honors__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 64px;
  }
}

/* ---------- 订阅 ---------- */
.page-home .subscribe {
  position: relative;
  background: var(--c-green-deep);
  color: var(--c-paper);
  overflow: hidden;
}

.page-home .subscribe__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-home .subscribe__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(0.35);
}

.page-home .subscribe__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 28, 24, 0.97) 0%, rgba(7, 28, 24, 0.88) 48%, rgba(7, 28, 24, 0.62) 100%);
}

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

.page-home .subscribe__inner .section__title {
  margin-top: 14px;
}

.page-home .subscribe__inner .prose {
  color: rgba(246, 241, 231, 0.74);
}

.page-home .sub-explorer {
  margin-top: 40px;
}

.page-home .sub-explorer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.page-home .sub-explorer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hp-line-inv);
}

.page-home .sub-row {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hp-line-inv);
  transition: background-color 200ms var(--ease);
}

.page-home .sub-row:hover {
  background: rgba(246, 241, 231, 0.05);
}

.page-home .sub-row__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--c-gold);
}

.page-home .sub-row__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-paper);
}

.page-home .sub-row__desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(246, 241, 231, 0.66);
}

.page-home .subscribe__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.page-home .subscribe__actions .link-arrow {
  color: var(--c-gold-hi);
}

@media (min-width: 760px) {
  .page-home .sub-row {
    grid-template-columns: 84px minmax(0, 4fr) minmax(0, 6fr);
    align-items: baseline;
    gap: 0 28px;
    padding: 18px 0;
  }
}

/* ---------- 赛季专栏 ---------- */
.page-home .notes {
  background: var(--c-paper);
}

.page-home .notes__head {
  display: grid;
  gap: 16px;
  align-items: end;
}

.page-home .notes__list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.page-home .note {
  display: grid;
  gap: 8px;
  padding: 26px 0;
  border-top: 1px solid var(--hp-line);
}

.page-home .note:last-child {
  border-bottom: 1px solid var(--hp-line);
}

.page-home .note__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-gold);
}

.page-home .note__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--c-green);
}

.page-home .note__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-graphite);
  max-width: 40em;
}

.page-home .notes__foot {
  margin: 32px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--hp-line);
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-slate);
  max-width: 44em;
}

@media (min-width: 860px) {
  .page-home .notes__head {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .page-home .note {
    grid-template-columns: 84px minmax(0, 4fr) minmax(0, 6fr);
    align-items: baseline;
    gap: 0 28px;
    padding: 28px 0;
  }
}
<<<END>>>
