.page-home {
  --home-rail-w: 0px;
  --home-gutter: clamp(18px, 4vw, 56px);
  --home-rule: 2px solid var(--line);
  position: relative;
}

/* ============ 右侧章节导航 ============ */
.page-home .home-rail {
  display: none;
}

@media (min-width: 1200px) {
  .page-home .home-rail {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: fixed;
    top: 50%;
    right: clamp(16px, 2vw, 28px);
    transform: translateY(-50%);
    z-index: 40;
  }
  .page-home .home-rail__dot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 12px;
    color: var(--muted);
    text-decoration: none;
  }
  .page-home .home-rail__dot::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--line);
    transition: width .3s var(--ease), background .3s var(--ease);
  }
  .page-home .home-rail__dot span {
    position: absolute;
    right: 32px;
    white-space: nowrap;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .page-home .home-rail__dot:hover::before,
  .page-home .home-rail__dot:focus-visible::before {
    width: 40px;
    background: var(--cyan);
  }
  .page-home .home-rail__dot:hover span,
  .page-home .home-rail__dot:focus-visible span {
    opacity: 1;
    transform: translateX(0);
    color: var(--cyan);
  }
}

/* ============ 首屏 ============ */
.page-home .home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(900px, 94svh);
  padding-top: calc(var(--header-h, 72px) + clamp(56px, 12vw, 140px));
  padding-bottom: clamp(40px, 7vw, 88px);
  isolation: isolate;
  overflow: hidden;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .16;
  filter: saturate(.55) contrast(1.15);
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 72% 18%, rgba(53, 240, 206, .10), transparent 65%),
    radial-gradient(45% 40% at 12% 78%, rgba(20, 112, 95, .18), transparent 70%),
    linear-gradient(180deg, rgba(5, 16, 13, .42) 0%, rgba(5, 16, 13, .82) 55%, var(--ink) 100%);
}

.page-home .home-hero__inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: end;
}

.page-home .home-hero__context {
  color: var(--orange-soft);
  margin: 0;
}

.page-home .home-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 10.5vw, 128px);
  line-height: .9;
  letter-spacing: -.02em;
  color: var(--text);
}

.page-home .home-hero__title span {
  display: block;
}

.page-home .home-hero__title span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 2px var(--cyan);
}

.page-home .home-hero__title span:nth-child(3) {
  padding-left: clamp(0px, 4vw, 72px);
}

.page-home .home-hero__aside {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}

.page-home .home-hero__aside .lead {
  margin: 0;
  max-width: 46ch;
  color: var(--text);
}

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

.page-home .home-hero__micro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding-top: 18px;
  border-top: 2px solid var(--line);
}

.page-home .home-hero__micro-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 12px;
}

.page-home .home-hero__micro-item dt {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-home .home-hero__micro-item dd {
  margin: 0;
  font-size: 15px;
  color: var(--text);
}

.page-home .home-hero__micro-item dd .mono {
  font-size: 24px;
  font-weight: 700;
  color: var(--cyan);
  margin-right: 4px;
}

@media (min-width: 900px) {
  .page-home .home-hero__inner {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(20px, 2.5vw, 40px);
    row-gap: clamp(24px, 3vw, 40px);
  }
  .page-home .home-hero__context {
    grid-column: 1 / span 6;
  }
  .page-home .home-hero__title {
    grid-column: 1 / span 8;
  }
  .page-home .home-hero__aside {
    grid-column: 9 / span 4;
    align-self: end;
    padding-bottom: 8px;
  }
}

/* ============ 通栏数据带 ============ */
.page-home .home-band.databand {
  position: relative;
  border-top: var(--home-rule);
  border-bottom: 2px solid var(--cyan);
  border-left: 0;
  border-right: 0;
  background: linear-gradient(180deg, rgba(11, 31, 25, .95), rgba(5, 16, 13, .88));
  overflow: hidden;
}

.page-home .home-band.databand::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(53, 240, 206, .07) 0 1px,
    transparent 1px 5px
  );
  pointer-events: none;
}

.page-home .home-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding: 0;
}

.page-home .home-band .databand__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(18px, 3vw, 30px) clamp(16px, 2vw, 26px);
  background: var(--ink);
  border: 0;
}

.page-home .home-band .databand__item--accent {
  background: linear-gradient(180deg, rgba(255, 138, 43, .12), rgba(5, 16, 13, .9));
}

.page-home .home-band .databand__label {
  color: var(--muted);
}

.page-home .home-band .databand__value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1;
  color: var(--cyan);
  letter-spacing: -.01em;
}

.page-home .home-band .databand__item--accent .databand__value {
  color: var(--orange);
}

.page-home .home-band__note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

@media (min-width: 860px) {
  .page-home .home-band__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ============ 章节通用 ============ */
.page-home .home-section__head {
  max-width: 62ch;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.page-home .home-section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.5vw, 40px);
}

.page-home .home-section__title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--text);
}

.page-home .home-section__lead {
  margin: 16px 0 0;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

@media (min-width: 900px) {
  .page-home .home-section__head--split {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: end;
  }
  .page-home .home-section__head--split .home-section__lead {
    margin: 0;
    padding-bottom: 4px;
  }
}

/* ============ 三类记录入口 ============ */
.page-home .entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3.4vw, 40px);
}

.page-home .entry-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(20px, 2.6vw, 32px);
  background: var(--surface);
  border: var(--home-rule);
  box-shadow: var(--shadow-hard);
  position: relative;
}

.page-home .entry-card--b {
  background: linear-gradient(160deg, var(--surface) 0%, var(--ink-2) 100%);
}

.page-home .entry-card--c {
  background: linear-gradient(200deg, var(--ink-2) 0%, var(--surface) 100%);
}

.page-home .entry-card__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--orange-soft);
}

.page-home .entry-card__media .media__frame {
  border: 2px solid var(--line);
  background: var(--ink);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.page-home .entry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}

.page-home .entry-card:hover .entry-card__media img {
  transform: scale(1.04);
}

.page-home .entry-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--text);
}

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

.page-home .entry-card__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-home .entry-card__facts > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.page-home .entry-card__facts dt {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 0 0 auto;
}

.page-home .entry-card__facts dd {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  text-align: right;
}

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

@media (min-width: 900px) {
  .page-home .entry-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(20px, 2.6vw, 40px);
    row-gap: clamp(28px, 4vw, 56px);
  }
  .page-home .entry-card--a {
    grid-column: 1 / span 5;
    grid-row: 1;
    align-self: start;
  }
  .page-home .entry-card--b {
    grid-column: 7 / span 6;
    grid-row: 1;
    align-self: start;
    margin-top: clamp(40px, 6vw, 88px);
  }
  .page-home .entry-card--c {
    grid-column: 3 / span 8;
    grid-row: 2;
    align-self: start;
    margin-top: clamp(-40px, -2vw, 0px);
  }
}

/* ============ 轮次时间轴 ============ */
.page-home .home-timeline-sec__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
}

.page-home .home-timeline-sec__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 0;
}

.page-home .home-timeline-sec__key {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--muted);
}

.page-home .home-timeline-sec__key::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--line);
  background: transparent;
}

.page-home .home-timeline-sec__key--done::before {
  background: var(--cyan);
  border-color: var(--cyan);
}

.page-home .home-timeline-sec__key--current::before {
  background: var(--orange);
  border-color: var(--orange);
}

.page-home .home-timeline-sec__cta {
  margin-top: clamp(22px, 3vw, 32px);
}

.page-home .home-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
  gap: clamp(6px, 1vw, 10px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-timeline__node {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(12px, 1.3vw, 15px);
  font-variant-numeric: tabular-nums;
  transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.page-home .home-timeline__node.is-done {
  border-color: var(--cyan-deep);
  color: var(--cyan);
  background: rgba(20, 112, 95, .14);
}

.page-home .home-timeline__node.is-current {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(53, 240, 206, .28);
}

.page-home .home-timeline__node:hover,
.page-home .home-timeline__node:focus-visible {
  transform: scale(1.14) translateY(-2px);
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(255, 138, 43, .38);
  z-index: 2;
}

.page-home .home-timeline__foot {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.7;
  max-width: 60ch;
}

@media (min-width: 960px) {
  .page-home .home-timeline-sec__inner {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: clamp(32px, 4vw, 64px);
    align-items: start;
  }
  .page-home .home-timeline-sec__aside {
    position: sticky;
    top: calc(var(--header-h-scrolled, 58px) + 32px);
  }
  .page-home .home-timeline {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}

/* ============ 回访理由 ============ */
.page-home .revisit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(32px, 5vw, 56px);
}

.page-home .revisit-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 34px);
  background: var(--ink-2);
  border: var(--home-rule);
  border-left: 5px solid var(--cyan);
}

.page-home .revisit-item__num {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--cyan);
}

.page-home .revisit-item__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  color: var(--text);
}

.page-home .revisit-item p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .home-revisit__ask {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 90ch;
}

.page-home .home-revisit__ask .expand {
  border: 2px solid var(--line);
  background: var(--surface);
}

.page-home .home-revisit__ask .expand__trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.page-home .home-revisit__ask .expand__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1;
  transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease);
}

.page-home .home-revisit__ask .expand__trigger[aria-expanded="true"] .expand__icon {
  transform: rotate(45deg);
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink);
}

.page-home .home-revisit__ask .expand__panel {
  display: none;
  border-top: 1px solid var(--line);
}

.page-home .home-revisit__ask .expand__panel[data-open] {
  display: block;
}

.page-home .home-revisit__ask .expand__body {
  padding: 18px 20px 22px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .home-revisit__ask .expand__body p {
  margin: 0;
}

@media (min-width: 900px) {
  .page-home .revisit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
  .page-home .revisit-item:nth-child(2) {
    margin-top: 40px;
  }
  .page-home .revisit-item:nth-child(3) {
    margin-top: 16px;
  }
}

/* ============ 更新节奏 + 联系 ============ */
.page-home .home-rhythm__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4.5vw, 64px);
}

.page-home .rhythm-steps {
  list-style: none;
  margin: clamp(28px, 4vw, 44px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
}

.page-home .rhythm-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 18px clamp(14px, 2vw, 22px);
  background: var(--ink);
}

.page-home .rhythm-step__time {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
}

.page-home .rhythm-step__label {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-home .rhythm-step__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .home-rhythm__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .rhythm-contact.card--accent {
  padding: clamp(22px, 2.8vw, 32px);
  background: linear-gradient(165deg, rgba(20, 112, 95, .28), var(--ink-2));
  border: 2px solid var(--cyan-deep);
  box-shadow: var(--shadow-hard-cyan);
}

.page-home .rhythm-contact__title {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  color: var(--text);
}

.page-home .rhythm-contact__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .rhythm-contact__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.page-home .rhythm-contact__list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.page-home .rhythm-contact__list .label {
  color: var(--muted);
}

.page-home .rhythm-contact__list a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 240, 206, .4);
  word-break: break-all;
}

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

.page-home .rhythm-contact__cta {
  align-self: flex-start;
}

.page-home .home-rhythm__side-note {
  padding: clamp(20px, 2.6vw, 28px);
  border: 2px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-rhythm__side-note .label {
  color: var(--orange-soft);
  margin: 0;
}

.page-home .home-rhythm__side-note p:nth-of-type(2) {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .home-rhythm__side-note .btn {
  align-self: flex-start;
}

@media (min-width: 720px) {
  .page-home .rhythm-step {
    grid-template-columns: 130px 150px 1fr;
    align-items: baseline;
    gap: 18px;
  }
}

@media (min-width: 960px) {
  .page-home .home-rhythm__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
  }
  .page-home .home-rhythm__side {
    position: sticky;
    top: calc(var(--header-h-scrolled, 58px) + 32px);
  }
}

/* ============ 通用防护 ============ */
.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home a:focus-visible,
.page-home button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .page-home .home-hero__micro {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .page-home .home-hero__micro-item {
    padding-right: 0;
  }
  .page-home .home-timeline {
    grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
  }
}
<<<END>>>
