.page-home {
  display: block;
  background: var(--c-ink);
  color: var(--text);
  overflow-x: clip;
}

/* ============ 首屏 ============ */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 56px) 0 clamp(48px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(0.65) contrast(1.15);
}

.page-home .home-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(88% 70% at 6% 2%, rgba(0, 229, 255, 0.16), transparent 58%),
    radial-gradient(70% 62% at 98% 92%, rgba(255, 90, 31, 0.13), transparent 62%),
    linear-gradient(180deg, rgba(10, 17, 40, 0.72) 0%, rgba(10, 17, 40, 0.9) 55%, var(--c-ink) 100%);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  right: -14%;
  top: -24%;
  z-index: -1;
  width: 44vw;
  height: 150%;
  background: linear-gradient(158deg, rgba(0, 229, 255, 0.1), transparent 62%);
  transform: rotate(15deg);
  pointer-events: none;
}

.page-home .home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 3.6vw, 48px);
  align-items: end;
}

.page-home .home-hero__main {
  min-width: 0;
}

.page-home .home-hero__context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}

.page-home .home-hero__context span:last-child {
  color: var(--c-cyan);
}

.page-home .home-hero__sep {
  color: var(--c-charcoal);
}

.page-home .home-hero__main h1 {
  margin: 12px 0 20px;
  max-width: 17ch;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.05rem, 5.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--c-warm);
}

.page-home .home-hero__lead {
  margin: 0 0 28px;
  max-width: 56ch;
  font-size: clamp(1rem, 1.3vw, 1.0625rem);
  line-height: 1.85;
  color: var(--text-dim);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(28px, 3.4vw, 40px);
}

.page-home .home-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-home .home-hero__stats > div {
  min-width: 0;
  padding: 15px 18px;
  background: rgba(20, 30, 60, 0.74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-home .home-hero__stats dt {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}

.page-home .home-hero__stats dd {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  line-height: 1.2;
  color: var(--c-warm);
}

.page-home .home-hero__stats dd span {
  font-size: 0.7em;
  color: var(--c-orange);
}

/* 首屏内容索引 */
.page-home .home-hero__preview {
  min-width: 0;
  padding: 20px 20px 12px;
  border: 1px solid var(--line-strong);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.page-home .home-preview__title {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cyan);
}

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

.page-home .home-preview__list li + li {
  border-top: 1px solid var(--line);
}

.page-home .home-preview__list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 12px;
  padding: 11px 4px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.page-home .home-preview__idx {
  grid-row: span 2;
  padding-top: 3px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--c-orange);
}

.page-home .home-preview__name {
  font-size: 0.95rem;
  font-weight: 600;
}

.page-home .home-preview__meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-mute);
}

.page-home .home-preview__list a:hover,
.page-home .home-preview__list a:focus-visible {
  color: var(--c-cyan);
  transform: translateX(4px);
}

/* ============ 通用区块 ============ */
.page-home .home-block {
  padding: clamp(46px, 6.6vw, 92px) 0;
  border-bottom: 1px solid var(--line);
}

.page-home .home-block:last-of-type {
  border-bottom: 0;
}

.page-home .home-block__head {
  max-width: 64ch;
  margin-bottom: clamp(26px, 3.8vw, 46px);
}

.page-home .home-block__head h2 {
  margin: 12px 0 16px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.55rem, 3.3vw, 2.35rem);
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--c-warm);
}

.page-home .home-block__lead {
  margin: 0;
  line-height: 1.85;
  color: var(--text-dim);
}

/* ============ 01 客场胜率 ============ */
.page-home .home-block--away {
  background: linear-gradient(180deg, rgba(20, 30, 60, 0.55) 0%, rgba(10, 17, 40, 0.96) 100%);
}

.page-home .away-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--gap);
}

.page-home .away-trend {
  min-width: 0;
  padding: clamp(20px, 2.6vw, 32px);
  background: linear-gradient(158deg, rgba(42, 58, 92, 0.55) 0%, rgba(20, 30, 60, 0.92) 100%);
  border: 1px solid var(--line-strong);
}

.page-home .away-trend__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.page-home .away-trend__head h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--c-warm);
}

.page-home .trend-figure {
  margin: 0;
}

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

.page-home .trend-svg text {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.page-home .trend-figure figcaption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--text-mute);
}

.page-home .away-trend__note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-dim);
}

.page-home .away-side {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--gap);
  min-width: 0;
}

.page-home .mini-stat {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--c-ink-2);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .mini-stat:hover {
  border-color: var(--line-cyan);
  transform: translateY(-3px);
}

.page-home .mini-stat__num {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1;
  color: var(--c-cyan);
}

.page-home .mini-stat__num span {
  font-size: 0.55em;
  color: var(--c-orange);
}

.page-home .mini-stat__label {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-dim);
}

.page-home .away-side__figure {
  margin: 0;
}

.page-home .away-side__figure .figure__media {
  overflow: hidden;
  background: var(--c-ink-3);
}

.page-home .away-side__figure .figure__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============ 02 主客场对比 ============ */
.page-home .compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--gap);
}

.page-home .compare__col {
  min-width: 0;
  padding: clamp(20px, 2.6vw, 30px);
  background: var(--c-ink-2);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .compare__col--home {
  border-top: 3px solid var(--c-amber);
}

.page-home .compare__col--away {
  border-top: 3px solid var(--c-cyan);
}

.page-home .compare__col:hover {
  border-color: var(--line-cyan);
  transform: translateY(-3px);
}

.page-home .compare__col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
}

.page-home .compare__col-head h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-warm);
}

.page-home .compare__list {
  margin: 0;
  padding: 0;
}

.page-home .compare__list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}

.page-home .compare__list > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-home .compare__key {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--c-cyan);
}

.page-home .compare__col--home .compare__key {
  color: var(--c-amber);
}

.page-home .compare__val {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
}

.page-home .compare__foot {
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--c-orange);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-dim);
}

/* ============ 03 射门与点球 ============ */
.page-home .home-block--shots {
  background: linear-gradient(180deg, rgba(10, 17, 40, 0.98) 0%, rgba(20, 30, 60, 0.6) 100%);
}

.page-home .entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--gap);
}

.page-home .entry-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: clamp(18px, 2.2vw, 26px);
  background: var(--c-ink-2);
  border: 1px solid var(--line-strong);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .entry-card:hover {
  border-color: var(--line-cyan);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -30px rgba(0, 229, 255, 0.9);
}

.page-home .entry-card__figure {
  margin: 0;
}

.page-home .entry-card__figure .figure__media {
  overflow: hidden;
  background: var(--c-ink-3);
}

.page-home .entry-card__figure .figure__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .entry-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--c-warm);
}

.page-home .entry-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-dim);
}

.page-home .entry-card__link {
  margin-top: auto;
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line-cyan);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--c-cyan);
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.page-home .entry-card__link:hover,
.page-home .entry-card__link:focus-visible {
  color: var(--c-orange);
  border-color: var(--c-orange);
}

.page-home .entry-foot {
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-mute);
}

.page-home .entry-foot a {
  color: var(--c-cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--line-cyan);
}

.page-home .entry-foot a:hover,
.page-home .entry-foot a:focus-visible {
  color: var(--c-orange);
  border-color: var(--c-orange);
}

/* ============ 04 时间线 ============ */
.page-home .timeline-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 3.4vw, 44px);
  align-items: start;
}

.page-home .timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.page-home .timeline__item {
  position: relative;
  padding: 0 0 26px 34px;
  border-left: 1px solid var(--line-strong);
}

.page-home .timeline__item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.page-home .timeline__item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 11px;
  height: 11px;
  background: var(--c-ink);
  border: 2px solid var(--c-cyan);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-home .timeline__item:hover::before {
  background: var(--c-orange);
  border-color: var(--c-orange);
  box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.16);
}

.page-home .timeline__step {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: var(--c-orange);
}

.page-home .timeline__item h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-warm);
}

.page-home .timeline__item p:last-child {
  margin: 0;
  max-width: 54ch;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-dim);
}

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

.page-home .timeline__figure .figure__media {
  overflow: hidden;
  background: var(--c-ink-3);
}

.page-home .timeline__figure .figure__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============ 05 服务导航 ============ */
.page-home .home-block--nav {
  background: linear-gradient(180deg, rgba(20, 30, 60, 0.6) 0%, rgba(10, 17, 40, 1) 100%);
}

.page-home .nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: var(--gap);
}

.page-home .nav-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  padding: 22px 20px 24px;
  overflow: hidden;
  background: var(--c-ink-2);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.page-home .nav-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.page-home .nav-card:hover,
.page-home .nav-card:focus-visible {
  border-color: var(--line-cyan);
  transform: translateY(-4px);
  background: rgba(42, 58, 92, 0.55);
}

.page-home .nav-card:hover::after,
.page-home .nav-card:focus-visible::after {
  transform: scaleX(1);
}

.page-home .nav-card__idx {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--c-orange);
}

.page-home .nav-card__title {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-warm);
}

.page-home .nav-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-dim);
}

.page-home .nav-card__go {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--c-cyan);
}

.page-home .trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1px;
  margin-top: clamp(26px, 3.4vw, 42px);
  background: var(--line);
  border: 1px solid var(--line);
}

.page-home .trust-strip p {
  margin: 0;
  padding: 15px 18px;
  background: rgba(20, 30, 60, 0.78);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-dim);
}

.page-home .trust-strip strong {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--c-cyan);
}

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

  .page-home .compare__list > div {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 2fr);
    gap: 14px;
    align-items: baseline;
  }
}

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

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

  .page-home .away-side__figure {
    grid-column: span 2;
  }
}

@media (min-width: 960px) {
  .page-home .timeline-wrap {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
}

@media (min-width: 1000px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.42fr) minmax(288px, 0.85fr);
  }

  .page-home .away-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  }

  .page-home .away-side {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-home .away-side__figure {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-preview__list a,
  .page-home .mini-stat,
  .page-home .compare__col,
  .page-home .entry-card,
  .page-home .nav-card,
  .page-home .nav-card::after,
  .page-home .timeline__item::before {
    transition: none;
  }

  .page-home .home-preview__list a:hover,
  .page-home .mini-stat:hover,
  .page-home .compare__col:hover,
  .page-home .entry-card:hover,
  .page-home .nav-card:hover {
    transform: none;
  }
}
