.page-home {
  --hp-gap: clamp(12px, 1.5vw, 20px);
  --hp-cut: 32px;
  --hp-cut-sm: 18px;
  --hp-pad: clamp(18px, 2.2vw, 30px);
  background: var(--void);
  color: var(--ice);
}

/* ---------------- 首屏 ---------------- */
.page-home .hero {
  position: relative;
  padding-block: clamp(18px, 2.6vw, 34px) clamp(40px, 5vw, 76px);
  background:
    radial-gradient(120% 90% at 8% 0%, rgba(124, 77, 255, .24), transparent 62%),
    radial-gradient(85% 70% at 96% 4%, rgba(52, 231, 228, .11), transparent 60%),
    var(--void);
  overflow: hidden;
}

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 77, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 77, 255, .07) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 80%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 80%);
  pointer-events: none;
}

.page-home .hero > .shell {
  position: relative;
  z-index: 1;
}

.page-home .hero__crumbs {
  margin-bottom: clamp(12px, 1.6vw, 22px);
}

.page-home .hero__mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hp-gap);
}

/* 筛选器面板 */
.page-home .hero__filter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--hp-pad);
  background: linear-gradient(155deg, rgba(30, 26, 51, .95), rgba(7, 6, 12, .97));
  clip-path: polygon(0 0, calc(100% - var(--hp-cut)) 0, 100% var(--hp-cut), 100% 100%, var(--hp-cut-sm) 100%, 0 calc(100% - var(--hp-cut-sm)));
}

.page-home .hero__filter-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: saturate(.7) contrast(1.06);
}

.page-home .hero__filter::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(148deg, rgba(7, 6, 12, .5), rgba(7, 6, 12, .95) 68%);
}

.page-home .hero__filter-body {
  position: relative;
}

.page-home .hero__title {
  margin: 6px 0 0;
  font-family: var(--font-head);
  font-size: clamp(27px, 6.6vw, 50px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.02em;
  color: var(--ice);
  text-shadow: 0 0 32px rgba(124, 77, 255, .35);
}

.page-home .hero__lede {
  margin: 14px 0 0;
  max-width: 46ch;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--graphite);
}

.page-home .hero__filterbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: clamp(16px, 2vw, 26px);
}

/* 战报流 */
.page-home .hero__ticker {
  display: flex;
  flex-direction: column;
  padding: var(--hp-pad);
  background: linear-gradient(200deg, rgba(30, 26, 51, .92), rgba(18, 16, 31, .95));
  border-left: 2px solid var(--violet);
}

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

.page-home .ticker__row {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line-soft);
}

.page-home .ticker__clock {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--graphite);
}

.page-home .ticker__label {
  font-size: 14px;
  color: var(--ice);
}

.page-home .hero__ticker-link {
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 231, 228, .4);
  align-self: flex-start;
}

/* 区间条 */
.page-home .hero__range {
  padding: var(--hp-pad) var(--hp-pad) 12px;
  background: linear-gradient(120deg, rgba(18, 16, 31, .96), rgba(30, 26, 51, .88));
  border-top: 1px solid var(--line);
}

.page-home .hero__range-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .range-svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 8px;
}

/* 回放入口 */
.page-home .hero__replay {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: var(--hp-pad);
  background: var(--panel);
  clip-path: polygon(var(--hp-cut-sm) 0, 100% 0, 100% calc(100% - var(--hp-cut)), calc(100% - var(--hp-cut)) 100%, 0 100%, 0 var(--hp-cut-sm));
}

.page-home .hero__replay-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
  filter: saturate(.72) contrast(1.05);
}

.page-home .hero__replay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(7, 6, 12, .96) 24%, rgba(7, 6, 12, .28));
}

.page-home .hero__replay-body {
  position: relative;
}

.page-home .hero__replay-text {
  margin: 6px 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ice);
}

/* ---------------- 通用章节头 ---------------- */
.page-home .section-title {
  margin: 8px 0 0;
  font-family: var(--font-head);
  font-size: clamp(24px, 4.4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--ice);
}

.page-home .section-lede {
  margin: 14px 0 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.8;
  color: var(--graphite);
}

/* ---------------- 四段区间 ---------------- */
.page-home .bands__head {
  margin-bottom: clamp(26px, 3.4vw, 46px);
}

.page-home .bands__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hp-gap);
}

.page-home .band {
  position: relative;
  padding: var(--hp-pad);
  background: linear-gradient(160deg, rgba(30, 26, 51, .9), rgba(18, 16, 31, .82));
  border-top: 1px solid var(--line);
}

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

.page-home .band__name {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ice);
}

.page-home .band__stats {
  display: flex;
  gap: clamp(18px, 4vw, 40px);
  margin: 18px 0 0;
}

.page-home .band__stats .stat__label {
  font-size: 12px;
  font-family: var(--font-data);
  letter-spacing: .04em;
  color: var(--graphite);
}

.page-home .band__stats .stat__value {
  margin: 4px 0 0;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(52, 231, 228, .4);
}

.page-home .band__text {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--graphite);
  max-width: 40ch;
}

.page-home .band__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--violet);
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 77, 255, .45);
}

.page-home .filter-empty {
  display: none;
  margin-top: 24px;
  font-size: 15px;
  color: var(--graphite);
}

.page-home .filter-empty.is-shown {
  display: block;
}

/* ---------------- 桌面端战报 ---------------- */
.page-home .desk {
  background: linear-gradient(180deg, var(--void) 0%, var(--deep) 100%);
}

.page-home .desk__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.6vw, 52px);
  align-items: start;
}

.page-home .desk__media {
  margin: 0;
}

.page-home .desk__lede {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--graphite);
  max-width: 54ch;
}

.page-home .scene {
  margin-top: 22px;
  padding-left: 18px;
  border-left: 2px solid var(--violet);
}

.page-home .scene__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--ice);
}

.page-home .scene__text {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--graphite);
  max-width: 46ch;
}

.page-home .desk__foot {
  margin: 24px 0 20px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--cyan);
}

/* ---------------- 更新节奏 ---------------- */
.page-home .flow__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
}

.page-home .flow__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: flownode;
}

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

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

.page-home .flow__node::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--slate);
  box-shadow: 0 0 0 4px rgba(7, 6, 12, .9);
  transition: background .3s ease, box-shadow .3s ease;
}

.page-home .flow__node.is-lit::before {
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(7, 6, 12, .9), 0 0 16px rgba(52, 231, 228, .7);
}

.page-home .flow__stamp {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--orange);
}

.page-home .flow__title {
  margin: 6px 0 0;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--ice);
}

.page-home .flow__text {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--graphite);
  max-width: 42ch;
}

/* ---------------- 订阅档位 ---------------- */
.page-home .tiers__banner {
  position: relative;
  height: clamp(120px, 18vw, 200px);
  margin-bottom: clamp(28px, 4vw, 52px);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--hp-cut-sm)), calc(100% - var(--hp-cut-sm)) 100%, 0 100%);
}

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

.page-home .tiers__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 6, 12, .92) 6%, rgba(7, 6, 12, .18) 60%, rgba(124, 77, 255, .38));
}

.page-home .tiers__banner-text {
  position: absolute;
  left: clamp(18px, 3vw, 36px);
  bottom: clamp(14px, 2.4vw, 28px);
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ice);
}

.page-home .tiers__head {
  margin-bottom: clamp(22px, 3vw, 38px);
}

.page-home .tiers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hp-gap);
}

.page-home .tier {
  display: flex;
  flex-direction: column;
  padding: var(--hp-pad);
  background: linear-gradient(170deg, rgba(18, 16, 31, .92), rgba(7, 6, 12, .9));
  border-top: 1px solid var(--line);
}

.page-home .tier--lead {
  background: linear-gradient(170deg, rgba(124, 77, 255, .22), rgba(30, 26, 51, .9) 60%, rgba(7, 6, 12, .94));
  border-top: 1px solid var(--cyan);
}

.page-home .tier__tag {
  align-self: flex-start;
}

.page-home .tier__name {
  margin: 14px 0 0;
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--ice);
}

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

.page-home .tier__list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ice);
}

.page-home .tier__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--cyan);
}

.page-home .tier__fit {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--graphite);
}

.page-home .tier__link {
  margin-top: auto;
  padding-top: 20px;
  font-size: 14px;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 231, 228, .4);
  align-self: flex-start;
}

.page-home .tiers__note {
  margin: clamp(22px, 3vw, 34px) 0 0;
  font-size: 14px;
  color: var(--graphite);
}

/* ---------------- 专栏与合作 ---------------- */
.page-home .columns__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
}

.page-home .column-list {
  list-style: none;
  margin: clamp(18px, 2.4vw, 30px) 0 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.page-home .column-item {
  border-bottom: 1px dashed var(--line-soft);
}

.page-home .column-item__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 16px 4px;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
}

.page-home .column-item__series {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--magenta);
  white-space: nowrap;
}

.page-home .column-item__title {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ice);
}

.page-home .column-item__meta {
  font-size: 12px;
  color: var(--graphite);
  white-space: nowrap;
}

.page-home .column-item__link:hover,
.page-home .column-item__link:focus-visible {
  background: rgba(124, 77, 255, .1);
  transform: translateX(4px);
}

.page-home .columns__main .btn {
  margin-top: clamp(20px, 2.6vw, 30px);
}

.page-home .coop {
  padding: var(--hp-pad);
  background: linear-gradient(160deg, rgba(30, 26, 51, .92), rgba(7, 6, 12, .92));
  border-left: 2px solid var(--orange);
}

.page-home .coop__title {
  margin: 8px 0 0;
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  color: var(--ice);
}

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

.page-home .coop .btn {
  margin-top: 22px;
}

/* ---------------- 交互与动效 ---------------- */
.page-home .filter-chip {
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.page-home a:focus-visible,
.page-home button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------------- 响应式 ---------------- */
@media (min-width: 760px) {
  .page-home .hero__mosaic {
    grid-template-columns: repeat(12, 1fr);
  }

  .page-home .hero__filter {
    grid-column: 1 / span 7;
  }

  .page-home .hero__ticker {
    grid-column: 8 / span 5;
  }

  .page-home .hero__range {
    grid-column: 1 / span 8;
  }

  .page-home .hero__replay {
    grid-column: 9 / span 4;
  }

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

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

  .page-home .column-item__link {
    grid-template-columns: 88px 1fr auto;
  }
}

@media (min-width: 1040px) {
  .page-home .hero__mosaic {
    align-items: stretch;
  }

  .page-home .hero__filter {
    min-height: 420px;
  }

  .page-home .hero__replay {
    min-height: 260px;
  }

  .page-home .desk__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }

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

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

  .page-home .tier--lead {
    transform: translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .page-home .column-item__link:hover,
  .page-home .column-item__link:focus-visible {
    transform: none;
  }

  .page-home .tier--lead {
    transform: none;
  }
}
