.page-home {
  --home-neon-soft: rgba(57, 255, 20, 0.10);
  --home-lava-soft: rgba(255, 107, 53, 0.16);
  --home-line-soft: rgba(35, 53, 84, 0.55);
  --home-gap: 56px;
  background: var(--c-bg-main);
  color: var(--c-text);
}

/* ===== 首屏：安装入口 / 左右分屏 ===== */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 64px;
  background: linear-gradient(160deg, var(--c-bg-void) 0%, var(--c-bg-main) 58%, #0c1f3d 100%);
  border-bottom: 2px solid var(--c-line);
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: var(--home-neon-soft);
  transform: rotate(20deg);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  pointer-events: none;
}
.page-home .home-hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-home .home-hero__context {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--c-text-sub);
  border: 1px solid var(--c-line);
  background: rgba(2, 12, 27, 0.35);
}
.page-home .home-hero__context b {
  color: var(--c-text);
  font-weight: 600;
}
.page-home .home-hero .section-label {
  margin-bottom: 22px;
}
.page-home .home-hero__title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 7.4rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.015em;
  color: var(--c-text);
  text-transform: uppercase;
}
.page-home .home-hero__title-line {
  display: block;
  margin-top: 0.5rem;
  padding-left: 0.5em;
  font-size: 0.46em;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--c-lava);
  border-left: 4px solid var(--c-neon);
}
.page-home .home-hero__lead {
  margin: 0 0 24px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-sub);
}
.page-home .home-hero__install-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.page-home .home-hero__install-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-sub);
}
.page-home .home-hero__install-hint i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-neon);
  box-shadow: 0 0 6px var(--c-neon);
}
.page-home .home-hero__stats {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 2px solid var(--c-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.page-home .home-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-home .home-hero__stat .display-num {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}
.page-home .home-hero__stat-label {
  font-size: 12px;
  color: var(--c-text-sub);
  letter-spacing: 0.02em;
}
.page-home .home-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.page-home .home-hero__phone {
  position: relative;
  width: min(300px, 80vw);
  border: 4px solid var(--c-line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--c-bg-card);
  box-shadow: 10px 12px 0 rgba(57, 255, 20, 0.14);
}
.page-home .home-hero__phone img {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .home-hero__deco {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.12));
  pointer-events: none;
}

/* ===== 最新赛事 ===== */
.page-home .home-match {
  position: relative;
  padding: 64px 0 56px;
}
.page-home .home-match__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.page-home .home-match__head .section-label {
  align-self: flex-start;
}
.page-home .home-match__head-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.page-home .home-match__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--c-neon);
  border: 1px solid var(--c-line);
  transform: rotate(-2deg);
}
.page-home .home-match__live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-neon);
  box-shadow: 0 0 8px var(--c-neon);
}
.page-home .home-match__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  color: var(--c-text);
}
.page-home .home-match__intro {
  margin: 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-sub);
}
.page-home .home-match__banner {
  margin-bottom: 32px;
  transform: rotate(0.4deg);
}
.page-home .home-match__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-home .home-match__item {
  position: relative;
  padding: 20px;
  border-width: 2px;
  background: linear-gradient(145deg, var(--c-bg-card) 65%, rgba(57, 255, 20, 0.05));
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.page-home .home-match__item:hover {
  transform: translateY(-4px);
  border-color: var(--c-neon);
  box-shadow: var(--shadow-card-hover);
}
.page-home .home-match__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.page-home .home-match__icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  background: var(--c-neon);
}
.page-home .home-match__item:nth-child(even) .home-match__icon {
  background: var(--c-lava);
}
.page-home .home-match__tag {
  padding: 4px 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-text-sub);
  text-transform: uppercase;
  border: 1px solid var(--c-line);
}
.page-home .home-match__item-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
}
.page-home .home-match__item-desc {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-text-sub);
}
.page-home .home-match__item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--c-text-sub);
  border-top: 1px solid var(--c-line);
}
.page-home .home-match__details {
  border-top: 1px dashed var(--c-line);
  padding-top: 12px;
}
.page-home .home-match__details summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-neon);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-home .home-match__details summary::-webkit-details-marker {
  display: none;
}
.page-home .home-match__details summary::before {
  content: "+";
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid var(--c-neon);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
}
.page-home .home-match__details[open] summary::before {
  content: "−";
}
.page-home .home-match__details-body {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(2, 12, 27, 0.4);
  border-left: 3px solid var(--c-neon);
}
.page-home .home-match__details-body p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-text-sub);
}
.page-home .home-match__details-body .btn {
  padding: 6px 12px;
  font-size: 13px;
}

/* ===== 数据面板概览 ===== */
.page-home .home-panel {
  position: relative;
  padding: 64px 0;
  background:
    linear-gradient(120deg, rgba(57, 255, 20, 0.04) 0%, transparent 35%),
    linear-gradient(300deg, rgba(255, 107, 53, 0.06) 0%, transparent 30%),
    var(--c-bg-void);
  border-top: 2px solid var(--c-line);
  border-bottom: 2px solid var(--c-line);
}
.page-home .home-panel::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-neon) 0%, var(--c-lava) 50%, transparent 100%);
  opacity: 0.8;
}
.page-home .home-panel__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-home .home-panel .section-label {
  margin-bottom: 18px;
}
.page-home .home-panel__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--c-text);
}
.page-home .home-panel__desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-sub);
}
.page-home .home-panel__features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.page-home .home-panel__features li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14px;
  color: var(--c-text);
  border-bottom: 1px dashed var(--c-line);
}
.page-home .home-panel__features li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 10px;
  height: 10px;
  background: var(--c-neon);
  transform: rotate(45deg);
}
.page-home .home-panel__features li:nth-child(2)::before {
  background: var(--c-lava);
}
.page-home .home-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-panel__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.page-home .home-panel__chart {
  border: 3px solid var(--c-line);
  box-shadow: 6px 6px 0 rgba(57, 255, 20, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.page-home .home-panel__chart:hover {
  transform: translate(-3px, -3px);
  border-color: var(--c-neon);
  box-shadow: 10px 10px 0 rgba(57, 255, 20, 0.28);
}
.page-home .home-panel__chart img {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .home-panel__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px;
  border-left: 4px solid var(--c-lava);
  background: rgba(255, 107, 53, 0.08);
}
.page-home .home-panel__stat .display-num {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--c-lava);
}
.page-home .home-panel__stat-label {
  font-size: 13px;
  color: var(--c-text-sub);
}

/* ===== 内容中心 ===== */
.page-home .home-center {
  padding: 64px 0;
}
.page-home .home-center .section-label {
  margin-bottom: 18px;
  display: inline-block;
}
.page-home .home-center__head {
  margin-bottom: 36px;
}
.page-home .home-center__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--c-text);
}
.page-home .home-center__intro {
  margin: 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-sub);
}
.page-home .home-center__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-home .home-center__media {
  position: relative;
}
.page-home .home-center__frame {
  position: relative;
  max-width: 440px;
  overflow: hidden;
  border: 3px solid var(--c-line);
}
.page-home .home-center__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(57, 255, 20, 0.12) 55%, rgba(57, 255, 20, 0.12) 58%, transparent 58%);
  pointer-events: none;
}
.page-home .home-center__frame img {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .home-center__note {
  position: absolute;
  right: 12px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border: 2px solid var(--c-neon);
  background: var(--c-bg-void);
  box-shadow: 4px 4px 0 rgba(57, 255, 20, 0.2);
}
.page-home .home-center__note .display-num {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--c-neon);
}
.page-home .home-center__note span:last-child {
  font-size: 12px;
  color: var(--c-text-sub);
}
.page-home .home-center__list {
  display: flex;
  flex-direction: column;
}
.page-home .home-center__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-line);
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.page-home .home-center__item:hover {
  padding-left: 10px;
  background: rgba(57, 255, 20, 0.05);
}
.page-home .home-center__item-num {
  display: flex;
  align-items: center;
  grid-row: span 2;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-line);
}
.page-home .home-center__item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
}
.page-home .home-center__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-text-sub);
}
.page-home .home-center__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ===== 平板 / 桌面适配 ===== */
@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 56px 0 80px;
  }
  .page-home .home-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
  }
  .page-home .home-hero__story {
    padding-right: 12px;
  }
  .page-home .home-hero__visual {
    justify-content: flex-end;
  }
  .page-home .home-hero__phone {
    width: min(340px, 100%);
  }
  .page-home .home-match__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .page-home .home-panel__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }
  .page-home .home-panel__visual {
    align-items: flex-end;
  }
  .page-home .home-center__layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 52px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .page-home .home-match {
    padding: 80px 0 72px;
  }
  .page-home .home-match__head {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 28px;
    row-gap: 14px;
    align-items: end;
    margin-bottom: 36px;
  }
  .page-home .home-match__head .section-label {
    grid-column: 1 / -1;
  }
  .page-home .home-match__intro {
    justify-self: end;
    max-width: 460px;
    text-align: right;
  }
  .page-home .home-match__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .page-home .home-match__item:nth-child(2),
  .page-home .home-match__item:nth-child(4) {
    margin-top: 20px;
  }
  .page-home .home-panel {
    padding: 80px 0;
  }
  .page-home .home-panel__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }
  .page-home .home-center {
    padding: 80px 0;
  }
  .page-home .home-center__head {
    margin-bottom: 48px;
  }
}
