.page-home .home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-home .home-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .home-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(90% 70% at 82% 12%, rgba(23, 234, 217, .16), transparent 62%),
    radial-gradient(60% 60% at 6% 92%, rgba(91, 75, 138, .3), transparent 66%),
    linear-gradient(180deg, rgba(6, 11, 24, .76) 0%, rgba(6, 11, 24, .94) 66%, var(--ink-void) 100%);
}

.page-home .home-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  padding-block: clamp(52px, 10vw, 128px) clamp(34px, 6vw, 66px);
}

.page-home .home-hero h1 {
  margin: .2em 0 0;
  max-width: 18ch;
  font-family: var(--font-narrow);
  font-weight: 800;
  font-size: clamp(33px, 6.2vw, 72px);
  line-height: 1.08;
  letter-spacing: .01em;
  color: var(--white);
}

.page-home .home-hero-lede {
  margin-top: 22px;
  max-width: 48ch;
  color: var(--star-silver);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.9;
}

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

/* ---------- 实时仪表盘 ---------- */
.page-home .home-console {
  padding: 20px 20px 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(11, 18, 32, .95), rgba(6, 11, 24, .88));
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(199, 210, 228, .08);
}

.page-home .home-console-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
}

.page-home .home-console-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pulse-cyan);
}

.page-home .home-console-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pulse-cyan);
  box-shadow: 0 0 0 4px rgba(23, 234, 217, .16);
}

.page-home .home-console-round {
  color: var(--steel);
}

.page-home .home-console .meter-row + .meter-row {
  margin-top: 16px;
}

.page-home .meter-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  font-size: 13px;
  color: var(--star-silver);
}

.page-home .meter-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--pulse-cyan);
}

.page-home .meter-num-amber {
  color: var(--amber);
}

.page-home .meter {
  height: 4px;
  border-radius: 99px;
  background: rgba(199, 210, 228, .12);
  overflow: hidden;
}

.page-home .meter-bar {
  height: 100%;
  width: var(--value, 0%);
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(23, 234, 217, .28), var(--pulse-cyan));
  transform-origin: left center;
  animation: home-bar-grow .85s cubic-bezier(.2, .8, .2, 1) both;
}

.page-home .meter-amber .meter-bar {
  background: linear-gradient(90deg, rgba(245, 185, 59, .3), var(--amber));
}

.page-home .home-console-foot {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 12.5px;
  line-height: 1.75;
}

@keyframes home-bar-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ---------- 章节索引 ---------- */
.page-home .home-index-bar {
  background: var(--ink-deep);
  border-bottom: 1px solid var(--line);
}

.page-home .home-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.page-home .home-index a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 2px;
  border-top: 2px solid transparent;
  color: var(--star-silver);
  font-size: 14px;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.page-home .home-index a:hover,
.page-home .home-index a:focus-visible {
  color: var(--pulse-cyan);
  border-top-color: var(--pulse-cyan);
  background: var(--cyan-soft);
}

.page-home .home-index-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--steel);
}

/* ---------- 时间轴 ---------- */
.page-home .home-tl-figure {
  margin: clamp(26px, 4vw, 42px) 0 0;
}

.page-home .home-tl-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.page-home .home-timeline {
  list-style: none;
  margin: clamp(28px, 4vw, 44px) 0 0;
  padding: 0;
}

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

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

.page-home .home-timeline .timeline-marker {
  position: absolute;
  left: -1px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink-void);
  border: 1px solid var(--line-strong);
  transform: translateX(-50%);
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.page-home .home-timeline > .timeline-item[data-active="true"] .timeline-marker {
  background: var(--pulse-cyan);
  border-color: var(--pulse-cyan);
  box-shadow: 0 0 0 6px rgba(23, 234, 217, .12);
}

.page-home .home-timeline .timeline-meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--steel);
}

.page-home .home-timeline .timeline-title {
  margin: 8px 0 0;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--white);
}

.page-home .home-timeline .timeline-body {
  margin-top: 10px;
  max-width: 56ch;
  color: var(--star-silver);
  font-size: 14.5px;
  line-height: 1.85;
}

/* ---------- 四类面板 ---------- */
.page-home .home-panels {
  display: grid;
  gap: 1px;
  margin-top: clamp(28px, 4vw, 44px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-home .home-panel {
  background: var(--ink-deep);
  padding: clamp(20px, 3vw, 30px);
}

.page-home .home-panel-index {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--pulse-cyan);
}

.page-home .home-panel h3 {
  margin: 12px 0 0;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.4;
  color: var(--white);
}

.page-home .home-panel p {
  margin-top: 12px;
  color: var(--star-silver);
  font-size: 14.5px;
  line-height: 1.85;
}

.page-home .home-panel-stat {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.page-home .home-panel-num {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--amber);
}

.page-home .home-panel-unit {
  font-size: 13px;
  line-height: 1.6;
  color: var(--steel);
}

.page-home .home-panel-media {
  margin: 22px 0 0;
}

.page-home .home-panel-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.page-home .home-panels-more {
  margin-top: 26px;
}

/* ---------- 五季纵深 ---------- */
.page-home .home-seasons {
  display: grid;
  gap: 1px;
  margin-top: clamp(26px, 4vw, 40px);
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-home .home-season-cell {
  background: var(--ink-void);
  padding: 24px 18px;
}

.page-home .home-season-num {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--pulse-cyan);
}

.page-home .home-season-num.is-amber {
  color: var(--amber);
}

.page-home .home-season-label {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--steel);
}

.page-home .home-seasons-note {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 2px solid var(--line-strong);
  color: var(--star-silver);
  font-size: 14.5px;
  line-height: 1.9;
}

/* ---------- 集锦与战报 ---------- */
.page-home .home-review {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  margin-top: clamp(28px, 4vw, 44px);
}

.page-home .home-sub-title {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--white);
}

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

.page-home .home-list li {
  position: relative;
  padding-left: 20px;
  color: var(--star-silver);
  font-size: 14.5px;
  line-height: 1.85;
}

.page-home .home-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 6px;
  height: 6px;
  border: 1px solid var(--pulse-cyan);
  transform: rotate(45deg);
}

.page-home .home-list-lg li {
  font-size: 15px;
}

.page-home .home-disclosure {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-home .home-disclosure summary {
  padding: 16px 0;
  cursor: pointer;
  color: var(--pulse-cyan);
  font-size: 14.5px;
  list-style: none;
}

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

.page-home .home-disclosure summary::before {
  content: "+";
  display: inline-block;
  width: 18px;
  font-family: var(--font-mono);
  color: var(--amber);
}

.page-home .home-disclosure[open] summary::before {
  content: "−";
}

.page-home .home-disclosure .disclosure-body {
  padding: 0 0 18px;
}

.page-home .home-disclosure .disclosure-body p {
  margin: 0;
  color: var(--star-silver);
  font-size: 14.5px;
  line-height: 1.9;
}

.page-home .home-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 2px solid var(--amber);
  background: var(--amber-soft);
  color: var(--star-silver);
  font-size: 14px;
  line-height: 1.85;
}

.page-home .home-inline-link {
  margin-top: 22px;
}

.page-home .home-inline-link a {
  color: var(--pulse-cyan);
  font-size: 14.5px;
  border-bottom: 1px solid rgba(23, 234, 217, .4);
  padding-bottom: 2px;
}

.page-home .home-ticket {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-deep);
  overflow: hidden;
}

.page-home .home-ticket img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line);
}

.page-home .home-ticket-body {
  padding: clamp(18px, 2.6vw, 26px);
}

.page-home .home-ticket-body p {
  margin-top: 14px;
  color: var(--star-silver);
  font-size: 14.5px;
  line-height: 1.85;
}

.page-home .home-ticket-meta {
  color: var(--steel) !important;
  font-size: 13.5px !important;
}

.page-home .home-ticket-body .btn {
  margin-top: 20px;
}

/* ---------- 团队与本地 ---------- */
.page-home .home-local {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  margin-top: clamp(28px, 4vw, 44px);
}

.page-home .home-local-meta {
  margin-top: 22px;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.85;
}

.page-home .home-side-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--steel);
}

.page-home .home-tag-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .home-side-note {
  margin-top: 20px;
  color: var(--star-silver);
  font-size: 14px;
  line-height: 1.85;
}

.page-home .home-local-side .btn {
  margin-top: 20px;
}

/* ---------- 结尾行动区 ---------- */
.page-home .home-cta {
  display: grid;
  gap: 22px;
  margin-top: clamp(44px, 6vw, 76px);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(23, 234, 217, .09) 0%, rgba(91, 75, 138, .16) 52%, rgba(6, 11, 24, 0) 100%);
}

.page-home .home-cta-title {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--white);
}

.page-home .home-cta-text {
  margin-top: 12px;
  max-width: 46ch;
  color: var(--star-silver);
  font-size: 14.5px;
  line-height: 1.85;
}

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

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-home .home-seasons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .page-home .home-index li + li {
    border-left: 1px solid var(--line);
  }

  .page-home .home-index a {
    padding-inline: 16px;
  }
}

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

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

  .page-home .home-panel-wide {
    grid-column: span 6;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(22px, 3vw, 40px);
    align-items: center;
  }

  .page-home .home-panel-wide .home-panel-media {
    margin-top: 0;
  }

  .page-home .home-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero-shell {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: end;
  }

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

  .page-home .home-local {
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    align-items: start;
  }
}

@media (min-width: 1080px) {
  .page-home .home-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0 20px;
    margin-top: clamp(32px, 4vw, 52px);
  }

  .page-home .home-timeline > .timeline-item,
  .page-home .home-timeline > .timeline-item:last-child {
    padding: 26px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .page-home .home-timeline .timeline-marker {
    left: 0;
    top: 0;
    transform: translate(-1px, -50%);
  }

  .page-home .home-timeline .timeline-body {
    max-width: none;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .meter-bar {
    animation: none;
    transform: none;
  }

  .page-home .home-timeline .timeline-marker,
  .page-home .home-index a {
    transition: none;
  }
}
</main>

.page-home {
  --value: 1rem;
}
