.page-home {
  --home-gap: clamp(14px, 2vw, 22px);
  --home-cut: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  background: var(--ink-950);
  color: var(--white);
  overflow-x: clip;
}

.page-home .shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============ 首屏 ============ */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--header-h) + 28px);
  padding-bottom: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(43, 227, 198, .18), transparent 46%),
    radial-gradient(circle at 12% 84%, rgba(255, 61, 74, .14), transparent 52%),
    linear-gradient(180deg, var(--ink-950) 0%, #070d22 100%);
}

.page-home .home-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.page-home .home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: saturate(.85);
}

.page-home .home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 18, 48, .55) 0%, rgba(10, 18, 48, .82) 62%, var(--ink-950) 100%),
    radial-gradient(circle at 20% 30%, rgba(43, 227, 198, .12), transparent 40%);
}

.page-home .home-hero__shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .home-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.page-home .home-hero__eyebrow-note {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-home .home-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 7vw, 66px);
  line-height: 1.04;
  letter-spacing: -.01em;
  font-weight: 800;
  max-width: 16ch;
}

.page-home .home-hero__lead {
  margin: 0;
  max-width: 62ch;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.78;
  color: var(--muted);
}

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  margin-top: 8px;
}

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

/* 比分模块 */
.page-home .home-score {
  position: relative;
  padding: 20px;
  background: linear-gradient(150deg, rgba(17, 28, 61, .96), rgba(10, 18, 48, .96));
  border: 1px solid var(--line-cyan);
  clip-path: var(--home-cut);
  box-shadow: var(--shadow-float);
}

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

.page-home .home-score__stamp {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--muted);
}

.page-home .home-score__board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  padding: 16px 4px;
  border-block: 1px solid var(--line-soft);
}

.page-home .home-score__team {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 26px);
  letter-spacing: .02em;
  color: var(--white);
  text-align: right;
}

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

.page-home .home-score__digits {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-data);
  font-size: clamp(42px, 9vw, 76px);
  line-height: 1;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .02em;
  text-shadow: 0 0 28px rgba(43, 227, 198, .38);
}

.page-home .home-score__digits i {
  font-style: normal;
  font-size: .62em;
  color: var(--muted);
}

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

.page-home .home-score__events li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .home-score__events li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 2px;
  background: var(--cyan);
}

.page-home .home-score__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.page-home .home-score__card {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .06em;
  padding: 5px 10px;
  color: var(--ink-950);
  font-weight: 700;
}

.page-home .home-score__card--yellow {
  background: var(--yellow);
}

.page-home .home-score__card--red {
  background: var(--red);
  color: var(--white);
}

.page-home .home-score__link {
  margin-left: auto;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--line-cyan);
  padding-bottom: 2px;
  transition: color 220ms var(--ease);
}

.page-home .home-score__link:hover {
  color: var(--white);
}

/* 红黄牌脉冲卡 */
.page-home .home-pulse {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: var(--ink-900);
  border: 1px solid var(--line-soft);
  clip-path: var(--home-cut);
}

.page-home .home-pulse__ring {
  position: absolute;
  inset: -12%;
  opacity: .22;
  pointer-events: none;
}

.page-home .home-pulse__ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.page-home .home-pulse__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-pulse__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 3vw, 24px);
  letter-spacing: -.01em;
  color: var(--white);
}

.page-home .home-pulse__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  animation: home-pulse-breathe 2.4s var(--ease) infinite;
}

@keyframes home-pulse-breathe {
  0% { box-shadow: 0 0 0 0 rgba(255, 197, 61, .62); }
  68% { box-shadow: 0 0 0 14px rgba(255, 197, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 197, 61, 0); }
}

.page-home .home-pulse__figures {
  margin: 0;
  font-family: var(--font-data);
  font-size: clamp(20px, 4vw, 28px);
  letter-spacing: .02em;
  color: var(--paper);
}

.page-home .home-pulse__figures b {
  color: var(--yellow);
  font-weight: 700;
}

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

.page-home .home-pulse__more {
  margin-top: 4px;
  border-top: 1px dashed var(--line-soft);
  padding-top: 12px;
}

.page-home .home-pulse__more summary {
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--cyan);
}

.page-home .home-pulse__more ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.page-home .home-pulse__more li {
  font-family: var(--font-data);
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}

.page-home .home-pulse__more li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  background: var(--red);
}

/* 赛程带 */
.page-home .home-track-wrap {
  margin-top: clamp(22px, 4vw, 40px);
  padding-block: 18px;
  background: linear-gradient(90deg, rgba(36, 64, 124, .55), rgba(10, 18, 48, .2) 50%, rgba(36, 64, 124, .55));
  border-top: 1px solid var(--line-soft);
}

.page-home .home-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-home .home-track::-webkit-scrollbar {
  display: none;
}

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

.page-home .home-track .track__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: grid;
  gap: 4px;
  min-width: 152px;
  padding: 12px 16px;
  text-decoration: none;
  background: rgba(17, 28, 61, .8);
  border-left: 2px solid var(--cyan);
  clip-path: var(--cut-sm);
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.page-home .home-track .track__item:hover {
  background: rgba(36, 64, 124, .95);
  transform: translateY(-3px);
}

.page-home .home-track__round {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-home .home-track__score {
  font-family: var(--font-data);
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--white);
}

.page-home .home-track__state {
  font-size: 12px;
  color: var(--cyan);
}

/* ============ 12 个栏目 ============ */
.page-home .home-columns {
  padding-block: clamp(52px, 8vw, 96px);
  background:
    radial-gradient(circle at 90% 0%, rgba(43, 227, 198, .1), transparent 40%),
    var(--ink-950);
}

.page-home .home-columns__head {
  margin-bottom: 26px;
}

.page-home .home-columns__filter {
  margin-bottom: 24px;
}

.page-home .home-columns__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
}

.page-home .home-col {
  display: grid;
  gap: 8px;
  padding: 18px;
  text-decoration: none;
  background: var(--ink-900);
  border: 1px solid var(--line-soft);
  clip-path: var(--cut-sm);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}

.page-home .home-col:hover {
  transform: translateY(-4px);
  border-color: var(--line-cyan);
  background: #14224a;
}

.page-home .home-col__no {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--cyan);
}

.page-home .home-col__name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 22px);
  letter-spacing: -.01em;
  color: var(--white);
}

.page-home .home-col__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

.page-home [data-filter-item].is-hidden {
  display: none;
}

.page-home .filter-empty {
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted);
}

/* ============ 更新节奏 ============ */
.page-home .home-timing {
  padding-block: clamp(52px, 8vw, 96px);
  background: var(--paper);
  color: var(--text-ink);
}

.page-home .home-timing .section__eyebrow {
  color: #7a6b4e;
}

.page-home .home-timing .section__title {
  color: var(--text-ink);
}

.page-home .home-timing .section__lead {
  color: #4c5570;
}

.page-home .home-timing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 46px);
  align-items: start;
}

.page-home .home-timing__list {
  margin-top: 26px;
}

.page-home .home-timing .timeline__item {
  border-left-color: var(--yellow);
}

.page-home .home-timing .timeline__time {
  color: #8a6a12;
}

.page-home .home-timing .timeline__title {
  color: var(--text-ink);
}

.page-home .home-timing .timeline__body {
  color: #4c5570;
}

.page-home .home-timing__figure {
  margin: 0;
  clip-path: var(--home-cut);
  background: var(--paper-2);
}

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

.page-home .home-timing__figure .media-frame__caption {
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.65;
  color: #4c5570;
  background: var(--paper-2);
}

/* ============ 电脑端收藏 ============ */
.page-home .home-desktop {
  padding-block: clamp(52px, 8vw, 96px);
  background: var(--ink-950);
}

.page-home .home-desktop__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 46px);
}

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

.page-home .home-desktop__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: rgba(17, 28, 61, .72);
  border-left: 2px solid var(--cyan);
}

.page-home .home-desktop__step-no {
  font-family: var(--font-data);
  font-size: 20px;
  color: var(--cyan);
  letter-spacing: .04em;
}

.page-home .home-desktop__steps h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -.01em;
  color: var(--white);
}

.page-home .home-desktop__steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .home-desktop__aside {
  padding: 22px;
  background: linear-gradient(160deg, rgba(36, 64, 124, .62), rgba(17, 28, 61, .9));
  border: 1px solid var(--line-soft);
  clip-path: var(--home-cut);
}

.page-home .home-desktop__aside-title {
  margin: 0 0 16px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
}

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

.page-home .home-desktop__aside-list li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.page-home .home-desktop__aside-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .64em;
  width: 8px;
  height: 2px;
  background: var(--yellow);
}

.page-home .home-desktop__aside-list b {
  color: var(--white);
  font-weight: 600;
}

.page-home .home-desktop__aside-note {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px dashed var(--line-soft);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .home-desktop__aside-note a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--line-cyan);
}

/* ============ 编辑精选 ============ */
.page-home .home-picks {
  padding-block: clamp(52px, 8vw, 96px);
  background:
    linear-gradient(180deg, var(--ink-950) 0%, #0d1738 100%),
    radial-gradient(circle at 15% 20%, rgba(255, 61, 74, .12), transparent 45%);
}

.page-home .home-picks__head {
  margin-bottom: 28px;
}

.page-home .home-picks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
}

.page-home .home-pick {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: rgba(17, 28, 61, .82);
  border: 1px solid var(--line-soft);
  clip-path: var(--cut-sm);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease);
}

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

.page-home .home-pick--lead {
  background: var(--paper);
  border-color: var(--yellow);
}

.page-home .home-pick--lead .home-pick__title {
  color: var(--text-ink);
}

.page-home .home-pick--lead .home-pick__body {
  color: #4c5570;
}

.page-home .home-pick--lead .home-pick__link {
  color: #8a6a12;
  border-bottom-color: var(--yellow);
}

.page-home .home-pick__title {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: clamp(19px, 2.6vw, 24px);
  line-height: 1.35;
  letter-spacing: .01em;
  color: var(--white);
}

.page-home .home-pick__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .home-pick__link {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--line-cyan);
  padding-bottom: 2px;
  transition: color 200ms var(--ease);
}

.page-home .home-pick__link:hover {
  color: var(--white);
}

/* ============ 本地服务 ============ */
.page-home .home-local {
  position: relative;
  isolation: isolate;
  padding-block: clamp(56px, 9vw, 104px);
  overflow: hidden;
}

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

.page-home .home-local__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .32;
}

.page-home .home-local__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--ink-950) 0%, rgba(10, 18, 48, .68) 40%, var(--ink-950) 100%),
    radial-gradient(circle at 78% 68%, rgba(43, 227, 198, .16), transparent 46%);
}

.page-home .home-local__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .home-local__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 6px 0 4px;
  padding: 0;
}

.page-home .home-local__facts > div {
  padding: 14px 16px;
  background: rgba(17, 28, 61, .78);
  border-left: 2px solid var(--cyan);
}

.page-home .home-local__facts dt {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.page-home .home-local__facts dd {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--white);
}

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

.page-home .home-local__channels .copy-chip {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .04em;
}

.page-home .home-local__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .home-local__note a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--line-cyan);
}

/* ============ 响应式 ============ */
@media (min-width: 700px) {
  .page-home .home-columns__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 900px) {
  .page-home .home-hero__grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
  }

  .page-home .home-score {
    grid-column: span 7;
  }

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

  .page-home .home-hero__cta {
    grid-column: span 12;
    padding-top: 4px;
  }

  .page-home .home-columns__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-columns__grid > :nth-child(1),
  .page-home .home-columns__grid > :nth-child(9) {
    grid-column: span 2;
  }

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

  .page-home .home-timing__figure {
    position: sticky;
    top: calc(var(--header-h) + 28px);
  }

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

  .page-home .home-picks__grid {
    grid-template-columns: repeat(6, 1fr);
  }

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

  .page-home .home-pick--wide {
    grid-column: span 3;
  }

  .page-home .home-picks__grid > .home-pick:not(.home-pick--lead):not(.home-pick--wide) {
    grid-column: span 3;
  }

  .page-home .home-local__facts {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .page-home .home-hero {
    padding-top: calc(var(--header-h) + 48px);
  }

  .page-home .home-score,
  .page-home .home-pulse {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-pulse__dot {
    animation: none;
  }

  .page-home .home-score__digits,
  .page-home .home-pulse__figures {
    text-shadow: none;
  }

  .page-home .home-col,
  .page-home .home-pick,
  .page-home .home-track .track__item {
    transition: none;
  }
}
