.page-home {
  --home-hair: rgba(244, 241, 232, .14);
  --home-hair-ink: rgba(14, 20, 18, .12);
  --home-panel: rgba(20, 51, 43, .58);
  --home-panel-2: rgba(11, 31, 26, .74);
  display: block;
}

/* ---------- 首屏 ---------- */

.page-home .home-hero {
  position: relative;
  background: var(--night);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 2px solid var(--sand);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
}

.page-home .home-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .22;
  filter: saturate(.55);
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 26, .74) 0%, rgba(11, 31, 26, .93) 62%, var(--night) 100%);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  padding-block: 52px 64px;
}

.page-home .home-hero__context {
  margin: 0 0 20px;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--sand);
}

.page-home .home-hero__title {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(34px, 8vw, 64px);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--paper);
}

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

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

.page-home .home-score {
  padding: 14px 16px 16px;
  background: var(--home-panel);
  border: 1px solid var(--home-hair);
  transition: border-color .18s linear, background-color .18s linear;
}

.page-home .home-score:hover,
.page-home .home-score:focus-within {
  border-color: var(--sand);
  background: rgba(31, 77, 63, .62);
}

.page-home .home-score__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--paper-62);
}

.page-home .home-score__round {
  letter-spacing: .08em;
}

.page-home .home-score__time {
  letter-spacing: .08em;
  color: var(--signal);
  font-weight: 700;
}

.page-home .home-score__line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0;
}

.page-home .home-score__team {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--paper);
  overflow-wrap: anywhere;
}

.page-home .home-score__team--away {
  text-align: right;
}

.page-home .home-score__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(38px, 9vw, 76px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--signal);
  white-space: nowrap;
}

.page-home .home-score--lead .home-score__num {
  font-size: clamp(52px, 13vw, 128px);
}

.page-home .home-score__foot {
  margin: 10px 0 0;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--paper-48);
}

.page-home .home-hero__side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.page-home .home-hero__fig {
  margin: 0;
  border: 1px solid var(--home-hair);
  background: var(--home-panel-2);
}

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

.page-home .home-hero__figcap {
  padding: 10px 12px;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--paper-48);
}

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

.page-home .home-hero__pulse > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.page-home .home-hero__pulse dt {
  font-size: 13px;
  color: var(--paper-62);
}

.page-home .home-hero__pulse dd {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--sand);
}

/* ---------- 章节头底色适配 ---------- */

.page-home .section-head__num {
  color: var(--sand);
}

.page-home .home-scale .section-head__title,
.page-home .home-reports .section-head__title,
.page-home .home-sub .section-head__title {
  color: var(--ink);
}

.page-home .home-scale .section-head__note,
.page-home .home-reports .section-head__note,
.page-home .home-sub .section-head__note {
  color: var(--slate-soft);
}

.page-home .home-sched-section .section-head__title,
.page-home .home-bracket .section-head__title,
.page-home .home-arch .section-head__title {
  color: var(--paper);
}

.page-home .home-sched-section .section-head__note,
.page-home .home-bracket .section-head__note,
.page-home .home-arch .section-head__note {
  color: var(--paper-62);
}

/* ---------- 收录范围 ---------- */

.page-home .home-scale {
  padding-block: 64px;
  background: var(--paper);
  color: var(--ink);
}

.page-home .home-scale__grid {
  display: grid;
  gap: 40px;
  margin-top: 36px;
}

.page-home .home-figures {
  margin: 0;
  display: grid;
  gap: 0;
}

.page-home .home-figure {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--home-hair-ink);
}

.page-home .home-figure dt {
  flex: 0 0 92px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--slate-soft);
}

.page-home .home-figure dd {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(36px, 8vw, 56px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
}

.page-home .home-figure p {
  flex: 1 1 100%;
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-soft);
}

.page-home .home-track {
  list-style: none;
  margin: 0;
  padding: 4px 0 4px 30px;
  position: relative;
  display: grid;
  gap: 26px;
}

.page-home .home-track::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--gobi);
}

.page-home .home-track__item {
  position: relative;
  outline: none;
}

.page-home .home-track__dot {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--sand);
  transition: background-color .15s linear;
}

.page-home .home-track__item--now .home-track__dot {
  background: var(--signal);
  border-color: var(--signal-deep);
}

.page-home .home-track__item:hover .home-track__dot,
.page-home .home-track__item:focus .home-track__dot {
  background: var(--sand);
}

.page-home .home-track__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink);
}

.page-home .home-track__text {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--slate-soft);
}

.page-home .home-track__pop {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 8px;
  z-index: 3;
  width: max-content;
  max-width: 260px;
  padding: 8px 10px;
  background: var(--night);
  color: var(--paper);
  font-size: 12px;
  line-height: 1.65;
  border-left: 2px solid var(--signal);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .16s linear, transform .16s linear, visibility .16s linear;
}

.page-home .home-track__item:hover .home-track__pop,
.page-home .home-track__item:focus .home-track__pop,
.page-home .home-track__item:focus-within .home-track__pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- 开球时间轴 ---------- */

.page-home .home-sched-section {
  padding-block: 64px;
  background: var(--night-2);
  color: var(--paper);
}

.page-home .home-sched {
  position: relative;
  margin-top: 30px;
}

.page-home .home-sort__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.page-home .home-sched__switch {
  display: inline-flex;
  border: 1px solid var(--sand-44);
}

.page-home .home-sort__label {
  padding: 9px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--paper-62);
  cursor: pointer;
  transition: background-color .15s linear, color .15s linear;
}

.page-home .home-sort__label + .home-sort__label {
  border-left: 1px solid var(--sand-44);
}

.page-home #hsort-time:checked ~ .home-sched__switch .home-sort__label[for="hsort-time"],
.page-home #hsort-team:checked ~ .home-sched__switch .home-sort__label[for="hsort-team"] {
  background: var(--sand);
  color: var(--night);
}

.page-home .home-sort__input:focus-visible ~ .home-sched__switch {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.page-home .home-sched__list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.page-home .home-sched__list--team {
  display: none;
}

.page-home #hsort-team:checked ~ .home-sched__list--time {
  display: none;
}

.page-home #hsort-team:checked ~ .home-sched__list--team {
  display: block;
}

.page-home .home-sched__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  padding: 14px 6px;
  border-bottom: 1px solid var(--home-hair);
  transition: background-color .15s linear, border-color .15s linear;
}

.page-home .home-sched__row:hover {
  background: rgba(31, 77, 63, .55);
  border-bottom-color: var(--sand-44);
}

.page-home .home-sched__time {
  flex: 0 0 60px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--signal);
}

.page-home .home-sched__team {
  flex: 0 0 96px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--sand);
}

.page-home .home-sched__match {
  flex: 1 1 200px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--paper);
  overflow-wrap: anywhere;
}

.page-home .home-sched__round {
  flex: 0 0 auto;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--paper-62);
}

.page-home .home-sched__league {
  flex: 0 0 auto;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--paper-48);
}

/* ---------- 战报入口 ---------- */

.page-home .home-reports {
  padding-block: 64px;
  background: var(--paper);
  color: var(--ink);
}

.page-home .home-reports__layout {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.page-home .home-reports__card {
  padding: 24px 22px;
  background: var(--paper-2);
  border-left: 3px solid var(--gobi);
  transition: border-color .18s linear;
}

.page-home .home-reports__card:hover {
  border-left-color: var(--sand);
}

.page-home .home-reports__card h3 {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--ink);
}

.page-home .home-reports__card p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
}

.page-home .home-reports__card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--slate);
}

.page-home .home-reports__link {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--signal-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--sand-44);
  padding-bottom: 3px;
  transition: color .15s linear, border-color .15s linear;
}

.page-home .home-reports__link:hover {
  color: var(--signal);
  border-bottom-color: var(--signal);
}

/* ---------- 杯赛对阵树 ---------- */

.page-home .home-bracket {
  padding-block: 64px;
  background: var(--night);
  color: var(--paper);
}

.page-home .home-bracket__grid {
  display: grid;
  gap: 30px;
  margin-top: 34px;
}

.page-home .home-bracket__figure {
  padding: 14px 10px;
  background: var(--home-panel);
  border: 1px solid var(--home-hair);
}

.page-home .home-bracket__svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-bracket__wires path {
  fill: none;
  stroke: var(--sand);
  stroke-width: 1.4;
}

.page-home .home-bracket__nodes rect {
  fill: var(--night-2);
  stroke: var(--gobi);
  stroke-width: 1;
}

.page-home .home-bracket__nodes text {
  fill: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
}

.page-home .home-bracket__nodes .is-final {
  fill: rgba(11, 31, 26, .9);
  stroke: var(--signal);
  stroke-dasharray: 5 3;
}

.page-home .home-bracket__nodes text.is-final {
  fill: var(--signal);
  stroke: none;
}

.page-home .home-bracket__side p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--paper-80);
}

.page-home .home-bracket__stats {
  margin: 0 0 22px;
  border-top: 1px solid var(--home-hair);
}

.page-home .home-bracket__stats > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--home-hair);
}

.page-home .home-bracket__stats dt {
  font-size: 13px;
  color: var(--paper-62);
}

.page-home .home-bracket__stats dd {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--sand);
}

/* ---------- 中段纹理色带 ---------- */

.page-home .home-turf {
  position: relative;
  margin: 0;
  background: var(--night);
}

.page-home .home-turf img {
  display: block;
  width: 100%;
  height: clamp(140px, 26vw, 250px);
  object-fit: cover;
}

.page-home .home-turf__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--paper);
  background: linear-gradient(90deg, rgba(11, 31, 26, .94), rgba(11, 31, 26, .38));
}

/* ---------- 订阅 ---------- */

.page-home .home-sub {
  padding-block: 64px;
  background: var(--paper-2);
  color: var(--ink);
}

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

.page-home .home-sub__item {
  padding: 22px 20px;
  background: var(--paper);
  border: 1px solid var(--home-hair-ink);
  transition: border-color .18s linear;
}

.page-home .home-sub__item:hover {
  border-color: var(--sand);
}

.page-home .home-sub__item .tag--signal {
  color: var(--night);
}

.page-home .home-sub__item h3 {
  margin: 12px 0 10px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.01em;
  color: var(--ink);
}

.page-home .home-sub__item p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
}

.page-home .home-sub__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--slate-soft);
}

.page-home .home-sub__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin: 34px 0 0;
}

.page-home .home-sub__aside {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--signal-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--sand-44);
  padding-bottom: 3px;
  transition: color .15s linear, border-bottom-color .15s linear;
}

.page-home .home-sub__aside:hover {
  color: var(--signal);
  border-bottom-color: var(--signal);
}

/* ---------- 档案 ---------- */

.page-home .home-arch {
  padding-block: 64px;
  background: var(--night-2);
  color: var(--paper);
}

.page-home .home-arch__grid {
  display: grid;
  gap: 26px;
  margin-top: 34px;
}

.page-home .home-arch__col {
  display: grid;
  gap: 22px;
}

.page-home .home-arch__card {
  background: var(--home-panel-2);
  border: 1px solid var(--home-hair);
  transition: border-color .18s linear;
}

.page-home .home-arch__card:hover {
  border-color: var(--sand);
}

.page-home .home-arch__code {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--sand);
}

.page-home .home-arch__card .card__title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.01em;
  color: var(--paper);
}

.page-home .home-arch__card .card__body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--paper-80);
}

.page-home .home-arch__more {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--home-hair);
}

.page-home .home-arch__more summary {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--sand);
  cursor: pointer;
  transition: color .15s linear;
}

.page-home .home-arch__more summary:hover {
  color: var(--signal);
}

.page-home .home-arch__more ul {
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--paper-80);
}

.page-home .home-arch__more[open] ul {
  animation: home-fade .18s linear;
}

.page-home .home-arch__fig {
  margin: 0;
  border: 1px solid var(--home-hair);
  background: var(--home-panel);
}

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

.page-home .home-arch__fig figcaption {
  padding: 10px 12px;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--paper-48);
}

.page-home .home-arch__foot {
  margin: 32px 0 0;
}

/* ---------- 来源与更正 ---------- */

.page-home .home-trust {
  padding-block: 64px;
  background: var(--paper);
  color: var(--ink);
}

.page-home .home-trust h2 {
  margin: 0 0 20px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(24px, 5vw, 36px);
  letter-spacing: -.01em;
  color: var(--ink);
}

.page-home .home-trust p {
  max-width: 42ch;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
}

.page-home .home-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 26px;
}

.page-home .home-trust__links a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--signal-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--sand-44);
  padding-bottom: 3px;
  transition: color .15s linear, border-bottom-color .15s linear;
}

.page-home .home-trust__links a:hover {
  color: var(--signal);
  border-bottom-color: var(--signal);
}

@keyframes home-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- 平板及以上 ---------- */

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

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

  .page-home .home-reports__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
  }

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

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

@media (min-width: 1024px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) 288px;
    gap: 52px;
    align-items: start;
    padding-block: 72px 88px;
  }

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

  .page-home .home-scale__grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 60px;
  }

  .page-home .home-sub__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }

  .page-home .home-sub__item--mid {
    margin-top: 34px;
  }

  .page-home .home-bracket__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
  }

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

  .page-home .home-arch__col > :nth-child(2) {
    margin-left: 36px;
  }

  .page-home .home-arch__fig {
    margin-top: 36px;
  }
}

@media (min-width: 1280px) {
  .page-home .home-hero__inner {
    padding-block: 88px 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    transition: none !important;
    animation: none !important;
  }
}
</main>
