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

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .data-tag--live {
  background: var(--red);
  border-color: var(--red);
  color: #FFFFFF;
  font-family: var(--mono);
  letter-spacing: 0.08em;
}

/* ===== 首屏框景 ===== */
.page-home .home-hero {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 72% 18%, rgba(29, 43, 77, 0.6) 0%, transparent 55%);
}

.page-home .home-hero::before {
  content: '';
  position: absolute;
  right: 6%;
  bottom: 28px;
  width: 32%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gray) 0 3px, transparent 3px 12px);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.page-home .home-hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 26px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red) 38%, transparent 38.5%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 2;
}

.page-home .home-hero__flow {
  position: absolute;
  top: 36px;
  left: -40px;
  width: 260px;
  max-width: none;
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}

.page-home .home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-home .home-hero__content {
  max-width: 640px;
}

.page-home .home-hero__context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.page-home .home-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-home .home-hero__lead {
  margin: 0 0 14px;
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 700;
  color: var(--yellow);
}

.page-home .home-hero__desc {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.page-home .home-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 440px;
}

.page-home .home-hero__fact {
  padding: 14px 12px;
  background: var(--glass-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.page-home .home-hero__fact:hover {
  border-color: var(--red);
}

.page-home .home-hero__fact-num {
  display: block;
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.page-home .home-hero__fact-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--gray);
}

.page-home .home-hero__frame {
  position: relative;
}

.page-home .home-hero__image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.page-home .home-hero__score {
  position: relative;
  z-index: 2;
  margin: -72px 16px 0 28px;
  padding: 18px;
  border-radius: 10px;
  background: rgba(13, 17, 28, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.page-home .home-hero__score-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.page-home .home-hero__score-league {
  font-size: 12px;
  color: var(--gray);
}

.page-home .home-hero__match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.page-home .home-hero__team-name {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
}

.page-home .home-hero__scoreboard {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.page-home .home-hero__score-digit {
  font-family: var(--mono);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
}

.page-home .home-hero__score-sep {
  font-family: var(--mono);
  font-size: 30px;
  color: var(--gray);
}

.page-home .home-hero__minute {
  display: block;
  text-align: center;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
}

.page-home .home-hero__stats {
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.page-home .home-hero__stats .data-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 13px;
}

.page-home .home-hero__stats .data-line__label {
  color: var(--gray);
}

.page-home .home-hero__stats .data-line__value {
  color: var(--white);
  font-weight: 700;
}

/* ===== 核心数据面板 ===== */
.page-home .home-stats {
  position: relative;
  padding: 72px 0;
  background: var(--bg-deep);
}

.page-home .home-stats::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: var(--panel-2);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.5;
  pointer-events: none;
}

.page-home .home-stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.page-home .home-stats__card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--glass);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-home .home-stats__card:hover {
  border-color: var(--red);
  background: rgba(255, 46, 77, 0.06);
}

.page-home .home-stats__card:hover .home-stats__value,
.page-home .home-stats__card:hover .home-stats__unit {
  color: var(--yellow);
}

.page-home .home-stats__value {
  font-family: var(--mono);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  transition: color 0.2s ease;
}

.page-home .home-stats__card--primary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--red);
  border-color: var(--red);
}

.page-home .home-stats__card--primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}

.page-home .home-stats__card--primary .home-stats__value {
  color: var(--white);
  font-size: 64px;
}

.page-home .home-stats__card--primary .home-stats__desc {
  color: rgba(255, 255, 255, 0.9);
}

.page-home .home-stats__unit {
  font-size: 18px;
  font-weight: 700;
  margin-left: 6px;
  transition: color 0.2s ease;
}

.page-home .home-stats__desc {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
}

.page-home .home-stats__card p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray);
}

.page-home .home-stats__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.page-home .home-stats__bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}

.page-home .home-stats__chart {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.page-home .home-stats__note {
  padding: 24px;
  border-radius: 10px;
  background: var(--panel);
  border-left: 4px solid var(--green);
}

.page-home .home-stats__note h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
}

.page-home .home-stats__note p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
}

.page-home .home-stats__bullet {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.page-home .home-stats__bullet li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--white);
}

.page-home .home-stats__bullet li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  transform: rotate(45deg);
}

/* ===== V3战报专栏 ===== */
.page-home .home-briefing {
  padding: 72px 0;
}

.page-home .home-briefing__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.page-home .home-briefing__feature {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.page-home .home-briefing__media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.page-home .home-briefing__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-briefing__content {
  padding: 24px;
}

.page-home .home-briefing__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.page-home .home-briefing__content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
}

.page-home .home-briefing__content p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

.page-home .btn--text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .btn--text:hover {
  color: var(--white);
}

.page-home .home-briefing__list {
  display: grid;
  gap: 12px;
}

.page-home .home-briefing__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .home-briefing__item:hover {
  border-color: var(--red);
  transform: translateX(4px);
}

.page-home .home-briefing__item:focus-visible,
.page-home .home-gateways__card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.page-home .home-briefing__index {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
}

.page-home .home-briefing__tag {
  display: inline-block;
  margin-bottom: 4px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
}

.page-home .home-briefing__item h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.page-home .home-briefing__item p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
}

/* ===== 快速入口 ===== */
.page-home .home-gateways {
  padding: 72px 0;
  background: var(--bg-deep);
}

.page-home .home-gateways__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.page-home .home-gateways__card {
  position: relative;
  display: block;
  padding: 28px 24px 24px;
  text-decoration: none;
  background: var(--glass-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.page-home .home-gateways__card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.3s ease;
}

.page-home .home-gateways__card:hover::after {
  width: 100%;
}

.page-home .home-gateways__card:hover {
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(0, 245, 160, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.page-home .home-gateways__num {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--red);
}

.page-home .home-gateways__card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
}

.page-home .home-gateways__card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

.page-home .home-gateways__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow);
  transition: color 0.2s ease;
}

.page-home .home-gateways__card:hover .home-gateways__link {
  color: var(--green);
}

.page-home .home-gateways__devices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}

.page-home .home-gateways__device-img {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
}

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

.page-home .home-gateways__device-note {
  padding: 20px;
  border-radius: 8px;
  background: var(--glass-2);
  border: 1px dashed var(--border);
}

.page-home .home-gateways__device-note p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

/* ===== 信任条 ===== */
.page-home .home-trust {
  padding: 28px 0;
  background: rgba(255, 46, 77, 0.08);
  border-top: 1px solid rgba(255, 46, 77, 0.3);
}

.page-home .home-trust p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
}

/* ===== 桌面断点 ===== */
@media (min-width: 768px) {
  .page-home .home-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-stats__card--primary {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 72px 0 88px;
  }

  .page-home .home-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }

  .page-home .home-hero__flow {
    width: 420px;
    left: -60px;
    opacity: 0.4;
  }

  .page-home .home-stats__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(120px, auto);
  }

  .page-home .home-stats__card--primary {
    grid-column: span 1;
    grid-row: span 2;
  }

  .page-home .home-stats__card--primary .home-stats__value {
    font-size: 88px;
  }

  .page-home .home-stats__card--wide {
    grid-column: span 2;
  }

  .page-home .home-stats__bottom {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .page-home .home-briefing__layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
  }

  .page-home .home-briefing__feature {
    grid-template-columns: 340px 1fr;
  }

  .page-home .home-briefing__media {
    min-height: 100%;
  }

  .page-home .home-gateways__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-gateways__devices {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .page-home .home-trust p {
    max-width: 1080px;
  }
}
