.page-home {
  --home-slant: repeating-linear-gradient(135deg, rgba(57, 255, 20, 0.08) 0, rgba(57, 255, 20, 0.08) 2px, transparent 2px, transparent 18px);
  --home-slant-light: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 2px, transparent 2px, transparent 18px);
  overflow-x: hidden;
  background: var(--c-white);
}

.page-home .container {
  margin-inline: auto;
  max-width: var(--container-w);
  padding-inline: clamp(1.1rem, 3.5vw, 2rem);
}

.page-home .section-panel {
  position: relative;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.page-home .section-heading {
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
}

.page-home .over-label {
  display: inline-block;
  margin: 0 0 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-deep);
}

.page-home .over-label--green {
  color: var(--c-green);
}

.page-home .section-heading h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page-home .section-desc {
  margin: 0;
  max-width: 46em;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-home .section-foot {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.page-home .btn--primary {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-deep);
}

.page-home .btn--primary:hover {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 12px 28px rgba(57, 255, 20, 0.35);
}

.page-home .btn--ghost {
  background: transparent;
  border-color: var(--c-deep);
  color: var(--c-deep);
}

.page-home .btn--ghost:hover {
  background: var(--c-deep);
  color: var(--c-white);
  transform: translateY(-2px);
}

.page-home .btn--light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--c-white);
}

.page-home .btn--light:hover {
  background: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-deep);
  transform: translateY(-2px);
}

.page-home .btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.page-home img {
  max-width: 100%;
}

/* ================= 首屏 ================= */
.page-home .hero {
  position: relative;
  background: var(--c-deep);
  color: var(--c-white);
  overflow: hidden;
  isolation: isolate;
}

.page-home .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--c-green), var(--c-orange));
  z-index: 4;
}

.page-home .hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

.page-home .hero__media {
  position: relative;
  height: 44vh;
  min-height: 280px;
  overflow: hidden;
}

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

.page-home .hero__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 27, 46, 0.25) 0%, rgba(15, 27, 46, 0.95) 100%);
}

.page-home .hero__media-chip {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 99px;
  background: rgba(15, 27, 46, 0.55);
  border: 1px solid rgba(57, 255, 20, 0.4);
  color: var(--c-white);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.page-home .hero__media-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  animation: home-pulse 2s ease-in-out infinite;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.78); }
}

.page-home .hero__content {
  position: relative;
  z-index: 2;
  padding: 2.25rem 0 3.5rem;
}

.page-home .hero__title {
  margin: 0.5rem 0 1.1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-h1);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.page-home .hero__lead {
  margin: 0 0 1.6rem;
  max-width: 34em;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.page-home .hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--c-white);
}

.page-home .hero .btn--ghost:hover {
  background: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-deep);
}

.page-home .hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .hero__features li::before {
  content: "◆ ";
  color: var(--c-green);
}

.page-home .hero__stage {
  display: none;
}

/* ================= 积分榜 ================= */
.page-home .leaderboard {
  background: var(--c-deep);
  color: rgba(255, 255, 255, 0.92);
  isolation: isolate;
}

.page-home .leaderboard::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: var(--home-slant-light);
  opacity: 0.28;
  pointer-events: none;
}

.page-home .leaderboard__bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  pointer-events: none;
}

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

.page-home .leaderboard .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.page-home .leaderboard__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-home .league-table {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-l);
  padding: 1.25rem;
  backdrop-filter: blur(4px);
}

.page-home .league-table__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.page-home .league-table__name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
}

.page-home .data-table {
  width: 100%;
  border-collapse: collapse;
}

.page-home .data-table th {
  text-align: left;
  padding: 0.65rem 0.4rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  white-space: nowrap;
}

.page-home .data-table td {
  padding: 0.68rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.page-home .data-table tbody tr:last-child td {
  border-bottom: none;
}

.page-home .data-table th:last-child,
.page-home .data-table td:last-child {
  text-align: right;
}

.page-home .data-table .data-num {
  color: var(--c-green);
  font-weight: 700;
}

.page-home .data-table .data-table__plus .data-num {
  color: rgba(255, 255, 255, 0.82);
}

.page-home .data-table .data-table__score .data-num {
  color: var(--c-orange);
  font-size: 1.02em;
}

.page-home .leaderboard__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.page-home .leaderboard__sync {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.page-home .leaderboard__sync-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.4);
  animation: home-pulse 2.4s ease-out infinite;
}

/* ================= 赛程 ================= */
.page-home .fixtures {
  background: var(--c-white);
}

.page-home .filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.8rem;
}

.page-home .filter-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--c-deep);
  background: transparent;
  color: var(--c-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1;
  padding: 0.68rem 1.35rem;
  border-radius: 99px;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.page-home .filter-btn:hover {
  background: var(--c-fog);
}

.page-home .filter-btn[aria-pressed="true"] {
  background: var(--c-deep);
  color: var(--c-white);
  box-shadow: 0 6px 18px rgba(15, 27, 46, 0.28);
}

.page-home .fixture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-home .fixture-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  box-shadow: 0 6px 24px rgba(15, 27, 46, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .fixture-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 27, 46, 0.12);
}

.page-home .fixture-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.page-home .fixture-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.page-home .fixture-card:hover .fixture-card__media img {
  transform: scale(1.05);
}

.page-home .fixture-card__round {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 99px;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.page-home .fixture-card__body {
  flex: 1;
  padding: 1.1rem 1.25rem 1.3rem;
}

.page-home .fixture-card__league {
  margin: 0 0 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}

.page-home .fixture-card__match {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
}

.page-home .fixture-card__time {
  margin: 0 0 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--c-orange);
}

.page-home .fixture-card__note {
  margin: 0;
  font-size: 0.89rem;
  line-height: 1.55;
  color: var(--c-muted);
}

/* ================= 集锦 ================= */
.page-home .highlights {
  background: var(--c-teal);
  color: var(--c-white);
}

.page-home .highlights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--home-slant-light);
  opacity: 0.18;
  pointer-events: none;
}

.page-home .highlights .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.page-home .highlights__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.page-home .highlights__stage {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

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

.page-home .highlights__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.9);
  box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.45);
  animation: home-play-pulse 2.4s ease-out infinite;
}

.page-home .highlights__play-icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 22px solid var(--c-deep);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

@keyframes home-play-pulse {
  0% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.45); }
  70% { box-shadow: 0 0 0 26px rgba(57, 255, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

.page-home .highlights__stage-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2rem 1.2rem 0.9rem;
  background: linear-gradient(transparent, rgba(10, 61, 63, 0.92));
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
}

.page-home .highlights__list {
  display: grid;
  gap: 0.8rem;
}

.page-home .highlights__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.page-home .highlights__item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.page-home .highlights__item-info {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  flex: 1;
}

.page-home .highlights__item-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
}

.page-home .highlights__item-score {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.66);
}

.page-home .highlights__item-arrow {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--c-green);
}

/* ================= 球队版本 ================= */
.page-home .versions {
  background: var(--c-fog);
}

.page-home .versions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.page-home .versions__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}

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

.page-home .versions__accordion {
  display: grid;
  gap: 0.8rem;
}

.page-home .version-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 27, 46, 0.04);
}

.page-home .version-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.15s ease;
}

.page-home .version-item summary:hover {
  background: var(--c-fog);
}

.page-home .version-item summary::-webkit-details-marker {
  display: none;
}

.page-home .version-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--c-green);
  transition: transform 0.2s ease;
}

.page-home .version-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.page-home .version-item__team {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.03rem;
}

.page-home .version-item__ver {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--c-muted);
  background: var(--c-fog);
  border-radius: 99px;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
}

.page-home .version-item__body {
  padding: 0.9rem 1.25rem 1.2rem;
  border-top: 1px dashed var(--c-border);
}

.page-home .version-item__body p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--c-text);
}

.page-home .version-item__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--c-muted);
}

.page-home .version-item__facts li {
  padding: 0.3rem 0.7rem;
  background: var(--c-fog);
  border-radius: 99px;
}

.page-home .version-item__facts .data-num {
  color: var(--c-green);
  font-weight: 700;
}

/* ================= 2026联络入口 ================= */
.page-home .contact-entry {
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 106, 0, 0.28), transparent 34%),
    var(--c-wine);
  color: var(--c-white);
  isolation: isolate;
}

.page-home .contact-entry::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--home-slant-light);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.page-home .contact-entry__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

.page-home .contact-entry__lead {
  margin: 0 0 1.5rem;
  max-width: 32em;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.page-home .contact-entry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.page-home .contact-entry__actions .btn--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--c-white);
}

.page-home .contact-entry__actions .btn--ghost:hover {
  background: var(--c-white);
  color: var(--c-wine);
}

.page-home .contact-entry__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .contact-entry__card {
  padding: 1.2rem 1.3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-m);
}

.page-home .contact-entry__card-label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .contact-entry__card-value {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .contact-entry__card-note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

/* ================= Hero 视觉装饰（桌面激活） ================= */
@media (min-width: 980px) {
  .page-home .hero {
    min-height: 84vh;
  }

  .page-home .hero__grid {
    grid-template-columns: minmax(0, 47%) 1fr;
    min-height: 84vh;
  }

  .page-home .hero__media {
    height: auto;
    min-height: 84vh;
  }

  .page-home .hero__media-overlay {
    background: linear-gradient(90deg, rgba(15, 27, 46, 0.2) 0%, rgba(15, 27, 46, 0.8) 100%);
  }

  .page-home .hero__content {
    align-self: center;
    padding: 4rem 0 4rem 3.5rem;
  }

  .page-home .hero__stage {
    display: block;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    z-index: 1;
    pointer-events: none;
  }

  .page-home .hero__trace {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .page-home .hero__trace-path {
    stroke-dasharray: 6 14;
    stroke-linecap: round;
    animation: home-dash 26s linear infinite;
  }

  .page-home .hero__trace-path--orange {
    animation-duration: 36s;
    animation-direction: reverse;
  }

  @keyframes home-dash {
    to { stroke-dashoffset: -400; }
  }

  .page-home .hero__orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 170px;
    height: 170px;
    margin: -85px 0 0 -85px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.72), transparent 26%),
      radial-gradient(circle at 50% 55%, var(--c-green) 0%, #12b34b 50%, var(--c-deep) 100%);
    box-shadow: 0 0 60px rgba(57, 255, 20, 0.42);
    animation: home-orb-spin 14s linear infinite;
  }

  .page-home .hero__orb::after {
    content: "";
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    border-top: 3px solid rgba(255, 255, 255, 0.75);
    border-right: 3px solid transparent;
    transform: rotate(35deg);
  }

  @keyframes home-orb-spin {
    to { transform: rotate(360deg); }
  }

  .page-home .hero__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .page-home .hero__ring--outer {
    width: 340px;
    height: 340px;
    border: 1px dashed rgba(57, 255, 20, 0.55);
    animation: home-ring-spin 44s linear infinite;
  }

  .page-home .hero__ring--inner {
    width: 245px;
    height: 245px;
    border: 2px solid rgba(255, 106, 0, 0.55);
    border-left-color: transparent;
    animation: home-ring-spin 28s linear infinite reverse;
  }

  @keyframes home-ring-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }

  .page-home .hero__stat {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(57, 255, 20, 0.4);
    border-radius: 12px;
    background: rgba(15, 27, 46, 0.8);
    backdrop-filter: blur(8px);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 1.25;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
  }

  .page-home .hero__stat .data-num {
    font-size: 1.35rem;
    color: var(--c-green);
  }

  .page-home .hero__stat--top {
    top: 9%;
    right: 4%;
  }

  .page-home .hero__stat--bottom {
    bottom: 10%;
    left: 6%;
  }
}

/* ================= 桌面扩展布局 ================= */
@media (min-width: 900px) {
  .page-home .leaderboard__cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .page-home .leaderboard__foot {
    margin-top: 1.8rem;
  }

  .page-home .fixture-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .page-home .highlights__layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 2.25rem;
  }

  .page-home .versions__grid {
    grid-template-columns: minmax(0, 38%) 1fr;
    gap: 3rem;
    align-items: start;
  }

  .page-home .contact-entry__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
  }
}
