.page-home {
  --home-arc: 56px;
  --home-card: rgba(246, 241, 231, .08);
  --home-hair: rgba(246, 241, 231, .18);
  background: var(--paper-100);
  color: var(--ink-900);
  overflow-x: hidden;
}

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

/* ---------- 01 首屏章节索引 ---------- */
.page-home .hero-home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-h) + 48px) 0 64px;
  background:
    radial-gradient(120% 80% at 78% 4%, rgba(56, 242, 200, .14), transparent 62%),
    linear-gradient(168deg, var(--blue-900) 0%, var(--blue-700) 58%, var(--blue-500) 100%);
  color: var(--paper-100);
}

.page-home .hero-home__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
  z-index: -2;
}

.page-home .hero-home__trails {
  position: absolute;
  inset: -6% -10%;
  width: 120%;
  height: 112%;
  z-index: -1;
  fill: none;
  stroke: var(--mint-400);
  stroke-width: 1.2;
  opacity: .34;
  animation: home-drift 48s linear infinite;
}

@keyframes home-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-46px, -20px, 0); }
}

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

.page-home .hero-home__inner {
  position: relative;
}

.page-home .hero-home__title {
  font-size: clamp(32px, 6.4vw, 56px);
  line-height: 1.12;
  margin: 14px 0 18px;
  color: var(--paper-100);
  max-width: 16ch;
}

.page-home .hero-home__lede {
  max-width: 40ch;
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--paper-100);
}

.page-home .hero-home__meta {
  margin: 0;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--mist-300);
}

.page-home .entry-list {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid var(--home-hair);
}

.page-home .entry {
  border-bottom: 1px solid var(--home-hair);
}

.page-home .entry__link {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 18px 4px;
  color: inherit;
  text-decoration: none;
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}

.page-home .entry__link:hover,
.page-home .entry__link:focus-visible {
  transform: translateX(6px);
  background-color: rgba(56, 242, 200, .07);
}

.page-home .entry__no {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--mint-400);
  align-self: start;
  padding-top: 8px;
}

.page-home .entry__name {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(21px, 3.4vw, 32px);
  line-height: 1.1;
  transform: skewX(-8deg);
  color: var(--paper-100);
}

.page-home .entry__desc {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--mist-300);
}

.page-home .entry__arrow {
  justify-self: end;
  font-size: 19px;
  color: var(--coral-500);
  transition: transform .25s var(--ease);
}

.page-home .entry__link:hover .entry__arrow {
  transform: translateX(4px);
}

/* ---------- 02 今日赛程 ---------- */
.page-home .fixtures {
  padding: 68px 0 72px;
}

.page-home .fixtures__title,
.page-home .transfer__title,
.page-home .rates__title,
.page-home .help__title,
.page-home .support__title {
  font-size: clamp(26px, 4.4vw, 42px);
  line-height: 1.16;
  margin: 12px 0 18px;
}

.page-home .fixtures__lead .prose {
  margin: 0 0 14px;
  max-width: 42ch;
  line-height: 1.78;
  color: var(--ink-900);
}

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

.page-home .snapshot {
  display: grid;
  grid-template-columns: 68px 1fr;
  grid-template-areas:
    "time label"
    "time desc";
  gap: 2px 14px;
  padding: 12px 16px;
  background: var(--paper-300);
  border-left: 4px solid var(--mint-400);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.page-home .snapshot__time {
  grid-area: time;
  align-self: center;
  font-size: 19px;
  font-weight: 700;
  color: var(--blue-700);
}

.page-home .snapshot__label {
  grid-area: label;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
}

.page-home .snapshot__desc {
  grid-area: desc;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-600);
}

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

.page-home .stoppage {
  padding: 22px 20px;
}

.page-home .stoppage__title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
}

.page-home .stoppage__rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .stoppage__row {
  display: grid;
  grid-template-columns: 84px 1fr;
  grid-template-areas:
    "label bar"
    "label desc";
  gap: 4px 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--paper-300);
}

.page-home .stoppage__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-home .stoppage__label {
  grid-area: label;
  align-self: center;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--blue-700);
}

.page-home .stoppage__barwrap {
  grid-area: bar;
  align-self: center;
  height: 8px;
  background: var(--paper-300);
  border-radius: 999px;
  overflow: hidden;
}

.page-home .stoppage__bar {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral-500), var(--coral-200));
}

.page-home .stoppage__desc {
  grid-area: desc;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-600);
}

.page-home .beat {
  margin-top: 48px;
  align-items: center;
}

.page-home .beat__figure {
  margin: 0 0 24px;
}

.page-home .beat__figure img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

.page-home .beat__title {
  font-size: clamp(21px, 3.2vw, 28px);
  margin: 0 0 14px;
  color: var(--ink-900);
}

.page-home .beat__copy .prose {
  margin: 0 0 14px;
  max-width: 42ch;
  line-height: 1.78;
  color: var(--ink-600);
}

.page-home .beat__copy .btn {
  margin-top: 8px;
}

/* ---------- 03 客场胜率数据带 ---------- */
.page-home .rates {
  position: relative;
  margin-top: 8px;
  padding: calc(var(--home-arc) + 60px) 0 76px;
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-700) 58%, var(--blue-900) 100%);
  color: var(--paper-100);
}

.page-home .rates::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: -1px;
  height: var(--home-arc);
  background: var(--paper-100);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.page-home .rates__title {
  color: var(--paper-100);
}

.page-home .rates__lede {
  max-width: 44ch;
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.78;
  color: var(--paper-100);
}

.page-home .range-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.page-home .range-card {
  padding: 18px 18px 20px;
  background: var(--home-card);
  border: 1px solid rgba(56, 242, 200, .26);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.page-home .range-card__name {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  transform: skewX(-8deg);
  color: var(--mint-400);
}

.page-home .range-card__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--mist-300);
}

.page-home .league-index__title {
  margin: 0 0 10px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--mist-300);
}

.page-home .league-index__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .rates .tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 999px;
  background: rgba(246, 241, 231, .08);
  border: 1px solid var(--home-hair);
  color: var(--paper-100);
}

.page-home .rate-aside {
  margin-top: 30px;
}

.page-home .rate-aside .media-frame {
  border-radius: var(--radius);
  overflow: hidden;
}

.page-home .rate-aside img {
  width: 100%;
  object-fit: cover;
}

.page-home .spark {
  display: block;
  width: 100%;
  height: auto;
  margin: 18px 0 8px;
}

.page-home .spark__caption {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist-300);
}

.page-home .rate-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--home-hair);
  padding-top: 18px;
}

.page-home .rate-stats .stat__value {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: var(--mint-400);
  border-bottom: 3px solid rgba(56, 242, 200, .35);
  padding-bottom: 6px;
}

.page-home .rate-stats .stat__label {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--mist-300);
}

/* ---------- 04 移动端访问支持 ---------- */
.page-home .help {
  position: relative;
  padding: 68px 0 72px;
  background: linear-gradient(140deg, var(--blue-700) 0%, var(--blue-500) 100%);
  color: var(--paper-100);
}

.page-home .help__first-wrap {
  margin-bottom: 30px;
}

.page-home .help__first {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: rgba(7, 26, 47, .42);
  border: 1px solid rgba(255, 176, 32, .5);
  backdrop-filter: blur(8px);
}

.page-home .help__summary {
  cursor: pointer;
  list-style: none;
}

.page-home .help__summary::-webkit-details-marker {
  display: none;
}

.page-home .help__advice {
  display: block;
  margin-top: 10px;
  font-size: clamp(24px, 4.6vw, 36px);
  line-height: 1.14;
  color: var(--paper-100);
}

.page-home .help__body {
  margin-top: 14px;
}

.page-home .help__body p {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--mist-300);
}

.page-home .help__title {
  color: var(--paper-100);
}

.page-home .help__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  counter-reset: help-step;
}

.page-home .help__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(246, 241, 231, .16);
}

.page-home .help__item:first-child {
  border-top: 1px solid rgba(246, 241, 231, .16);
}

.page-home .help__item-no {
  font-family: var(--font-data);
  font-size: 20px;
  font-weight: 700;
  color: var(--coral-200);
  line-height: 1.4;
}

.page-home .help__item-text {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--paper-100);
}

.page-home .help__item-text strong {
  color: var(--mint-400);
  font-weight: 700;
}

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

/* ---------- 05 转会与专题 ---------- */
.page-home .transfer {
  padding: 68px 0 74px;
}

.page-home .transfer__banner {
  margin: 22px 0 34px;
  border-radius: var(--radius);
  overflow: hidden;
}

.page-home .transfer__banner img {
  width: 100%;
  object-fit: cover;
}

.page-home .transfer__subtitle {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  padding-left: 12px;
  border-left: 4px solid var(--coral-500);
}

.page-home .transfer__fallback {
  margin-bottom: 32px;
}

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

.page-home .window-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 15px;
  background: var(--paper-300);
  border-radius: var(--radius);
}

.page-home .window-item__tag {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-700);
  padding-top: 2px;
}

.page-home .window-item__text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-600);
}

.page-home .topic-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.page-home .topic {
  border-bottom: 1px solid var(--paper-300);
}

.page-home .topic__link {
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}

.page-home .topic__link:hover,
.page-home .topic__link:focus-visible {
  transform: translateX(6px);
  background-color: rgba(255, 106, 61, .07);
}

.page-home .topic__meta {
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--blue-500);
  margin-bottom: 5px;
}

.page-home .topic__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink-900);
}

.page-home .transfer__count {
  margin: 0 0 18px;
  max-width: 42ch;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-600);
}

.page-home .transfer__count .data-num {
  color: var(--coral-500);
  font-weight: 700;
}

/* ---------- 06 服务保障与联系 ---------- */
.page-home .support {
  position: relative;
  padding: calc(var(--home-arc) + 58px) 0 78px;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 100%);
  color: var(--paper-100);
}

.page-home .support::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: -1px;
  height: var(--home-arc);
  background: var(--paper-100);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.page-home .support__title {
  color: var(--paper-100);
}

.page-home .support__lede {
  max-width: 44ch;
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.78;
  color: var(--paper-100);
}

.page-home .support-stats {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page-home .support-stats .stat__value {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(28px, 5.4vw, 46px);
  font-weight: 700;
  line-height: 1;
  color: var(--coral-500);
  padding-bottom: 6px;
  border-bottom: 3px solid rgba(255, 106, 61, .45);
}

.page-home .support-stats .stat__label {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--mist-300);
}

.page-home .support__note {
  max-width: 44ch;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist-300);
}

.page-home .support__side {
  margin-top: 32px;
}

.page-home .contact-panel {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(246, 241, 231, .08);
  border: 1px solid var(--home-hair);
  backdrop-filter: blur(8px);
}

.page-home .contact-panel__row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(246, 241, 231, .14);
}

.page-home .contact-panel__row:first-child {
  padding-top: 0;
}

.page-home .contact-panel__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-home .contact-panel__label {
  display: block;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--mint-400);
  margin-bottom: 6px;
}

.page-home .contact-panel__value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--paper-100);
  word-break: break-word;
}

.page-home .contact-panel__hint {
  display: block;
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--mist-300);
}

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

/* ---------- 响应式 ---------- */
@media (min-width: 720px) {
  .page-home .hero-home {
    padding: calc(var(--header-h) + 64px) 0 84px;
  }

  .page-home .entry__link {
    grid-template-columns: 52px 1fr 30px;
    gap: 22px;
    padding: 22px 8px;
  }

  .page-home .snapshot {
    grid-template-columns: 84px 120px 1fr;
    grid-template-areas: "time label desc";
    align-items: center;
  }

  .page-home .stoppage {
    padding: 26px 24px;
  }

  .page-home .beat__figure {
    margin-bottom: 0;
  }

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

  .page-home .rate-aside .media-frame {
    max-width: 560px;
  }
}

@media (min-width: 1000px) {
  .page-home .fixtures,
  .page-home .transfer {
    padding: 88px 0 96px;
  }

  .page-home .rates {
    padding: calc(var(--home-arc) + 78px) 0 96px;
  }

  .page-home .help {
    padding: 88px 0 96px;
  }

  .page-home .support {
    padding: calc(var(--home-arc) + 76px) 0 100px;
  }

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

  .page-home .rates__main,
  .page-home .rate-aside {
    margin-top: 0;
  }

  .page-home .rate-aside {
    align-self: start;
  }

  .page-home .spark {
    max-width: 360px;
  }

  .page-home .fixtures .grid--5-7 .beat__figure {
    align-self: start;
  }

  .page-home .stoppage {
    position: relative;
    margin-top: -28px;
    box-shadow: var(--shadow-2);
  }

  .page-home .range-card {
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home .entry__link,
  .page-home .topic__link,
  .page-home .range-card {
    transition: none;
  }

  .page-home .entry__link:hover,
  .page-home .topic__link:hover,
  .page-home .range-card:hover {
    transform: none;
  }
}

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