.page-home {
  background: var(--c-ink);
  color: var(--c-white);
}

.page-home .band {
  position: relative;
}

.page-home h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 4.2vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  isolation: isolate;
  padding: clamp(58px, 10vw, 118px) 0 clamp(44px, 6vw, 78px);
  overflow: hidden;
}

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

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

.page-home .hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 100% at 16% 0%, rgba(10, 26, 47, 0.3) 0%, rgba(10, 26, 47, 0.96) 68%),
    linear-gradient(180deg, rgba(10, 26, 47, 0.2) 0%, rgba(10, 26, 47, 0.98) 100%);
}

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 74, 110, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 74, 110, 0.3) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 78%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 78%);
}

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

.page-home .hero__kicker {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-acid);
}

.page-home .hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(33px, 7.4vw, 76px);
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--c-white);
  max-width: 16ch;
}

.page-home .hero__title em {
  font-style: normal;
  color: var(--c-acid);
}

.page-home .hero__lede {
  margin: 22px 0 0;
  max-width: 46ch;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.78;
  color: var(--c-mist);
}

.page-home .hero__stats {
  margin-top: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--c-tactical);
  border: 1px solid var(--c-tactical);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-home .hero__stats .stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px 16px;
  background: linear-gradient(165deg, rgba(18, 42, 66, 0.96), rgba(10, 26, 47, 0.96));
}

.page-home .hero__stats .stat__num {
  font-family: var(--font-mono);
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-acid);
}

.page-home .hero__stats .stat:nth-child(2) .stat__num {
  color: var(--c-white);
}

.page-home .hero__stats .stat__num--cyan {
  color: var(--c-cyan);
  font-size: clamp(30px, 6vw, 50px);
}

.page-home .hero__stats .stat__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--c-mist);
}

@media (min-width: 760px) {
  .page-home .hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-home .hero__stats .stat {
    padding: 24px 22px 22px;
  }
}

/* ---------- 友谊赛日程带 ---------- */
.page-home .next {
  padding: clamp(48px, 7vw, 92px) 0;
  border-top: 1px solid var(--c-tactical);
}

.page-home .next__head {
  max-width: 62ch;
}

.page-home .next__note {
  margin: 16px 0 0;
  max-width: 54ch;
  font-size: 15px;
  line-height: 1.78;
  color: var(--c-mist);
}

.page-home .next__layout {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  margin-top: clamp(24px, 3.5vw, 38px);
}

@media (min-width: 960px) {
  .page-home .next__layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: start;
  }
}

.page-home .tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: fit-content;
  padding: 5px;
  border: 1px solid var(--c-tactical);
  border-radius: var(--radius-pill);
  background: rgba(18, 42, 66, 0.55);
}

.page-home .tabs__tab {
  padding: 8px 20px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--c-mist);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-home .tabs__tab[aria-selected="true"] {
  background: var(--c-acid);
  color: var(--c-black);
  font-weight: 700;
}

.page-home .tabs__panel {
  margin-top: clamp(18px, 2.5vw, 26px);
}

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

@media (min-width: 660px) {
  .page-home .fixtures {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-home .fixture {
  position: relative;
  padding: 18px 18px 16px 22px;
  border: 1px solid var(--c-tactical);
  border-radius: var(--radius);
  background: linear-gradient(158deg, rgba(18, 42, 66, 0.78), rgba(10, 26, 47, 0.92));
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .fixture::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--c-acid);
}

.page-home .fixture:nth-child(2n)::before {
  background: var(--c-cyan);
}

.page-home .fixture:nth-child(3n)::before {
  background: var(--c-orange);
}

.page-home .fixture:hover {
  border-color: var(--c-acid);
  transform: translateY(-2px);
}

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

.page-home .fixture__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-mist);
}

.page-home .fixture__match {
  margin: 12px 0 0;
  font-size: clamp(17px, 2.4vw, 20px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--c-white);
}

.page-home .fixture__vs {
  padding: 0 6px;
  font-weight: 400;
  color: var(--c-acid);
}

.page-home .fixture__meta {
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
}

.page-home .fixture__meta > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px;
}

.page-home .fixture__meta dt {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-mist);
  opacity: 0.75;
}

.page-home .fixture__meta dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-white);
}

.page-home .figure {
  margin: 0;
  border: 1px solid var(--c-tactical);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-panel);
}

.page-home .figure__img {
  aspect-ratio: 16 / 10;
}

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

.page-home .figure__cap {
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-mist);
}

@media (min-width: 960px) {
  .page-home .figure--tall .figure__img {
    aspect-ratio: 3 / 4;
  }
}

/* ---------- 排名走势 ---------- */
.page-home .rank {
  padding: clamp(48px, 7vw, 92px) 0;
  border-top: 1px solid var(--c-tactical);
}

.page-home .rank__layout {
  display: grid;
  gap: clamp(24px, 4vw, 46px);
}

@media (min-width: 960px) {
  .page-home .rank__layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
  }
}

.page-home .rank__lead {
  margin: 16px 0 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.78;
  color: var(--c-mist);
}

.page-home .rank__rows {
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.page-home .rank__row {
  padding: 18px 18px 16px;
  border: 1px solid var(--c-tactical);
  border-radius: var(--radius);
  background: rgba(18, 42, 66, 0.55);
}

.page-home .rank__row--up {
  border-left: 3px solid var(--c-acid);
}

.page-home .rank__row--down {
  border-left: 3px solid var(--c-orange);
}

.page-home .rank__row header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.page-home .rank__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-mist);
}

.page-home .rank__gap {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-acid);
}

.page-home .rank__row--down .rank__gap {
  color: var(--c-orange);
}

.page-home .rank__nums {
  margin: 12px 0 0;
  display: grid;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-white);
}

.page-home .rank__nums b {
  font-size: 17px;
}

.page-home .rank__bar {
  display: flex;
  gap: 3px;
  margin-top: 14px;
}

.page-home .rank__bar i {
  flex: 1;
  height: 6px;
  border-radius: 2px;
  background: rgba(30, 74, 110, 0.6);
}

.page-home .rank__row--up .rank__bar i:nth-child(-n + 4) {
  background: var(--c-acid);
}

.page-home .rank__row--down .rank__bar i:nth-last-child(-n + 3) {
  background: var(--c-orange);
}

.page-home .rank__key {
  margin: 20px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--c-cyan);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-white);
}

.page-home .rank__body .btn {
  margin-top: 22px;
}

/* ---------- 战报时间轴 ---------- */
.page-home .latest {
  padding: clamp(48px, 7vw, 92px) 0;
  border-top: 1px solid var(--c-tactical);
}

.page-home .latest__layout {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  margin-top: clamp(26px, 4vw, 42px);
}

@media (min-width: 900px) {
  .page-home .latest__layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
  }
}

.page-home .timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 1px solid var(--c-tactical);
  display: grid;
  gap: 26px;
}

.page-home .timeline__item {
  position: relative;
}

.page-home .timeline__item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-ink);
  border: 2px solid var(--c-acid);
}

.page-home .timeline__time {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-acid);
}

.page-home .timeline__title {
  margin: 8px 0 0;
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 800;
  line-height: 1.45;
  color: var(--c-white);
}

.page-home .timeline__desc {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--c-mist);
}

.page-home .latest__map {
  margin: 0;
}

.page-home .minimap {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--c-tactical);
  border-radius: var(--radius);
  background: rgba(18, 42, 66, 0.5);
}

.page-home .minimap span {
  aspect-ratio: 1;
  border-radius: 4px;
  background: rgba(30, 74, 110, 0.45);
}

.page-home .minimap span.on {
  background: var(--c-acid);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.35);
}

.page-home .minimap span.warm {
  background: var(--c-orange);
}

.page-home .latest__mapcap {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-mist);
}

.page-home .latest__cta {
  margin-top: clamp(24px, 3.5vw, 36px);
}

/* ---------- 号码追踪 ---------- */
.page-home .jersey {
  padding: clamp(48px, 7vw, 92px) 0;
  border-top: 1px solid var(--c-tactical);
}

.page-home .jersey__layout {
  display: grid;
  gap: clamp(26px, 4vw, 46px);
  align-items: center;
}

@media (min-width: 900px) {
  .page-home .jersey__layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
}

.page-home .jersey__lead {
  margin: 16px 0 0;
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.78;
  color: var(--c-mist);
}

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

.page-home .jersey__row {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr) 2.6rem;
  align-items: center;
  gap: 14px;
}

.page-home .jersey__pos {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-mist);
}

.page-home .jersey__bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(30, 74, 110, 0.55);
  overflow: hidden;
}

.page-home .jersey__bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--c-acid);
}

.page-home .jersey__row:nth-child(1) .jersey__bar i {
  width: 100%;
}

.page-home .jersey__row:nth-child(2) .jersey__bar i {
  width: 83%;
  background: var(--c-cyan);
}

.page-home .jersey__row:nth-child(3) .jersey__bar i {
  width: 72%;
}

.page-home .jersey__row:nth-child(4) .jersey__bar i {
  width: 14%;
  background: var(--c-orange);
}

.page-home .jersey__n {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  color: var(--c-white);
}

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

/* ---------- 订阅与关注 ---------- */
.page-home .follow {
  padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 8vw, 104px);
  border-top: 1px solid var(--c-tactical);
}

.page-home .follow__head {
  max-width: 62ch;
}

.page-home .follow__lead {
  margin: 16px 0 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.78;
  color: var(--c-mist);
}

.page-home .follow__grid {
  margin-top: clamp(26px, 4vw, 40px);
  display: grid;
  gap: 14px;
}

@media (min-width: 840px) {
  .page-home .follow__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home .follow__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 24px;
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-home .follow__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.page-home .follow__num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-tactical);
}

.page-home .follow__card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--c-white);
}

.page-home .follow__freq {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-acid);
}

.page-home .follow__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--c-mist);
}

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

.page-home .follow__note {
  margin: 30px 0 0;
  max-width: 66ch;
  padding-top: 22px;
  border-top: 1px solid var(--c-tactical);
  font-size: 13px;
  line-height: 1.8;
  color: var(--c-mist);
}

.page-home .follow__note a {
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur) var(--ease);
}

.page-home .follow__note a:hover {
  color: var(--c-orange);
}

@media (max-width: 420px) {
  .page-home .fixture__meta > div {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .page-home .jersey__row {
    grid-template-columns: 2.8rem minmax(0, 1fr) 2rem;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .fixture,
  .page-home .follow__card {
    transition: none;
  }
}
<<<END>>>
