.page-home {
  padding-bottom: 24px;
}

/* ---------- Hero ---------- */
.page-home .hero {
  position: relative;
  overflow: hidden;
  margin: 4px 0 44px;
  padding: 26px 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(105% 125% at 86% 4%, rgba(122, 59, 255, .58), rgba(122, 59, 255, 0) 64%),
    radial-gradient(90% 110% at 4% 104%, rgba(0, 229, 255, .18), rgba(0, 229, 255, 0) 62%),
    linear-gradient(163deg, var(--ink-1) 0%, var(--ink-0) 74%);
}

.page-home .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(232, 230, 245, .22) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .14;
}

.page-home .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}

.page-home .hero-copy {
  min-width: 0;
}

.page-home .hero h1 {
  margin: 12px 0 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 7.6vw, 58px);
  line-height: 1.16;
  letter-spacing: -.02em;
  color: var(--text);
}

.page-home .hero-lead {
  margin: 0;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(232, 230, 245, .78);
}

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

.page-home .hero-visual {
  min-width: 0;
}

/* ---------- 通用视觉框 ---------- */
.page-home .shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--ink-2), var(--ink-0));
}

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

.page-home .shot--wide { aspect-ratio: 16 / 9; }
.page-home .shot--2x1 { aspect-ratio: 2 / 1; }
.page-home .shot--4x3 { aspect-ratio: 4 / 3; }
.page-home .shot--5x3 { aspect-ratio: 5 / 3; }

/* ---------- 数据带 ---------- */
.page-home .hero-stream {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px -18px 0;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.page-home .stream-item {
  min-width: 0;
  padding: 16px 16px 18px;
  background: rgba(7, 6, 15, .8);
}

.page-home .stream-value {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
}

.page-home .stream-value--pink { color: var(--pink); }
.page-home .stream-value--cyan { color: var(--cyan); }
.page-home .stream-value--gold { color: var(--gold); }

.page-home .stream-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 侧边轨道 ---------- */
.page-home .side-rail {
  margin-bottom: 30px;
}

.page-home .side-rail .rail-title {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-home .side-rail .rail-list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0 0 6px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-home .side-rail .rail-list::-webkit-scrollbar {
  display: none;
}

.page-home .side-rail .rail-link {
  display: inline-block;
  white-space: nowrap;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 16, 31, .7);
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.page-home .side-rail .rail-link:hover,
.page-home .side-rail .rail-link:focus-visible {
  color: var(--text);
  border-color: var(--neon);
}

/* ---------- 区块 ---------- */
.page-home .block {
  margin-bottom: 60px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

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

.page-home .block-head {
  margin-bottom: 26px;
}

.page-home .block-num {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--neon-soft);
  opacity: .85;
}

.page-home .block-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(23px, 5.2vw, 38px);
  line-height: 1.22;
  letter-spacing: -.02em;
  color: var(--text);
}

.page-home .block-title em {
  font-style: normal;
  color: var(--cyan);
}

.page-home .block-lead {
  margin: 0;
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.82;
  color: rgba(232, 230, 245, .74);
}

.page-home .block-foot {
  margin: 22px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--neon);
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* ---------- 会员等级 ---------- */
.page-home .tier-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .tier-tab {
  appearance: none;
  cursor: pointer;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(18, 16, 31, .72);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}

.page-home .tier-tab[aria-selected="true"] {
  color: var(--ink-0);
  border-color: var(--neon);
  background: linear-gradient(135deg, var(--neon-soft), var(--neon));
  box-shadow: var(--shadow-neon);
}

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

.page-home .tier-panel {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(26, 23, 48, .94), rgba(7, 6, 15, .94));
}

.page-home .tier-name {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--gold);
}

.page-home .tier-for {
  margin: 0;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--muted);
}

.page-home .tier-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .tier-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(232, 230, 245, .88);
}

.page-home .tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, .8);
}

.page-home .tier-note {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .tier-visual {
  display: grid;
  gap: 12px;
  align-content: start;
}

.page-home .tier-visual-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

/* ---------- 礼包 ---------- */
.page-home .gift-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .filter-btn {
  appearance: none;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}

.page-home .filter-btn[aria-pressed="true"] {
  color: var(--ink-0);
  border-color: var(--cyan);
  background: var(--cyan);
}

.page-home .filter-status {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-home .gift-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-home .gift-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(165deg, rgba(26, 23, 48, .92), rgba(7, 6, 15, .92));
  overflow: hidden;
}

.page-home .gift-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), var(--cyan), transparent);
  opacity: .55;
}

.page-home .gift-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
}

.page-home .gift-text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
  color: rgba(232, 230, 245, .72);
}

.page-home .code-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 14px;
  border: 1px dashed var(--neon-soft);
  border-radius: 999px;
  background: rgba(122, 59, 255, .14);
}

.page-home .code-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--gold);
}

.page-home .copy-btn {
  appearance: none;
  cursor: pointer;
  border: 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--ink-0);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  transition: filter .18s var(--ease), transform .18s var(--ease);
}

.page-home .copy-btn:hover { filter: brightness(1.12); }
.page-home .copy-btn:active { transform: scale(.95); }

.page-home .gift-banner {
  display: grid;
  gap: 20px;
  margin-top: 26px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(95% 130% at 100% 0%, rgba(255, 79, 163, .22), transparent 64%),
    linear-gradient(155deg, var(--ink-2), var(--ink-0));
}

.page-home .gift-banner-copy h3 {
  margin: 10px 0 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text);
}

.page-home .gift-banner-copy p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.82;
  color: rgba(232, 230, 245, .76);
}

/* ---------- 数据覆盖 ---------- */
.page-home .meter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.page-home .meter-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.page-home .meter-val {
  font-family: var(--font-mono);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--cyan);
}

.page-home .meter-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(42, 39, 64, .85);
  overflow: hidden;
}

.page-home .meter-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--neon), var(--cyan));
}

.page-home .meter:nth-child(1) .meter-fill { width: 92%; }
.page-home .meter:nth-child(2) .meter-fill { width: 58%; }
.page-home .meter:nth-child(3) .meter-fill { width: 86%; }
.page-home .meter:nth-child(4) .meter-fill { width: 66%; }

/* ---------- 开服节点 ---------- */
.page-home .launch-layout {
  display: grid;
  gap: 24px;
}

.page-home .launch-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .launch-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(18, 16, 31, .74);
}

.page-home .launch-day {
  flex: 0 0 48px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--neon-soft);
}

.page-home .launch-body {
  flex: 1 1 220px;
  min-width: 0;
}

.page-home .launch-title {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
}

.page-home .launch-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(232, 230, 245, .7);
}

.page-home .launch-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-home .config-card {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(150deg, rgba(122, 59, 255, .24), rgba(7, 6, 15, .92));
}

.page-home .config-card h3 {
  margin: 10px 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text);
}

.page-home .config-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(232, 230, 245, .74);
}

/* ---------- 三条路线 ---------- */
.page-home .path-grid {
  display: grid;
  gap: 16px;
}

.page-home .path-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(18, 16, 31, .7);
  color: inherit;
  text-decoration: none;
  transition: transform .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}

.page-home .path-card:hover,
.page-home .path-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--neon);
  background: rgba(26, 23, 48, .92);
}

.page-home .path-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text);
}

.page-home .path-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(232, 230, 245, .72);
}

.page-home .path-arrow {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--cyan);
}

.page-home .closing-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(122, 59, 255, .2), rgba(7, 6, 15, .92) 62%);
}

.page-home .closing-band p {
  margin: 0;
  flex: 1 1 260px;
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(232, 230, 245, .78);
}

.page-home .closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- 平板 ---------- */
@media (min-width: 640px) {
  .page-home .gift-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-home .meter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 32px;
  }

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

/* ---------- 桌面 ---------- */
@media (min-width: 900px) {
  .page-home .hero {
    margin-bottom: 70px;
    padding: 52px 48px 0;
  }

  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: 48px;
  }

  .page-home .hero-stream {
    margin: 44px -48px 0;
  }

  .page-home .stream-item {
    padding: 20px 22px 22px;
  }

  .page-home .tier-stage {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
    gap: 28px;
    align-items: start;
  }

  .page-home .gift-banner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
    align-items: center;
    padding: 32px 36px;
  }

  .page-home .launch-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 32px;
    align-items: start;
  }

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

  .page-home .path-card:nth-child(2) {
    margin-top: 24px;
  }

  .page-home .path-card:nth-child(3) {
    margin-top: 8px;
  }

  .page-home .block {
    margin-bottom: 76px;
  }
}

@media (min-width: 1060px) {
  .page-home .layout-rail {
    display: grid;
    grid-template-columns: var(--rail) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }

  .page-home .side-rail {
    position: sticky;
    top: calc(var(--header-h) + 28px);
    margin-bottom: 0;
  }

  .page-home .side-rail .rail-list {
    flex-direction: column;
    gap: 4px;
    overflow: visible;
    padding-bottom: 0;
  }

  .page-home .side-rail .rail-link {
    display: block;
    padding: 9px 12px;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    background: transparent;
    font-size: 14px;
  }

  .page-home .side-rail .rail-link:hover,
  .page-home .side-rail .rail-link:focus-visible {
    border-left-color: var(--neon);
    color: var(--text);
  }
}

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

  .page-home .gift-card:nth-child(even) {
    transform: translateY(18px);
  }
}

/* ---------- 动效偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home .path-card,
  .page-home .tier-tab,
  .page-home .filter-btn,
  .page-home .copy-btn,
  .page-home .side-rail .rail-link {
    transition: none;
  }

  .page-home .path-card:hover,
  .page-home .path-card:focus-visible {
    transform: none;
  }
}
<<<END>>>
