.page-home {
  --home-gap: clamp(16px, 3.4vw, 40px);
  --home-radius: 20px;
  --home-edge: 2px solid rgba(143, 166, 154, .24);
  --home-edge-cyan: 2px solid rgba(56, 245, 198, .34);
  --home-edge-hot: 2px solid rgba(255, 75, 43, .58);
}

.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 148px) 0 clamp(52px, 8vw, 104px);
  background: var(--c-bg);
}

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

.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
  filter: saturate(.75) contrast(1.08);
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(158deg, rgba(6, 20, 15, .94) 0%, rgba(6, 20, 15, .6) 44%, rgba(6, 20, 15, .97) 100%),
    radial-gradient(circle at 82% 10%, rgba(56, 245, 198, .18), transparent 56%),
    radial-gradient(circle at 8% 92%, rgba(255, 75, 43, .18), transparent 52%);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
}

.page-home .home-hero__eyebrow {
  margin: 0 0 clamp(18px, 3vw, 32px);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-cyan);
}

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.page-home .home-hero__copy h1 {
  margin: 0 0 clamp(16px, 2.6vw, 24px);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.16;
  letter-spacing: -.01em;
  color: var(--c-cream);
}

.page-home .home-hero__copy .lede {
  max-width: 56ch;
  margin: 0 0 clamp(24px, 4vw, 38px);
  color: rgba(244, 241, 230, .82);
}

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

.page-home .home-entry__tile {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: var(--home-edge);
  border-radius: var(--home-radius);
  background: rgba(14, 42, 32, .72);
  text-decoration: none;
  transition: transform .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease), box-shadow .24s var(--ease);
}

.page-home .home-entry__tile:hover,
.page-home .home-entry__tile:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(56, 245, 198, .62);
  background: rgba(23, 90, 58, .78);
  box-shadow: var(--shadow-card);
}

.page-home .home-entry__tile--hot {
  border-color: var(--line-hot);
  background: linear-gradient(120deg, rgba(255, 75, 43, .18), rgba(14, 42, 32, .82) 62%);
}

.page-home .home-entry__tile--hot:hover,
.page-home .home-entry__tile--hot:focus-visible {
  border-color: var(--c-hot);
  background: linear-gradient(120deg, rgba(255, 75, 43, .28), rgba(14, 42, 32, .9) 62%);
}

.page-home .home-entry__tile--china {
  border-color: rgba(217, 107, 59, .45);
}

.page-home .home-entry__label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-rock);
}

.page-home .home-entry__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--c-cream);
}

.page-home .home-entry__note {
  font-size: .86rem;
  line-height: 1.6;
  color: rgba(143, 166, 154, .95);
}

.page-home .home-hero__preview {
  position: relative;
  display: grid;
  gap: 0;
}

.page-home .home-hero__figure {
  margin: 0;
  border: var(--home-edge-cyan);
  border-radius: var(--home-radius);
  overflow: hidden;
  background: var(--c-panel);
  box-shadow: var(--shadow-deep);
}

.page-home .home-hero__figure .figure__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.page-home .home-hero__figure .figure__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-hero__card {
  position: relative;
  margin: -44px 0 0 16px;
  padding: 18px 22px 20px;
  border: var(--home-edge-hot);
  border-radius: var(--home-radius);
  background: rgba(3, 16, 11, .94);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(4px);
}

.page-home .home-hero__time {
  margin: 10px 0 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 5.6rem);
  line-height: .92;
  letter-spacing: -.02em;
  color: var(--c-cream);
}

.page-home .home-hero__meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: .78rem;
  line-height: 1.6;
  color: var(--c-rock);
}

/* ---------- 页内导航 ---------- */
.page-home .home-jump {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(6, 20, 15, .9);
}

.page-home .home-jump__list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}

.page-home .home-jump__list .chapter-nav__link {
  display: inline-block;
  white-space: nowrap;
  padding: 7px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .08em;
  color: var(--c-rock);
  text-decoration: none;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.page-home .home-jump__list .chapter-nav__link:hover,
.page-home .home-jump__list .chapter-nav__link:focus-visible {
  color: var(--c-cream);
  border-color: rgba(56, 245, 198, .5);
}

.page-home .home-jump__list .chapter-nav__link.is-active {
  color: var(--c-ink);
  background: var(--c-cyan);
  border-color: var(--c-cyan);
}

/* ---------- 今晚重点场次 ---------- */
.page-home .home-tonight__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.6vw, 24px);
}

.page-home .home-match {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--home-radius);
  background: rgba(14, 42, 32, .78);
  box-shadow: var(--shadow-card);
}

.page-home .home-match__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-home .home-match__round {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--c-rock);
}

.page-home .home-match__time {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 9vw, 5rem);
  line-height: .9;
  letter-spacing: -.02em;
  color: var(--c-cream);
}

.page-home .home-match--lead .home-match__time {
  color: var(--c-hot);
}

.page-home .home-match__league {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--c-cream);
}

.page-home .home-match__note {
  margin: 0;
  font-size: .94rem;
  line-height: 1.7;
  color: rgba(244, 241, 230, .78);
}

.page-home .home-match .meta-row {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-soft);
}

.page-home .home-match--lead {
  border-width: 2px;
}

/* ---------- 赛程时间轴 ---------- */
.page-home .home-timeline__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.page-home .home-league-strip {
  display: flex;
  gap: 8px;
  padding: 4px 0 14px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.page-home .home-league-strip__item {
  flex: 0 0 auto;
  padding: 7px 15px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--c-rock);
  background: rgba(6, 20, 15, .6);
}

.page-home .home-league-strip__item.is-active {
  color: var(--c-ink);
  background: var(--c-cyan);
  border-color: var(--c-cyan);
}

.page-home .home-timeline__figure {
  margin: 0 0 clamp(18px, 3vw, 28px);
  border: var(--home-edge);
  border-radius: var(--home-radius);
  overflow: hidden;
  background: var(--c-panel);
}

.page-home .home-timeline__figure .figure__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.page-home .home-timeline__figure .figure__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-timeline__figure .figure__caption {
  padding: 10px 16px 12px;
  font-family: var(--font-mono);
  font-size: .74rem;
  line-height: 1.6;
  color: var(--c-rock);
  background: rgba(3, 16, 11, .8);
}

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

.page-home .home-scale__item {
  padding: 14px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(6, 20, 15, .62);
}

.page-home .home-scale__item dt {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--c-rock);
}

.page-home .home-scale__item dd {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  line-height: 1;
  color: var(--c-cyan);
}

.page-home .home-track {
  position: relative;
  margin: 0;
  padding: 0 0 0 26px;
  list-style: none;
  border-left: 2px solid var(--c-pitch);
}

.page-home .home-track__node {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 0 0 clamp(20px, 3vw, 30px);
}

.page-home .home-track__node::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 2px solid var(--c-cyan);
}

.page-home .home-track__node--hot::before {
  border-color: var(--c-hot);
  box-shadow: 0 0 0 4px rgba(255, 75, 43, .18);
}

.page-home .home-track__time {
  font-family: var(--font-mono);
  font-size: .88rem;
  letter-spacing: .04em;
  color: var(--c-cream);
  padding-top: 4px;
}

.page-home .home-track__body {
  display: grid;
  gap: 6px;
  padding: 12px 16px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(14, 42, 32, .6);
}

.page-home .home-track__node--hot .home-track__body {
  border-color: var(--line-hot);
  background: linear-gradient(120deg, rgba(255, 75, 43, .12), rgba(14, 42, 32, .7) 70%);
}

.page-home .home-track__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-cream);
}

.page-home .home-track__note {
  margin: 0;
  font-size: .84rem;
  line-height: 1.6;
  color: rgba(143, 166, 154, .96);
}

/* ---------- 资料下载 ---------- */
.page-home .home-download__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
  padding: clamp(22px, 4vw, 40px);
  border: var(--home-edge-cyan);
  border-radius: var(--home-radius);
  background: linear-gradient(140deg, rgba(23, 90, 58, .5), rgba(6, 20, 15, .9) 68%);
  box-shadow: var(--shadow-deep);
}

.page-home .home-download__title {
  margin: 14px 0 12px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.26;
  color: var(--c-cream);
}

.page-home .home-download__lead {
  margin: 0 0 clamp(18px, 3vw, 24px);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(244, 241, 230, .82);
}

.page-home .home-download__list {
  display: grid;
  gap: 10px;
  margin: 0 0 clamp(20px, 3vw, 28px);
  padding: 0;
  list-style: none;
}

.page-home .home-download__item {
  display: grid;
  gap: 4px;
  padding: 12px 16px;
  border-left: 3px solid var(--c-teal);
  background: rgba(3, 16, 11, .5);
  border-radius: 0 12px 12px 0;
}

.page-home .home-download__k {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--c-cyan);
}

.page-home .home-download__v {
  font-size: .92rem;
  line-height: 1.66;
  color: rgba(244, 241, 230, .84);
}

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

.page-home .home-download__stat {
  margin: 16px 0 0;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .06em;
  color: var(--c-rock);
}

.page-home .home-download__figure {
  margin: 0;
  border: var(--home-edge);
  border-radius: 16px;
  overflow: hidden;
  background: var(--c-panel);
}

.page-home .home-download__figure .figure__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.page-home .home-download__figure .figure__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-download__figure .figure__caption {
  padding: 10px 16px 12px;
  font-family: var(--font-mono);
  font-size: .74rem;
  line-height: 1.6;
  color: var(--c-rock);
  background: rgba(3, 16, 11, .84);
}

/* ---------- 中国区赛事通道 ---------- */
.page-home .home-china {
  padding-top: 0;
}

.page-home .home-china__band {
  position: relative;
  display: grid;
  grid-template-columns: 10px 1fr;
  overflow: hidden;
  border: var(--home-edge);
  border-radius: var(--home-radius);
  background: linear-gradient(150deg, rgba(14, 42, 32, .96), rgba(6, 20, 15, .98));
  box-shadow: var(--shadow-deep);
}

.page-home .home-china__stripe {
  background: linear-gradient(180deg, var(--c-hot), var(--c-clay));
}

.page-home .home-china__body {
  padding: clamp(24px, 4vw, 48px);
}

.page-home .home-china__title {
  margin: 14px 0 12px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.24;
  color: var(--c-cream);
}

.page-home .home-china__lead {
  max-width: 62ch;
  margin: 0 0 clamp(16px, 2.6vw, 22px);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(244, 241, 230, .82);
}

.page-home .home-china__list {
  display: grid;
  gap: 8px;
  margin: 0 0 clamp(20px, 3vw, 28px);
  padding: 0;
  list-style: none;
}

.page-home .home-china__list li {
  position: relative;
  padding-left: 20px;
  font-size: .94rem;
  line-height: 1.7;
  color: rgba(244, 241, 230, .8);
}

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

/* ---------- 长期跟队 ---------- */
.page-home .home-follow__grid {
  align-items: stretch;
}

.page-home .home-follow__card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--home-radius);
  background: rgba(14, 42, 32, .72);
  box-shadow: var(--shadow-card);
}

.page-home .home-follow__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: .04em;
  color: rgba(56, 245, 198, .55);
}

.page-home .home-follow__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--c-cream);
}

.page-home .home-follow__text {
  margin: 0;
  font-size: .94rem;
  line-height: 1.72;
  color: rgba(244, 241, 230, .78);
}

/* ---------- 赛事通与杯赛签表 ---------- */
.page-home .home-cups__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.page-home .home-cups__lead {
  margin: 12px 0 clamp(20px, 3vw, 26px);
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(244, 241, 230, .8);
}

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

.page-home .home-cups__item {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(14, 42, 32, .6);
  box-shadow: var(--shadow-card);
}

.page-home .home-cups__item-title {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--c-cream);
}

.page-home .home-cups__item-text {
  margin: 0;
  font-size: .9rem;
  line-height: 1.68;
  color: rgba(143, 166, 154, .98);
}

/* ---------- 三步上手 ---------- */
.page-home .home-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.6vw, 24px);
  margin: 0 0 clamp(26px, 4vw, 38px);
  padding: 0;
  list-style: none;
  counter-reset: home-step;
}

.page-home .home-steps__item {
  position: relative;
  padding: clamp(20px, 3vw, 28px);
  border: var(--home-edge);
  border-radius: var(--home-radius);
  background: rgba(14, 42, 32, .66);
  box-shadow: var(--shadow-card);
  transition: transform .24s var(--ease), border-color .24s var(--ease);
}

.page-home .home-steps__item:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 245, 198, .5);
}

.page-home .home-steps__num {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--c-cyan);
}

.page-home .home-steps__title {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.24rem;
  color: var(--c-cream);
}

.page-home .home-steps__text {
  margin: 0;
  font-size: .94rem;
  line-height: 1.72;
  color: rgba(244, 241, 230, .78);
}

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

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

  .page-home .home-entry__tile:first-child {
    grid-column: 1 / -1;
  }

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

  .page-home .home-match--lead {
    grid-column: 1 / -1;
  }

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

  .page-home .home-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: clamp(32px, 4.5vw, 60px);
  }

  .page-home .home-entry {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .home-entry__tile:first-child {
    grid-column: auto;
  }

  .page-home .home-tonight__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .page-home .home-match--lead {
    grid-column: span 5;
    grid-row: span 2;
    padding: clamp(24px, 3vw, 34px);
  }

  .page-home .home-match--offset {
    grid-column: span 7;
    margin-top: 26px;
  }

  .page-home .home-match:not(.home-match--lead):not(.home-match--offset) {
    grid-column: span 7;
    margin-top: -14px;
  }

  .page-home .home-timeline__grid {
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: clamp(32px, 5vw, 64px);
  }

  .page-home .home-download__card {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  }

  .page-home .home-cups__grid {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(32px, 5vw, 64px);
  }
}

@media (min-width: 1200px) {
  .page-home .home-hero__card {
    margin-left: -34px;
    margin-right: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-entry__tile,
  .page-home .home-steps__item,
  .page-home .home-jump__list .chapter-nav__link {
    transition: none;
  }

  .page-home .home-entry__tile:hover,
  .page-home .home-steps__item:hover {
    transform: none;
  }
}
