.page-home {
  --home-gap: clamp(1.25rem, 3.4vw, 2.75rem);
  --home-line: rgba(143, 166, 156, .22);
  --home-line-strong: rgba(143, 166, 156, .4);
  background: var(--ink);
  color: var(--paper);
  overflow-x: clip;
}

.page-home .home-crumbs {
  padding-top: clamp(1rem, 2.6vw, 1.8rem);
}

.page-home .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  font-size: .76rem;
  letter-spacing: .16em;
  color: var(--mist);
}

.page-home .home-crumbs__sep {
  color: var(--teal);
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  isolation: isolate;
  padding: clamp(1.4rem, 4vw, 2.6rem) 0 clamp(2.75rem, 7vw, 5.5rem);
  overflow: hidden;
}

.page-home .hero__deco {
  position: absolute;
  z-index: -1;
  top: -22%;
  right: -20%;
  width: min(920px, 122vw);
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(148deg, rgba(31, 111, 92, .6) 0%, rgba(11, 31, 26, 0) 62%),
    linear-gradient(26deg, rgba(43, 227, 160, .14) 0%, rgba(11, 31, 26, 0) 54%);
  clip-path: polygon(26% 0%, 100% 11%, 73% 100%, 0% 85%);
  opacity: .9;
  pointer-events: none;
}

.page-home .hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 3rem);
  align-items: end;
}

.page-home .hero__aside {
  position: relative;
}

.page-home .hero__title {
  margin: 1rem 0 1.1rem;
  font-size: clamp(2.05rem, 6.6vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 300;
  color: var(--paper);
}

.page-home .hero__lede {
  margin: 0 0 1.5rem;
  max-width: 46ch;
  font-size: clamp(.94rem, 1.6vw, 1.06rem);
  line-height: 1.85;
  color: rgba(244, 239, 228, .8);
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.1rem;
}

.page-home .hero__note {
  margin: 0;
  font-size: .78rem;
  line-height: 1.7;
  letter-spacing: .04em;
  color: var(--mist);
}

.page-home .hero__stage {
  position: relative;
  min-width: 0;
}

.page-home .hero__media {
  border-radius: var(--radius-lg) var(--radius-lg) 8px var(--radius-lg);
  overflow: hidden;
}

.page-home .hero__badge {
  position: absolute;
  top: clamp(.75rem, 2vw, 1.35rem);
  right: clamp(.75rem, 2vw, 1.35rem);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
  padding: .45rem 1rem .45rem .5rem;
  border-radius: var(--radius-pill);
  background: rgba(11, 31, 26, .82);
  border: 1px solid rgba(43, 227, 160, .42);
  font-size: .76rem;
  letter-spacing: .1em;
  color: var(--loud);
  backdrop-filter: blur(6px);
}

.page-home .hero__badge-num {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 .4rem;
  border-radius: var(--radius-pill);
  background: var(--neon);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: .95rem;
  font-weight: 600;
}

.page-home .hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin: 1.15rem 0 0;
  padding: 1rem 0 0;
  list-style: none;
  border-top: 1px solid var(--home-line);
}

.page-home .hero__stat {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-width: 0;
}

.page-home .hero__stat-v {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3.6vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--neon);
  font-variant-numeric: tabular-nums;
}

.page-home .hero__stat-u {
  margin-left: .12em;
  font-size: .58em;
  color: var(--mist);
}

.page-home .hero__stat-l {
  font-size: .7rem;
  line-height: 1.5;
  letter-spacing: .06em;
  color: var(--mist);
}

/* ---------- 通用章节 ---------- */
.page-home .section {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.page-home .offside-rule {
  display: block;
  margin: 0;
}

/* ---------- 新版赛迹 ---------- */
.page-home .new-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.page-home .new-title,
.page-home .rounds-title,
.page-home .sub-title,
.page-home .dict-title,
.page-home .trust-title {
  margin: .85rem 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.24;
  letter-spacing: -.02em;
  font-weight: 400;
  color: var(--paper);
}

.page-home .new-copy p,
.page-home .sub-copy p,
.page-home .dict-lede,
.page-home .rounds-lede,
.page-home .trust-copy p {
  margin: 0 0 1rem;
  font-size: .95rem;
  line-height: 1.85;
  color: rgba(244, 239, 228, .78);
}

.page-home .new-points {
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .75rem;
}

.page-home .new-points li {
  position: relative;
  padding: .85rem 1rem .85rem 1.1rem;
  border-left: 2px solid rgba(43, 227, 160, .5);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(22, 59, 49, .5);
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(244, 239, 228, .82);
}

.page-home .new-points strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--neon);
  font-weight: 500;
  letter-spacing: .04em;
}

.page-home .new-media {
  border-radius: 8px var(--radius-lg) var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.page-home .link-arrow {
  color: var(--loud);
}

/* ---------- 第 12 轮导航 ---------- */
.page-home .section--rounds {
  background:
    linear-gradient(180deg, rgba(17, 20, 23, .9) 0%, rgba(22, 59, 49, .55) 50%, rgba(11, 31, 26, .95) 100%);
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.page-home .rounds-head {
  max-width: 62ch;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.page-home .rounds-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.5rem);
}

.page-home .rounds-media {
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 8px;
  overflow: hidden;
}

.page-home .round-card {
  position: relative;
  padding: clamp(1.25rem, 3vw, 1.9rem);
  border-radius: var(--radius-md);
  background: rgba(11, 31, 26, .72);
  border: 1px solid var(--home-line);
  transition: border-color .35s var(--ease-soft), transform .35s var(--ease-soft);
}

.page-home .round-card:hover {
  border-color: rgba(43, 227, 160, .5);
  transform: translateY(-4px);
}

.page-home .round-card__k {
  margin: 0 0 .7rem;
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--amber);
}

.page-home .round-card h3 {
  margin: 0 0 .6rem;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--paper);
}

.page-home .round-card p {
  margin: 0 0 1rem;
  font-size: .86rem;
  line-height: 1.8;
  color: rgba(244, 239, 228, .72);
}

/* ---------- 订阅中心 ---------- */
.page-home .sub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.page-home .sub-list {
  margin: 1.1rem 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .6rem;
}

.page-home .sub-list li {
  display: flex;
  gap: .7rem;
  align-items: baseline;
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(244, 239, 228, .78);
}

.page-home .sub-list__k {
  flex: none;
  min-width: 3.2rem;
  padding: .12rem .5rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 179, 71, .14);
  border: 1px solid rgba(255, 179, 71, .38);
  color: var(--amber);
  font-size: .7rem;
  letter-spacing: .1em;
  text-align: center;
}

.page-home .sub-meta {
  font-size: .84rem;
  line-height: 1.85;
  color: var(--mist);
}

.page-home .sub-meta strong {
  color: var(--amber);
  font-family: var(--font-mono);
  font-weight: 500;
}

.page-home .sub-copy .btn {
  margin-top: .5rem;
}

.page-home .sub-stage {
  min-width: 0;
}

.page-home .sub-media {
  border-radius: var(--radius-lg) var(--radius-lg) 8px var(--radius-lg);
  overflow: hidden;
}

.page-home .sub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.page-home .sub-tag {
  padding: .4rem .95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 179, 71, .35);
  background: rgba(255, 179, 71, .09);
  font-size: .74rem;
  letter-spacing: .08em;
  color: var(--amber);
}

/* ---------- 词典与回溯 ---------- */
.page-home .dict-head {
  max-width: 62ch;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
}

.page-home .dict-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .9rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.page-home .dict-card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(22, 59, 49, .45);
  border: 1px solid var(--home-line);
}

.page-home .dict-card h3 {
  margin: 0 0 .55rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--neon);
}

.page-home .dict-card p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.8;
  color: rgba(244, 239, 228, .74);
}

.page-home .history-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  padding: clamp(1.4rem, 3.4vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
}

.page-home .history-band__copy h3 {
  margin: 0 0 .6rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
}

.page-home .history-band__copy p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.85;
  color: rgba(11, 31, 26, .76);
}

.page-home .history-views {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
}

.page-home .history-views li {
  padding: .7rem .9rem;
  border-radius: var(--radius-sm);
  background: rgba(11, 31, 26, .06);
  border-left: 3px solid var(--teal);
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(11, 31, 26, .8);
}

.page-home .history-views__n {
  display: block;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
}

.page-home .history-band .btn {
  justify-self: start;
}

/* ---------- 品牌与备案 ---------- */
.page-home .section--trust {
  background: var(--carbon);
  border-top: 1px solid var(--home-line-strong);
}

.page-home .trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.page-home .trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.4rem;
}

.page-home .trust-card {
  padding: clamp(1.25rem, 3vw, 1.9rem);
  border-radius: var(--radius-lg);
  background: rgba(22, 59, 49, .5);
  border: 1px solid var(--home-line-strong);
}

.page-home .trust-card__k {
  margin: 0 0 1rem;
  font-size: .72rem;
  letter-spacing: .24em;
  color: var(--neon);
}

.page-home .trust-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}

.page-home .trust-list__row {
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr);
  gap: .7rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--home-line);
}

.page-home .trust-list__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-home .trust-list dt {
  font-size: .74rem;
  letter-spacing: .08em;
  color: var(--mist);
}

.page-home .trust-list dd {
  margin: 0;
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(244, 239, 228, .86);
  word-break: break-word;
}

.page-home .trust-card__foot {
  margin: 1.1rem 0 0;
  font-size: .78rem;
  line-height: 1.8;
  color: var(--mist);
}

.page-home .trust-card__foot a {
  color: var(--loud);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

@media (min-width: 900px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

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

  .page-home .new-media {
    grid-column: 2;
  }

  .page-home .new-copy {
    grid-column: 1;
    grid-row: 1;
  }

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

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

  .page-home .sub-grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  }

  .page-home .history-band {
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
    align-items: center;
  }

  .page-home .history-band .btn {
    grid-column: 1 / -1;
  }

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

@media (min-width: 1140px) {
  .page-home .hero__stats {
    gap: 1.25rem;
  }

  .page-home .history-band {
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) auto;
  }

  .page-home .history-band .btn {
    grid-column: 3;
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .round-card {
    transition: none;
  }
}
</final>
</final>
