.page-home {
  --hm-gut: clamp(20px, 3.2vw, 40px);
  --hm-sec-gap: clamp(72px, 9vw, 132px);
  --hm-body-on-dark: #ced8e8;
  --hm-body-on-light: #4a5568;
  --hm-panel-raised: #0d1d3a;
  background: var(--ink-night);
  color: var(--prayer);
  overflow-x: clip;
}

/* ---------- 首屏分屏 ---------- */
.page-home .hm-hero {
  background: var(--ink-night);
  border-bottom: 1px solid var(--line);
}

.page-home .hm-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .page-home .hm-hero__grid {
    grid-template-columns: 5fr 7fr;
    align-items: stretch;
  }
}

.page-home .hm-hero__narrative {
  background: var(--indigo);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: clamp(40px, 5.5vw, 76px) var(--hm-gut) clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.page-home .hm-hero__eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--steel);
}

.page-home .hm-hero__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--prayer);
}

.page-home .hm-hero__lead {
  margin: 0;
  max-width: 40ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--hm-body-on-dark);
}

.page-home .hm-hero__lines {
  list-style: none;
  margin: 4px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}

.page-home .hm-hero__lines li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--hm-body-on-dark);
}

.page-home .hm-hero__k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--barley);
  padding-top: 3px;
}

.page-home .hm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.page-home .hm-btn-primary {
  background: var(--barley);
  border-color: var(--barley);
  color: var(--ink-night);
  font-weight: 700;
}

.page-home .hm-btn-primary:hover,
.page-home .hm-btn-primary:focus-visible {
  background: var(--butter);
  border-color: var(--butter);
  color: var(--ink-night);
}

.page-home .sh-btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--prayer);
}

.page-home .sh-btn--ghost:hover,
.page-home .sh-btn--ghost:focus-visible {
  border-color: var(--barley);
  color: var(--barley);
}

.page-home .hm-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 56vw, 620px);
  background: var(--ink-night);
  border-right: 1px solid var(--line);
}

.page-home .hm-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.85);
}

.page-home .hm-hero__terraces {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(143, 163, 192, 0.22) 0 1px,
    transparent 1px 20px
  );
}

.page-home .hm-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 23, 48, 0.2) 0%, rgba(10, 23, 48, 0.88) 100%);
}

.page-home .hm-hero__scale {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 clamp(14px, 2.6vw, 34px) clamp(10px, 1.8vw, 20px);
}

.page-home .hm-scale,
.page-home .hm-hero__scale svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- 章节索引 ---------- */
.page-home .hm-index {
  position: sticky;
  top: var(--bar-h);
  z-index: 12;
  background: rgba(10, 23, 48, 0.94);
  border-bottom: 1px solid var(--line);
}

.page-home .hm-index__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-home .hm-index__inner::-webkit-scrollbar {
  display: none;
}

.page-home .hm-index__title {
  margin: 0;
  padding: 16px 0;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--steel);
}

.page-home .hm-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
}

.page-home .hm-index__link {
  display: block;
  padding: 16px 14px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--steel);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-home .hm-index__link:hover,
.page-home .hm-index__link:focus-visible {
  color: var(--prayer);
}

.page-home .hm-index__link[aria-current="true"] {
  color: var(--barley);
  border-bottom-color: var(--barley);
}

/* ---------- 章节标题组 ---------- */
.page-home .hm-head {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(30px, 3.6vw, 54px);
}

.page-home .hm-head .sh-sec-num {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--barley);
}

.page-home .hm-head .sh-sec-title {
  margin: 0;
  max-width: 26ch;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(23px, 3.2vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--prayer);
}

.page-home .hm-head .sh-sec-note {
  margin: 0;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--hm-body-on-dark);
}

.page-home .hm-more {
  margin: clamp(26px, 3vw, 42px) 0 0;
}

/* ---------- 数字带 ---------- */
.page-home .hm-numbers {
  background: var(--ink-night);
}

.page-home .hm-figures {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 640px) {
  .page-home .hm-figures {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-home .hm-figures {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-home .hm-figures__item {
  background: var(--ink-night);
  padding: clamp(24px, 3vw, 38px) clamp(18px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .hm-figures__num {
  font-family: var(--font-mono);
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: var(--barley);
  font-variant-numeric: tabular-nums;
}

.page-home .hm-figures__unit {
  font-size: 15px;
  font-weight: 600;
  color: var(--prayer);
}

.page-home .hm-figures__desc {
  margin: 0;
  max-width: 26ch;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--steel);
}

/* ---------- 友谊赛 ---------- */
.page-home .hm-friendlies {
  background: var(--deep-teal);
}

.page-home .hm-friendlies__body {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

@media (min-width: 1024px) {
  .page-home .hm-friendlies__body {
    grid-template-columns: 5fr 7fr;
    align-items: start;
  }
}

.page-home .hm-friendlies__fig {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.page-home .hm-friendlies__fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.page-home .hm-timeline__item {
  position: relative;
  padding: 24px 0 24px 28px;
  border-top: 1px solid var(--line);
  outline-offset: 3px;
}

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

.page-home .hm-timeline__dot {
  position: absolute;
  left: 0;
  top: 30px;
  width: 16px;
  height: 16px;
  background: var(--barley);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.page-home .hm-timeline__stage {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--steel);
}

.page-home .hm-timeline__name {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.35;
  color: var(--prayer);
}

.page-home .hm-timeline__count {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--butter);
  font-variant-numeric: tabular-nums;
}

.page-home .hm-timeline__more {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--hm-body-on-dark);
}

@media (min-width: 768px) {
  .page-home .hm-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .hm-timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    top: 9px;
    height: 2px;
    background: rgba(216, 166, 60, 0.55);
  }

  .page-home .hm-timeline__item {
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid var(--line);
    padding: 44px 22px 0 0;
  }

  .page-home .hm-timeline__item:first-child {
    border-left: 0;
    padding-left: 0;
    padding-right: 26px;
  }

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

  .page-home .hm-timeline__item:nth-child(2) {
    padding-left: 26px;
  }

  .page-home .hm-timeline__dot {
    top: 2px;
    left: 0;
  }

  .page-home .hm-timeline__item:first-child .hm-timeline__dot {
    left: 0;
  }
}

@media (hover: hover) and (min-width: 768px) {
  .page-home .hm-timeline__more {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.32s var(--ease), opacity 0.32s var(--ease), margin 0.32s var(--ease);
  }

  .page-home .hm-timeline__item:hover .hm-timeline__more,
  .page-home .hm-timeline__item:focus .hm-timeline__more,
  .page-home .hm-timeline__item:focus-within .hm-timeline__more {
    max-height: 180px;
    opacity: 1;
    margin-top: 4px;
  }
}

/* ---------- 积分榜 ---------- */
.page-home .hm-standings {
  position: relative;
  background: var(--ink-night);
  overflow: hidden;
}

.page-home .hm-standings__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  pointer-events: none;
}

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

.page-home .hm-range__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-home .hm-range__switch {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  margin-bottom: 20px;
}

.page-home .hm-range__label {
  padding: 11px 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--steel);
  cursor: pointer;
  border-right: 1px solid var(--line);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.page-home .hm-range__label:last-child {
  border-right: 0;
}

.page-home .hm-range__label:hover {
  color: var(--prayer);
}

.page-home .hm-range__input--5:checked ~ .hm-range__switch .hm-range__label[for="hm-range-5"],
.page-home .hm-range__input--10:checked ~ .hm-range__switch .hm-range__label[for="hm-range-10"] {
  background: var(--barley);
  color: var(--ink-night);
  font-weight: 700;
}

.page-home .hm-range__input:focus-visible ~ .hm-range__switch .hm-range__label {
  outline: 2px solid var(--butter);
  outline-offset: 2px;
}

.page-home .hm-range__panel--5 {
  display: block;
}

.page-home .hm-range__panel--10 {
  display: none;
}

.page-home .hm-range__input--5:checked ~ .hm-range__panels .hm-range__panel--5 {
  display: block;
}

.page-home .hm-range__input--5:checked ~ .hm-range__panels .hm-range__panel--10 {
  display: none;
}

.page-home .hm-range__input--10:checked ~ .hm-range__panels .hm-range__panel--5 {
  display: none;
}

.page-home .hm-range__input--10:checked ~ .hm-range__panels .hm-range__panel--10 {
  display: block;
}

.page-home .hm-range__panel {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(14, 44, 42, 0.34);
  padding: 18px clamp(14px, 2vw, 24px) 8px;
}

.page-home .hm-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 13.5px;
}

.page-home .hm-table__caption {
  text-align: left;
  padding-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--steel);
}

.page-home .hm-table th,
.page-home .hm-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.page-home .hm-table thead th {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--steel);
  border-bottom-color: var(--line-strong);
}

.page-home .hm-table tbody th {
  font-weight: 600;
  color: var(--prayer);
}

.page-home .hm-table tbody td {
  color: var(--hm-body-on-dark);
  font-variant-numeric: tabular-nums;
}

.page-home .hm-table tbody tr:last-child th,
.page-home .hm-table tbody tr:last-child td {
  border-bottom: 0;
}

.page-home .hm-trend--up {
  color: var(--proof);
}

.page-home .hm-trend--down {
  color: var(--butter);
}

.page-home .hm-trend--flat {
  color: var(--steel);
}

/* ---------- 转会观察 ---------- */
.page-home .hm-transfers {
  background: var(--ink-night);
}

.page-home .hm-wires {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .page-home .hm-wires {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-home .hm-wires__item {
  background: var(--ink-night);
  border-top: 2px solid transparent;
  padding: clamp(22px, 2.6vw, 34px);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.page-home .hm-wires__item:hover {
  border-top-color: var(--barley);
  background: var(--hm-panel-raised);
}

.page-home .hm-wires__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel);
}

.page-home .hm-wires__title {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--prayer);
}

.page-home .hm-wires__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--hm-body-on-dark);
}

/* ---------- 订阅与联络 ---------- */
.page-home .hm-contact {
  background: var(--prayer);
  color: var(--ink);
}

.page-home .hm-contact__banner {
  height: clamp(150px, 22vw, 280px);
  overflow: hidden;
}

.page-home .hm-contact__banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(0.96);
}

.page-home .hm-contact__inner {
  padding-top: clamp(46px, 5.5vw, 84px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.page-home .hm-contact .hm-head .sh-sec-num {
  color: var(--wine);
}

.page-home .hm-contact .hm-head .sh-sec-title {
  color: var(--ink);
}

.page-home .hm-contact .hm-head .sh-sec-note {
  color: var(--hm-body-on-light);
}

.page-home .hm-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
}

@media (min-width: 900px) {
  .page-home .hm-contact__grid {
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }
}

.page-home .hm-contact__ways {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.page-home .hm-contact__ways li {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 16px;
  row-gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.page-home .hm-contact__ways li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-home .hm-contact__k {
  grid-row: span 2;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--wine);
  padding-top: 3px;
}

.page-home .hm-contact__ways h3 {
  grid-column: 2;
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
}

.page-home .hm-contact__ways p {
  grid-column: 2;
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--hm-body-on-light);
}

.page-home .hm-contact__card {
  background: var(--ink-night);
  color: var(--prayer);
  border-left: 4px solid var(--barley);
  padding: clamp(24px, 3vw, 36px);
}

.page-home .hm-contact__card h3 {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--barley);
}

.page-home .hm-contact__card p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.65;
}

.page-home .hm-contact__card a {
  color: var(--prayer);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-home .hm-contact__card a:hover,
.page-home .hm-contact__card a:focus-visible {
  color: var(--barley);
  border-bottom-color: var(--barley);
}

.page-home .hm-contact__card .hm-contact__addr {
  margin-top: 16px;
  color: var(--steel);
  font-size: 13.5px;
  line-height: 1.7;
}

.page-home .hm-contact__card .hm-contact__more {
  margin: 18px 0 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

/* ---------- 入场显现 ---------- */
.page-home [data-reveal] {
  opacity: 1;
  transform: none;
}

.js-reveal .page-home [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.js-reveal .page-home [data-reveal][data-revealed] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .page-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-home .hm-timeline__more {
    transition: none;
  }
}
<<<END>>>
