.page-home {
  --home-sec-gap: clamp(56px, 9vw, 116px);
  --home-line-panel: rgba(22, 217, 192, .22);
  --home-shadow: 0 24px 60px -32px rgba(11, 42, 74, .45);
  background: var(--bone);
  color: var(--graphite);
  overflow-x: hidden;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  padding: clamp(44px, 7vw, 88px) 0 clamp(52px, 8vw, 100px);
  isolation: isolate;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(118deg, var(--ink) 0%, var(--ink-dark) 54%, #093448 100%);
  clip-path: polygon(0 0, 100% 0, 100% 76%, 0 97%);
  overflow: hidden;
}

.page-home .home-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(22, 217, 192, .5) 0 1px, transparent 1px 56px);
  opacity: .12;
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 44%;
  height: 170%;
  background: linear-gradient(180deg, rgba(22, 217, 192, .34), rgba(22, 217, 192, 0));
  transform: rotate(12deg);
  filter: blur(48px);
}

.page-home .home-hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.page-home .home-hero__eyebrow {
  color: var(--cyan-soft);
  margin: 0 0 14px;
}

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(31px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--bone);
  margin: 0 0 18px;
  max-width: 16em;
}

.page-home .home-hero__lead {
  color: var(--on-ink);
  max-width: 34em;
  margin: 0 0 28px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-hero__anchor {
  min-width: 0;
}

.page-home .home-hero__yearwrap {
  margin: 0 0 18px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.page-home .home-hero__year {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(64px, 15vw, 148px);
  line-height: .82;
  letter-spacing: .01em;
  color: var(--orange);
  display: block;
}

.page-home .home-hero__yearnote {
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(245, 242, 234, .62);
}

.page-home .home-hero__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--ink-dark);
}

.page-home .home-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center 32%;
}

/* ---------- 主体骨架 ---------- */
.page-home .home-body {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 110px) var(--gutter) clamp(64px, 10vw, 140px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(36px, 5vw, 60px);
}

.page-home .home-stream {
  display: grid;
  gap: var(--home-sec-gap);
  min-width: 0;
}

/* ---------- 章节 ---------- */
.page-home .home-sec {
  position: relative;
  min-width: 0;
}

.page-home .home-sec__no {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--cyan);
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line-stone);
}

.page-home .home-sec__inner > p,
.page-home .home-panel > p {
  max-width: 40em;
}

.page-home .home-sec__inner p {
  margin: 0 0 18px;
}

.page-home .home-sec__inner p:last-child {
  margin-bottom: 0;
}

.page-home .home-sec .ly-h2 {
  margin: 0 0 16px;
  max-width: 20em;
}

.page-home .home-sec__next {
  margin-top: 22px !important;
}

.page-home .home-sec__next a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--cyan);
  padding-bottom: 2px;
}

.page-home .home-sec__next a:hover,
.page-home .home-sec__next a:focus-visible {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* 深色面板章节 */
.page-home .home-sec--dark .home-sec__no {
  color: var(--cyan-soft);
  border-bottom-color: rgba(22, 217, 192, .3);
}

.page-home .home-panel {
  background: linear-gradient(146deg, var(--ink) 0%, var(--ink-dark) 100%);
  color: var(--on-ink);
  padding: clamp(26px, 4vw, 48px) clamp(20px, 3vw, 44px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), 0 100%);
}

.page-home .home-panel .ly-h2 {
  color: var(--bone);
  margin: 0 0 14px;
  max-width: 20em;
}

.page-home .home-panel__lead {
  color: var(--on-ink);
  margin: 0 0 clamp(24px, 4vw, 40px);
  max-width: 40em;
}

.page-home .home-panel .home-entry__card .ly-h3 {
  color: var(--bone);
}

/* ---------- 01 数据横排 ---------- */
.page-home .home-figs {
  list-style: none;
  margin: clamp(24px, 4vw, 38px) 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-stone);
  border: 1px solid var(--line-stone);
}

.page-home .home-figs__item {
  background: var(--bone);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .home-figs__num {
  font-family: var(--font-mono);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--ink);
}

.page-home .home-figs__unit {
  font-size: .5em;
  letter-spacing: .02em;
  margin-left: 2px;
}

.page-home .home-figs__label {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--muted);
}

/* ---------- 02 四类入口 ---------- */
.page-home .home-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.page-home .home-entry__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(6, 27, 48, .58);
  border: 1px solid var(--home-line-panel);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}

.page-home .home-entry__card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--cyan);
  transition: width .45s var(--ease);
}

.page-home .home-entry__card:hover::after,
.page-home .home-entry__card:focus-visible::after {
  width: 100%;
}

.page-home .home-entry__card:hover,
.page-home .home-entry__card:focus-visible {
  border-color: rgba(22, 217, 192, .55);
  background: rgba(9, 40, 68, .75);
}

.page-home .home-entry__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink-dark);
}

.page-home .home-entry__media img,
.page-home .home-entry__media svg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.page-home .home-entry__media--map svg {
  object-fit: cover;
}

.page-home .home-entry__body {
  padding: 18px 18px 8px;
  flex: 1 1 auto;
}

.page-home .home-entry__body .ly-h3 {
  margin: 0 0 8px;
}

.page-home .home-entry__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(245, 242, 234, .74);
}

.page-home .home-entry__more {
  display: block;
  padding: 14px 18px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--cyan);
}

/* ---------- 03 两条内容线 ---------- */
.page-home .home-lines {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--line-stone);
  border: 1px solid var(--line-stone);
  margin: clamp(22px, 3.5vw, 34px) 0;
}

.page-home .home-line {
  background: var(--bone);
  padding: 24px 20px;
}

.page-home .home-line .ly-h3 {
  margin: 0 0 10px;
  padding-left: 14px;
  position: relative;
}

.page-home .home-line .ly-h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 6px;
  height: 6px;
  background: var(--cyan);
}

.page-home .home-line--b .ly-h3::before {
  background: var(--clay);
}

.page-home .home-line p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--graphite);
}

/* ---------- 04 对照表 ---------- */
.page-home .home-tablewrap {
  margin: clamp(22px, 3.5vw, 34px) 0 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-home .home-table {
  min-width: 560px;
}

.page-home .home-table__caption {
  caption-side: bottom;
  text-align: left;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted);
  padding-top: 12px;
}

/* ---------- 05 更新状态 ---------- */
.page-home .home-sec--status .home-sec__inner {
  border-top: 1px solid var(--line-stone);
  padding-top: clamp(18px, 3vw, 28px);
}

.page-home .home-status {
  list-style: none;
  margin: clamp(22px, 3.5vw, 34px) 0;
  padding: 0;
  border-top: 1px solid var(--line-stone);
}

.page-home .home-status__row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-stone);
}

.page-home .home-status__key {
  flex: 0 0 auto;
  min-width: 88px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
}

.page-home .home-status__val {
  flex: 1 1 200px;
  font-size: 15px;
  color: var(--graphite);
}

/* ---------- 06 收尾 ---------- */
.page-home .home-sec--cta .home-sec__inner {
  background: linear-gradient(135deg, rgba(22, 217, 192, .12), rgba(255, 122, 61, .09));
  border: 1px solid var(--line-stone);
  padding: clamp(24px, 4vw, 44px);
}

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

/* ---------- 右侧跟随目录 ---------- */
.page-home .home-outline-wrap {
  display: none;
}

.page-home .home-outline__no {
  display: inline-block;
  margin-right: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--stone);
}

.page-home .home-outline .ly-outline__link {
  display: block;
  text-decoration: none;
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-home .home-entry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

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

@media (min-width: 860px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(40px, 5vw, 72px);
  }

  .page-home .home-hero__media {
    aspect-ratio: 5 / 4;
  }

  .page-home .home-sec {
    padding-left: 96px;
  }

  .page-home .home-sec__no {
    position: absolute;
    left: 0;
    top: 4px;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 56px;
  }

  .page-home .home-sec::before {
    content: "";
    position: absolute;
    left: 64px;
    top: 10px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--line-stone) 10%, var(--line-stone) 90%, transparent);
  }

  .page-home .home-sec--dark::before {
    background: linear-gradient(180deg, transparent, rgba(22, 217, 192, .34) 10%, rgba(22, 217, 192, .34) 90%, transparent);
  }

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

  .page-home .home-entry__card:nth-child(even) {
    margin-top: 56px;
  }

  .page-home .home-entry__card:nth-child(3) {
    margin-top: -6px;
  }
}

@media (min-width: 1080px) {
  .page-home .home-body {
    grid-template-columns: minmax(0, 1fr) 200px;
    align-items: start;
  }

  .page-home .home-outline-wrap {
    display: block;
    position: sticky;
    top: calc(var(--head-h) + 40px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-entry__card,
  .page-home .home-entry__card::after {
    transition: none;
  }
}
<<<END>>>
