.page-home {
  --hm-radius: 24px;
  --hm-line: rgba(28, 122, 80, 0.42);
  position: relative;
  background:
    radial-gradient(115% 72% at 84% -6%, rgba(56, 198, 255, 0.16), transparent 60%),
    radial-gradient(95% 68% at 6% 22%, rgba(28, 122, 80, 0.3), transparent 64%),
    var(--night);
  color: var(--paper);
  padding-block-end: clamp(56px, 9vw, 108px);
  overflow-x: clip;
}

.page-home .hm-wrap {
  width: min(100% - 2 * var(--gap), 1220px);
  margin-inline: auto;
}

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

.page-home .hm-lede {
  max-width: 64ch;
  margin: 18px 0 0;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.85;
  color: rgba(242, 231, 211, 0.78);
}

/* ---------- 首屏 ---------- */
.page-home .hm-hero {
  padding-block: clamp(28px, 5vw, 52px) clamp(40px, 7vw, 80px);
}

.page-home .hm-hero__grid {
  display: grid;
  gap: clamp(30px, 5vw, 54px);
  align-items: center;
}

.page-home .hm-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(32px, 7.4vw, 62px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--paper);
}

.page-home .hm-hero__lede {
  max-width: 48ch;
  margin: 0;
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.8;
  color: rgba(242, 231, 211, 0.82);
}

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

.page-home .hm-hero__marks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .hm-hero__marks li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--mist);
}

.page-home .hm-hero__marks b {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--lime);
}

.page-home .hm-hero__visual {
  position: relative;
  min-height: 330px;
  aspect-ratio: 5 / 4;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--hm-line);
  background: linear-gradient(150deg, #0a2418, #06170f 58%, #04120a);
  box-shadow: 0 34px 66px -34px rgba(0, 0, 0, 0.92);
}

.page-home .hm-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.42) brightness(0.52);
  opacity: 0.78;
}

.page-home .hm-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-home .hm-map__links path {
  fill: none;
  stroke: rgba(217, 255, 60, 0.38);
  stroke-width: 1.4;
  stroke-dasharray: 6 8;
  stroke-linecap: round;
}

.page-home .hm-node {
  color: var(--lime);
  transition: transform 0.35s ease;
}

.page-home .hm-node--sh { color: var(--volt); }
.page-home .hm-node--gz { color: var(--amber); }

.page-home .hm-node__halo {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.page-home .hm-node__dot {
  fill: currentColor;
}

.page-home .hm-node__label {
  fill: var(--paper);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.page-home .hm-node:hover .hm-node__halo {
  opacity: 0.9;
}

.page-home .hm-map__axis line {
  stroke: rgba(143, 167, 155, 0.5);
  stroke-width: 1.4;
}

.page-home .hm-map__axis .hm-map__ticks {
  stroke: var(--lime);
  stroke-width: 9;
  stroke-dasharray: 2 29;
  opacity: 0.75;
}

.page-home .hm-map__axis-text {
  fill: var(--mist);
  font-family: var(--font-mono);
  font-size: 12px;
}

.page-home .hm-map__axis-text--end {
  text-anchor: end;
}

.page-home .hm-hero__caption {
  position: absolute;
  left: 20px;
  bottom: 16px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(242, 231, 211, 0.72);
}

/* ---------- 数据快照 ---------- */
.page-home .hm-snapshot {
  padding-block: clamp(46px, 7vw, 86px);
}

.page-home .hm-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.page-home .hm-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hm-line);
  background: linear-gradient(165deg, rgba(12, 46, 34, 0.96), rgba(4, 18, 9, 0.96));
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .hm-stat::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--volt));
  opacity: 0.85;
}

.page-home .hm-stat:hover {
  border-color: rgba(217, 255, 60, 0.6);
  box-shadow: 0 22px 40px -30px rgba(217, 255, 60, 0.5);
}

.page-home .hm-stat__num {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(48px, 8.5vw, 92px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--lime);
}

.page-home .hm-stat__label {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--paper);
}

.page-home .hm-stat__note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--mist);
}

/* ---------- 四城 ---------- */
.page-home .hm-cities {
  padding-block: clamp(46px, 7vw, 86px);
}

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

.page-home .hm-cities__banner img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.48) brightness(0.74);
}

.page-home .hm-cities__banner figcaption {
  padding: 12px 18px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--mist);
  background: rgba(12, 46, 34, 0.7);
}

.page-home .hm-city-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.page-home .hm-city {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--paper-edge);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 38px -26px rgba(0, 0, 0, 0.88);
  transition: box-shadow 0.35s ease;
}

.page-home .hm-city:hover {
  box-shadow: 0 30px 50px -26px rgba(217, 255, 60, 0.32);
}

.page-home .hm-city__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.page-home .hm-city__tag {
  align-self: flex-start;
  margin: 0;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #06251a;
  background: var(--lime);
}

.page-home .hm-city__desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: #23352c;
}

.page-home .hm-city__for {
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed var(--paper-edge);
  font-size: 13px;
  line-height: 1.7;
  color: #4a5c52;
}

.page-home .hm-city__link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 700;
  color: #0d5c3c;
  text-decoration: none;
  border-bottom: 2px solid rgba(28, 122, 80, 0.45);
  padding-bottom: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.page-home .hm-city__link:hover {
  color: #06251a;
  border-color: var(--lime);
}

/* ---------- 伤停与替补 ---------- */
.page-home .hm-absence {
  padding-block: clamp(46px, 7vw, 88px);
}

.page-home .hm-absence__grid {
  display: grid;
  gap: 30px;
  margin-top: 26px;
}

.page-home .hm-pitch {
  display: block;
  width: 100%;
  max-width: 470px;
  margin: 28px 0 8px;
}

.page-home .hm-pitch__field {
  fill: rgba(12, 46, 34, 0.85);
  stroke: rgba(28, 122, 80, 0.7);
  stroke-width: 1.4;
}

.page-home .hm-pitch__line {
  fill: none;
  stroke: rgba(143, 167, 155, 0.42);
  stroke-width: 1.2;
}

.page-home .hm-pitch__out circle {
  fill: var(--amber);
  opacity: 0.92;
}

.page-home .hm-pitch__shift {
  stroke: var(--volt);
  stroke-width: 2;
  stroke-dasharray: 7 7;
}

.page-home .hm-pitch__shift-head {
  fill: var(--volt);
}

.page-home .hm-pitch__shift-text {
  fill: var(--mist);
  font-family: var(--font-mono);
  font-size: 12px;
}

.page-home .hm-fold {
  margin-top: 26px;
}

.page-home .hm-absence__figure {
  margin: 0;
  border-radius: var(--hm-radius);
  overflow: hidden;
  border: 1px solid var(--hm-line);
  background: rgba(12, 46, 34, 0.5);
}

.page-home .hm-absence__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.42) brightness(0.62);
}

.page-home .hm-absence__figure figcaption {
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
}

/* ---------- 跟进 ---------- */
.page-home .hm-next {
  padding-block: clamp(46px, 7vw, 90px) clamp(50px, 8vw, 100px);
}

.page-home .hm-next__grid {
  display: grid;
  gap: 30px;
  margin-top: 28px;
}

.page-home .hm-next__figure {
  margin: 0;
  border-radius: var(--hm-radius);
  overflow: hidden;
  border: 1px solid var(--hm-line);
  background: rgba(12, 46, 34, 0.45);
}

.page-home .hm-next__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.44) brightness(0.66);
}

.page-home .hm-next__figure figcaption {
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
}

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

.page-home .hm-next__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hm-line);
  background: rgba(12, 46, 34, 0.68);
  color: var(--paper);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.page-home .hm-next__item em {
  flex: none;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.page-home .hm-next__item:hover {
  background: rgba(28, 122, 80, 0.34);
  border-color: rgba(217, 255, 60, 0.65);
  transform: translateX(4px);
}

.page-home .hm-next__aside {
  margin-top: 26px;
  padding: 22px 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(143, 167, 155, 0.45);
  background: rgba(4, 18, 9, 0.6);
}

.page-home .hm-next__aside-title {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--lime);
}

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

.page-home .hm-next__links a {
  display: inline-block;
  font-size: 14px;
  color: var(--volt);
  text-decoration: none;
  border-bottom: 1px solid rgba(56, 198, 255, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.page-home .hm-next__links a:hover {
  color: var(--lime);
  border-color: var(--lime);
}

/* ---------- 响应式 ---------- */
@media (min-width: 620px) {
  .page-home .hm-stats {
    gap: 18px;
  }
}

@media (min-width: 760px) {
  .page-home .hm-stat {
    padding: 28px 24px 30px;
  }

  .page-home .hm-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 32px;
  }

  .page-home .hm-city:nth-child(1) { transform: rotate(-1.4deg); }
  .page-home .hm-city:nth-child(2) { transform: rotate(1.2deg) translateY(26px); }
  .page-home .hm-city:nth-child(3) { transform: rotate(1deg) translateY(-8px); }
  .page-home .hm-city:nth-child(4) { transform: rotate(-1.3deg) translateY(18px); }
}

@media (min-width: 900px) {
  .page-home .hm-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .page-home .hm-hero__visual {
    aspect-ratio: 4 / 3.6;
  }

  .page-home .hm-absence__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    gap: 44px;
    align-items: start;
  }

  .page-home .hm-next__grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 44px;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .page-home .hm-hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(36px, 4vw, 60px);
  }
}

@media (min-width: 1180px) {
  .page-home .hm-hero {
    padding-block: clamp(40px, 5vw, 64px) clamp(56px, 7vw, 92px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hm-node,
  .page-home .hm-stat,
  .page-home .hm-city,
  .page-home .hm-next__item {
    transition: none;
  }
}
<<<END>>>
