.page-home {
  --ho-gutter: clamp(1.25rem, 4vw, 3rem);
  --ho-ink-soft: rgba(14, 27, 42, 0.78);
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

/* ---------- 首屏：主题声明 + 内容目录 + 轮次氛围 ---------- */
.page-home .ho-opening {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 0 2.75rem;
  background:
    repeating-linear-gradient(115deg, rgba(233, 230, 222, 0.045) 0 1px, transparent 1px 15px),
    linear-gradient(158deg, var(--ink) 0%, var(--hull) 100%);
  color: var(--paper);
}

.page-home .ho-opening::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -35%;
  width: 44%;
  height: 130%;
  background: linear-gradient(180deg, rgba(62, 156, 143, 0.18), rgba(62, 156, 143, 0));
  transform: rotate(17deg);
  pointer-events: none;
}

.page-home .ho-opening__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.page-home .ho-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  color: var(--amber);
  margin: 0;
}

.page-home .ho-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2rem, 7.5vw, 3.7rem);
  line-height: 1.14;
  letter-spacing: 0.005em;
  color: var(--paper-2);
  margin: 0.85rem 0 1rem;
}

.page-home .ho-lede {
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  line-height: 1.85;
  color: rgba(233, 230, 222, 0.78);
  max-width: 34em;
  margin: 0;
}

.page-home .ho-toc {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-inverse);
}

.page-home .ho-toc__head {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  color: rgba(233, 230, 222, 0.48);
  margin: 0 0 0.6rem;
}

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

.page-home .ho-toc__item + .ho-toc__item {
  border-top: 1px dashed var(--line-inverse);
}

.page-home .ho-toc__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.68rem 0.3rem;
  color: rgba(233, 230, 222, 0.86);
  text-decoration: none;
  font-size: 0.96rem;
  transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
}

.page-home .ho-toc__link:hover,
.page-home .ho-toc__link:focus-visible {
  color: var(--paper-2);
  background: rgba(62, 156, 143, 0.14);
  padding-left: 0.7rem;
}

.page-home .ho-toc__link[aria-current="true"] {
  color: var(--teal);
}

.page-home .ho-toc__num {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--amber);
  flex: none;
}

.page-home .ho-toc__label {
  display: block;
}

.page-home .ho-opening__media {
  margin: 0;
  position: relative;
}

.page-home .ho-opening__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
  filter: saturate(0.82) contrast(1.03);
}

.page-home .ho-opening__media figcaption {
  margin-top: 0.8rem;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(233, 230, 222, 0.52);
}

/* ---------- 通用区块 ---------- */
.page-home .ho-section {
  padding: 3rem 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.page-home .ho-chapter {
  max-width: 46rem;
  margin: 0 0 2rem;
}

.page-home .ho-chapter .chapter__no,
.page-home .ho-eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin: 0;
}

.page-home .ho-chapter .chapter__title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.55rem, 4.6vw, 2.5rem);
  line-height: 1.22;
  color: var(--ink);
  margin: 0.6rem 0 0.9rem;
}

.page-home .ho-chapter .chapter__note,
.page-home .ho-body {
  font-size: 0.98rem;
  line-height: 1.82;
  color: var(--ho-ink-soft);
  margin: 0 0 0.9rem;
}

.page-home .ho-h2 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.45rem, 4.2vw, 2.25rem);
  line-height: 1.24;
  color: var(--ink);
  margin: 0.6rem 0 1rem;
}

.page-home .ho-more {
  margin: 1.6rem 0 0;
}

/* ---------- 轮次时间轴 ---------- */
.page-home .ho-section--rounds {
  background-color: var(--paper);
  background-image: repeating-linear-gradient(90deg, rgba(14, 27, 42, 0.05) 0 1px, transparent 1px 72px);
}

.page-home .ho-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.75rem;
  border-left: 2px solid var(--line-strong);
}

.page-home .ho-timeline__item {
  position: relative;
  padding: 0 0 1.75rem;
}

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

.page-home .ho-timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-1.75rem - 8px);
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(199, 122, 46, 0.16);
}

.page-home .ho-timeline__no {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--field);
}

.page-home .ho-timeline__title {
  font-family: var(--font-title);
  font-size: 1.12rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0.4rem 0 0.45rem;
}

.page-home .ho-timeline__desc {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.78;
  color: var(--ho-ink-soft);
  max-width: 42rem;
}

.page-home .ho-timeline__code {
  margin: 0.55rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  color: var(--muted);
}

/* ---------- 青训观察 ---------- */
.page-home .ho-section--youth {
  background: var(--paper-2);
}

.page-home .ho-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.page-home .ho-split__media {
  margin: 0;
}

.page-home .ho-split__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%);
}

.page-home .ho-split__media figcaption {
  margin-top: 0.75rem;
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .ho-split__body .ho-eyebrow,
.page-home .ho-split__body .ho-h2 {
  margin-top: 0;
}

.page-home .ho-tools {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.page-home .ho-tools li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--ho-ink-soft);
}

.page-home .ho-tools li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 8px;
  height: 8px;
  background: var(--field);
  transform: rotate(45deg);
}

.page-home .ho-tools strong {
  color: var(--ink);
  font-weight: 700;
}

.page-home .ho-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.6rem 0 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-strong);
}

.page-home .ho-stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.page-home .ho-stat__num {
  font-size: clamp(1.7rem, 7vw, 2.9rem);
  line-height: 1;
  color: var(--field);
  letter-spacing: -0.01em;
}

.page-home .ho-stat__label {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- 会员中心 ---------- */
.page-home .ho-section--member {
  background: var(--paper);
}

.page-home .ho-member {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  padding: 1.6rem;
  background: var(--paper-2);
  border: 1px solid rgba(168, 132, 79, 0.42);
  border-left: 4px solid var(--bronze);
}

.page-home .ho-member .ho-eyebrow {
  color: var(--bronze);
}

.page-home .ho-member .ho-h2 {
  margin-top: 0.6rem;
}

.page-home .ho-views {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1.3rem 0;
  padding: 0;
}

.page-home .ho-views li {
  padding: 0.62rem 0.75rem;
  border: 1px dashed rgba(168, 132, 79, 0.52);
  background: rgba(168, 132, 79, 0.06);
  font-size: 0.88rem;
  color: var(--ink);
  text-align: center;
}

.page-home .ho-member__media {
  margin: 0;
}

.page-home .ho-member__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .ho-member__media figcaption {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- 旧版入口 ---------- */
.page-home .ho-section--legacy {
  background-color: var(--paper-2);
  background-image:
    repeating-linear-gradient(0deg, rgba(14, 27, 42, 0.042) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(90deg, rgba(14, 27, 42, 0.032) 0 1px, transparent 1px 9px);
}

.page-home .ho-legacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
}

.page-home .ho-legacy {
  padding: 1.5rem;
  border: 1px dashed var(--line-strong);
  background: rgba(247, 245, 239, 0.92);
}

.page-home .ho-legacy .ho-eyebrow {
  color: var(--field);
}

.page-home .ho-legacy .ho-h2 {
  margin-top: 0.6rem;
}

.page-home .ho-legacy .ho-body:last-of-type {
  margin-bottom: 0;
}

.page-home .ho-legacy__media {
  margin: 0;
}

.page-home .ho-legacy__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.04);
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
}

.page-home .ho-legacy__media figcaption {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- 档案索引 ---------- */
.page-home .ho-section--archive {
  background:
    repeating-linear-gradient(115deg, rgba(233, 230, 222, 0.035) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, var(--hull) 0%, var(--ink) 100%);
  color: var(--paper);
}

.page-home .ho-section--archive .chapter__title {
  color: var(--paper-2);
}

.page-home .ho-section--archive .chapter__note {
  color: rgba(233, 230, 222, 0.66);
}

.page-home .ho-section--archive .ho-chapter {
  max-width: 50rem;
}

.page-home .ho-index {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line-inverse);
  border: 1px solid var(--line-inverse);
}

.page-home .ho-index__item {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.35rem 1.15rem 1.5rem;
  background: rgba(21, 42, 61, 0.94);
}

.page-home .ho-index__no {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  color: var(--amber);
}

.page-home .ho-index__item h3 {
  font-family: var(--font-title);
  font-size: 1.04rem;
  line-height: 1.35;
  color: var(--paper-2);
  margin: 0;
}

.page-home .ho-index__item p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.72;
  color: rgba(233, 230, 222, 0.66);
}

.page-home .ho-index__item a {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.84rem;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(62, 156, 143, 0.42);
  padding-bottom: 2px;
}

.page-home .ho-index__item a:hover,
.page-home .ho-index__item a:focus-visible {
  color: var(--paper-2);
  border-bottom-color: var(--paper-2);
}

.page-home .ho-archive__foot {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(233, 230, 222, 0.6);
}

.page-home .ho-archive__foot a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(62, 156, 143, 0.42);
}

.page-home .ho-archive__foot a:hover,
.page-home .ho-archive__foot a:focus-visible {
  color: var(--paper-2);
  border-bottom-color: var(--paper-2);
}

/* ---------- 快速路径 ---------- */
.page-home .ho-section--paths {
  background: var(--paper);
}

.page-home .ho-paths {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  margin: 1.6rem 0 0;
  padding: 0;
}

.page-home .ho-paths li {
  display: flex;
}

.page-home .ho-paths a {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  padding: 1.1rem 1.2rem 1.2rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: border-left-color 0.2s ease, transform 0.2s ease;
}

.page-home .ho-paths a:hover,
.page-home .ho-paths a:focus-visible {
  border-left-color: var(--teal);
  transform: translateX(3px);
}

.page-home .ho-paths strong {
  font-family: var(--font-title);
  font-size: 1.08rem;
  line-height: 1.35;
}

.page-home .ho-paths span {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--muted);
}

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

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

@media (min-width: 900px) {
  .page-home .ho-opening {
    padding: 3.5rem 0 4rem;
  }

  .page-home .ho-opening__grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: 3.5rem;
    align-items: center;
  }

  .page-home .ho-opening__media {
    margin-top: 2rem;
  }

  .page-home .ho-section {
    padding: 4.5rem 0;
  }

  .page-home .ho-split {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 3rem;
    align-items: start;
  }

  .page-home .ho-member {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 2.5rem;
    padding: 2.5rem;
    align-items: center;
  }

  .page-home .ho-legacy-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 2.5rem;
    align-items: center;
  }

  .page-home .ho-legacy {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .page-home .ho-index {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home .ho-toc__link,
  .page-home .ho-paths a {
    transition: none;
  }

  .page-home .ho-paths a:hover,
  .page-home .ho-paths a:focus-visible {
    transform: none;
  }
}
<<<END>>>
