.page-home {
  --home-gap: 32px;
  position: relative;
  overflow-x: clip;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 40px 0 54px;
  border-bottom: 1px solid var(--line);
}

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

.page-home .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

.page-home .hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 62% at 16% 4%, rgba(123, 77, 255, .46), transparent 62%),
    radial-gradient(46% 54% at 92% 2%, rgba(0, 245, 200, .2), transparent 62%),
    linear-gradient(180deg, rgba(10, 16, 38, .5) 0%, rgba(10, 16, 38, .88) 58%, var(--bg) 100%);
}

.page-home .hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--home-gap);
}

.page-home .hero__crumb {
  margin: 0;
  font-size: .76rem;
  letter-spacing: .18em;
  color: var(--muted);
}

.page-home .hero__title {
  margin: 14px 0 0;
  font-size: clamp(2rem, 8.6vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 800;
}

.page-home .hero__title-main {
  display: block;
  color: var(--ink);
}

.page-home .hero__title-sub {
  display: block;
  margin-top: .2em;
  font-size: clamp(1.02rem, 4.4vw, 2.05rem);
  line-height: 1.26;
  letter-spacing: -.01em;
  font-weight: 600;
  color: var(--neon);
}

.page-home .hero__rule {
  width: 88px;
  height: 3px;
  margin-top: 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--blue), var(--violet) 52%, var(--neon));
}

.page-home .hero__lead {
  max-width: 48ch;
  margin: 20px 0 0;
}

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

.page-home .hero__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: 24px 0 0;
}

.page-home .hero__status-note {
  font-size: .76rem;
  letter-spacing: .08em;
  color: var(--muted);
}

/* 首屏索引浮板 */
.page-home .hero-index {
  padding: 18px 16px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 21, 51, .72);
  box-shadow: var(--shadow-1);
}

.page-home .hero-index__title {
  margin: 0 0 12px;
  padding-left: 10px;
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--muted);
}

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

.page-home .hero-index__link {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 10px;
  border-left: 2px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: .92rem;
  text-decoration: none;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.page-home .hero-index__link:hover,
.page-home .hero-index__link:focus-visible {
  color: var(--ink);
  background: rgba(27, 92, 255, .16);
  border-left-color: var(--neon);
}

.page-home .hero-index__link[aria-current="true"] {
  color: var(--ink);
  background: rgba(0, 245, 200, .1);
  border-left-color: var(--neon);
}

.page-home .hero-index__num {
  flex: none;
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--neon);
}

/* ---------- 区块标题 ---------- */
.page-home .section-head {
  max-width: 64ch;
  margin-bottom: 32px;
}

.page-home .section-head .lead {
  margin-top: 12px;
}

/* ---------- 8月更新 ---------- */
.page-home .update-grid {
  display: grid;
  gap: 30px;
}

.page-home .update-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.page-home .update-media img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.page-home .timeline__item {
  position: relative;
  padding: 0 0 26px 26px;
  border-left: 1px solid var(--line);
}

.page-home .timeline__item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.page-home .timeline__item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 0 4px rgba(0, 245, 200, .16);
}

.page-home .timeline__when {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--neon);
}

.page-home .timeline__title {
  margin: 7px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.4;
}

.page-home .timeline__text {
  max-width: 46ch;
  margin: 8px 0 0;
  font-size: .9rem;
  line-height: 1.68;
  color: var(--muted);
}

/* ---------- 双入口 ---------- */
.page-home .entry-media {
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.page-home .entry-media img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-home .entry-grid {
  display: grid;
  gap: 20px;
}

.page-home .entry-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(158deg, rgba(27, 92, 255, .18), rgba(12, 21, 51, .74) 62%);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.page-home .entry-card--alt {
  background: linear-gradient(158deg, rgba(123, 77, 255, .22), rgba(12, 21, 51, .74) 62%);
}

.page-home .entry-card:hover,
.page-home .entry-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow: var(--shadow-2);
}

.page-home .entry-card--alt:hover,
.page-home .entry-card--alt:focus-within {
  border-color: var(--violet);
}

.page-home .entry-card__tag {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--muted);
}

.page-home .entry-card__title {
  margin: 10px 0 0;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.page-home .entry-card__text {
  margin: 12px 0 0;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.page-home .entry-card__list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.page-home .entry-card__list li {
  display: flex;
  gap: 10px;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--muted);
}

.page-home .entry-card__list .mono {
  flex: none;
  padding-top: 2px;
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--neon);
}

/* ---------- 使用感受 ---------- */
.page-home .cap-grid {
  display: grid;
  gap: 18px;
}

.page-home .cap {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 21, 51, .6);
  transition: border-color .28s var(--ease), background .28s var(--ease), transform .28s var(--ease);
}

.page-home .cap:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 245, 200, .6);
  background: rgba(42, 27, 94, .48);
}

.page-home .cap__num {
  display: inline-block;
  margin: 0;
  padding: 3px 10px;
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--neon);
  border: 1px solid rgba(0, 245, 200, .35);
  border-radius: var(--radius-pill);
}

.page-home .cap__title {
  margin: 16px 0 0;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.page-home .cap__text {
  margin: 10px 0 0;
  font-size: .91rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- 运营数据 ---------- */
.page-home .trust-grid {
  display: grid;
  gap: var(--home-gap);
}

.page-home .trust-main .lead {
  max-width: 52ch;
  margin-top: 12px;
}

.page-home .trust-stats {
  margin-top: 26px;
}

.page-home .trust-stats .stat {
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(12, 21, 51, .58);
}

.page-home .trust-stats .stat__num {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.2;
}

.page-home .trust-stats .stat__label {
  display: block;
  margin-top: 6px;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--muted);
}

.page-home .trust-more {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(12, 21, 51, .55);
}

.page-home .trust-more > summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  list-style: none;
  transition: color .22s var(--ease), background .22s var(--ease);
}

.page-home .trust-more > summary::-webkit-details-marker {
  display: none;
}

.page-home .trust-more > summary::before {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--neon);
}

.page-home .trust-more[open] > summary {
  color: var(--ink);
  background: rgba(27, 92, 255, .12);
}

.page-home .trust-more[open] > summary::before {
  content: "–";
}

.page-home .trust-more__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px 18px 18px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.page-home .trust-more__list li {
  position: relative;
  padding-left: 16px;
  font-size: .88rem;
  line-height: 1.62;
  color: var(--muted);
}

.page-home .trust-more__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 7px;
  height: 1px;
  background: var(--neon);
}

.page-home .trust-more__list a {
  color: var(--neon);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 245, 200, .4);
  transition: border-color .22s var(--ease);
}

.page-home .trust-more__list a:hover {
  border-bottom-color: var(--neon);
}

.page-home .trust-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.page-home .trust-media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ---------- 下一步 ---------- */
.page-home .next-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 26px;
  margin-top: 38px;
  padding: 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(118deg, rgba(27, 92, 255, .2), rgba(42, 27, 94, .6) 58%, rgba(142, 42, 79, .22));
}

.page-home .next-strip__text {
  max-width: 52ch;
  margin: 0;
  font-size: .94rem;
  line-height: 1.68;
  color: var(--ink-soft);
}

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

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

  .page-home .entry-media img {
    height: 280px;
  }

  .page-home .update-media img {
    height: 280px;
  }
}

@media (min-width: 900px) {
  .page-home .hero {
    padding: 76px 0 88px;
  }

  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
  }

  .page-home .hero-index {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }

  .page-home .update-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 44px;
    align-items: start;
  }

  .page-home .update-media img {
    height: 340px;
  }

  .page-home .cap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .page-home .entry-media img {
    height: 320px;
  }

  .page-home .trust-media img {
    height: 280px;
  }
}

@media (min-width: 980px) {
  .page-home .trust-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }

  .page-home .trust-media img {
    height: 320px;
  }
}
