.page-home {
  --home-grid-line: rgba(164, 179, 209, 0.16);
  --home-panel-bg: rgba(5, 13, 31, 0.68);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

.page-home .mono {
  font-family: var(--font-data);
  font-feature-settings: "tnum" 1;
}

/* ---------- Hero 首屏 ---------- */
.page-home .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--dark) 0%, var(--navy) 50%, var(--navy-deep) 100%);
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(1.15) contrast(1.08);
}

.page-home .hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(5, 13, 31, 0.92) 0%, rgba(10, 31, 68, 0.6) 45%, rgba(10, 31, 68, 0.18) 100%),
    repeating-linear-gradient(90deg, transparent 0 47px, var(--home-grid-line) 48px);
}

.page-home .hero::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 10%;
  width: 44%;
  height: 66%;
  background: var(--orange);
  clip-path: polygon(18% 0, 100% 0, 92% 100%, 0 100%);
  opacity: 0.18;
  z-index: 1;
}

.page-home .hero::after {
  content: "";
  position: absolute;
  left: -6%;
  bottom: -20%;
  width: 38%;
  height: 52%;
  background: var(--green);
  clip-path: polygon(0 30%, 100% 0, 82% 100%, 0 100%);
  opacity: 0.08;
  z-index: 1;
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 24px;
}

.page-home .hero-index {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  box-sizing: border-box;
}

.page-home .hero-index a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--white);
  background: rgba(10, 31, 68, 0.7);
  border: 1px solid rgba(164, 179, 209, 0.28);
  border-radius: 2px;
  padding: 8px 14px;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.page-home .hero-index a:hover,
.page-home .hero-index a:focus-visible {
  border-color: var(--orange);
  background: rgba(18, 58, 107, 0.85);
  transform: translateY(-2px);
}

.page-home .idx-num {
  color: var(--green);
}

.page-home .breadcrumb-current {
  color: var(--blue-gray);
}

.page-home .hero-kicker {
  display: inline-block;
  margin-bottom: 12px;
}

.page-home .hero-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.page-home .hero-brand {
  display: block;
}

.page-home .hero-tag {
  display: block;
  color: var(--orange);
  font-size: 0.72em;
  margin-top: 6px;
}

.page-home .hero-lead {
  margin: 20px 0 28px;
  max-width: 660px;
  color: var(--light);
  font-size: 16px;
  line-height: 1.8;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  margin-top: 28px;
}

.page-home .hero-panel {
  background: var(--home-panel-bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 20px 22px;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(4px);
}

.page-home .hero-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--blue-gray);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.page-home .hero-panel-head .online-dot {
  animation: page-home-pulse 1.8s ease-in-out infinite;
}

.page-home .hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin: 0;
}

.page-home .hero-stat {
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(43, 58, 103, 0.9);
}

.page-home .hero-stat dt {
  font-size: 12px;
  color: var(--blue-gray);
}

.page-home .hero-stat dd {
  margin: 4px 0 0;
  font-family: var(--font-data);
  font-size: 26px;
  color: var(--green);
}

/* ---------- 区块节奏 ---------- */
.page-home .mini-nav-section,
.page-home .subscribe-help,
.page-home .brand-creed {
  background: var(--navy);
}

.page-home .contact-entry,
.page-home .data-dashboard {
  background: var(--dark);
}

.page-home .split-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.page-home .split-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.15;
}

.page-home .split-head .lead {
  margin: 0;
  max-width: 440px;
}

/* ---------- 小屏导航 ---------- */
.page-home .mini-nav-section {
  position: relative;
}

.page-home .mini-nav-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.page-home .mini-nav-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-home .phone-wrap {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.page-home .phone-frame {
  border: 3px solid var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(5, 13, 31, 0.5);
  aspect-ratio: 400 / 780;
  background: var(--dark);
}

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

.page-home .injury-badge {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 82%;
  background: var(--home-panel-bg);
  border: 1px solid var(--orange);
  border-radius: 4px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.page-home .injury-num {
  font-size: 40px;
  line-height: 1;
  color: var(--orange);
}

.page-home .injury-text {
  font-size: 12px;
  color: var(--light);
}

.page-home .mini-points {
  display: grid;
  gap: 16px;
}

.page-home .point-card {
  padding: 20px;
  position: relative;
  background: rgba(18, 58, 107, 0.5);
  border-color: var(--line);
}

.page-home .point-num {
  display: block;
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 8px;
}

.page-home .point-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 18px;
}

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

.page-home .btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

/* ---------- 联系入口 ---------- */
.page-home .contact-entry {
  border-top: 1px solid var(--line);
}

.page-home .contact-layout {
  display: grid;
  gap: 28px;
}

.page-home .footer-diagram {
  background: var(--dark);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px;
}

.page-home .diagram-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .diagram-item {
  position: relative;
  background: var(--navy-deep);
  color: var(--blue-gray);
  font-size: 13px;
  text-align: center;
  padding: 13px 8px;
  border-radius: 2px;
}

.page-home .diagram-item.active {
  background: var(--orange);
  color: var(--dark);
  font-weight: 700;
}

.page-home .diagram-flag {
  position: absolute;
  top: -13px;
  right: 8px;
  font-size: 11px;
  font-weight: 400;
  background: var(--green);
  color: var(--dark);
  padding: 2px 8px;
  border-radius: 2px;
  z-index: 2;
}

.page-home .diagram-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--blue-gray);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

.page-home .diagram-note .mono {
  color: var(--green);
}

.page-home .contact-cards {
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-home .contact-block {
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  transition: border-color var(--transition), transform var(--transition);
}

.page-home .contact-block:hover,
.page-home .contact-block:focus-visible {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.page-home .contact-label {
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.08em;
}

.page-home .contact-value {
  font-size: 15px;
  overflow-wrap: anywhere;
}

/* ---------- 订阅帮助 ---------- */
.page-home .subscribe-grid {
  display: grid;
  gap: 20px;
}

.page-home .switch-card,
.page-home .realtime-card,
.page-home .metric-card {
  padding: 22px;
  background: rgba(18, 58, 107, 0.55);
  border-color: var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-home .card-head h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
}

.page-home .push-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .push-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light);
  font-size: 15px;
}

.page-home .push-check {
  color: var(--green);
  font-weight: 700;
}

.page-home .note,
.page-home .realtime-copy {
  margin: 0;
  color: var(--blue-gray);
  font-size: 14px;
  line-height: 1.7;
}

.page-home .switch-steps {
  display: grid;
  gap: 10px;
}

.page-home .step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--light);
  background: rgba(10, 31, 68, 0.5);
  border-radius: 2px;
  padding: 10px 12px;
}

.page-home .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
  flex: 0 0 auto;
}

.page-home .metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page-home .metric {
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  text-align: center;
}

.page-home .metric-label {
  display: block;
  font-size: 11px;
  color: var(--blue-gray);
  margin-bottom: 6px;
}

.page-home .metric-value {
  display: block;
  font-size: 20px;
  color: var(--green);
}

.page-home .live-dot,
.page-home .tag[data-tone="green"] {
  animation: page-home-pulse 2s ease-in-out infinite;
}

/* ---------- 数据快览 ---------- */
.page-home .data-dashboard {
  border-top: 1px solid var(--line);
}

.page-home .dashboard-grid {
  display: grid;
  gap: 20px;
}

.page-home .dashboard-card {
  padding: 22px;
  background: rgba(10, 31, 68, 0.5);
  border-color: var(--line);
}

.page-home .match-list,
.page-home .injury-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .match-row,
.page-home .injury-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(18, 58, 107, 0.5);
  border-radius: 2px;
  border-left: 2px solid rgba(164, 179, 209, 0.2);
}

.page-home .match-name,
.page-home .team-name {
  font-size: 14px;
  color: var(--light);
}

.page-home .injury-days {
  color: var(--orange);
  font-size: 16px;
}

.page-home .speed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.page-home .speed-block {
  padding: 16px 12px;
  background: rgba(18, 58, 107, 0.5);
  border: 1px solid rgba(164, 179, 209, 0.14);
  border-radius: 2px;
  text-align: center;
}

.page-home .speed-num {
  display: block;
  font-size: 22px;
  color: var(--green);
  line-height: 1.2;
}

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

.page-home .speed-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-top: 18px;
  border: 1px solid var(--line);
}

.page-home .dashboard-more {
  margin-top: 28px;
  text-align: right;
}

/* ---------- 品牌信条 ---------- */
.page-home .creed-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-home .creed-copy h2 {
  margin: 12px 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.1;
}

.page-home .creed-text {
  color: var(--blue-gray);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.page-home .creed-art {
  position: relative;
}

.page-home .creed-art::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 120px;
  height: 120px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.2;
  z-index: 0;
}

.page-home .creed-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* ---------- 动画 ---------- */
@keyframes page-home-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* ---------- 媒体查询：平板 / 桌面 ---------- */
@media (min-width: 640px) {
  .page-home .diagram-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .page-home .diagram-flag {
    top: 6px;
    right: 6px;
  }

  .page-home .contact-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .page-home .mini-nav-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
  }
}

@media (min-width: 968px) {
  .page-home .hero {
    min-height: 720px;
  }

  .page-home .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }

  .page-home .split-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }

  .page-home .split-head > div {
    max-width: 62%;
  }

  .page-home .subscribe-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-home .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .page-home .speed-card {
    grid-column: 1 / -1;
  }

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

  .page-home .creed-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
