.page-home {
  --home-shadow: 0 18px 44px rgba(0, 0, 0, .45);
  --home-shadow-lg: 0 26px 70px rgba(0, 0, 0, .58);
  --home-rail-pad: max(18px, calc((100vw - 1240px) / 2 + 28px));
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
}

.page-home h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  font-size: clamp(24px, 4vw, 40px);
  color: var(--paper);
  margin: 10px 0 0;
}

.page-home h3 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.25;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--paper);
  margin: 0;
}

.page-home .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(44px, 8vw, 92px) 0 clamp(40px, 6vw, 76px);
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(53, 240, 200, .16), transparent 62%),
    radial-gradient(80% 70% at 92% 18%, rgba(242, 179, 61, .10), transparent 66%),
    var(--ink);
  overflow: hidden;
}

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

.page-home .home-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .24;
  filter: saturate(.7) contrast(1.06);
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 26, .55) 0%, rgba(11, 31, 26, .9) 68%, var(--ink) 100%);
}

.page-home .home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 52px);
}

.page-home .home-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.05;
  font-size: clamp(30px, 5.4vw, 56px);
  margin: 14px 0 18px;
  color: var(--paper);
  max-width: 20ch;
}

.page-home .home-hero__lead {
  max-width: 34rem;
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}

.page-home .home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 44px);
  margin: 30px 0 32px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.page-home .home-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-stat__value {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1;
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(53, 240, 200, .38);
}

.page-home .home-stat__label {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--muted);
}

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

.page-home .home-hero__toc {
  display: grid;
  gap: 12px;
  align-content: start;
}

.page-home .home-tag {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "no title"
    "no desc";
  gap: 4px 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(18, 22, 26, .74);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.page-home .home-tag:hover,
.page-home .home-tag:focus-visible {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(18, 22, 26, .94);
}

.page-home .home-tag:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.page-home .home-tag__no {
  grid-area: no;
  align-self: center;
  font-size: 22px;
  color: var(--gold);
}

.page-home .home-tag__title {
  grid-area: title;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--paper);
}

.page-home .home-tag__desc {
  grid-area: desc;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

/* ---------- 章节通用 ---------- */
.page-home .section {
  scroll-margin-top: 130px;
}

.page-home .home-head {
  max-width: 48rem;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.page-home .home-head__text {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 40rem;
}

.page-home .home-more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: clamp(24px, 3.5vw, 36px);
}

.page-home .home-more__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 38rem;
}

.page-home .home-inline-link {
  color: var(--cyan);
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
}

.page-home .home-inline-link:hover {
  color: var(--gold);
  border-bottom-color: var(--line-gold);
}

/* ---------- 赛程速览带 ---------- */
.page-home .home-strip {
  padding-bottom: clamp(20px, 3vw, 32px);
}

.page-home .fixture-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px var(--home-rail-pad) 30px;
  scroll-snap-type: x proximity;
  scroll-padding-left: var(--home-rail-pad);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(53, 240, 200, .38) rgba(124, 140, 134, .14);
}

.page-home .fixture-rail:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -4px;
}

.page-home .fixture-rail::-webkit-scrollbar {
  height: 6px;
}

.page-home .fixture-rail::-webkit-scrollbar-track {
  background: rgba(124, 140, 134, .14);
  border-radius: 999px;
}

.page-home .fixture-rail::-webkit-scrollbar-thumb {
  background: rgba(53, 240, 200, .38);
  border-radius: 999px;
}

.page-home .fixture {
  flex: 0 0 min(272px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(158deg, rgba(20, 36, 58, .92), rgba(18, 22, 26, .92));
  transition: transform .25s ease, border-color .25s ease;
}

.page-home .fixture:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.page-home .fixture__round {
  margin: 0;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--gold);
}

.page-home .fixture__team {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--paper);
}

.page-home .fixture > .badge {
  align-self: flex-start;
}

.page-home .fixture__meta {
  margin: 4px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}

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

.page-home .fixture__meta dt {
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
}

.page-home .fixture__meta dd {
  margin: 0;
  font-size: 15px;
  color: var(--cyan);
}

/* ---------- 复盘对照卡 ---------- */
.page-home .compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .compare {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(20, 36, 58, .74), rgba(11, 31, 26, .96));
  box-shadow: var(--home-shadow);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.page-home .compare:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--home-shadow-lg);
}

.page-home .compare__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.page-home .compare__rows {
  display: grid;
  gap: 4px;
}

.page-home .compare__row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.page-home .compare__key {
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--muted);
}

.page-home .compare__bar {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(124, 140, 134, .18);
  overflow: hidden;
}

.page-home .compare__bar i {
  display: block;
  height: 100%;
  width: var(--bar, 0%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
}

.page-home .compare__bar--alt i {
  background: var(--violet);
}

.page-home .compare__row b {
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
}

.page-home .compare__note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* ---------- 青训对照 ---------- */
.page-home .youth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.page-home .youth-figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
}

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

.page-home .youth-figure__cap {
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.page-home .home-youth-table {
  width: 100%;
}

.page-home .home-youth-table th[scope="row"] {
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- 城市标签墙 ---------- */
.page-home .city-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

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

.page-home .city-section__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
}

.page-home .city-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(11, 31, 26, .72) 42%, rgba(11, 31, 26, .96) 100%);
}

.page-home .city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(24px, 3.5vw, 34px);
}

.page-home .city-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 57, 75, .34);
  background: rgba(200, 57, 75, .14);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.page-home .city-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 57, 75, .68);
  background: rgba(200, 57, 75, .26);
}

.page-home .city-chip__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--paper);
}

.page-home .city-chip__note {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted);
  transition: color .25s ease;
}

.page-home .city-chip:hover .city-chip__note {
  color: var(--gold);
}

/* ---------- 订阅档位 ---------- */
.page-home .plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .plan {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(18, 22, 26, .74);
  transition: transform .3s ease, border-color .3s ease;
}

.page-home .plan:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.page-home .plan--gold {
  border-color: var(--line-gold);
  background: linear-gradient(158deg, rgba(242, 179, 61, .12), rgba(18, 22, 26, .92));
}

.page-home .plan--gold:hover {
  border-color: var(--gold);
}

.page-home .plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: grid;
  gap: 10px;
}

.page-home .plan__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--paper);
}

.page-home .plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.page-home .plan--gold .plan__list li::before {
  background: var(--gold);
}

.page-home .plan .btn {
  align-self: flex-start;
  margin-top: 6px;
}

/* ---------- 合作与联络 ---------- */
.page-home .coop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 48px);
}

.page-home .coop-lead {
  margin: 14px 0 26px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 40rem;
}

.page-home .coop-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.page-home .coop-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.page-home .coop-item p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 42rem;
}

.page-home .coop-aside {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(20, 36, 58, .78), rgba(18, 22, 26, .92));
  align-self: start;
}

.page-home .coop-aside__title {
  font-size: 20px;
  margin-bottom: 10px;
}

.page-home .coop-aside__text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .coop-contact {
  margin: 0 0 20px;
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.page-home .coop-contact__row {
  display: grid;
  gap: 4px;
}

.page-home .coop-contact__row dt {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--muted);
}

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

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .page-home .city-chip {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }

  .page-home .city-chip__note {
    padding-left: 10px;
    border-left: 1px solid rgba(200, 57, 75, .4);
  }
}

@media (min-width: 860px) {
  .page-home .compare-grid,
  .page-home .plan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
}

@media (min-width: 980px) {
  .page-home .home-hero__inner {
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }

  .page-home .home-hero__toc {
    padding-top: 8px;
  }

  .page-home .youth-grid {
    grid-template-columns: 5fr 7fr;
  }

  .page-home .coop-grid {
    grid-template-columns: 8fr 4fr;
  }
}

@media (max-width: 520px) {
  .page-home .home-hero__stats {
    gap: 18px 28px;
  }

  .page-home .home-stat__value {
    text-shadow: none;
  }

  .page-home .compare__row {
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
  }

  .page-home .fixture {
    flex-basis: min(248px, 84vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-tag,
  .page-home .fixture,
  .page-home .compare,
  .page-home .plan,
  .page-home .city-chip,
  .page-home .city-chip__note {
    transition: none;
  }

  .page-home .home-tag:hover,
  .page-home .fixture:hover,
  .page-home .compare:hover,
  .page-home .plan:hover,
  .page-home .city-chip:hover {
    transform: none;
  }
}
<<<END>>>

.page-home {
  --bar: 1rem;
}
