.page-home {
  --home-space: clamp(1.1rem, 3vw, 2.25rem);
  --home-red: #C0392B;
  --home-red-deep: #A22E20;
  --home-blue: #1F3A5F;
  --home-blue-deep: #16283D;
  --home-gold: #D4A017;
  --home-ink: #1E1E1E;
  --home-paper: #F6EFE4;
  --home-bg: #F9F5F0;
  --home-muted: #5D6D7E;
  background: var(--home-bg);
  color: var(--home-ink);
}

.page-home .container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.25rem);
}

.page-home .section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.page-home .section-head {
  margin-bottom: 1.75rem;
}

.page-home .section-head--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-home .section-head--center .section-desc {
  margin-inline: auto;
}

.page-home .section-no {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.3rem 0.8rem;
  border: 2px solid var(--home-red);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--home-red);
  text-transform: uppercase;
}

.page-home .section-title {
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.page-home .section-desc {
  max-width: 38em;
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--home-ink);
  opacity: 0.84;
}

.page-home .media-caption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--home-muted);
}

.page-home .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-bottom: 0.25rem;
  border-bottom: 3px solid var(--home-gold);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--home-red);
  text-decoration: none;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}

.page-home .link-arrow:hover {
  gap: 0.85rem;
  color: var(--home-red-deep);
}

/* ===== 首屏封面 ===== */
.page-home .home-hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  background: var(--home-blue);
  color: var(--home-bg);
}

.page-home .hero-bg,
.page-home .hero-scrim {
  position: absolute;
  inset: 0;
}

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

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

.page-home .hero-scrim {
  z-index: 1;
  background: linear-gradient(180deg, rgba(31, 58, 95, 0.2) 0%, rgba(31, 58, 95, 0.28) 40%, rgba(30, 30, 30, 0.55) 72%, rgba(31, 58, 95, 0.82) 100%);
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(3.5rem, 8vw, 5rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.page-home .hero-crumb {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(249, 245, 240, 0.32);
  background: rgba(30, 30, 30, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 245, 240, 0.8);
  text-decoration: none;
}

.page-home .hero-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.page-home .hero-kicker-row .tag--gold {
  background: rgba(30, 30, 30, 0.32);
  border: 2px solid var(--home-gold);
  color: var(--home-gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-home .hero-edition {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 245, 240, 0.86);
}

.page-home .hero-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-title);
  font-size: clamp(2.75rem, 9vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-shadow: 0 4px 28px rgba(30, 30, 30, 0.34);
}

.page-home .hero-title-accent {
  display: block;
  color: var(--home-gold);
}

.page-home .hero-lead {
  max-width: 34em;
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(249, 245, 240, 0.92);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.page-home .hero-actions .btn--primary {
  border: 3px solid var(--home-red-deep);
  box-shadow: 6px 6px 0 rgba(30, 30, 30, 0.36);
}

.page-home .hero-actions .btn--ghost {
  border: 3px solid rgba(249, 245, 240, 0.7);
  color: var(--home-bg);
  box-shadow: none;
}

.page-home .hero-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  margin: 0 0 2.25rem;
  padding: 1.5rem 0 0;
  list-style: none;
  border-top: 2px solid rgba(249, 245, 240, 0.34);
}

.page-home .hero-index a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--home-bg);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.page-home .hero-index a:hover {
  color: var(--home-gold);
  border-color: var(--home-gold);
}

.page-home .hero-index .num {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--home-gold);
}

.page-home .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.75rem 1.5rem;
  margin: 0;
  padding: 1.25rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(249, 245, 240, 0.26);
}

.page-home .hero-metric {
  position: relative;
  padding-left: 0.8rem;
}

.page-home .hero-metric::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 70%;
  content: "";
  background: var(--home-red);
  transform: translateY(-50%);
}

.page-home .hero-metric .stat-num {
  display: block;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}

.page-home .hero-metric .stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: rgba(249, 245, 240, 0.76);
}

/* ===== 赛前十分钟阵容确认 ===== */
.page-home .home-lineup {
  background: var(--home-bg);
}

.page-home .lineup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.page-home .lineup-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.page-home .lineup-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  background: var(--home-paper);
  border-left: 5px solid var(--home-red);
  box-shadow: 0 6px 0 rgba(31, 58, 95, 0.08);
}

.page-home .lineup-list .badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  background: var(--home-blue);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
  color: #fff;
}

.page-home .lineup-list strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.4;
}

.page-home .lineup-list li div > span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.87rem;
  color: var(--home-blue);
}

.page-home .lineup-team-note {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1.1rem;
  border: 2px dashed rgba(94, 109, 126, 0.36);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--home-muted);
}

.page-home .lineup-visual .media-surface--tall {
  position: relative;
  max-width: 360px;
  margin-inline: auto;
  overflow: hidden;
  border: 5px solid var(--home-blue);
  aspect-ratio: 1 / 2;
  box-shadow: 14px 14px 0 rgba(31, 58, 95, 0.16);
}

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

/* ===== 实时数据总览 ===== */
.page-home .home-data {
  background: var(--home-paper);
  border-top: 3px solid var(--home-red);
  border-bottom: 3px solid var(--home-blue);
}

.page-home .data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.page-home .data-card {
  padding: 1.25rem 1.4rem;
  background: var(--home-bg);
  border: 3px solid var(--home-blue);
  box-shadow: 8px 8px 0 rgba(31, 58, 95, 0.14);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-home .data-card:hover {
  border-color: var(--home-red);
  box-shadow: 12px 12px 0 rgba(192, 57, 43, 0.18);
  transform: translate(-2px, -2px);
}

.page-home .data-card .data-number {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--home-red);
}

.page-home .data-card .data-meta {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--home-blue);
}

.page-home .data-visual {
  margin: 0 0 0.8rem;
  overflow: hidden;
  border: 4px solid var(--home-ink);
  box-shadow: 10px 10px 0 rgba(30, 30, 30, 0.15);
}

.page-home .data-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .data-projects {
  padding-top: 1.5rem;
}

.page-home .data-projects-title {
  margin: 0 0 0.8rem;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
}

.page-home .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ===== 手机看战报案例 ===== */
.page-home .home-rewind {
  background: var(--home-bg);
}

.page-home .rewind-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.page-home .rewind-visual .media-surface--wide {
  overflow: hidden;
  border: 4px solid var(--home-red);
  box-shadow: 12px 12px 0 rgba(192, 57, 43, 0.15);
}

.page-home .rewind-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .rewind-copy .section-head {
  margin-bottom: 1.25rem;
}

.page-home .rewind-steps {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.page-home .rewind-steps li {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.page-home .rewind-steps .step-num {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  background: var(--home-blue);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--home-bg);
}

.page-home .rewind-steps li span:last-child {
  font-size: 0.95rem;
  font-weight: 600;
}

.page-home .rewind-case {
  margin-top: 1.25rem;
  padding: 1.1rem 1.3rem;
  background: var(--home-paper);
  border-left: 5px solid var(--home-gold);
  font-size: 0.95rem;
  line-height: 1.65;
}

.page-home .rewind-case strong {
  color: var(--home-red);
}

/* ===== APP 下载 ===== */
.page-home .home-download {
  background: linear-gradient(180deg, #244566 0%, var(--home-blue) 42%, var(--home-blue-deep) 100%);
  border-block: 8px solid var(--home-gold);
}

.page-home .download-panel {
  padding: clamp(1.4rem, 3.5vw, 2.75rem);
  border: 4px solid rgba(249, 245, 240, 0.36);
  box-shadow: 0 0 0 6px var(--home-blue), 0 0 0 12px rgba(212, 160, 23, 0.65);
}

.page-home .download-panel .section-no {
  border-color: var(--home-gold);
  color: var(--home-gold);
}

.page-home .download-panel .section-title {
  color: #fff;
}

.page-home .download-panel .section-desc {
  color: rgba(249, 245, 240, 0.86);
}

.page-home .download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.page-home .download-actions .btn {
  flex: 1 1 220px;
  justify-content: center;
}

.page-home .download-panel .btn--ghost {
  border-color: rgba(249, 245, 240, 0.7);
  color: var(--home-bg);
  box-shadow: none;
}

.page-home .download-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(249, 245, 240, 0.24);
}

.page-home .download-features li {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-weight: 600;
  color: rgba(249, 245, 240, 0.92);
}

.page-home .download-features .badge {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 2px;
  background: var(--home-gold);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--home-ink);
}

.page-home .download-contact-note {
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: rgba(249, 245, 240, 0.72);
}

/* ===== 最新动态 ===== */
.page-home .home-news {
  background: var(--home-bg);
}

.page-home .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.page-home .news-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--home-paper);
  border: 2px solid rgba(31, 58, 95, 0.2);
  box-shadow: 6px 6px 0 rgba(31, 58, 95, 0.1);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.page-home .news-item:hover {
  box-shadow: 10px 10px 0 rgba(31, 58, 95, 0.14);
  transform: translate(-2px, -2px);
}

.page-home .news-item .tag {
  align-self: flex-start;
}

.page-home .news-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.4;
}

.page-home .news-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.82;
}

.page-home .news-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ===== 响应式增强 ===== */
@media (min-width: 700px) {
  .page-home .data-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .page-home .download-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

  .page-home .hero-metric .stat-num {
    font-size: 1.8rem;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero {
    align-items: center;
  }

  .page-home .hero-inner {
    padding-top: 3rem;
  }

  .page-home .lineup-grid {
    grid-template-columns: 1.05fr 0.85fr;
    gap: 4rem;
  }

  .page-home .lineup-visual {
    order: 2;
  }

  .page-home .rewind-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .page-home .section-desc {
    font-size: 1.05rem;
  }
}

@media (min-width: 1280px) {
  .page-home .hero-actions {
    margin-bottom: 2.25rem;
  }

  .page-home .download-panel {
    padding: 3rem;
  }
}
