.page-home {
  --home-focus-glow: 0 0 28px rgba(57, 255, 20, 0.16);
  background: var(--mist);
  overflow-x: hidden;
  display: block;
}

/* ================= HERO 首屏 ================= */
.page-home__hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-total-mobile) + 32px) 0 56px;
  background: linear-gradient(160deg, #0B1F3A 0%, #0D2B45 55%, #071624 100%);
  color: var(--white);
}

.page-home__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-home__hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 31, 58, 0.94) 0%, rgba(11, 31, 58, 0.74) 45%, rgba(7, 22, 36, 0.9) 100%);
}

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

.page-home__hero-inner {
  position: relative;
  z-index: 1;
}

.page-home__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.page-home__hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home__hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 14px;
}

.page-home__hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 18px;
}

.page-home__hero-lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245, 247, 250, 0.82);
  margin: 0 0 24px;
  max-width: 560px;
}

.page-home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.page-home__hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 20px 32px;
  margin: 36px 0 0;
  padding: 0;
}

.page-home__hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home__hero-stat dt,
.page-home__hero-stat dd {
  margin: 0;
}

.page-home__hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(245, 247, 250, 0.6);
}

.page-home__hero-stat-value {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--neon);
}

.page-home__hero-chart {
  position: relative;
}

.page-home__hero-live {
  position: absolute;
  top: -14px;
  right: 16px;
  z-index: 2;
  background: var(--neon);
  color: var(--deep-sea);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--home-focus-glow);
  white-space: nowrap;
}

.page-home__chart-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(57, 255, 20, 0.22);
  border-radius: var(--radius-card);
  padding: 22px 18px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--home-focus-glow);
}

.page-home__chart-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.page-home__chart-kicker {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 247, 250, 0.55);
  margin: 0 0 4px;
}

.page-home__chart-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin: 0;
}

.page-home__chart-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(11, 31, 58, 0.7);
  border-radius: var(--radius-pill);
  padding: 4px;
  align-self: flex-start;
}

.page-home__chart-tabs .data-tab {
  appearance: none;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  color: rgba(245, 247, 250, 0.68);
  font-family: var(--font-body);
  font-size: 0.74rem;
  line-height: 1;
  padding: 7px 13px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-home__chart-tabs .data-tab:hover {
  color: var(--white);
  border-color: rgba(57, 255, 20, 0.5);
}

.page-home__chart-tabs .data-tab.is-active {
  background: var(--neon);
  color: var(--deep-sea);
  font-weight: 700;
  border-color: var(--neon);
}

.page-home .data-panel {
  display: none;
}

.page-home .data-panel.is-active {
  display: block;
}

.page-home__chart-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.page-home__chart-gridline {
  stroke: rgba(245, 247, 250, 0.14);
  stroke-width: 1;
}

.page-home__chart-gridline--dash {
  stroke-dasharray: 4 8;
}

.page-home__chart-bar {
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.page-home__chart-bar--goal {
  fill: var(--neon);
}

.page-home__chart-bar--conceded {
  fill: var(--orange);
}

.page-home__chart-bar--net {
  fill: var(--purple);
}

.page-home__chart-value {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  fill: var(--white);
}

.page-home__chart-xlabel {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: rgba(245, 247, 250, 0.6);
}

.page-home__chart-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(245, 247, 250, 0.58);
  margin: 14px 0 0;
}

.page-home__chart-card:hover .page-home__chart-bar--goal {
  filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.35));
}

.page-home__chart-card:hover .page-home__chart-bar--conceded {
  filter: drop-shadow(0 0 10px rgba(255, 111, 0, 0.35));
}

.page-home__chart-card:hover .page-home__chart-bar--net {
  filter: drop-shadow(0 0 10px rgba(123, 47, 255, 0.35));
}

/* ================= 通用区块 ================= */
.page-home__section {
  padding: 56px 0;
}

.page-home .eyebrow {
  margin-bottom: 8px;
}

.page-home__section .section-title {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  line-height: 1.18;
  margin: 6px 0 16px;
}

/* ================= 进失球分布区块 ================= */
.page-home__distribution {
  background: var(--mist);
}

.page-home__distribution .eyebrow,
.page-home__entry .eyebrow {
  color: var(--orange);
}

.page-home__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.page-home__split-copy .section-title {
  margin-top: 4px;
}

.page-home__paragraph {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--slate);
  margin: 0 0 20px;
}

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

.page-home__feature-item {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--slate);
}

.page-home__feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--neon);
}

.page-home__feature-item:nth-child(2)::before {
  background: var(--orange);
}

.page-home__feature-item:nth-child(3)::before {
  background: var(--purple);
}

.page-home__visual-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-card);
  border: 1px solid var(--steel);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(11, 31, 58, 0.1);
}

.page-home__visual-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home__visual-caption {
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--slate);
  background: var(--white);
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

/* ================= 移动端查询面板区块 ================= */
.page-home__mobile {
  background: linear-gradient(160deg, var(--deep-sea) 0%, var(--ink) 100%);
  color: var(--white);
}

.page-home__mobile .page-home__paragraph,
.page-home__mobile .page-home__feature-item {
  color: rgba(245, 247, 250, 0.75);
}

.page-home__mobile .page-home__feature-item::before {
  background: var(--neon);
}

.page-home__mobile .page-home__feature-item:nth-child(2)::before {
  background: var(--orange);
}

.page-home__mobile .page-home__feature-item:nth-child(3)::before {
  background: var(--purple);
}

.page-home__phone {
  width: 264px;
  max-width: 100%;
  margin: 0 auto;
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(145deg, #1A2A44 0%, #0B1F3A 70%);
  box-shadow: 0 28px 60px rgba(11, 31, 58, 0.35), inset 0 0 0 1px rgba(245, 247, 250, 0.08);
}

.page-home__phone-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(245, 247, 250, 0.1);
  background: var(--deep-sea);
  aspect-ratio: 400 / 800;
}

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

.page-home__phone-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10px 14px;
  pointer-events: none;
}

.page-home__phone-time {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(11, 31, 58, 0.6);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.page-home__phone-hotlist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.page-home__phone-hot {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 7px 10px;
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ================= 收藏提醒 + 站内索引 ================= */
.page-home__entry {
  background: var(--mist);
}

.page-home__entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.page-home__entry-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-card);
  padding: 32px 24px;
  gap: 10px;
  box-shadow: 0 12px 36px rgba(11, 31, 58, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.page-home__entry-card:hover {
  border-color: rgba(57, 255, 20, 0.55);
  box-shadow: var(--home-focus-glow);
  transform: translateY(-2px);
}

.page-home__entry-card .section-title {
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  margin-bottom: 4px;
}

.page-home__entry-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px 4px 18px 4px;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.14), rgba(123, 47, 255, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.page-home__entry-icon--index {
  background: linear-gradient(135deg, rgba(123, 47, 255, 0.16), rgba(255, 111, 0, 0.1));
}

.page-home__index-svg {
  display: block;
  width: 34px;
  height: 34px;
}

.page-home__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 20px;
}

.page-home__chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--deep-sea);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.35);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}

.page-home__chip-row--tags {
  margin-top: 14px;
}

/* ================= 性能区块 ================= */
.page-home__performance {
  position: relative;
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--deep-sea) 60%, var(--ink) 100%);
  color: var(--white);
  overflow: hidden;
}

.page-home__perf-heading {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 44px;
}

.page-home__perf-lead {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.75);
  margin-top: 16px;
}

.page-home__perf-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.page-home__perf-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.page-home__perf-card:hover {
  border-color: rgba(255, 111, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
}

.page-home__perf-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--neon);
}

.page-home__perf-card:nth-child(2) .page-home__perf-num {
  color: var(--orange);
}

.page-home__perf-card:nth-child(3) .page-home__perf-num {
  color: var(--purple);
}

.page-home__perf-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--white);
  margin: 14px 0 8px;
}

.page-home__perf-text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(245, 247, 250, 0.65);
  margin: 0;
}

.page-home__trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(245, 247, 250, 0.12);
}

.page-home__trust-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(245, 247, 250, 0.6);
}

.page-home__perf-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

/* ================= 响应式 ================= */
@media (min-width: 640px) {
  .page-home__section {
    padding: 72px 0;
  }

  .page-home__chart-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

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

@media (min-width: 768px) {
  .page-home__hero {
    padding: calc(var(--header-total) + 40px) 0 72px;
  }
}

@media (min-width: 960px) {
  .page-home__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
  }

  .page-home__split--visual-first .page-home__split-copy {
    order: 2;
  }

  .page-home__split--visual-first .page-home__split-visual {
    order: 1;
  }

  .page-home__entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .page-home__entry-card {
    padding: 40px 32px;
  }
}

@media (min-width: 900px) {
  .page-home__perf-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .page-home__hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 64px;
  }

  .page-home__hero-copy {
    align-items: flex-start;
  }
}
