/* ========== 首页 page-home ========== */

.page-home {
  --home-shell: min(100% - 2.5rem, 1180px);
}

/* ---------- 首屏 ---------- */
.page-home .hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 9vw, 6.5rem) 0 clamp(2.5rem, 6vw, 5rem);
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(46, 242, 208, 0.14), transparent 58%),
    radial-gradient(90% 80% at 4% 96%, rgba(255, 106, 43, 0.16), transparent 62%),
    var(--ink-900);
  border-bottom: 1px solid var(--line);
}

.page-home .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  pointer-events: none;
}

.page-home .hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.55) 0%, rgba(7, 13, 24, 0.84) 58%, var(--ink-900) 100%);
  pointer-events: none;
}

.page-home .hero-wedge {
  position: absolute;
  right: -8%;
  bottom: -24%;
  width: 64%;
  height: 70%;
  background: linear-gradient(140deg, rgba(46, 242, 208, 0.2), rgba(255, 106, 43, 0) 68%);
  clip-path: polygon(0 44%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
}

.page-home .context-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 clamp(1.1rem, 3.5vw, 1.9rem);
  padding: 0.42rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(15, 26, 46, 0.72);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--steel);
}

.page-home .context-line .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(71, 209, 140, 0.9);
}

.page-home .hero-title {
  margin: 0;
  font-size: clamp(2.5rem, 10.5vw, 5.4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-home .ht-row {
  display: block;
}

.page-home .ht-row--mark {
  color: var(--cyan);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .page-home .ht-row--mark {
    background: linear-gradient(100deg, var(--cyan) 8%, var(--orange) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.page-home .hero-lede {
  max-width: 34ch;
  margin: clamp(1.1rem, 3vw, 1.7rem) 0 0;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.8;
  color: var(--steel);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.4rem, 4vw, 2.2rem);
}

.page-home .hero-actions .btn-primary {
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .hero-actions .btn-primary:hover,
.page-home .hero-actions .btn-primary:focus-visible {
  box-shadow: 0 0 0 1px rgba(255, 106, 43, 0.5), 0 10px 34px rgba(255, 106, 43, 0.42);
  transform: translateY(-2px);
}

.page-home .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 2.25rem;
  list-style: none;
  margin: clamp(1.9rem, 5vw, 2.8rem) 0 0;
  padding: clamp(1.1rem, 3vw, 1.6rem) 0 0;
  border-top: 1px solid var(--line);
}

.page-home .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.page-home .stat-num {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(46, 242, 208, 0.45);
}

.page-home .stat-label {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: var(--steel);
}

/* ---------- 通用区块标题 ---------- */
.page-home .block-head {
  max-width: 44rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.page-home .block-head .eyebrow {
  margin-bottom: 0.5rem;
}

.page-home .block-head .section-title {
  margin: 0 0 0.75rem;
}

.page-home .block-head .section-lede {
  margin: 0;
}

/* ---------- 三步动线 ---------- */
.page-home .flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.page-home .flow-step {
  position: relative;
  padding: 1.5rem 1.3rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--ink-800), var(--ink-900));
  overflow: hidden;
}

.page-home .flow-step::before {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -42%;
  width: 62%;
  height: 72%;
  background: radial-gradient(circle, rgba(46, 242, 208, 0.16), transparent 70%);
  pointer-events: none;
}

.page-home .flow-index {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-shadow: 0 0 16px rgba(255, 106, 43, 0.5);
}

.page-home .flow-title {
  margin: 0.65rem 0 0.5rem;
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--paper);
}

.page-home .flow-text {
  margin: 0 0 1.05rem;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--steel);
}

.page-home .flow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--line-cyan);
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-home .flow-link:hover,
.page-home .flow-link:focus-visible {
  gap: 0.68rem;
  color: var(--focus);
}

/* ---------- 小屏回看 ---------- */
.page-home .replay {
  background:
    radial-gradient(80% 70% at 100% 0%, rgba(46, 242, 208, 0.09), transparent 60%),
    var(--ink-900);
}

.page-home .replay-grid {
  display: grid;
  gap: clamp(1.75rem, 5vw, 3rem);
  align-items: center;
}

.page-home .replay-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--steel);
}

.page-home .replay-points {
  list-style: none;
  margin: 1.35rem 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.page-home .replay-points li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--steel);
}

.page-home .replay-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(46, 242, 208, 0.8);
}

.page-home .replay-points strong {
  color: var(--paper);
  font-weight: 700;
}

.page-home .replay-figure {
  position: relative;
  margin: 0;
}

.page-home .replay-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

/* ---------- 历史交锋 ---------- */
.page-home .stats {
  background: linear-gradient(180deg, var(--ink-900), var(--ink-800) 55%, var(--ink-900));
}

.page-home .stats-board {
  display: grid;
  gap: 1.25rem;
}

.page-home .stats-figure {
  margin: 0;
}

.page-home .stats-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.page-home .stats-control {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--ink-700), var(--ink-900));
}

.page-home .panel-text {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--steel);
}

.page-home .stats-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 2.25rem;
  margin: 1.35rem 0 1.4rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
}

.page-home .stats-facts li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.page-home .fact-num {
  font-family: var(--font-mono);
  font-size: clamp(1.35rem, 4vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  text-shadow: 0 0 16px rgba(255, 106, 43, 0.45);
}

.page-home .fact-label {
  font-size: 0.8125rem;
  color: var(--steel);
}

/* ---------- 友谊赛与预约 ---------- */
.page-home .fixture-layout {
  display: grid;
  gap: 1.25rem;
}

.page-home .fixture-cards {
  display: grid;
  gap: 1rem;
}

.page-home .fixture-card {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 1.2rem 1.15rem 1.4rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, var(--ink-700), var(--ink-800));
  overflow: hidden;
}

.page-home .fixture-card::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -22%;
  width: 50%;
  height: 90%;
  background: linear-gradient(150deg, rgba(46, 242, 208, 0.14), transparent 70%);
  transform: skewX(-18deg);
  pointer-events: none;
}

.page-home .fixture-date {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cyan);
}

.page-home .fixture-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--paper);
}

.page-home .fixture-meta {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  color: var(--steel);
}

.page-home .fixture-card .chip {
  justify-self: start;
}

.page-home .fixture-figure {
  margin: 0;
}

.page-home .fixture-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

/* ---------- 品牌与规模 ---------- */
.page-home .trust {
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(255, 106, 43, 0.08), transparent 62%),
    var(--ink-900);
}

.page-home .trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
}

.page-home .trust-stat {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  background: var(--ink-800);
}

.page-home .trust-num {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(46, 242, 208, 0.4);
}

.page-home .trust-label {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--steel);
}

.page-home .trust-notes {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.25rem;
}

.page-home .trust-note {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(15, 26, 46, 0.6);
}

.page-home .trust-note h3 {
  margin: 0 0 0.6rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--paper);
}

.page-home .trust-note p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--steel);
}

.page-home .trust-note .badge {
  display: inline-block;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.page-home .trust-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  border: 1px solid var(--line-cyan);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(46, 242, 208, 0.11), rgba(255, 106, 43, 0.09));
}

.page-home .trust-cta p {
  flex: 1 1 17rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--paper);
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-home .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .flow-step:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 880px) {
  .page-home .flow-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .page-home .flow-step:last-child {
    grid-column: auto;
  }

  .page-home .stats-board {
    grid-template-columns: 1.05fr 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .page-home .fixture-layout {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
    gap: 1.5rem;
  }

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

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

@media (min-width: 1000px) {
  .page-home .replay-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }

  .page-home .hero-photo {
    width: 68%;
    left: auto;
    right: 0;
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
  }

  .page-home .hero-veil {
    background: linear-gradient(95deg, var(--ink-900) 26%, rgba(7, 13, 24, 0.86) 48%, rgba(7, 13, 24, 0.34) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-actions .btn-primary,
  .page-home .flow-link {
    transition: none;
  }

  .page-home .hero-actions .btn-primary:hover,
  .page-home .hero-actions .btn-primary:focus-visible {
    transform: none;
  }
}
