.page-home {
  --home-gap: clamp(1.5rem, 4vw, 3.5rem);
  --home-radius: 14px;
  overflow: hidden;
  background: var(--bg-main);
  color: var(--text-main);
}

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

/* ===== Hero 首屏 ===== */
.page-home .home-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 0;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.08), transparent 40%),
    var(--bg-main);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
  opacity: 0.75;
}

.page-home .home-hero-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 16px,
    rgba(255, 184, 0, 0.025) 16px 17px
  );
  opacity: 0.55;
}

.page-home .home-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--home-gap);
  position: relative;
  z-index: 1;
}

.page-home .home-hero-copy {
  padding-top: 2rem;
}

.page-home .home-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--text-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.25rem;
}

.page-home .home-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 0.75rem;
  color: var(--text-main);
}

.page-home .home-hero-lead {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--accent-orange);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.page-home .home-hero-desc {
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--text-main);
  max-width: 60ch;
  margin-bottom: 1.75rem;
}

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

.page-home .btn {
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, background-color var(--speed) ease;
}

.page-home .btn-primary {
  background: var(--accent-orange);
  color: var(--text-on-dark);
  font-weight: 500;
  border: 1px solid transparent;
}

.page-home .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 184, 0, 0.25);
}

.page-home .btn-outline {
  border: 1px solid rgba(0, 212, 255, 0.5);
  color: var(--accent-blue);
}

.page-home .btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(0, 212, 255, 0.08);
}

.page-home .btn-ghost {
  border: 1px solid var(--border-light);
  color: var(--text-main);
}

.page-home .btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent-orange);
}

.page-home .home-hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.page-home .home-hero-stats li {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-orange);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.page-home .home-hero-stats strong {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-blue);
  line-height: 1.2;
}

.page-home .home-hero-stats span {
  font-size: var(--text-small);
  color: var(--text-sub);
  margin-top: 0.15rem;
}

.page-home .home-hero-visual {
  position: relative;
}

.page-home .home-hero-img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  clip-path: polygon(0 8%, 100% 0, 88% 100%, 0 92%);
}

.page-home .home-hero-float {
  background: rgba(15, 42, 71, 0.92);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent-orange);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  max-width: 240px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(6px);
}

.page-home .home-hero-float span {
  font-family: var(--font-mono);
  font-size: var(--text-small);
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-home .home-hero-float strong {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent-orange);
}

.page-home .home-hero-float small {
  font-size: var(--text-small);
  color: var(--success);
  margin-top: 0.2rem;
}

/* ===== 通用章节 ===== */
.page-home .home-section {
  padding: clamp(3rem, 7vw, 6rem) 0;
  position: relative;
}

.page-home .home-section + .home-section {
  border-top: 1px solid var(--border-color);
}

.page-home .home-section + .home-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
  transform: skewX(-24deg);
  transform-origin: left;
  opacity: 0.5;
}

.page-home .home-section-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.page-home .home-section-head .coord-num {
  font-size: 3rem;
  line-height: 0.85;
  flex-shrink: 0;
}

.page-home .home-section-head-txt {
  flex: 1;
}

.page-home .home-section-head h2 {
  font-family: var(--font-head);
  font-size: var(--text-h2);
  margin: 0;
  line-height: 1.15;
}

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

.page-home .home-section-slash {
  display: none;
}

.page-home .home-section-desc {
  color: var(--text-sub);
  margin: 0 0 2rem;
  max-width: 70ch;
  line-height: 1.7;
}

/* ===== 01 数据即节奏 ===== */
.page-home .home-rhythm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.page-home .home-rank-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: var(--home-radius);
  padding: 1.25rem;
  position: relative;
  overflow-x: auto;
}

.page-home .home-rank-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
  border-radius: var(--home-radius) var(--home-radius) 0 0;
}

.page-home .home-rank-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--accent-blue);
  letter-spacing: 0.04em;
}

.page-home .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.page-home .data-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: var(--text-small);
  text-transform: uppercase;
  color: var(--text-sub);
  font-weight: 400;
  letter-spacing: 0.08em;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-color);
}

.page-home .data-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(30, 58, 95, 0.6);
}

.page-home .data-table tr:last-child td {
  border-bottom: none;
}

.page-home .data-table td:first-child {
  color: var(--accent-blue);
}

.page-home .home-rank-card tbody tr:first-child td:last-child {
  color: var(--accent-orange);
  font-weight: 700;
}

.page-home .home-countdown {
  background:
    linear-gradient(135deg, rgba(255, 184, 0, 0.12), rgba(0, 212, 255, 0.08)),
    var(--bg-panel);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: var(--home-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-home .home-countdown h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.page-home .home-countdown-nums {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.5rem 0;
}

.page-home .home-cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-deep);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  min-width: 4.2rem;
}

.page-home .home-cd-item .num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--accent-orange);
}

.page-home .home-cd-item small {
  font-size: var(--text-small);
  color: var(--text-sub);
  margin-top: 0.25rem;
  font-family: var(--font-mono);
}

.page-home .home-countdown-nums b {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--accent-blue);
  align-self: center;
  animation: pghome-pulse 1s infinite;
}

@keyframes pghome-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.page-home .home-countdown p {
  color: var(--text-sub);
  font-size: var(--text-small);
  margin: 0.5rem 0 1.25rem;
}

/* ===== 02 快速索引 ===== */
.page-home .home-quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-home .home-quick-card {
  display: block;
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: var(--home-radius);
  padding: 1.5rem;
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, border-color var(--speed) ease;
}

.page-home .home-quick-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 184, 0, 0.08));
  transform: skewX(-15deg);
}

.page-home .home-quick-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.page-home .home-quick-no {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-blue);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.page-home .home-quick-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--text-main);
}

.page-home .home-quick-card p {
  color: var(--text-sub);
  font-size: 0.9rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.page-home .home-quick-more {
  font-family: var(--font-mono);
  font-size: var(--text-small);
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== 03 战报速递 ===== */
.page-home .home-report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.page-home .home-report-media img {
  width: 100%;
  display: block;
  clip-path: polygon(0 0, 100% 4%, 96% 100%, 0 96%);
}

.page-home .home-report-match {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: var(--home-radius);
  padding: 1.5rem;
  text-align: center;
}

.page-home .home-match-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.page-home .home-match-team {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}

.page-home .home-match-score {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent-orange);
  white-space: nowrap;
}

.page-home .home-match-meta {
  color: var(--text-sub);
  font-size: var(--text-small);
  margin: 0.5rem 0 1.25rem;
}

.page-home .home-match-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.page-home .home-match-facts li {
  background: var(--bg-deep);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.page-home .home-match-facts span {
  color: var(--text-sub);
}

.page-home .home-match-facts strong {
  font-family: var(--font-mono);
  color: var(--accent-blue);
  font-weight: 500;
}

.page-home .home-lineup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0;
  text-align: left;
}

.page-home .home-lineup-card {
  background: var(--bg-deep);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 0.85rem;
}

.page-home .home-lineup-card h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--accent-orange);
}

.page-home .home-lineup-card p {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0.25rem 0;
  font-size: 0.8rem;
  color: var(--text-sub);
}

.page-home .home-lineup-card p strong {
  font-family: var(--font-mono);
  color: var(--accent-blue);
  font-weight: 500;
  white-space: nowrap;
}

.page-home .home-report-note {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

/* ===== 04 赛季数据下载 ===== */
.page-home .home-download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.page-home .home-download-media img {
  width: 100%;
  display: block;
  border-radius: var(--home-radius);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}

.page-home .home-download-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.page-home .home-download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-blue);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  transition: transform var(--speed) ease, border-color var(--speed) ease;
}

.page-home .home-download-item:hover {
  transform: translateX(4px);
  border-color: var(--accent-blue);
}

.page-home .home-download-item h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
}

.page-home .home-download-meta {
  margin: 0;
  color: var(--text-sub);
  font-size: var(--text-small);
}

.page-home .home-download-type {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.page-home .home-download-note {
  color: var(--text-sub);
  font-size: 0.9rem;
  margin: 0.5rem 0;
  line-height: 1.7;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

/* ===== 05 品牌脉络 ===== */
.page-home .home-story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.page-home .home-timeline li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1.1rem;
}

.page-home .home-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  background: var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.15);
}

.page-home .home-timeline li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1.1rem;
  bottom: -0.6rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-blue), transparent);
}

.page-home .home-timeline li:last-child::after {
  display: none;
}

.page-home .home-timeline-year {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 0.25rem;
}

.page-home .home-timeline li p {
  margin: 0;
  color: var(--text-sub);
  font-size: 0.9rem;
  line-height: 1.6;
}

.page-home .home-story-visual img {
  width: 100%;
  display: block;
  clip-path: polygon(0 0, 100% 10%, 96% 100%, 2% 92%);
}

/* ===== 响应式：平板与桌面 ===== */
@media (min-width: 768px) {
  .page-home .home-hero {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-h));
  }

  .page-home .home-hero-inner {
    grid-template-columns: 7fr 5fr;
    align-items: end;
    padding-top: var(--header-h);
    padding-bottom: 2rem;
  }

  .page-home .home-hero-img {
    max-height: 640px;
  }

  .page-home .home-hero-float {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    margin: 0;
  }

  .page-home .home-hero-float strong {
    font-size: 1.25rem;
  }

  .page-home .home-hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-section-slash {
    display: block;
    flex: 0 0 auto;
    width: clamp(60px, 8vw, 120px);
    height: 6px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
    transform: skewX(-18deg);
    margin-top: 1.2rem;
    opacity: 0.8;
  }

  .page-home .home-rhythm-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

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

  .page-home .home-report-grid {
    grid-template-columns: 5fr 7fr;
    align-items: center;
  }

  .page-home .home-download-grid {
    grid-template-columns: 6fr 6fr;
    align-items: center;
  }

  .page-home .home-story-layout {
    grid-template-columns: 6fr 6fr;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero-copy {
    padding-top: 4rem;
  }

  .page-home .home-hero-actions .btn {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
  }

  .page-home .home-quick-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .page-home .home-match-team {
    font-size: 1.2rem;
  }

  .page-home .home-match-score {
    font-size: 2.4rem;
  }

  .page-home .home-lineup-card h4 {
    font-size: 1rem;
  }
}
