.page-home {
  --home-max: 1180px;
  display: block;
  background: var(--ink);
  overflow-x: clip;
}

/* ---------- 首屏 ---------- */

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 84% -12%, rgba(56, 232, 200, 0.14), transparent 62%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(56, 232, 200, 0.05) 0px,
    rgba(56, 232, 200, 0.05) 1px,
    transparent 1px,
    transparent 4px
  );
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 26px var(--gutter) 42px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .eyebrow {
  color: var(--cyan);
}

.page-home .home-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.page-home .home-eyebrow__sep {
  color: var(--line-cyan);
}

.page-home .home-hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 6.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-home .home-hero__lede {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.85;
}

.page-home .checklist {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-home .checklist__item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.page-home .checklist__num {
  padding-top: 2px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.page-home .checklist__title {
  display: block;
  margin-bottom: 4px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--paper);
}

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

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

.page-home .home-hero__stage {
  position: relative;
}

.page-home .home-stage__frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-cyan);
  background: var(--ink-3);
}

.page-home .home-stage__frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.82) saturate(1.05);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.page-home .home-stage__frame:hover img {
  transform: scale(1.02);
  filter: brightness(0.92) saturate(1.1);
}

.page-home .home-stage__cap {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-cyan);
  background: rgba(7, 22, 20, 0.72);
  backdrop-filter: blur(6px);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--cyan-soft);
}

.page-home .home-stage__strip {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
}

.page-home .home-stage__cell {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.page-home .home-stage__key {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.page-home .home-stage__val {
  font-size: 14px;
  color: var(--cyan-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 900px) {
  .page-home .home-hero__inner {
    grid-template-columns: 38fr 62fr;
    gap: 48px;
    padding: 46px var(--gutter) 66px;
    align-items: start;
  }

  .page-home .home-hero h1 {
    font-size: clamp(32px, 3.3vw, 44px);
  }
}

@media (min-width: 980px) {
  .page-home .home-stage__strip {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    margin-top: 0;
    background: var(--glass-deep);
    backdrop-filter: blur(12px);
  }
}

/* ---------- 回看时间轴（暖纸层） ---------- */

.page-home .home-timeline {
  padding: 46px 0 54px;
  background: var(--paper);
  color: var(--ink);
}

.page-home .home-timeline .eyebrow {
  color: rgba(11, 36, 32, 0.58);
}

.page-home .home-timeline__head {
  max-width: 660px;
  margin-bottom: 34px;
}

.page-home .home-timeline__head h2 {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: clamp(22px, 3.6vw, 32px);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-home .home-timeline__lede {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(11, 36, 32, 0.66);
}

.page-home .tl {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .tl::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(11, 36, 32, 0.18);
}

.page-home .tl-node {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 0 0 32px 30px;
}

.page-home .tl-node:last-child {
  padding-bottom: 0;
}

.page-home .tl-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(56, 232, 200, 0.22);
}

.page-home .tl-node__stamp {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.page-home .tl-node__day {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.page-home .tl-node__meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(11, 36, 32, 0.55);
}

.page-home .tl-node__thumb {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11, 36, 32, 0.14);
  background: var(--paper-2);
}

.page-home .tl-node__thumb img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.95) saturate(0.96);
}

.page-home .tl-node__body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.38;
  color: var(--ink);
}

.page-home .tl-node__body p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.76;
  color: rgba(11, 36, 32, 0.7);
}

.page-home .tl-node__link {
  display: inline-block;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 36, 32, 0.4);
  padding-bottom: 1px;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-home .tl-node__link:hover {
  color: #0d5b4c;
  border-color: #0d5b4c;
}

@media (min-width: 820px) {
  .page-home .tl-node {
    grid-template-columns: 108px 232px minmax(0, 1fr);
    gap: 0 26px;
    padding: 0 0 38px 32px;
    align-items: start;
  }

  .page-home .tl-node__stamp {
    flex-direction: column;
    gap: 4px;
  }
}

/* ---------- 连续观看带 ---------- */

.page-home .home-band {
  padding: 48px 0 52px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(90% 130% at 10% 0%, rgba(56, 232, 200, 0.1), transparent 64%),
    var(--ink-3);
}

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

.page-home .home-band__lead {
  display: grid;
  gap: 18px;
  align-content: start;
}

.page-home .home-band__phone {
  margin: 0;
  max-width: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-cyan);
  background: var(--ink);
}

.page-home .home-band__phone img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.88) saturate(1.02);
}

.page-home .home-band__title {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: clamp(20px, 3.4vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--paper);
}

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

.page-home .home-band__jump {
  display: inline-block;
  margin-top: 14px;
  padding-bottom: 2px;
  font-size: 14px;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--line-cyan);
  transition: color var(--dur) var(--ease);
}

.page-home .home-band__jump:hover {
  color: var(--cyan-soft);
}

.page-home .home-band__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) rgba(159, 179, 174, 0.16);
}

.page-home .home-band__track::-webkit-scrollbar {
  height: 4px;
}

.page-home .home-band__track::-webkit-scrollbar-track {
  background: rgba(159, 179, 174, 0.16);
  border-radius: var(--radius-pill);
}

.page-home .home-band__track::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: var(--radius-pill);
}

.page-home .band-card {
  scroll-snap-align: start;
  flex: 0 0 min(400px, 84%);
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink-2);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .band-card:hover {
  border-color: var(--line-cyan);
  transform: translateY(-2px);
}

.page-home .band-card__stamp {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.page-home .band-card__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
  color: var(--paper);
}

.page-home .band-card__note {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .band-card__meta {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}

@media (min-width: 900px) {
  .page-home .home-band__inner {
    grid-template-columns: 292px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
  }

  .page-home .home-band__phone {
    max-width: 240px;
  }
}

/* ---------- 常用入口 ---------- */

.page-home .home-entries {
  padding: 50px 0 56px;
  background:
    radial-gradient(80% 100% at 100% 100%, rgba(255, 138, 61, 0.08), transparent 62%),
    linear-gradient(180deg, var(--ink), var(--ink-2) 58%, var(--ink));
}

.page-home .home-entries__title {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: clamp(22px, 3.6vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: 620px;
}

.page-home .home-entries__lede {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
}

.page-home .home-entries__figure {
  margin: 28px 0 30px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink-3);
}

.page-home .home-entries__figure img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.88) saturate(1.04);
}

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

.page-home .entry-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .entry-card:hover {
  border-color: var(--line-cyan);
  background: rgba(56, 232, 200, 0.1);
  transform: translateY(-2px);
}

.page-home .entry-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-home .entry-card__key {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.page-home .entry-card__title {
  margin: 0;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.36;
  color: var(--paper);
}

.page-home .entry-card__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}

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

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

/* ---------- 最近更新 ---------- */

.page-home .home-feed {
  padding: 48px 0 56px;
  background: var(--ink-2);
  border-top: 1px solid var(--line-soft);
}

.page-home .home-feed__title {
  margin: 0 0 22px;
  font-family: var(--font-sans);
  font-size: clamp(21px, 3.4vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-home .feed {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-home .feed__row {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "time label"
    "body body";
  gap: 10px 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.page-home .feed__time {
  grid-area: time;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--cyan);
}

.page-home .feed__label {
  grid-area: label;
  justify-self: start;
}

.page-home .feed__body {
  grid-area: body;
}

.page-home .feed__body h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.42;
  color: var(--paper);
}

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

@media (min-width: 760px) {
  .page-home .feed__row {
    grid-template-columns: 132px 92px minmax(0, 1fr);
    grid-template-areas: "time label body";
    gap: 0 20px;
    align-items: start;
    padding: 18px 0;
  }
}

/* ---------- 收束索引 ---------- */

.page-home .home-index {
  padding: 44px 0 64px;
  background: var(--ink);
}

.page-home .home-index__panel {
  max-width: 620px;
  margin: 0 auto;
  padding: 26px 22px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
}

.page-home .home-index__panel .eyebrow {
  margin: 0;
}

.page-home .home-index__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}

.page-home .home-index__list li {
  border-bottom: 1px solid var(--line-soft);
}

.page-home .home-index__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 2px;
  font-size: 15.5px;
  color: var(--paper);
  text-decoration: none;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.page-home .home-index__list a:hover {
  color: var(--cyan);
  padding-left: 8px;
}

.page-home .home-index__list .mono {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ---------- 窄屏收口 ---------- */

@media (max-width: 520px) {
  .page-home .home-stage__strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-home .checklist__item {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
  }

  .page-home .band-card {
    flex: 0 0 88%;
  }

  .page-home .home-index__list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
<<<END>>>
