.page-home {
  --page-hero-ink: rgba(10, 10, 16, .58);
  --page-cyan-glass: rgba(0, 229, 255, .12);
  --page-purple-glass: rgba(188, 19, 254, .14);
  --page-pink-glass: rgba(255, 42, 109, .16);
  --page-gold-glass: rgba(255, 215, 0, .14);
  --page-card-radius: 22px;
  --page-line: rgba(224, 224, 255, .1);
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
  color: var(--text-main);
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home section[id] {
  scroll-margin-top: 88px;
}

.page-home h1,
.page-home h2,
.page-home h3 {
  font-family: var(--font-headline);
  color: var(--text-bright);
}

.page-home h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: .04em;
  margin: 0;
}

.page-home h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.page-home .container {
  width: min(var(--content-width), 100% - 40px);
  margin-inline: auto;
}

.page-home .text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.page-home .btn--primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 0 24px rgba(188, 19, 254, .28);
}

.page-home .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(0, 229, 255, .35);
}

.page-home .btn--ghost {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(224, 224, 255, .24);
  color: var(--text-main);
}

.page-home .btn--ghost:hover {
  border-color: var(--neon-blue);
  box-shadow: var(--shadow-purple);
  transform: translateY(-2px);
}

.page-home .btn--block {
  width: 100%;
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  background: rgba(0, 229, 255, .1);
  color: var(--neon-blue);
  border: 1px solid rgba(0, 229, 255, .22);
}

.page-home .badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.page-home .badge--gold {
  background: linear-gradient(135deg, rgba(255, 215, 0, .9), rgba(255, 180, 0, .75));
  color: #1a1200;
  box-shadow: 0 0 18px rgba(255, 215, 0, .3);
}

.page-home .badge--pink {
  background: rgba(255, 42, 109, .2);
  color: var(--neon-pink);
  border: 1px solid rgba(255, 42, 109, .45);
}

.page-home .section-kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--neon-blue);
  text-transform: uppercase;
  margin: 0 0 10px;
}

/* ========== Hero 首屏拼贴 ========== */
.page-home .hero-panel {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 20px 48px;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  background: #07070c;
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
  z-index: 0;
}

.page-home .hero-grid-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 229, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 19, 254, .08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  z-index: 1;
}

.page-home .hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 16, .2) 0%, rgba(10, 10, 16, .82) 100%),
    radial-gradient(ellipse at 18% 30%, var(--page-purple-glass) 0%, transparent 50%);
  z-index: 1;
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), 100%);
  margin-inline: auto;
}

.page-home .hero-context {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 34px;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

.page-home .hero-crumb {
  color: var(--neon-blue);
  text-decoration: none;
}

.page-home .hero-crumb:hover {
  color: var(--text-bright);
}

.page-home .hero-crumb-sep {
  color: var(--text-dim);
}

.page-home .hero-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-home .hero-main {
  max-width: 760px;
}

.page-home .hero-site-kicker {
  font-family: var(--font-headline);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 14px;
}

.page-home .hero-title {
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.15;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.page-home .hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-main);
  max-width: 620px;
  margin: 0 0 28px;
}

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

.page-home .hero-actions .btn--ghost {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
}

.page-home .hero-pager {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  border-radius: 999px;
  scrollbar-width: none;
}

.page-home .hero-pager::-webkit-scrollbar {
  display: none;
}

.page-home .pager-cap {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-dim);
  background: rgba(255, 255, 255, .04);
  flex-shrink: 0;
}

.page-home .pager-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
  background: rgba(18, 18, 28, .8);
  border: 1px solid var(--page-line);
  flex-shrink: 0;
  transition: background .25s, border-color .25s, color .25s, box-shadow .25s;
}

.page-home .pager-link:hover,
.page-home .pager-link.is-current {
  color: #fff;
  border-color: var(--neon-purple);
  background: linear-gradient(135deg, rgba(188, 19, 254, .25), rgba(0, 229, 255, .18));
  box-shadow: 0 0 18px rgba(188, 19, 254, .25);
}

.page-home .hero-float-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .float-card {
  flex: 1 1 30%;
  min-width: 120px;
  border-radius: var(--page-card-radius);
  padding: 18px 16px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--page-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .float-card-a {
  background: linear-gradient(160deg, rgba(188, 19, 254, .22), rgba(10, 10, 16, .75));
}

.page-home .float-card-b {
  background: linear-gradient(160deg, rgba(0, 229, 255, .18), rgba(10, 10, 16, .75));
}

.page-home .float-card-c {
  background: linear-gradient(160deg, rgba(255, 42, 109, .16), rgba(10, 10, 16, .75));
}

.page-home .float-num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1;
}

.page-home .float-card-b .float-num {
  color: var(--neon-blue);
}

.page-home .float-card-c .float-num {
  background: linear-gradient(135deg, var(--neon-pink), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .float-unit {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.page-home .float-caption {
  font-size: 13px;
  color: var(--text-main);
}

.page-home .hero-issue {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--page-card-radius);
  background: var(--page-gold-glass);
  border: 1px solid rgba(255, 215, 0, .3);
}

.page-home .issue-gold {
  font-family: var(--font-mono);
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), #ff9d00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(255, 215, 0, .25);
}

.page-home .issue-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .issue-label {
  font-family: var(--font-headline);
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--gold);
}

.page-home .issue-note {
  font-size: 13px;
  color: var(--text-main);
}

/* ========== 核心功能带 ========== */
.page-home .feature-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 22px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--page-line);
}

.page-home .ribbon-item {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-bright);
  background: linear-gradient(135deg, rgba(188, 19, 254, .18), rgba(0, 229, 255, .12));
  border: 1px solid rgba(0, 229, 255, .2);
}

.page-home .ribbon-item:nth-child(2n) {
  background: linear-gradient(135deg, rgba(0, 229, 255, .16), rgba(188, 19, 254, .12));
}

.page-home .ribbon-item:nth-child(3n) {
  background: linear-gradient(135deg, rgba(255, 42, 109, .14), rgba(255, 215, 0, .1));
}

/* ========== Section 通用顶端 ========== */
.page-home .section-topline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.page-home .section-summary {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0;
}

/* ========== 最新更新 ========== */
.page-home .index-section {
  padding: 80px 0 30px;
  position: relative;
}

.page-home .index-section::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, .1), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-home .latest-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.page-home .latest-stream {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .update-card {
  border-radius: var(--page-card-radius);
  background: var(--bg-card);
  border: 1px solid var(--page-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.page-home .update-card:hover {
  transform: translateY(-4px);
  border-color: rgba(188, 19, 254, .5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4), 0 0 24px rgba(188, 19, 254, .15);
}

.page-home .feature-card {
  background: linear-gradient(145deg, var(--bg-card), rgba(26, 26, 40, .6));
  border-color: rgba(188, 19, 254, .3);
}

.page-home .update-cover {
  position: relative;
  line-height: 0;
}

.page-home .update-cover img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.page-home .update-cover .badge {
  position: absolute;
  top: 14px;
  left: 14px;
}

.page-home .update-content {
  padding: 20px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .update-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-home .update-clock {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

.page-home .update-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-main);
}

.page-home .update-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--page-line);
  margin-top: 4px;
}

.page-home .update-route {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  margin-left: auto;
}

.page-home .latest-live {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .live-panel {
  border-radius: var(--page-card-radius);
  padding: 20px;
  background: linear-gradient(135deg, rgba(0, 229, 255, .12), rgba(188, 19, 254, .1));
  border: 1px solid rgba(0, 229, 255, .24);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 12px rgba(5, 255, 161, .6);
  display: inline-block;
}

.page-home .live-title {
  font-family: var(--font-headline);
  font-size: 16px;
  color: var(--text-bright);
  letter-spacing: .04em;
}

.page-home .live-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
}

.page-home .live-stats {
  border-radius: var(--page-card-radius);
  background: var(--bg-card);
  border: 1px solid var(--page-line);
  overflow: hidden;
}

.page-home .stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--page-line);
}

.page-home .stat-row:last-child {
  border-bottom: none;
}

.page-home .stat-key {
  font-size: 14px;
  color: var(--text-dim);
}

.page-home .stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--neon-blue);
}

.page-home .latest-live .btn {
  margin-top: auto;
}

/* ========== 光谱分隔条 ========== */
.page-home .spectrum-wrap {
  width: 100%;
  padding: 26px 0 0;
  display: block;
}

.page-home .spectrum-svg {
  display: block;
  width: 100%;
  height: 16px;
  border-radius: 999px;
  filter: saturate(1.3);
}

/* ========== 热门推荐 ========== */
.page-home .popular-section {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, rgba(10, 10, 16, 0) 0%, var(--bg-card) 45%, rgba(10, 10, 16, 0) 100%);
}

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

.page-home .popular-card {
  border-radius: var(--page-card-radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--page-line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.page-home .popular-card:hover {
  transform: translateY(-4px) rotate(-.5deg);
  border-color: rgba(0, 229, 255, .55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .4), 0 0 28px rgba(0, 229, 255, .12);
}

.page-home .popular-media {
  position: relative;
  line-height: 0;
}

.page-home .popular-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .popular-media .badge {
  position: absolute;
  top: 14px;
  right: 14px;
}

.page-home .popular-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .popular-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-main);
}

.page-home .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.page-home .pop-secondary,
.page-home .pop-tertiary,
.page-home .pop-quaternary {
  position: relative;
  padding: 26px 20px;
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-home .pop-secondary {
  background: linear-gradient(150deg, rgba(188, 19, 254, .3), rgba(10, 10, 16, .85) 70%);
  border-color: rgba(188, 19, 254, .35);
}

.page-home .pop-tertiary {
  background: linear-gradient(150deg, rgba(0, 229, 255, .22), rgba(10, 10, 16, .85) 70%);
  border-color: rgba(0, 229, 255, .3);
}

.page-home .pop-quaternary {
  background: linear-gradient(150deg, rgba(255, 42, 109, .28), rgba(10, 10, 16, .85) 70%);
  border-color: rgba(255, 42, 109, .35);
}

.page-home .pop-icon-orb {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -30px;
  right: -20px;
  filter: blur(2px);
  opacity: .7;
}

.page-home .orb-a {
  background: radial-gradient(circle, rgba(188, 19, 254, .8), transparent 70%);
}

.page-home .orb-b {
  background: radial-gradient(circle, rgba(0, 229, 255, .7), transparent 70%);
}

.page-home .orb-c {
  background: radial-gradient(circle, rgba(255, 42, 109, .7), transparent 70%);
}

.page-home .pop-secondary .popular-info,
.page-home .pop-tertiary .popular-info,
.page-home .pop-quaternary .popular-info {
  position: relative;
  z-index: 1;
}

/* ========== 双轨归档指南 ========== */
.page-home .dual-section {
  padding: 80px 0 50px;
}

.page-home .dual-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .track-visual {
  padding: 24px 18px;
  border-radius: var(--page-card-radius);
  background: var(--bg-card);
  border: 1px solid var(--page-line);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-home .track-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 12px;
}

.page-home .track-label {
  font-family: var(--font-headline);
  font-size: 13px;
  color: var(--text-bright);
  letter-spacing: .08em;
}

.page-home .track-line {
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, transparent 15px, rgba(224, 224, 255, .2) 15px, rgba(224, 224, 255, .2) 19px, transparent 19px);
}

.page-home .track-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid rgba(224, 224, 255, .4);
  position: relative;
  z-index: 1;
  transition: background .3s, box-shadow .3s;
}

.page-home .track-node::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(224, 224, 255, .15);
}

.page-home .track-node.is-current {
  background: var(--neon-blue);
  border-color: var(--neon-blue);
  box-shadow: 0 0 16px rgba(0, 229, 255, .6);
}

.page-home .issue-node-1.is-current,
.page-home .issue-node-3.is-current {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(255, 215, 0, .55);
}

.page-home .track-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

.page-home .track-meet {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--page-line);
  color: var(--text-main);
  font-size: 14px;
}

.page-home .meet-point {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 14px rgba(255, 42, 109, .7);
}

.page-home .dual-guide-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .guide-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--page-card-radius);
  background: var(--bg-card);
  border: 1px solid var(--page-line);
  transition: border-color .3s, box-shadow .3s;
}

.page-home .guide-step:hover {
  border-color: rgba(0, 229, 255, .4);
  box-shadow: 0 0 20px rgba(0, 229, 255, .08);
}

.page-home .step-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--neon-blue);
  flex-shrink: 0;
  margin-top: 2px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .guide-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-main);
}

.page-home .quick-details {
  margin-top: 6px;
  border-radius: var(--page-card-radius);
  background: rgba(255, 215, 0, .06);
  border: 1px solid rgba(255, 215, 0, .28);
  padding: 0 20px;
  overflow: hidden;
}

.page-home .quick-details summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  color: var(--gold);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .quick-details summary::-webkit-details-marker {
  display: none;
}

.page-home .quick-details summary::before {
  content: "+";
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--neon-blue);
}

.page-home .quick-details[open] summary::before {
  content: "–";
}

.page-home .quick-details p {
  margin: 0;
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-main);
}

/* ========== 第47期精选 ========== */
.page-home .issue-section {
  padding: 40px 0 80px;
}

.page-home .issue-panel {
  border-radius: calc(var(--radius-lg) + 6px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 215, 0, .08), rgba(188, 19, 254, .1) 50%, rgba(0, 229, 255, .06));
  border: 1px solid rgba(255, 215, 0, .3);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.page-home .issue-fig {
  padding: 40px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 215, 0, .2);
}

.page-home .issue-fig .issue-gold {
  font-size: clamp(70px, 12vw, 120px);
  font-family: var(--font-mono);
  font-weight: 900;
  line-height: .9;
  background: linear-gradient(135deg, var(--gold) 20%, var(--neon-pink) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 34px rgba(255, 215, 0, .3));
}

.page-home .issue-fig-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .24em;
  color: var(--gold);
  background: rgba(255, 215, 0, .16);
  padding: 5px 14px;
  border-radius: 999px;
}

.page-home .issue-content {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.page-home .issue-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-main);
}

.page-home .issue-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.page-home .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-bright);
}

.page-home .feature-icon {
  color: var(--neon-blue);
  font-size: 12px;
}

.page-home .issue-content .btn {
  margin-top: 8px;
}

/* ========== 苹果手机追看指引 ========== */
.page-home .ios-section {
  padding: 70px 0 60px;
}

.page-home .ios-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-home .ios-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(188, 19, 254, .4);
  line-height: 0;
}

.page-home .ios-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .ios-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(188, 19, 254, .25), transparent 70%);
  pointer-events: none;
}

.page-home .ios-version {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-bright);
  background: rgba(10, 10, 16, .75);
  border: 1px solid rgba(224, 224, 255, .2);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.page-home .ios-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .step-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--bg-card);
  border-left: 3px solid var(--neon-blue);
}

.page-home .step-idx {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
}

.page-home .step-line p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-main);
}

.page-home .ios-steps .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ========== 信任带 ========== */
.page-home .trust-strip {
  padding: 50px 0;
  background: var(--bg-card);
  border-top: 1px solid rgba(188, 19, 254, .3);
  text-align: center;
}

.page-home .trust-text {
  max-width: 700px;
  margin: 0 auto 22px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-main);
}

.page-home .trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.page-home .trust-links a {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(224, 224, 255, .18);
  color: var(--neon-blue);
  text-decoration: none;
  font-size: 13px;
  transition: background .25s, border-color .25s, color .25s;
}

.page-home .trust-links a:hover {
  background: rgba(0, 229, 255, .1);
  border-color: var(--neon-blue);
  color: #fff;
}

.page-home .trust-icp {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
}

/* ========== 响应式 ========== */
@media (min-width: 640px) {
  .page-home .hero-float-grid {
    flex-wrap: nowrap;
  }

  .page-home .latest-layout {
    grid-template-columns: 1fr;
  }

  .page-home .popular-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .pop-primary {
    grid-column: span 2;
  }

  .page-home .dual-layout {
    grid-template-columns: 1fr;
  }

  .page-home .ios-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .page-home .hero-panel {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }

  .page-home .hero-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-template-areas:
      "main pager"
      "float issue";
    gap: 24px 40px;
    align-items: start;
  }

  .page-home .hero-main {
    grid-area: main;
  }

  .page-home .hero-pager {
    grid-area: pager;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: rgba(18, 18, 28, .45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 16px;
    overflow: visible;
    width: 260px;
    justify-self: end;
  }

  .page-home .pager-cap {
    background: transparent;
    justify-content: center;
    color: var(--text-dim);
    letter-spacing: .1em;
  }

  .page-home .pager-link {
    justify-content: center;
    background: transparent;
    border-color: transparent;
  }

  .page-home .pager-link:hover,
  .page-home .pager-link.is-current {
    background: linear-gradient(135deg, rgba(188, 19, 254, .28), rgba(0, 229, 255, .18));
  }

  .page-home .hero-float-grid {
    grid-area: float;
  }

  .page-home .hero-issue {
    grid-area: issue;
  }

  .page-home .latest-layout {
    grid-template-columns: 1fr 310px;
    align-items: start;
  }

  .page-home .feature-card {
    flex-direction: row;
    align-items: stretch;
  }

  .page-home .feature-card .update-cover {
    width: 42%;
    min-width: 260px;
  }

  .page-home .feature-card .update-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-home .feature-card .update-content {
    flex: 1;
    justify-content: center;
  }

  .page-home .popular-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .pop-primary {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .page-home .pop-primary .popular-media {
    height: 100%;
  }

  .page-home .pop-primary .popular-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-home .pop-primary .popular-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-home .pop-secondary,
  .page-home .pop-tertiary,
  .page-home .pop-quaternary {
    min-height: 220px;
  }

  .page-home .dual-layout {
    grid-template-columns: 420px 1fr;
    align-items: stretch;
  }

  .page-home .issue-panel {
    flex-direction: row;
    align-items: stretch;
  }

  .page-home .issue-fig {
    width: 42%;
    border-right: 1px solid rgba(255, 215, 0, .2);
    border-bottom: none;
  }

  .page-home .issue-content {
    flex: 1;
    justify-content: center;
    padding: 44px;
  }

  .page-home .ios-layout {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

@media (min-width: 1200px) {
  .page-home .section-topline {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-home .track-visual {
    padding: 32px 30px;
  }

  .page-home .track-row {
    grid-template-columns: 90px 1fr;
  }

  .page-home .ios-visual img {
    min-height: 360px;
  }
}
