.page-home {
  --home-pad: clamp(52px, 7.5vw, 88px);
  --home-hair: rgba(42, 59, 73, 0.9);
  display: block;
  background: var(--ink-950);
  color: var(--white);
  overflow-x: hidden;
}

/* ============ 首屏 ============ */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-h) + 48px) 0 var(--home-pad);
  background:
    radial-gradient(120% 92% at 88% 4%, rgba(21, 94, 134, 0.62), rgba(8, 23, 38, 0) 62%),
    linear-gradient(178deg, var(--ink-950) 0%, var(--ink-900) 66%, var(--ink-950) 100%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(169, 194, 214, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 194, 214, 0.07) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(92% 70% at 18% 18%, #000 0%, transparent 78%);
  mask-image: radial-gradient(92% 70% at 18% 18%, #000 0%, transparent 78%);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-600), transparent);
}

.page-home .home-hero__grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.page-home .home-hero__title {
  margin: 14px 0 16px;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(32px, 8.2vw, 66px);
  line-height: 1.1;
  color: var(--white);
}

.page-home .home-hero__lead {
  max-width: 34em;
  margin: 0 0 26px;
  color: var(--ice);
  font-size: 16px;
  line-height: 1.75;
}

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

.page-home .home-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 30px 0 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid var(--home-hair);
  color: var(--ice);
  font-size: 14px;
}

.page-home .home-hero__facts li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-home .home-hero__facts .mono {
  font-family: var(--font-mono);
  font-size: 19px;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.page-home .home-hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, var(--ink-800), var(--ink-950));
  box-shadow: var(--shadow-card);
}

.page-home .home-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold) 55%, transparent);
  z-index: 2;
}

.page-home .home-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .home-hero__glow {
  position: absolute;
  right: -18%;
  bottom: -22%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 183, 5, 0.28), transparent 68%);
  pointer-events: none;
}

/* ============ 第二栏：奖池索引 ============ */
.page-home .home-index {
  padding: var(--home-pad) 0;
  background: var(--ink-950);
}

.page-home .home-index__banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

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

.page-home .home-index__head {
  margin-top: 40px;
}

.page-home .home-index__panel {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11, 60, 93, 0.5), rgba(8, 23, 38, 0.94));
  box-shadow: var(--shadow-card);
}

.page-home .home-index__resume {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0;
  padding: 13px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ice);
  background: rgba(242, 183, 5, 0.1);
  border-bottom: 1px solid var(--home-hair);
}

.page-home .home-index__panel .filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px 18px 10px;
}

.page-home .home-index__status {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ice);
}

.page-home .index-list {
  list-style: none;
  margin: 0;
  padding: 4px 12px 16px;
  display: grid;
  gap: 6px;
}

.page-home .index-row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: rgba(21, 94, 134, 0.16);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.page-home .index-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.page-home .index-row:hover,
.page-home .index-row:focus-within {
  transform: translateY(-2px);
  background: rgba(21, 94, 134, 0.3);
  border-color: rgba(242, 183, 5, 0.4);
}

.page-home .index-row:hover::after,
.page-home .index-row:focus-within::after {
  transform: scaleX(1);
}

.page-home .index-row__issue {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ice);
  white-space: nowrap;
}

.page-home .index-row__amount {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  text-align: right;
}

.page-home .index-row[data-keys="jackpot"] .index-row__amount {
  color: var(--gold);
}

/* ============ 奖级明细 ============ */
.page-home .home-grades {
  padding: var(--home-pad) 0;
  background: linear-gradient(180deg, var(--ink-950) 0%, var(--ink-900) 100%);
}

.page-home .home-grades__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .home-grades__text {
  color: var(--ice);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.page-home .home-grades__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--ice);
  font-size: 15px;
  line-height: 1.7;
}

.page-home .home-grades__list li {
  position: relative;
  padding-left: 20px;
}

.page-home .home-grades__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 2px;
  background: var(--red);
}

.page-home .home-grades__list strong {
  color: var(--white);
  font-weight: 500;
}

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

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

/* ============ 本周看板 ============ */
.page-home .home-stats {
  padding: var(--home-pad) 0;
  background: var(--ink-900);
}

.page-home .home-stats__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-home .home-stats__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--ink-600);
  background: rgba(8, 23, 38, 0.72);
}

.page-home .home-stats__item--lead {
  grid-column: span 2;
  border-bottom-color: var(--red);
  background: linear-gradient(140deg, rgba(213, 43, 30, 0.16), rgba(8, 23, 38, 0.85) 62%);
}

.page-home .home-stats__item .stat__value {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(24px, 6.4vw, 34px);
  line-height: 1.15;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.page-home .home-stats__item--lead .stat__value {
  font-size: clamp(30px, 8vw, 44px);
}

.page-home .home-stats__item .stat__label {
  font-size: 14px;
  color: var(--ice);
  line-height: 1.6;
}

/* ============ 订阅与归档 ============ */
.page-home .home-fork {
  padding: var(--home-pad) 0;
  background: var(--ink-950);
}

.page-home .home-fork__grid {
  display: grid;
  gap: 18px;
}

.page-home .home-fork__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(11, 60, 93, 0.55), rgba(8, 23, 38, 0.92));
  box-shadow: var(--shadow-card);
}

.page-home .home-fork__card--sub {
  border-top: 3px solid var(--gold);
}

.page-home .home-fork__card--arch {
  border-top: 3px solid var(--ink-600);
}

.page-home .home-fork__card .card__title {
  margin: 10px 0 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(21px, 5.2vw, 26px);
  line-height: 1.35;
  color: var(--white);
}

.page-home .home-fork__card .card__body {
  display: grid;
  gap: 12px;
}

.page-home .home-fork__card .card__body p {
  margin: 0;
  color: var(--ice);
  font-size: 15px;
  line-height: 1.8;
}

.page-home .home-fork__card .card__meta {
  margin-top: auto;
}

.page-home .home-fork__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}

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

/* ============ 运营与联系 ============ */
.page-home .home-contact {
  padding: var(--home-pad) 0 calc(var(--home-pad) + 12px);
  background: linear-gradient(180deg, var(--ink-900), var(--ink-950));
}

.page-home .home-contact__panel {
  display: grid;
  gap: 26px;
  padding: 30px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(110% 80% at 92% 0%, rgba(213, 43, 30, 0.16), transparent 60%),
    rgba(8, 23, 38, 0.72);
}

.page-home .home-contact__text {
  margin: 0 0 22px;
  color: var(--ice);
  font-size: 15px;
  line-height: 1.85;
}

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

.page-home .home-contact__list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--home-hair);
}

.page-home .home-contact__row {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--home-hair);
}

.page-home .home-contact__row dt {
  font-size: 13px;
  color: var(--ice);
  letter-spacing: 0.04em;
}

.page-home .home-contact__row dd {
  margin: 0;
  font-size: 15px;
  color: var(--white);
  word-break: break-word;
}

.page-home .home-contact__row dd.mono {
  font-family: var(--font-mono);
  font-size: 15px;
}

.page-home .home-contact__more {
  margin: 22px 0 0;
  font-size: 14px;
  color: var(--ice);
}

.page-home .home-contact__more a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 183, 5, 0.45);
  padding-bottom: 1px;
}

.page-home .home-contact__more a:hover,
.page-home .home-contact__more a:focus-visible {
  border-bottom-color: var(--gold);
}

/* ============ 响应式 ============ */
@media (min-width: 640px) {
  .page-home .home-index__panel .filter-bar {
    padding: 18px 22px 10px;
  }

  .page-home .index-list {
    padding: 6px 16px 18px;
  }

  .page-home .index-row {
    padding: 14px 18px;
  }

  .page-home .home-fork__card {
    padding: 30px 26px;
  }

  .page-home .home-contact__panel {
    padding: 34px 30px;
  }

  .page-home .home-contact__row {
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: baseline;
    gap: 16px;
  }
}

@media (min-width: 900px) {
  .page-home .home-hero {
    padding-top: calc(var(--header-h) + 80px);
    padding-bottom: calc(var(--home-pad) + 24px);
  }

  .page-home .home-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }

  .page-home .home-grades__grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
  }

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

  .page-home .home-stats__item--lead {
    grid-column: auto;
  }

  .page-home .home-fork__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
  }

  .page-home .home-contact__panel {
    grid-template-columns: 1.25fr 0.95fr;
    gap: 44px;
    align-items: start;
    padding: 44px 40px;
  }

  .page-home .home-contact__list {
    border-top: none;
  }

  .page-home .home-contact__row:first-child {
    border-top: 1px solid var(--home-hair);
  }
}

@media (min-width: 1120px) {
  .page-home .home-hero__grid {
    gap: 72px;
  }

  .page-home .home-index__head {
    margin-top: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .index-row,
  .page-home .index-row::after {
    transition: none;
  }

  .page-home .index-row:hover,
  .page-home .index-row:focus-within {
    transform: none;
  }
}
