.page-home {
  --home-line: rgba(20, 28, 25, 0.1);
  --home-line-soft: rgba(20, 28, 25, 0.06);
  --home-surface: #ffffff;
  display: block;
}

/* ---------- 面包屑 ---------- */
.page-home .crumbs-wrap {
  padding-top: 20px;
}

.page-home .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--stone-500);
}

.page-home .breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--stone-500);
  opacity: 0.6;
}

.page-home .breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

.page-home .breadcrumbs .crumb {
  color: var(--stone-500);
  text-decoration: none;
}

.page-home .breadcrumbs a.crumb:hover {
  color: var(--turf-600);
}

.page-home .breadcrumbs [aria-current="page"] {
  color: var(--ink-900);
  font-weight: 600;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  padding: 20px 0 80px;
}

.page-home .hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.page-home .hero__left {
  position: relative;
  overflow: hidden;
  background: var(--sea-800);
  color: var(--rice-white);
  border-radius: var(--r-md);
  padding: 36px 24px 44px;
  isolation: isolate;
}

.page-home .hero__left > *:not(.hero__pitch) {
  position: relative;
  z-index: 1;
}

.page-home .hero__pitch {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -14%;
  width: 124%;
  height: 68%;
  color: var(--rice-white);
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}

.page-home .hero__eyebrow {
  color: var(--referee-yellow);
  margin: 0;
}

.page-home .hero__title {
  font-size: clamp(1.85rem, 6.6vw, 3.3rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  color: var(--rice-white);
}

.page-home .hero__lede {
  margin: 18px 0 0;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 242, 233, 0.82);
}

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

.page-home .hero__right {
  position: relative;
  margin-top: 16px;
}

.page-home .hero__media {
  position: relative;
  min-height: 250px;
  border-radius: var(--r-md);
  overflow: hidden;
}

.page-home .hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .hero__card {
  position: relative;
  z-index: 3;
  margin: -58px 16px 0;
  background: var(--turf-900);
  color: var(--rice-white);
  border-radius: var(--r-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-2);
}

.page-home .hero__card-label {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--referee-yellow);
}

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

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

.page-home .hero__stats .stat__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--rice-white);
}

.page-home .hero__stats .stat__label {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(245, 242, 233, 0.66);
}

.page-home .hero__card-note {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 242, 233, 0.16);
  font-size: 12.5px;
  color: rgba(245, 242, 233, 0.72);
}

/* ---------- 章节跳转 ---------- */
.page-home .jump-rail {
  display: none;
}

/* ---------- 通用区块 ---------- */
.page-home .section__head {
  max-width: 62ch;
  margin-bottom: 36px;
}

.page-home .section__title {
  font-size: clamp(1.4rem, 4.4vw, 2.1rem);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.015em;
  margin: 10px 0 0;
}

.page-home .section__lede {
  margin: 14px 0 0;
  color: var(--stone-500);
  line-height: 1.8;
}

/* ---------- 球队索引带 ---------- */
.page-home .index-figure {
  margin: 0 0 28px;
}

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

.page-home .team-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid var(--home-line-soft);
}

.page-home .team-strip::-webkit-scrollbar {
  height: 6px;
}

.page-home .team-strip::-webkit-scrollbar-thumb {
  background: rgba(20, 28, 25, 0.16);
  border-radius: var(--r-pill);
}

.page-home .team-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 10px;
  border-radius: var(--r-pill);
  background: var(--home-surface);
  border: 1px solid var(--home-line);
  color: var(--ink-900);
  text-decoration: none;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s var(--ease);
}

.page-home .team-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
  border-color: var(--turf-600);
}

.page-home .team-chip:focus-visible {
  outline: 2px solid var(--referee-yellow);
  outline-offset: 2px;
}

.page-home .team-chip__league {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  color: var(--turf-600);
  background: rgba(46, 125, 87, 0.12);
}

.page-home .team-chip__league--sea {
  color: var(--sea-500);
  background: rgba(44, 110, 150, 0.12);
}

.page-home .team-chip__no {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.page-home .strip-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--stone-500);
}

/* ---------- 栏目卡片矩阵 ---------- */
.page-home .column-matrix {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .column-matrix__figure {
  margin: 0;
}

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

.page-home .column-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--home-surface);
  border: 1px solid var(--home-line);
  border-radius: var(--r-md);
  padding: 26px 22px;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s var(--ease);
}

.page-home .column-card:hover,
.page-home .column-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
  border-color: var(--turf-400);
}

.page-home .column-card:focus-visible {
  outline: 2px solid var(--referee-yellow);
  outline-offset: 2px;
}

.page-home .column-card .card__meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  font-weight: 700;
}

.page-home .column-card__title {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

.page-home .column-card__body {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.78;
  color: var(--stone-500);
}

.page-home .column-card__extra {
  margin: 6px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--home-line);
  font-size: 12.5px;
  color: var(--turf-600);
  font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
  .page-home .column-card__extra {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    border-top-color: transparent;
    transition: max-height 0.3s var(--ease), opacity 0.3s var(--ease), padding-top 0.3s var(--ease);
  }

  .page-home .column-card:hover .column-card__extra,
  .page-home .column-card:focus-within .column-card__extra {
    max-height: 90px;
    opacity: 1;
    padding-top: 12px;
    border-top-color: var(--home-line);
  }
}

/* ---------- 奖项速览 ---------- */
.page-home .awards {
  display: grid;
  gap: 34px;
}

.page-home .awards__intro .btn {
  margin-top: 24px;
}

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

.page-home .award-col {
  position: relative;
  overflow: hidden;
  background: var(--home-surface);
  border: 1px solid var(--home-line);
  border-radius: var(--r-md);
  padding: 28px 22px 24px;
}

.page-home .award-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--turf-600);
}

.page-home .award-col--assist::before {
  background: var(--terracotta);
}

.page-home .award-col__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ink-900);
}

.page-home .award-col__meta {
  margin: 6px 0 20px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--stone-500);
}

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

.page-home .rank-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-home .rank-list__no {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--stone-500);
  flex: 0 0 2em;
}

.page-home .rank-list__track {
  flex: 1 1 auto;
  height: 8px;
  border-radius: var(--r-pill);
  background: var(--mist-200);
  overflow: hidden;
}

.page-home .rank-list__bar {
  display: block;
  height: 100%;
  width: var(--w, 100%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--turf-400), var(--turf-600));
}

.page-home .award-col--assist .rank-list__bar {
  background: linear-gradient(90deg, #d99a68, var(--terracotta));
}

/* ---------- 两端分工 ---------- */
.page-home .platform-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .platform-card {
  border-radius: var(--r-md);
  padding: 30px 24px;
  background: var(--mist-200);
  color: var(--ink-900);
}

.page-home .platform-card--ios {
  background: var(--sea-800);
  color: var(--rice-white);
}

.page-home .platform-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.page-home .platform-card__body {
  margin: 12px 0 0;
  line-height: 1.78;
  font-size: 0.95rem;
  color: var(--stone-500);
}

.page-home .platform-card--ios .platform-card__body {
  color: rgba(245, 242, 233, 0.8);
}

.page-home .platform-card__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .platform-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-900);
}

.page-home .platform-card--ios .platform-card__list li {
  color: rgba(245, 242, 233, 0.9);
}

.page-home .platform-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 2px;
  border-radius: var(--r-pill);
  background: var(--turf-600);
}

.page-home .platform-card--ios .platform-card__list li::before {
  background: var(--referee-yellow);
}

/* ---------- 更新节奏 ---------- */
.page-home .cadence {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.page-home .cadence__body .section__title {
  margin-top: 10px;
}

.page-home .cadence__list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page-home .cadence__list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-900);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--home-line-soft);
}

.page-home .cadence__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--turf-600);
  flex: 0 0 auto;
}

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

.page-home .cadence__media {
  margin: 0;
  border-radius: var(--r-md);
}

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

.page-home .home-footnote {
  margin: 48px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--home-line-soft);
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--stone-500);
  max-width: 78ch;
}

.page-home .home-footnote a {
  color: var(--turf-600);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 125, 87, 0.35);
}

.page-home .home-footnote a:hover {
  color: var(--sea-500);
  border-bottom-color: rgba(44, 110, 150, 0.45);
}

/* ---------- 中等屏幕 ---------- */
@media (min-width: 600px) {
  .page-home .hero__left {
    padding: 44px 34px 52px;
  }

  .page-home .hero__media {
    min-height: 320px;
  }

  .page-home .hero__card {
    margin: -64px 28px 0;
    padding: 26px 24px;
  }

  .page-home .awards__board {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .page-home .cadence__media {
    border-radius: var(--r-lg);
  }

  .page-home .index-figure {
    border-radius: var(--r-lg);
  }
}

/* ---------- 平板 ---------- */
@media (min-width: 860px) {
  .page-home .platform-split {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-home .index-figure {
    margin-left: auto;
    width: min(580px, 56%);
  }

  .page-home .cadence {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
}

/* ---------- 桌面：5:7 分屏首屏 ---------- */
@media (min-width: 960px) {
  .page-home .hero {
    padding: 34px 0 96px;
  }

  .page-home .hero__grid {
    grid-template-columns: 5fr 7fr;
    align-items: stretch;
  }

  .page-home .hero__left {
    border-radius: 0 var(--r-lg) 0 0;
    margin-right: -60px;
    padding: 68px 100px 68px 48px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0 100%);
    z-index: 2;
    box-shadow: none;
  }

  .page-home .hero__right {
    margin-top: 0;
  }

  .page-home .hero__media {
    min-height: 460px;
    height: 100%;
    border-radius: 0 var(--r-lg) var(--r-lg) var(--r-lg);
  }

  .page-home .hero__card {
    position: absolute;
    right: 30px;
    bottom: 30px;
    margin: 0;
    width: 300px;
  }

  .page-home .section__head {
    margin-bottom: 48px;
  }
}

/* ---------- 桌面：卡片矩阵与奖项 ---------- */
@media (min-width: 1024px) {
  .page-home .column-matrix {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
  }

  .page-home .column-matrix__figure {
    grid-column: span 3;
    grid-row: span 2;
    border-radius: var(--r-lg);
  }

  .page-home .column-card--wide {
    grid-column: span 5;
  }

  .page-home .column-card {
    grid-column: span 4;
  }

  .page-home .awards {
    grid-template-columns: 4fr 8fr;
    gap: 48px;
    align-items: start;
  }

  .page-home .award-col {
    padding: 32px 28px 28px;
  }

  .page-home .jump-rail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }

  .page-home .jump-pill {
    display: block;
    padding: 7px 14px;
    border-radius: var(--r-pill);
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--stone-500);
    background: rgba(245, 242, 233, 0.86);
    border: 1px solid var(--home-line);
    text-decoration: none;
    transition: color 0.24s var(--ease), background 0.24s var(--ease), border-color 0.24s var(--ease);
  }

  .page-home .jump-pill:hover {
    color: var(--ink-900);
    border-color: var(--turf-400);
  }

  .page-home .jump-pill:focus-visible {
    outline: 2px solid var(--referee-yellow);
    outline-offset: 2px;
  }
}

@media (min-width: 1280px) {
  .page-home .hero__left {
    padding-right: 120px;
  }
}

/* ---------- 降低动效偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home .team-chip,
  .page-home .column-card,
  .page-home .column-card__extra,
  .page-home .jump-pill {
    transition: none;
  }

  .page-home .team-chip:hover,
  .page-home .column-card:hover,
  .page-home .column-card:focus-within {
    transform: none;
  }
}
<<<END>>>

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