.page-home {
  --home-section-y: clamp(56px, 9vw, 108px);
  --home-split: clamp(28px, 5vw, 56px);
  position: relative;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  padding: clamp(32px, 7vw, 76px) 0 0;
  background:
    radial-gradient(90% 70% at 88% 4%, rgba(255, 107, 26, .22), transparent 62%),
    radial-gradient(70% 60% at 2% 98%, rgba(31, 138, 112, .16), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--night));
}

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 239, 230, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.page-home .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 5vw, 40px);
  align-items: center;
}

.page-home .hero-context {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 6px 15px;
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--paper-70);
}

.page-home .hero-context .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 4px rgba(31, 138, 112, .18);
  animation: home-breathe 2.4s ease-in-out infinite;
}

.page-home .hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 66px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: .01em;
  color: var(--paper);
}

.page-home .hero-lede {
  max-width: 34em;
  margin: 0;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--paper-88);
}

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

.page-home .hero-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, .2);
  border-radius: var(--r-lg);
  background: var(--night);
}

.page-home .hero-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(244, 239, 230, .18);
  border-radius: calc(var(--r-lg) - 10px);
  pointer-events: none;
  z-index: 2;
}

.page-home .hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05);
}

.page-home .hero-score {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(217, 164, 65, .5);
  border-radius: var(--r-pill);
  background: rgba(8, 21, 44, .84);
}

.page-home .hero-score .score {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--flame);
}

.page-home .hero-score .score-label {
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--paper-70);
}

.page-home .hero-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(30px, 6vw, 56px);
  border-top: 1px solid var(--hair);
}

.page-home .hero-metrics .stat {
  padding: 22px 12px 26px 14px;
  border-left: 1px solid var(--hair);
}

.page-home .hero-metrics .stat:first-child {
  padding-left: 0;
  border-left: 0;
}

.page-home .hero-metrics .stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(22px, 6.4vw, 40px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--flame);
}

.page-home .hero-metrics .stat__label {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--paper-70);
}

/* ---------- 区块通用 ---------- */
.page-home .block-night {
  position: relative;
  padding: var(--home-section-y) 0;
  background: var(--ink);
}

.page-home .block-paper {
  position: relative;
  margin-top: -28px;
  padding: calc(var(--home-section-y) + 28px) 0 var(--home-section-y);
  background: var(--paper);
  color: var(--ink);
  clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%);
}

.page-home .block-head {
  max-width: 620px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.page-home .block-head .h-section {
  margin: 12px 0 0;
}

.page-home .block-lede {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--stone);
}

.page-home .block-paper .eyebrow {
  color: var(--clay);
}

.page-home .h-section {
  font-family: var(--font-display);
  font-size: clamp(24px, 4.6vw, 34px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: .012em;
  color: inherit;
}

.page-home .h-card {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: inherit;
}

/* ---------- 三大板块入口 ---------- */
.page-home .entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-home .entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 26px 24px 28px;
  border: 1px solid var(--hair-ink);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .66);
}

.page-home .entry-card--fields {
  border-top: 3px solid var(--sand);
}

.page-home .entry-card--youth {
  padding: 0;
  overflow: hidden;
}

.page-home .entry-card--rounds {
  border-style: dashed;
  border-color: rgba(11, 27, 58, .3);
  background: rgba(255, 255, 255, .38);
}

.page-home .entry-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.page-home .entry-top .h-card {
  margin: 0;
}

.page-home .entry-num {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  color: var(--clay);
}

.page-home .entry-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #3c4761;
}

.page-home .field-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .field-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(11, 27, 58, .16);
  font-size: 13.5px;
}

.page-home .field-key {
  color: var(--stone);
}

.page-home .field-val {
  font-weight: 700;
  text-align: right;
  color: var(--ink);
}

.page-home .entry-card--youth .entry-media {
  margin: 0;
}

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

.page-home .entry-card--youth .entry-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 22px 24px 26px;
}

.page-home .entry-card--youth .h-card {
  margin: 0;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
}

.page-home .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .chip-row li {
  display: inline-flex;
}

.page-home .chip-row .chip {
  color: var(--ink);
  border-color: rgba(11, 27, 58, .22);
  background: rgba(11, 27, 58, .05);
}

.page-home .round-strip {
  display: flex;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .round-strip li {
  flex: 1;
  padding: 10px 0 9px;
  border: 1px solid rgba(11, 27, 58, .2);
  border-right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink);
}

.page-home .round-strip li:first-child {
  border-radius: 999px 0 0 999px;
}

.page-home .round-strip li:last-child {
  border-right: 1px solid rgba(11, 27, 58, .2);
  border-radius: 0 999px 999px 0;
}

.page-home .round-strip li.is-gap {
  background: rgba(255, 107, 26, .14);
  color: var(--clay);
  font-weight: 600;
}

.page-home .entry-meta {
  margin: auto 0 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--stone);
}

/* ---------- 覆盖范围 ---------- */
.page-home .cover-block {
  overflow: hidden;
}

.page-home .cover-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: saturate(.85) brightness(.8);
  pointer-events: none;
}

.page-home .cover-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(11, 27, 58, .74) 40%, var(--ink) 100%);
  pointer-events: none;
}

.page-home .cover-block .wrap {
  position: relative;
  z-index: 1;
}

.page-home .cover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .cover-copy .prose {
  margin: 16px 0 0;
  max-width: 32em;
  font-size: 16px;
  line-height: 1.85;
  color: var(--paper-88);
}

.page-home .cover-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  background: var(--hair);
}

.page-home .cover-fact {
  padding: 20px 18px 22px;
  background: rgba(20, 42, 85, .78);
}

.page-home .cover-fact__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: var(--sand);
}

.page-home .cover-fact__label {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--paper-70);
}

.page-home .stage-scale {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: clamp(36px, 6vw, 64px) 0 0;
  padding: 0;
  list-style: none;
}

.page-home .stage {
  position: relative;
  padding: 16px 14px 18px;
  border-top: 2px solid var(--hair);
  background: linear-gradient(180deg, rgba(20, 42, 85, .62), rgba(20, 42, 85, 0));
}

.page-home .stage:first-child {
  border-top-color: var(--flame);
}

.page-home .stage__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--paper);
}

.page-home .stage__note {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--paper-70);
}

.page-home .stage-foot {
  margin: 26px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--jade);
  font-size: 14px;
  line-height: 1.85;
  color: var(--paper-70);
}

/* ---------- 转会动态 ---------- */
.page-home .transfer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

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

.page-home .transfer-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.page-home .transfer-copy .prose {
  margin: 16px 0 0;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.85;
  color: var(--paper-88);
}

.page-home .status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .status-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 17px;
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  color: var(--paper-88);
}

.page-home .status-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stone);
}

.page-home .status-list li.is-jade::before {
  background: var(--jade);
}

.page-home .status-list li.is-clay::before {
  background: var(--clay);
}

.page-home .transfer-foot {
  margin: 24px 0 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--paper-50);
}

.page-home .transfer-foot a {
  color: var(--sand);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 164, 65, .5);
}

.page-home .transfer-foot a:hover,
.page-home .transfer-foot a:focus-visible {
  color: var(--flame);
  border-bottom-color: var(--flame);
}

/* ---------- 笔记要目 ---------- */
.page-home .note-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
}

.page-home .note-filter .chip {
  color: var(--ink);
  border-color: rgba(11, 27, 58, .24);
  background: rgba(11, 27, 58, .04);
}

.page-home .note-filter .chip--active {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.page-home .note-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .note-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(11, 27, 58, .14);
}

.page-home .note-item:first-child {
  border-top: 1px solid rgba(11, 27, 58, .14);
}

.page-home .note-time {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--clay);
}

.page-home .note-title {
  margin: 0;
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
}

.page-home .note-text {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--stone);
}

.page-home .note-item .chip {
  justify-self: start;
  color: var(--ink);
  border-color: rgba(11, 27, 58, .22);
  background: rgba(217, 164, 65, .18);
}

.page-home .note-more {
  margin-top: 32px;
}

/* ---------- 行动入口 ---------- */
.page-home .home-cta .h-section {
  max-width: 24em;
  margin: 0 0 clamp(28px, 5vw, 44px);
}

.page-home .cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-home .cta-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 26px 32px;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--ink-2), rgba(20, 42, 85, .32));
}

.page-home .cta-panel--contact {
  border-color: rgba(217, 164, 65, .42);
}

.page-home .cta-panel .h-card {
  margin: 0;
  color: var(--paper);
}

.page-home .cta-panel .prose {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--paper-88);
}

.page-home .cta-panel .btn {
  align-self: flex-start;
  margin-top: auto;
}

.page-home .cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .cta-more {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
  font-size: 14px;
}

.page-home .cta-more a {
  color: var(--paper-70);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 239, 230, .3);
  padding-bottom: 2px;
}

.page-home .cta-more a:hover,
.page-home .cta-more a:focus-visible {
  color: var(--flame);
  border-bottom-color: var(--flame);
}

/* ---------- 悬停细节（仅有指针设备） ---------- */
@media (hover: hover) {
  .page-home .entry-meta {
    opacity: .65;
    transition: opacity .25s var(--ease);
  }

  .page-home .entry-card:hover .entry-meta,
  .page-home .entry-card:focus-within .entry-meta {
    opacity: 1;
  }
}

/* ---------- 动效 ---------- */
@keyframes home-breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

/* ---------- 平板与桌面 ---------- */
@media (min-width: 720px) {
  .page-home .stage-scale {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .page-home .note-item {
    grid-template-columns: 148px minmax(0, 1fr) auto;
    align-items: start;
    gap: 26px;
  }

  .page-home .note-item .chip {
    justify-self: end;
  }
}

@media (min-width: 900px) {
  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    gap: var(--home-split);
  }

  .page-home .cover-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 56px;
    align-items: end;
  }

  .page-home .transfer-grid {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: var(--home-split);
  }

  .page-home .cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }
}

@media (min-width: 960px) {
  .page-home .entry-grid {
    grid-template-columns: 1.12fr 1fr .94fr;
    gap: 26px;
    align-items: start;
  }

  .page-home .entry-card--youth {
    margin-top: 22px;
  }

  .page-home .entry-card--rounds {
    margin-top: 44px;
  }
}

/* ---------- 减弱动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home .hero-context .status-dot {
    animation: none;
    opacity: 1;
  }

  .page-home .entry-meta {
    transition: none;
  }
}
<<<END>>>
