.page-home {
  position: relative;
  display: block;
  background: var(--space-deep);
  color: var(--paper);
  overflow-x: clip;
}
.page-home a {
  color: inherit;
}

/* ===== Hero 首屏 ===== */
.page-home .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: clamp(56px, 8vw, 96px) 0 0;
  isolation: isolate;
}
.page-home .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.page-home .hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(10, 17, 40, 0.92) 0%, rgba(10, 17, 40, 0.74) 55%, rgba(27, 42, 74, 0.5) 100%);
}
.page-home .hero__inner {
  display: grid;
  gap: 32px;
  align-items: center;
  padding-block: 16px;
}
.page-home .hero__copy {
  max-width: 640px;
}
.page-home .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font: 700 0.875rem / 1 var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
}
.page-home .hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon), var(--flame));
}
.page-home .hero h1 {
  margin: 0 0 18px;
  font: 900 clamp(2.6rem, 6vw, 4.6rem) / 1.04 var(--font-display);
  letter-spacing: -0.02em;
  text-shadow: 4px 4px 0 rgba(255, 106, 0, 0.18);
}
.page-home .hero__lede {
  margin: 0 0 28px;
  max-width: 46ch;
  color: var(--mist);
  font: 400 clamp(1rem, 1.2vw, 1.125rem) / 1.7 var(--font-body);
}
.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.page-home .hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 0;
  padding: 20px;
  list-style: none;
  background: rgba(27, 42, 74, 0.55);
  border: 1px solid rgba(176, 190, 197, 0.25);
  box-shadow: var(--shadow-hard);
}
.page-home .hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 12px;
  border-left: 3px solid var(--flame);
}
.page-home .hero__stats strong {
  font: 900 clamp(1.35rem, 2vw, 1.85rem) / 1 var(--font-display);
}
.page-home .hero__stats span {
  color: var(--mist);
  font-size: 0.84rem;
}

/* ===== Hero 时间线视觉 ===== */
.page-home .hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
  padding: 26px 10px;
  overflow: hidden;
}
.page-home .hero__pitch {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border: var(--line-thick) solid rgba(255, 255, 255, 0.08);
}
.page-home .hero__pitch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 40, 0.76) 0%, rgba(15, 27, 51, 0.9) 100%);
}
.page-home .hero__pitch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .hero__rail {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.page-home .hero__matches {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 94%;
  max-width: 470px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .hero__match {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(15, 27, 51, 0.9);
  border: var(--line) solid rgba(79, 195, 247, 0.55);
  box-shadow: var(--shadow-hard);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.page-home .hero__match:nth-child(even) {
  margin-left: 8%;
}
.page-home .hero__match:hover,
.page-home .hero__match:focus-visible {
  transform: translate(-3px, -3px);
  border-color: var(--neon);
  background: rgba(27, 42, 74, 0.92);
}
.page-home .hero__match-code {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  font: 900 0.8rem / 1 var(--font-display);
  color: var(--space-deep);
  background: var(--flame);
  border: 2px solid var(--paper);
}
.page-home .hero__match-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.page-home .hero__match-time {
  font: 700 0.78rem / 1 var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neon);
}
.page-home .hero__match-league {
  font-size: 0.8rem;
  color: var(--mist);
}
.page-home .hero__match-teams {
  max-width: 17ch;
  font: 800 0.93rem / 1.2 var(--font-display);
  text-align: right;
}
.page-home .hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-block: 18px 22px;
  border-top: 1px solid rgba(176, 190, 197, 0.24);
  color: var(--mist);
  font-size: 0.9rem;
}
.page-home .hero__foot p {
  margin: 0;
}
.page-home .hero__foot-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--neon);
  animation: home-pulse 2s ease-out infinite;
}
@keyframes home-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}
.page-home .hero__scrolldown {
  color: var(--paper);
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--flame);
}

/* ===== 大洲分组 ===== */
.page-home .regions {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0;
  overflow: hidden;
}
.page-home .regions__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .regions__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(10, 17, 40, 0.82);
}
.page-home .regions__inner {
  position: relative;
  z-index: 1;
}
.page-home .section__eyebrow {
  color: var(--neon);
}
.page-home .regions__deck {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
  margin-top: 32px;
}
.page-home .region-card {
  background: rgba(27, 42, 74, 0.8);
  border: var(--line) solid rgba(176, 190, 197, 0.3);
  box-shadow: var(--shadow-hard);
  padding: 20px 20px 24px;
  backdrop-filter: blur(2px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.page-home .region-card:hover,
.page-home .region-card:focus-within {
  border-color: var(--neon);
  box-shadow: 7px 7px 0 rgba(0, 230, 118, 0.18);
}
.page-home .region-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(176, 190, 197, 0.25);
}
.page-home .region-card__code {
  padding: 7px 8px 6px;
  font: 900 0.8rem / 1 var(--font-display);
  letter-spacing: 0.08em;
  color: var(--space-deep);
  background: var(--steel);
}
.page-home .region-card__head h3 {
  margin: 0;
  font: 800 1.25rem / 1 var(--font-display);
  letter-spacing: 0.02em;
}
.page-home .region-card__leagues {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .region-card__leagues a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  text-decoration: none;
}
.page-home .region-card__leagues a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--flame);
  transform: rotate(45deg);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.page-home .region-card__leagues a:hover::before,
.page-home .region-card__leagues a:focus-visible::before {
  background: var(--neon);
  transform: rotate(135deg) scale(1.4);
}
.page-home .regions__note {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 27, 51, 0.7);
  border: var(--line) dashed rgba(0, 230, 118, 0.5);
}
.page-home .regions__note p {
  margin: 0;
  color: var(--mist);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ===== 订阅价格 ===== */
.page-home .pricing {
  padding: clamp(48px, 8vw, 96px) 0;
  background: linear-gradient(180deg, rgba(15, 27, 51, 0.6), rgba(10, 17, 40, 1));
}
.page-home .pricing__layout {
  display: grid;
  gap: 32px;
  align-items: start;
}
.page-home .pricing__intro h2 {
  margin: 0 0 12px;
  font: 900 clamp(1.8rem, 3vw, 2.6rem) / 1.1 var(--font-display);
  letter-spacing: -0.01em;
}
.page-home .pricing__intro .section__lede {
  margin: 0;
  color: var(--mist);
  font: 400 1rem / 1.7 var(--font-body);
}
.page-home .pricing__plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.page-home .tier {
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
  background: var(--space-card);
  border: var(--line) solid rgba(176, 190, 197, 0.3);
  box-shadow: var(--shadow-hard);
}
.page-home .tier--year {
  border-color: var(--gold);
}
.page-home .tier__name {
  margin: 0 0 6px;
  font: 700 0.9rem / 1 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
}
.page-home .tier__price {
  margin: 0 0 16px;
  font: 900 clamp(2rem, 3vw, 2.8rem) / 1 var(--font-display);
}
.page-home .tier__period {
  margin-left: 4px;
  font-size: 0.9rem;
  color: var(--mist);
}
.page-home .tier__list {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--mist);
  font-size: 0.92rem;
}
.page-home .tier__list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.page-home .tier__list li::before {
  content: "✓";
  color: var(--neon);
  font-weight: 900;
}
.page-home .tier .btn {
  margin-top: auto;
  align-self: flex-start;
}
.page-home .pricing__watch {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: rgba(15, 27, 51, 0.7);
  border: var(--line-thick) solid var(--flame);
  box-shadow: 9px 9px 0 rgba(255, 106, 0, 0.16);
}
.page-home .pricing__watch img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: var(--line) solid rgba(176, 190, 197, 0.25);
}
.page-home .pricing__watch-label {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mist);
}
.page-home .pricing__watch h3 {
  margin: 4px 0 0;
  font: 800 1.3rem / 1.2 var(--font-display);
}
.page-home .pricing__watch p {
  margin: 0;
  color: var(--mist);
  font-size: 0.94rem;
  line-height: 1.7;
}
.page-home .watch__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .watch__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.94rem;
}
.page-home .check-ico {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid var(--neon);
}
.page-home .check-ico::after {
  content: "";
  width: 8px;
  height: 4px;
  margin-top: -2px;
  border-left: 2px solid var(--neon);
  border-bottom: 2px solid var(--neon);
  transform: rotate(-45deg);
}

/* ===== 帮助中心更新 ===== */
.page-home .assist {
  padding: clamp(48px, 8vw, 88px) 0;
  background: var(--space-ink);
}
.page-home .assist__notice {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.9), rgba(15, 27, 51, 0.9));
  border: var(--line-thick) solid var(--gold);
  box-shadow: 7px 7px 0 rgba(255, 214, 0, 0.12);
}
.page-home .assist__eyebrow {
  margin: 0 0 12px;
  font: 700 0.85rem / 1 var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-home .assist__copy h2 {
  margin: 0 0 14px;
  font: 900 clamp(1.6rem, 3vw, 2.4rem) / 1.1 var(--font-display);
  letter-spacing: -0.01em;
}
.page-home .assist__copy p {
  margin: 0 0 18px;
  color: var(--mist);
  line-height: 1.7;
}
.page-home .assist__steps-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .assist__steps-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  font-size: 0.96rem;
  background: rgba(10, 17, 40, 0.55);
  border: 1px solid rgba(176, 190, 197, 0.2);
}
.page-home .assist__steps-list li span {
  padding: 4px 5px 3px;
  font: 900 0.85rem / 1 var(--font-display);
  color: var(--gold);
  border: 2px solid var(--gold);
}

/* ===== 全站导航索引 ===== */
.page-home .guide {
  padding: clamp(48px, 8vw, 96px) 0;
}
.page-home .guide__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}
.page-home .guide .map-index__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  overflow: hidden;
  background: var(--space-card);
  border: var(--line) solid rgba(176, 190, 197, 0.28);
  box-shadow: var(--shadow-hard);
  color: var(--paper);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.page-home .guide .map-index__item:hover,
.page-home .guide .map-index__item:focus-visible {
  border-color: var(--flame);
  transform: translate(-3px, -3px);
}
.page-home .guide .map-index__num {
  font: 900 0.8rem / 1 var(--font-display);
  color: var(--neon);
  letter-spacing: 0.08em;
}
.page-home .guide .map-index__text {
  font: 800 1.35rem / 1.2 var(--font-display);
}
.page-home .guide .map-index__hint {
  margin-top: auto;
  color: var(--mist);
  font-size: 0.9rem;
  line-height: 1.6;
}
.page-home .guide__legal {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  color: var(--mist);
  font-size: 0.9rem;
}
.page-home .guide__legal a {
  padding-bottom: 2px;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--flame);
}

/* ===== 信任声明 ===== */
.page-home .trust-band {
  padding: 20px 0;
  background: rgba(15, 27, 51, 0.6);
  border-top: 1px solid rgba(176, 190, 197, 0.2);
}
.page-home .trust-band p {
  margin: 0;
  color: var(--mist);
  font-size: 0.92rem;
  text-align: center;
}

/* ===== 响应式增强 ===== */
@media (min-width: 640px) {
  .page-home .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .regions__deck {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .guide__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 760px) {
  .page-home .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .page-home .assist__notice {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media (min-width: 880px) {
  .page-home .pricing__layout {
    grid-template-columns: 1fr 1.25fr 0.95fr;
    gap: 24px;
  }
  .page-home .pricing__plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (min-width: 980px) {
  .page-home .regions__deck {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .guide__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-home .hero__foot-dot {
    animation: none;
  }
  .page-home .hero__match,
  .page-home .region-card,
  .page-home .guide .map-index__item,
  .page-home .region-card__leagues a::before {
    transition: none;
  }
}
