.page-home {
  --home-gap: clamp(48px, 7vw, 110px);
  --home-pad: clamp(20px, 4vw, 40px);
  background: var(--ink-900);
  color: var(--text);
  overflow-x: clip;
  display: block;
}

/* ===== 面包屑 ===== */
.page-home .home-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0 0 clamp(22px, 3vw, 34px);
}

/* ===== 首屏 ===== */
.page-home .home-hero {
  position: relative;
  padding: clamp(40px, 6vw, 96px) 0 clamp(56px, 8vw, 124px);
  overflow: hidden;
  isolation: isolate;
}

.page-home .home-hero__stage {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-home .home-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.42;
}

.page-home .home-hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 60% at 12% 12%, rgba(255, 107, 26, 0.22), transparent 62%),
    linear-gradient(180deg, rgba(11, 27, 43, 0.5) 0%, rgba(11, 27, 43, 0.94) 78%, var(--ink-900) 100%);
}

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

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 5vw, 44px);
}

@media (min-width: 900px) {
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    grid-template-areas:
      "copy score"
      "copy phone";
    gap: 26px 48px;
    align-items: start;
  }
  .page-home .home-hero__copy { grid-area: copy; align-self: center; }
  .page-home .home-score { grid-area: score; transform: translateY(6px); }
  .page-home .home-phone { grid-area: phone; transform: translateX(26px); }
}

.page-home .home-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}

.page-home .home-hero__copy .eyebrow {
  color: var(--orange-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.page-home .home-hero__copy h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 5.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

.page-home .home-hero__lede {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: var(--text-2);
  margin: 0;
  max-width: 56ch;
}

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

.page-home .home-hero__meta {
  list-style: none;
  margin: 12px 0 0;
  padding: 18px 0 0;
  border-top: 1px dashed var(--line-600);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.page-home .home-hero__meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .home-hero__meta em {
  font-style: normal;
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.page-home .home-hero__meta strong {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
}

/* ===== 比分卡 ===== */
.page-home .home-score {
  position: relative;
}

.page-home .home-score__glass {
  position: relative;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius-l);
  border: 1px solid var(--line-600);
  background: linear-gradient(160deg, rgba(20, 48, 74, 0.78), rgba(15, 36, 56, 0.92));
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.page-home .home-score__glass::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.page-home .home-score__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.page-home .home-score__clock {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-2);
}

.page-home .home-score__nums {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.88;
  margin: 4px 0 14px;
}

.page-home .home-score__num {
  font-size: clamp(72px, 15vw, 158px);
  color: var(--text);
  animation: home-pulse 2.6s ease-in-out infinite;
}

.page-home .home-score__num:last-child {
  color: var(--orange);
}

.page-home .home-score__colon {
  font-size: clamp(40px, 8vw, 88px);
  color: var(--line-600);
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.page-home .home-score__teams {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-2);
  border-top: 1px dashed var(--line-600);
  padding-top: 12px;
}

.page-home .home-score__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .home-score__strip li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 10px;
  border-radius: var(--radius-s);
  background: rgba(11, 27, 43, 0.6);
}

.page-home .home-score__strip span {
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

.page-home .home-score__strip strong {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--cyan);
}

/* ===== 手机图卡 ===== */
.page-home .home-phone {
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line-600);
  background: var(--ink-800);
  display: flex;
  flex-direction: column;
}

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

.page-home .home-phone figcaption {
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-2);
  background: rgba(11, 27, 43, 0.85);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ===== 本轮焦点 ===== */
.page-home .home-focus {
  padding: var(--home-gap) 0;
  position: relative;
}

.page-home .home-focus__banner {
  margin: 0 0 clamp(24px, 4vw, 40px);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line-600);
  position: relative;
}

.page-home .home-focus__banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.92);
}

.page-home .home-focus__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 27, 43, 0.06) 30%, rgba(11, 27, 43, 0.85) 100%);
  pointer-events: none;
}

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

@media (min-width: 720px) {
  .page-home .home-focus__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px 24px;
  }
  .page-home .home-focus__card--a { grid-column: span 4; }
  .page-home .home-focus__card--b { grid-column: span 2; transform: translateY(22px); }
  .page-home .home-focus__card--c { grid-column: span 2; }
  .page-home .home-focus__card--d { grid-column: span 4; transform: translateY(-14px); }
}

.page-home .home-focus__card {
  position: relative;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: var(--radius-m);
  border: 1px solid var(--line-600);
  background: linear-gradient(180deg, var(--ink-800), var(--ink-900));
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.page-home .home-focus__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 42px;
  height: 2px;
  background: var(--orange);
}

.page-home .home-focus__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-home .home-focus__idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.2em;
}

.page-home .home-focus__score {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 2px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.page-home .home-focus__score i {
  font-style: normal;
  color: var(--orange);
  font-size: 0.55em;
}

.page-home .home-focus__meta {
  color: var(--text-2);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

.page-home .home-focus__key {
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: 13px;
  margin: 0;
}

.page-home .home-focus__link {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-home .home-focus__link:hover,
.page-home .home-focus__link:focus-visible {
  border-bottom-color: var(--orange);
  outline: none;
}

/* ===== 双队对照 ===== */
.page-home .home-compare {
  padding: var(--home-gap) 0;
  background: linear-gradient(180deg, transparent, rgba(20, 48, 74, 0.32) 45%, transparent);
}

.page-home .home-compare__board {
  border-radius: var(--radius-l);
  border: 1px solid var(--line-600);
  background: var(--ink-800);
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  gap: 22px;
}

@media (min-width: 900px) {
  .page-home .home-compare__board {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    grid-template-areas:
      "picker table"
      "picker note";
    gap: 20px 32px;
  }
  .page-home .home-compare__picker { grid-area: picker; }
  .page-home .home-compare__tablewrap { grid-area: table; }
  .page-home .home-compare__note { grid-area: note; }
}

.page-home .home-compare__picker {
  display: grid;
  gap: 10px;
  align-content: start;
}

.page-home .home-compare__side {
  border-radius: var(--radius-m);
  border: 1px dashed var(--line-600);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(20, 48, 74, 0.42);
}

.page-home .home-compare__slot {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-2);
}

.page-home .home-compare__side strong {
  font-size: 18px;
  color: var(--text);
  font-weight: 700;
}

.page-home .home-compare__vs {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.24em;
}

.page-home .home-compare__tablewrap {
  overflow-x: auto;
}

.page-home .home-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 440px;
}

.page-home .home-compare__table caption {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.1em;
  padding-bottom: 12px;
}

.page-home .home-compare__table th,
.page-home .home-compare__table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line-600);
}

.page-home .home-compare__table thead th {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-2);
  text-transform: uppercase;
}

.page-home .home-compare__table tbody th {
  color: var(--text);
  font-weight: 500;
}

.page-home .home-compare__table tbody td {
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 13px;
}

.page-home .home-compare__table .home-compare__diff {
  color: var(--gold);
}

.page-home .home-compare__note {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}

/* ===== 订阅与检索 ===== */
.page-home .home-sub {
  padding: var(--home-gap) 0;
}

.page-home .home-sub__body {
  display: grid;
  gap: 20px;
}

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

.page-home .home-sub__col {
  border-radius: var(--radius-m);
  border: 1px solid var(--line-600);
  background: var(--ink-800);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .home-sub__col h3 {
  font-size: 13px;
  margin: 0;
  color: var(--orange-soft);
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
}

.page-home .home-sub__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.page-home .home-sub__list span {
  display: block;
  font-family: var(--font-mono);
  color: var(--text);
  margin-bottom: 2px;
  font-size: 13px;
}

.page-home .home-sub__strip {
  margin-top: 26px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.page-home .home-sub__strip-list {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: max-content;
}

.page-home .home-sub__strip-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-600);
  background: rgba(20, 48, 74, 0.55);
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}

.page-home .home-sub__idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.14em;
}

/* ===== 名录版本 ===== */
.page-home .home-roster {
  padding: var(--home-gap) 0;
  position: relative;
}

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

@media (min-width: 900px) {
  .page-home .home-roster__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 48px;
  }
}

.page-home .home-roster__copy .eyebrow {
  color: var(--orange-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.page-home .home-roster__fields {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.page-home .home-roster__fields li {
  display: grid;
  grid-template-columns: 32px 88px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-600);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.page-home .home-roster__idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.14em;
}

.page-home .home-roster__fields strong {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
}

.page-home .home-roster__halo {
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line-600);
  position: relative;
}

.page-home .home-roster__halo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 3;
  object-fit: cover;
  opacity: 0.85;
}

/* ===== 收尾 ===== */
.page-home .home-coda {
  padding: var(--home-gap) 0 clamp(60px, 9vw, 130px);
}

.page-home .home-coda__panel {
  position: relative;
  border-radius: var(--radius-l);
  border: 1px solid var(--line-600);
  padding: clamp(28px, 5vw, 64px);
  background:
    radial-gradient(120% 100% at 88% 12%, rgba(255, 107, 26, 0.2), transparent 58%),
    linear-gradient(180deg, var(--ink-800), var(--ink-700));
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.page-home .home-coda__panel::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 199, 0.16), transparent 72%);
  pointer-events: none;
}

.page-home .home-coda__panel .eyebrow {
  color: var(--orange-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.page-home .home-coda__panel h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
  max-width: 22ch;
}

.page-home .home-coda__lede {
  color: var(--text-2);
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.page-home .home-coda__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.page-home .home-coda__hint {
  font-size: 13px;
  color: var(--text-2);
  margin: 4px 0 0;
}

/* ===== 窄屏收尾 ===== */
@media (max-width: 719px) {
  .page-home .home-score__num {
    font-size: clamp(64px, 22vw, 96px);
  }
  .page-home .home-score__colon {
    font-size: clamp(34px, 12vw, 54px);
  }
  .page-home .home-compare__table {
    min-width: 380px;
  }
  .page-home .home-focus__card--b,
  .page-home .home-focus__card--d,
  .page-home .home-phone,
  .page-home .home-score {
    transform: none;
  }
}
<<<END>>>
