.page-home {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.page-home h1,
.page-home h2,
.page-home h3 {
  font-family: var(--font-display);
  margin: 0;
}

.page-home p {
  margin: 0;
}

.page-home ul,
.page-home ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  isolation: isolate;
  padding: clamp(24px, 4vw, 56px) 0 clamp(44px, 6vw, 88px);
  background:
    radial-gradient(110% 70% at 92% -8%, rgba(31, 95, 168, .16), transparent 60%),
    radial-gradient(80% 60% at 4% 100%, rgba(198, 255, 46, .18), transparent 66%),
    linear-gradient(180deg, #F7F8FA 0%, var(--paper) 62%, #EDF0F6 100%);
}

.page-home .hero::before {
  content: "";
  position: absolute;
  top: clamp(56px, 10vw, 140px);
  right: -6%;
  width: min(560px, 48%);
  height: clamp(200px, 32vw, 400px);
  background: linear-gradient(135deg, rgba(19, 59, 107, .14), rgba(255, 107, 26, .10));
  clip-path: polygon(22% 0, 100% 8%, 78% 100%, 0 88%);
  z-index: -1;
  pointer-events: none;
}

.page-home .hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2.2vw, 32px);
  row-gap: clamp(26px, 3.6vw, 48px);
}

.page-home .hero-lead {
  grid-column: 1 / span 7;
  align-self: end;
}

.page-home .hero-season {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: clamp(12px, 1.8vw, 20px);
}

.page-home .season-idx {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.03em;
  color: var(--navy);
}

.page-home .season-meta {
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--blue);
  text-transform: uppercase;
}

.page-home .hero-lead h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 15em;
  margin-bottom: clamp(14px, 2vw, 22px);
}

.page-home .hero-sub {
  font-size: clamp(.95rem, 1.05vw, 1.05rem);
  line-height: 1.85;
  color: rgba(10, 12, 18, .76);
  max-width: 32em;
  margin-bottom: clamp(20px, 2.6vw, 30px);
}

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

.page-home .hero-index {
  grid-column: 9 / span 4;
  align-self: start;
  border-left: 3px solid var(--orange);
  padding: 6px 0 6px clamp(14px, 1.6vw, 24px);
}

.page-home .index-title {
  font-size: .68rem;
  letter-spacing: .22em;
  color: var(--blue);
  margin-bottom: 14px;
}

.page-home .index-list {
  display: grid;
  gap: 2px;
}

.page-home .chapter-link {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 10px 9px 8px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  font-size: .92rem;
  line-height: 1.5;
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}

.page-home .chapter-link:hover {
  background: rgba(31, 95, 168, .09);
  transform: translateX(3px);
}

.page-home .chapter-link.is-active {
  color: var(--orange);
  background: rgba(255, 107, 26, .08);
}

.page-home .idx-no {
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--blue);
  transition: color .25s var(--ease);
}

.page-home .chapter-link.is-active .idx-no {
  color: var(--orange);
}

.page-home .hero-figure {
  grid-column: 1 / span 12;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--night);
}

.page-home .hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2.4 / 1;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
}

/* ---------- 赛季核心看板 ---------- */
.page-home .board {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0;
  background: linear-gradient(140deg, var(--night) 0%, var(--navy) 58%, #0E2C52 100%);
  color: var(--paper);
}

.page-home .board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 206, 216, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 206, 216, .07) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.page-home .board-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2.2vw, 32px);
  row-gap: clamp(26px, 3.2vw, 44px);
}

.page-home .board-head {
  grid-column: 1 / span 12;
  display: grid;
  gap: 12px;
}

.page-home .board .section-label {
  color: var(--lime);
}

.page-home .board-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.22;
  max-width: 16em;
}

.page-home .board-note {
  max-width: 44em;
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(245, 246, 248, .72);
}

.page-home .board-cards {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.page-home .board-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(245, 246, 248, .05);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}

.page-home .board-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 26, .58);
  background: rgba(245, 246, 248, .09);
}

.page-home .card-tag {
  font-size: .68rem;
  letter-spacing: .16em;
  color: var(--silver);
}

.page-home .card-figure {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
  margin-top: 4px;
}

.page-home .card-figure .num {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--paper);
}

.page-home .card-figure--orange .num {
  color: var(--orange);
}

.page-home .card-figure--lime .num {
  color: var(--lime);
}

.page-home .range-dash {
  color: rgba(245, 246, 248, .5);
  font-size: 1.2rem;
}

.page-home .card-unit-inline {
  font-size: .78rem;
  letter-spacing: .06em;
  color: rgba(245, 246, 248, .62);
}

.page-home .card-unit {
  font-size: .82rem;
  color: rgba(245, 246, 248, .66);
}

.page-home .spark {
  display: block;
  width: 100%;
  height: 52px;
  margin: 4px 0 2px;
}

.page-home .spark polyline {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.page-home .spark--orange polyline {
  stroke: var(--orange);
}

.page-home .card-desc {
  font-size: .86rem;
  line-height: 1.75;
  color: rgba(245, 246, 248, .7);
  margin-top: auto;
}

.page-home .hbar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .hbar-label {
  flex: 0 0 auto;
  font-size: .72rem;
  letter-spacing: .04em;
  color: rgba(245, 246, 248, .74);
  min-width: 5.4em;
}

.page-home .meter {
  flex: 1 1 auto;
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(245, 246, 248, .16);
  overflow: hidden;
}

.page-home .meter-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), #9CE600);
  transition: width .9s var(--ease);
}

.page-home .board-card:nth-child(2) .meter-fill {
  background: linear-gradient(90deg, var(--orange-soft), var(--orange));
}

/* ---------- 杯赛签表 ---------- */
.page-home .cup {
  padding: clamp(48px, 7vw, 96px) 0;
  background:
    radial-gradient(90% 60% at 0% 0%, rgba(19, 59, 107, .09), transparent 60%),
    var(--paper);
}

.page-home .cup-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2.4vw, 40px);
  row-gap: clamp(24px, 3vw, 40px);
  align-items: center;
}

.page-home .cup-figure {
  grid-column: 1 / span 6;
  margin: 0;
  display: grid;
  gap: 12px;
}

.page-home .cup-body {
  grid-column: 8 / span 5;
  display: grid;
  gap: 14px;
}

.page-home .figure-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--night);
}

.page-home .figure-inner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .cup-figure .figure-inner img {
  aspect-ratio: 3 / 2;
}

.page-home .fig-cap {
  font-size: .8rem;
  line-height: 1.7;
  color: rgba(10, 12, 18, .58);
  padding-left: 14px;
  border-left: 2px solid var(--silver);
}

.page-home .cup-body h2,
.page-home .team-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.24;
}

.page-home .cup-body > p {
  font-size: .96rem;
  line-height: 1.85;
  color: rgba(10, 12, 18, .74);
}

.page-home .cup-list {
  display: grid;
  gap: 10px;
}

.page-home .cup-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  line-height: 1.72;
  color: rgba(10, 12, 18, .78);
}

.page-home .dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: .58em;
  border-radius: 2px;
  background: var(--blue);
}

.page-home .dot--orange {
  background: var(--orange);
}

.page-home .cup-body .btn,
.page-home .team-body .btn {
  justify-self: start;
}

/* ---------- 球队库 ---------- */
.page-home .team {
  padding: clamp(48px, 7vw, 96px) 0;
  background: linear-gradient(180deg, var(--paper) 0%, #EAEEF5 100%);
}

.page-home .team-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2.4vw, 40px);
  row-gap: clamp(24px, 3vw, 40px);
  align-items: center;
}

.page-home .team-body {
  grid-column: 1 / span 6;
  display: grid;
  gap: 16px;
}

.page-home .team-body > p {
  font-size: .96rem;
  line-height: 1.85;
  color: rgba(10, 12, 18, .74);
}

.page-home .team-figure {
  grid-column: 8 / span 5;
  margin: 0;
}

.page-home .team-figure .figure-inner img {
  aspect-ratio: 4 / 5;
}

.page-home .team-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 4px 0 4px;
}

.page-home .team-stat {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .74);
}

.page-home .team-stat dt {
  font-size: .74rem;
  letter-spacing: .04em;
  color: rgba(10, 12, 18, .56);
  margin-bottom: 8px;
}

.page-home .team-stat dd {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}

.page-home .team-stat dd sup {
  font-size: .54em;
  vertical-align: super;
  color: var(--orange);
}

/* ---------- 每周复核节奏 ---------- */
.page-home .rhythm {
  padding: clamp(48px, 7vw, 96px) 0;
  background: #EDF0F6;
  position: relative;
  overflow: hidden;
}

.page-home .rhythm::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 44%;
  height: 90%;
  background: linear-gradient(150deg, rgba(198, 255, 46, .28), rgba(31, 95, 168, .1));
  clip-path: polygon(30% 0, 100% 14%, 70% 100%, 0 82%);
  pointer-events: none;
}

.page-home .rhythm-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-bottom: clamp(26px, 3.4vw, 44px);
}

.page-home .rhythm-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.24;
  max-width: 18em;
}

.page-home .rhythm-head p:last-child {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(10, 12, 18, .68);
  max-width: 44em;
}

.page-home .rhythm-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
}

.page-home .rhythm-step {
  position: relative;
  padding: clamp(22px, 2.6vw, 32px) clamp(18px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFFFFF;
  display: grid;
  gap: 10px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.page-home .rhythm-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.page-home .rhythm-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 4px;
  border-radius: var(--radius-sm) 0 4px 0;
  background: var(--orange);
}

.page-home .step-idx {
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--blue);
}

.page-home .rhythm-step h3 {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.3;
}

.page-home .rhythm-step p {
  font-size: .9rem;
  line-height: 1.78;
  color: rgba(10, 12, 18, .72);
}

/* ---------- 客户端与联络 ---------- */
.page-home .client {
  padding: clamp(48px, 7vw, 96px) 0 clamp(36px, 5vw, 64px);
  background: var(--paper);
}

.page-home .client-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(20px, 2.6vw, 40px);
  row-gap: clamp(24px, 3vw, 36px);
  padding: clamp(28px, 4vw, 60px);
  border-radius: var(--radius-lg);
  color: var(--paper);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(198, 255, 46, .14), transparent 58%),
    linear-gradient(135deg, #12305A 0%, var(--navy) 48%, #0C2244 100%);
}

.page-home .client-panel::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -44%;
  width: 52%;
  height: 100%;
  background: linear-gradient(140deg, rgba(255, 107, 26, .34), rgba(255, 107, 26, 0));
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 76%);
  pointer-events: none;
}

.page-home .client-body {
  position: relative;
  z-index: 1;
  grid-column: 1 / span 7;
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-home .client-body .section-label {
  color: var(--lime);
}

.page-home .client-body h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  line-height: 1.22;
  max-width: 16em;
}

.page-home .client-body > p {
  font-size: .96rem;
  line-height: 1.85;
  color: rgba(245, 246, 248, .78);
  max-width: 34em;
}

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

.page-home .btn-ghost--invert {
  color: var(--paper);
  border-color: rgba(245, 246, 248, .38);
}

.page-home .btn-ghost--invert:hover {
  background: rgba(245, 246, 248, .12);
  border-color: var(--paper);
}

.page-home .client-facts {
  position: relative;
  z-index: 1;
  grid-column: 9 / span 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.page-home .fact {
  display: grid;
  gap: 6px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(201, 206, 216, .24);
  border-radius: var(--radius-sm);
  background: rgba(245, 246, 248, .05);
}

.page-home .fact-num {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
}

.page-home .fact-num sup {
  font-size: .5em;
  vertical-align: super;
}

.page-home .fact-label {
  font-size: .76rem;
  line-height: 1.55;
  color: rgba(245, 246, 248, .68);
}

/* ---------- 页脚上方主题带 ---------- */
.page-home .banner {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: var(--paper);
  margin-top: clamp(8px, 2vw, 24px);
}

.page-home .banner-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: clamp(220px, 26vw, 340px);
  max-height: 420px;
  object-fit: cover;
  opacity: .62;
}

.page-home .banner-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 8px;
  padding: clamp(24px, 3.6vw, 48px) var(--gutter);
  background: linear-gradient(180deg, rgba(10, 12, 18, 0), rgba(10, 12, 18, .9));
}

.page-home .banner-kicker {
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--lime);
}

.page-home .banner-text {
  font-size: clamp(.92rem, 1.1vw, 1.02rem);
  line-height: 1.8;
  max-width: 46em;
  color: rgba(245, 246, 248, .88);
}

/* ---------- 响应式 ---------- */
@media (max-width: 1080px) {
  .page-home .hero-lead {
    grid-column: 1 / span 12;
  }

  .page-home .hero-index {
    grid-column: 1 / span 12;
    border-left: 0;
    border-top: 3px solid var(--orange);
    padding: clamp(16px, 2.4vw, 22px) 0 0;
  }

  .page-home .index-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 16px;
  }

  .page-home .client-body,
  .page-home .client-facts {
    grid-column: 1 / span 12;
  }
}

@media (max-width: 900px) {
  .page-home .board-cards {
    grid-template-columns: 1fr;
  }

  .page-home .cup-figure,
  .page-home .cup-body,
  .page-home .team-body,
  .page-home .team-figure {
    grid-column: 1 / span 12;
  }

  .page-home .rhythm-list {
    grid-template-columns: 1fr;
  }

  .page-home .hero-figure img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .page-home .index-list {
    grid-template-columns: 1fr;
  }

  .page-home .team-stats {
    grid-template-columns: 1fr;
  }

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

  .page-home .hero-figure img {
    aspect-ratio: 16 / 10;
  }

  .page-home .banner-img {
    min-height: 260px;
  }

  .page-home .client-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
<<<END>>>
