.page-home {
  background-color: var(--sky);
  color: var(--mist);
  overflow-x: hidden;
}

/* ========== 首屏：官方矩阵新首页 ========== */
.page-home .hp-hero {
  position: relative;
  padding: calc(var(--header-h) + 56px) 0 64px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(57, 255, 20, 0.08), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(255, 107, 53, 0.06), transparent 60%),
    var(--sky);
  overflow: hidden;
}
.page-home .hp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(237, 239, 242, 0.16) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.18;
  pointer-events: none;
}
.page-home .hp-hero__inner {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}
.page-home .hp-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--lime);
}
.page-home .hp-hero__kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--lime);
  display: inline-block;
}
.page-home .hp-hero__copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 7vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  text-wrap: balance;
}
.page-home .hp-hero__lead {
  max-width: 46ch;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(237, 239, 242, 0.82);
}
.page-home .hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.page-home .hp-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin: 44px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(237, 239, 242, 0.14);
}
.page-home .hp-stat {
  margin: 0;
}
.page-home .hp-stat__label {
  display: block;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237, 239, 242, 0.56);
}
.page-home .hp-stat__value {
  display: block;
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--lime-mono);
}

/* 首屏视觉：数据环 + 剪影 */
.page-home .hp-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 16px;
}
.page-home .hp-ring {
  position: relative;
  z-index: 2;
  width: min(340px, 82vw);
  height: auto;
  filter: drop-shadow(0 0 24px rgba(57, 255, 20, 0.16));
}
.page-home .hp-hero__img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 58%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  opacity: 0.45;
  pointer-events: none;
}
.page-home .hp-ring__track {
  fill: none;
  stroke: rgba(57, 255, 20, 0.14);
  stroke-width: 3;
}
.page-home .hp-ring__progress {
  fill: none;
  stroke: var(--lime);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 220 660;
  transform: rotate(-90deg);
  transform-origin: center;
  transform-box: fill-box;
  animation: hpRingFlow 4s linear infinite;
}
.page-home .hp-ring__mesh {
  fill: none;
  stroke: rgba(237, 239, 242, 0.22);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}
.page-home .hp-ring__node {
  fill: var(--white);
  stroke: rgba(57, 255, 20, 0.7);
  stroke-width: 2;
}
.page-home .hp-ring__node--hot {
  fill: var(--orange);
  stroke: rgba(255, 107, 53, 0.35);
  stroke-width: 6;
}
.page-home .hp-ring__label {
  font-family: var(--font-heading);
  font-size: 38px;
  letter-spacing: 0.04em;
  fill: var(--white);
}
.page-home .hp-ring__caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  fill: rgba(237, 239, 242, 0.6);
}

/* ========== 快捷功能卡片 ========== */
.page-home .hp-entry {
  position: relative;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 85% 0%, rgba(57, 255, 20, 0.1), transparent 42%),
    linear-gradient(138deg, #0B1E3F 0%, #0F4C5C 58%, #0B1E3F 100%);
  clip-path: polygon(0 36px, 100% 0, 100% calc(100% - 36px), 0 100%);
  overflow: hidden;
}
.page-home .hp-entry__head {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.page-home .hp-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--lime);
}
.page-home .hp-num::after {
  content: "";
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
}
.page-home .hp-entry__head h2,
.page-home .hp-live__copy h2,
.page-home .hp-trust__copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  color: var(--white);
}
.page-home .hp-entry__sub,
.page-home .hp-live__lead,
.page-home .hp-trust__lead {
  max-width: 60ch;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(237, 239, 242, 0.75);
}
.page-home .hp-entry__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  margin-top: 36px;
}
.page-home .hp-entry__texture {
  position: absolute;
  right: -4%;
  bottom: -8%;
  z-index: 0;
  width: min(420px, 30%);
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
}
.page-home .hp-entry-card {
  --card-accent: var(--lime);
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: rgba(237, 239, 242, 0.97);
  color: #122747;
  box-shadow: 0 16px 40px rgba(8, 21, 43, 0.28);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.page-home .hp-entry-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background: var(--card-accent);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.18;
}
.page-home .hp-entry-card--lime {
  --card-accent: var(--lime);
}
.page-home .hp-entry-card--orange {
  --card-accent: var(--orange);
}
.page-home .hp-entry-card--teal {
  --card-accent: var(--teal);
}
.page-home .hp-entry-card--purple {
  --card-accent: var(--purple);
}
.page-home .hp-entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(8, 21, 43, 0.4);
}
.page-home .hp-entry-card__tag {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--card-accent);
}
.page-home .hp-entry-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.15;
  color: #0B1E3F;
}
.page-home .hp-entry-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(11, 30, 63, 0.7);
}
.page-home .hp-entry-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--card-accent);
  text-decoration: none;
  transition: gap 0.25s var(--ease);
}
.page-home .hp-entry-card__link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.page-home .hp-entry-card__link:hover {
  gap: 12px;
}
.page-home .hp-entry-card__link:hover::after {
  transform: translateX(2px);
}

/* ========== 实时数据中枢 ========== */
.page-home .hp-live {
  position: relative;
  padding: 88px 0 96px;
  background:
    linear-gradient(120deg, rgba(75, 63, 114, 0.88), rgba(8, 21, 43, 0.96)),
    var(--purple);
  overflow: hidden;
}
.page-home .hp-live::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-home .hp-live__inner {
  position: relative;
  display: grid;
  gap: 48px;
}
.page-home .hp-live .hp-num {
  color: var(--lime);
}
.page-home .hp-live .hp-num::after {
  background: linear-gradient(90deg, var(--lime), transparent);
}
.page-home .hp-live__feed {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  padding-left: 16px;
  border-left: 2px solid rgba(57, 255, 20, 0.3);
}
.page-home .hp-live-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(8, 21, 43, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
.page-home .hp-live-item__league {
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lime);
  background: rgba(57, 255, 20, 0.1);
  border-radius: 6px;
}
.page-home .hp-live-item__teams {
  font-size: 14px;
  color: rgba(237, 239, 242, 0.85);
}
.page-home .hp-live-item__score {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--lime-mono);
}
.page-home .hp-live-item__time {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(237, 239, 242, 0.45);
}
.page-home .hp-live__art {
  position: relative;
}
.page-home .hp-live__img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  border-radius: 32px;
  object-fit: cover;
  box-shadow:
    0 28px 64px rgba(8, 21, 43, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* ========== 性能与信赖 ========== */
.page-home .hp-trust {
  position: relative;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1), transparent 50%),
    var(--dark);
  overflow: hidden;
}
.page-home .hp-trust::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 45, 62, 0.5), transparent 70%);
  pointer-events: none;
}
.page-home .hp-trust__inner {
  position: relative;
  display: grid;
  gap: 44px;
}
.page-home .hp-trust__art {
  display: grid;
  place-items: center;
}
.page-home .hp-trust__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 20px 48px rgba(8, 21, 43, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}
.page-home .hp-trust .hp-num {
  color: var(--orange);
}
.page-home .hp-trust .hp-num::after {
  background: linear-gradient(90deg, var(--orange), transparent);
}
.page-home .hp-trust__copy h2 {
  color: var(--mist);
}
.page-home .hp-trust__list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.page-home .hp-trust__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(237, 239, 242, 0.88);
}
.page-home .hp-trust__list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.5);
}
.page-home .hp-trust__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ========== 桌面布局 ========== */
@media (min-width: 900px) {
  .page-home .hp-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
  .page-home .hp-hero__visual {
    min-height: 420px;
  }
  .page-home .hp-hero__img {
    right: -2%;
    width: 66%;
    max-width: 330px;
    opacity: 0.4;
  }
  .page-home .hp-entry {
    clip-path: polygon(0 64px, 100% 0, 100% calc(100% - 64px), 0 100%);
  }
  .page-home .hp-entry__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .page-home .hp-live__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
  .page-home .hp-trust__inner {
    grid-template-columns: 0.4fr 1fr;
    gap: 64px;
  }
}

/* ========== 动画与减弱动态 ========== */
@keyframes hpRingFlow {
  to {
    stroke-dashoffset: -880;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-home .hp-ring__progress {
    animation: none;
  }
  .page-home .hp-entry-card,
  .page-home .hp-entry-card__link {
    transition: none;
  }
}
