.page-home {
  --home-radius: 0;
  --home-pad: clamp(20px, 5vw, 48px);
  background: var(--night);
  color: var(--silver);
}

/* ============ 首屏海报 ============ */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
  padding: clamp(28px, 5vw, 56px) 0 clamp(52px, 8vw, 104px);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
  opacity: .26;
  filter: saturate(.65) contrast(1.06);
  z-index: 0;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 21, 15, .45) 0%, rgba(4, 21, 15, .82) 58%, var(--night) 100%);
  pointer-events: none;
}

.page-home .home-hero__lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(112deg, rgba(195, 207, 214, .085) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(52, 241, 212, .055) 0 1px, transparent 1px 148px);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
}

.page-home .home-hero__pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 18px;
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--rule-strong);
  background: rgba(10, 42, 32, .72);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--silver);
}

.page-home .home-hero__pulse .status-dot {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-soft);
  animation: home-pulse 10s ease-in-out infinite;
}

@keyframes home-pulse {
  0%, 92%, 100% { box-shadow: 0 0 0 3px var(--cyan-soft); }
  95% { box-shadow: 0 0 0 9px rgba(52, 241, 212, .06); }
}

.page-home .home-hero .eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: .32em;
}

.page-home .home-hero__title {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 11.5vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.015em;
  color: var(--white);
  text-wrap: balance;
}

.page-home .home-hero__title br {
  display: block;
}

.page-home .home-hero__lead {
  max-width: 34em;
  margin: 0 0 34px;
  color: var(--silver);
  font-size: clamp(15px, 2.3vw, 17px);
  line-height: 1.75;
}

.page-home .home-hero__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  border: 1px solid var(--rule);
  background: var(--rule);
}

.page-home .home-fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 16px 18px;
  background: rgba(6, 28, 20, .82);
}

.page-home .home-fact__value {
  font-family: var(--font-mono);
  font-size: clamp(1.85rem, 6vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
  letter-spacing: -.02em;
}

.page-home .home-fact__label {
  font-size: 12.5px;
  color: var(--silver);
  letter-spacing: .02em;
}

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

/* ============ 旧版轮次对照台 ============ */
.page-home .rounds {
  border-top: 1px solid var(--rule);
  background:
    linear-gradient(180deg, var(--night) 0%, var(--night-3) 100%);
}

.page-home .rounds__board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}

.page-home .rounds__col {
  border: 1px solid var(--rule);
  background: rgba(10, 42, 32, .55);
  padding: 18px 18px 8px;
}

.page-home .rounds__col--old {
  border-color: var(--amber-soft);
  background: rgba(233, 180, 76, .05);
}

.page-home .rounds__tag {
  margin: 0 0 14px;
}

.page-home .rounds__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .rounds__item {
  display: grid;
  grid-template-columns: 3.2em 1fr auto;
  gap: 10px;
  align-items: baseline;
  padding: 11px 10px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  line-height: 1.5;
}

.page-home .rounds__item--changed {
  border-left: 3px solid var(--amber);
  background: var(--amber-soft);
  padding-left: 12px;
}

.page-home .rounds__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: .02em;
}

.page-home .rounds__col--old .rounds__num {
  color: var(--amber);
}

.page-home .rounds__name {
  color: var(--panel);
}

.page-home .rounds__time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--silver);
  text-align: right;
}

.page-home .rounds__item--changed .rounds__time {
  color: var(--amber);
  font-weight: 700;
}

.page-home .rounds__note {
  margin: 20px 0 0;
  color: var(--silver);
}

.page-home .rounds__art {
  margin: 34px 0 0;
  max-width: 420px;
  border: 1px solid var(--rule);
  background: var(--night-2);
}

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

.page-home .rounds__art figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--rule);
  font-size: 12.5px;
  color: var(--silver);
}

/* ============ 射门统计面板 ============ */
.page-home .shots {
  border-top: 1px solid var(--rule);
  background: var(--night);
}

.page-home .shots__figure {
  margin: 0 0 28px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--cyan);
  background: var(--night-2);
}

.page-home .shots__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 4;
  max-width: 100%;
  object-fit: cover;
  opacity: .9;
}

.page-home .shots__figure figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--rule);
  font-size: 12.5px;
  color: var(--silver);
}

.page-home .shots__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--rule);
  background: rgba(10, 42, 32, .4);
}

.page-home .shots__table-wrap .data-table {
  min-width: 560px;
  margin: 0;
}

.page-home .shots__table-wrap .data-table tbody tr:hover,
.page-home .shots__table-wrap .data-table tbody tr:focus-within {
  background: var(--cyan-soft);
}

/* ============ 订阅条 ============ */
.page-home .subscribe {
  position: relative;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(135deg, rgba(255, 122, 40, .09) 0%, rgba(4, 21, 15, .9) 46%),
    var(--night-3);
  padding: clamp(44px, 7vw, 76px) 0;
}

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

.page-home .subscribe__copy p {
  margin: 0 0 20px;
  max-width: 36em;
  color: var(--silver);
  line-height: 1.75;
}

.page-home .subscribe .section-title {
  margin: 0 0 16px;
  color: var(--white);
}

.page-home .subscribe .chip-group {
  margin-top: 4px;
}

.page-home .subscribe__timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--rule);
  background: rgba(4, 21, 15, .58);
}

.page-home .subscribe__timeline li {
  display: grid;
  grid-template-columns: 4.4em 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 15px 16px;
  border-top: 1px solid var(--rule);
}

.page-home .subscribe__timeline li:first-child {
  border-top: 0;
}

.page-home .subscribe__stamp {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .02em;
}

.page-home .subscribe__what {
  font-size: 14px;
  color: var(--panel);
  line-height: 1.6;
}

.page-home .subscribe .btn--signal {
  justify-self: start;
}

/* ============ 换设备 ============ */
.page-home .device {
  background: var(--night);
}

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

.page-home .device__copy p.lead {
  max-width: 34em;
  margin: 0 0 26px;
  color: var(--silver);
}

.page-home .device__steps {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: none;
  border-left: 1px solid var(--rule-strong);
}

.page-home .device__step {
  position: relative;
  padding: 0 0 22px 22px;
}

.page-home .device__step::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--cyan);
}

.page-home .device__idx {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--cyan);
  margin-bottom: 6px;
}

.page-home .device__step h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--white);
}

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

.page-home .device__art {
  margin: 0;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--cyan);
  background: var(--night-2);
}

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

.page-home .device__art figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--rule);
  font-size: 12.5px;
  color: var(--silver);
}

/* ============ 覆盖范围 ============ */
.page-home .reach {
  border-top: 1px solid var(--rule);
  background:
    linear-gradient(180deg, var(--night-3) 0%, var(--night) 100%);
}

.page-home .reach__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 8px 0 34px;
  padding: 0;
  list-style: none;
  border: 1px solid var(--rule);
  background: var(--rule);
}

.page-home .reach__stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background: var(--night-2);
}

.page-home .reach__num {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
  letter-spacing: -.02em;
}

.page-home .reach__stats li:nth-child(5) .reach__num,
.page-home .reach__stats li:nth-child(6) .reach__num {
  color: var(--teal);
}

.page-home .reach__label {
  font-size: 12.5px;
  color: var(--silver);
}

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

/* ============ 断点 ============ */
@media (min-width: 700px) {
  .page-home .rounds__board {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .page-home .subscribe__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: start;
  }

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

@media (min-width: 960px) {
  .page-home .home-hero {
    padding: clamp(40px, 4vw, 68px) 0 clamp(80px, 8vw, 128px);
  }

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

  .page-home .rounds__board {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-home .rounds__art {
    max-width: 100%;
    margin-top: 0;
  }

  .page-home .rounds .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .page-home .rounds__art {
    grid-column: 1 / -1;
  }

  .page-home .device__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    align-items: start;
    gap: 44px;
  }

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

  .page-home .reach__stats li {
    padding: 22px 16px 24px;
  }
}

@media (min-width: 1200px) {
  .page-home .rounds__board {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 40px;
  }

  .page-home .home-hero__lead {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__pulse .status-dot {
    animation: none;
  }
}
