.page-home {
  --home-shell: min(100% - 40px, 1180px);
  background: var(--deep);
  color: var(--ink);
}

/* ---------- 首屏 ---------- */

.page-home__hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 44px 0 0;
  background: var(--deep);
}

.page-home__hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 42%;
  opacity: 0.3;
  z-index: -2;
}

.page-home__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(152deg, rgba(6, 26, 46, 0.46) 0%, rgba(6, 26, 46, 0.9) 52%, var(--deep) 100%),
    radial-gradient(118% 78% at 90% 6%, rgba(34, 231, 214, 0.2), rgba(34, 231, 214, 0) 60%);
}

.page-home__hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 38px;
  padding-bottom: 58px;
}

.page-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mist);
}

.page-home__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.18);
}

.page-home__title {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-size: clamp(34px, 7.6vw, 66px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
}

.page-home__intro {
  max-width: 36em;
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home__hero-body {
  display: grid;
  gap: 34px;
}

/* 时间轴 */

.page-home__rail {
  position: relative;
  margin: 0;
  padding: 4px 0 4px 28px;
  list-style: none;
}

.page-home__rail::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan) 0%, rgba(34, 231, 214, 0.42) 55%, rgba(34, 231, 214, 0.06) 100%);
}

.page-home__rail .rail__item {
  position: relative;
  padding: 0 0 26px;
}

.page-home__rail .rail__item:last-child {
  padding-bottom: 0;
}

.page-home__rail .rail__item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--deep);
  border: 2px solid var(--cyan);
}

.page-home__rail .rail__item[data-state="live"]::before {
  background: var(--live);
  border-color: var(--live);
  box-shadow: 0 0 0 5px rgba(255, 59, 59, 0.16);
}

.page-home__rail .rail__item[data-state="done"]::before {
  background: var(--moss);
  border-color: var(--moss);
}

.page-home__rail-when {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.page-home__rail-title {
  margin: 0 0 4px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.page-home__rail-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-faint);
}

/* 比分板 */

.page-home__board {
  position: relative;
  order: -1;
  padding: 26px 22px 34px;
  background: linear-gradient(140deg, rgba(12, 44, 74, 0.96) 0%, rgba(4, 18, 31, 0.99) 72%);
  clip-path: polygon(0 0, 100% 22px, 100% 100%, 0 100%);
}

.page-home__board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0%, rgba(34, 231, 214, 0) 72%);
}

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

.page-home__board-round {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--mist);
}

.page-home__score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 8px;
  font-family: var(--font-num);
  font-size: clamp(72px, 15vw, 132px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #fff;
}

.page-home__score-sep {
  font-size: 0.5em;
  color: var(--cyan);
}

.page-home__score-note {
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}

.page-home__board .countdown {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}

.page-home__board .countdown__value {
  font-family: var(--font-num);
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: -0.02em;
}

.page-home__board .countdown__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--mist);
}

/* ---------- 赛前首发 ---------- */

.page-home__lineup {
  background: var(--deep);
}

.page-home__lineup-grid {
  display: grid;
  gap: 34px;
}

.page-home__lead {
  max-width: 36em;
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-home__checklist {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-home__checklist li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page-home__checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 2px;
  background: var(--cyan);
}

.page-home__metric {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page-home__metric .num {
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.page-home__lineup-shot {
  margin: 0;
  max-width: 420px;
  justify-self: center;
  width: 100%;
}

/* ---------- 集锦卡带 ---------- */

.page-home__reels {
  overflow: hidden;
}

.page-home__reels-head {
  margin-bottom: 30px;
}

.page-home__reel-track {
  display: flex;
  gap: 18px;
  padding: 4px 20px 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.page-home__reel-track:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.page-home__reel {
  flex: 0 0 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 0 0 20px;
  background: linear-gradient(180deg, rgba(12, 44, 74, 0.72) 0%, rgba(6, 26, 46, 0.24) 100%);
  border-top: 2px solid var(--cyan);
}

.page-home__reel-visual {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(34, 231, 214, 0.14), rgba(6, 26, 46, 0.9));
}

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

.page-home__reel-visual--num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(196, 98, 63, 0.28), rgba(6, 26, 46, 0.94) 68%);
}

.page-home__reel-visual--num .num {
  font-family: var(--font-num);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mist);
}

.page-home__reel-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 16px 10px;
}

.page-home__reel-meta .num {
  font-family: var(--font-num);
  font-size: 13px;
  color: var(--ink-faint);
}

.page-home__reel-title {
  margin: 0 16px 8px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
}

.page-home__reel-note {
  margin: 0 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-faint);
}

.page-home__reels-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 8px 0 0;
}

.page-home__reels-tip {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
}

/* ---------- 费用 ---------- */

.page-home__fees {
  background: var(--deep);
}

.page-home__fee-sheet {
  padding: 30px 24px 34px;
}

.page-home__fee-grid {
  display: grid;
  gap: 16px;
  margin: 26px 0 24px;
}

.page-home__fee-cell {
  padding: 20px 18px;
  background: rgba(6, 26, 46, 0.06);
  border-left: 4px solid var(--cyan);
}

.page-home__fee-cell--gold {
  border-left-color: var(--gold);
}

.page-home__fee-label {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--stone);
}

.page-home__fee-value {
  margin: 0 0 10px;
  font-family: var(--font-num);
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--abyss);
}

.page-home__fee-cell--gold .page-home__fee-value {
  color: #8a5f10;
}

.page-home__fee-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #3b4a55;
}

.page-home__fee-list {
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid rgba(6, 26, 46, 0.14);
  display: grid;
  gap: 12px;
}

.page-home__fee-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #3b4a55;
}

.page-home__fee-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 1px;
  background: var(--clay);
}

/* ---------- 档案 ---------- */

.page-home__archive-grid {
  display: grid;
  gap: 34px;
}

.page-home__archive-shot {
  margin: 0;
}

.page-home__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 22px;
}

.page-home__records {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.page-home__record {
  border-bottom: 1px solid var(--rule-soft);
}

.page-home__record details {
  padding: 0;
}

.page-home__record summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  padding: 16px 4px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  list-style: none;
}

.page-home__record summary::-webkit-details-marker {
  display: none;
}

.page-home__record summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-num);
  font-size: 18px;
  color: var(--cyan);
}

.page-home__record details[open] summary::after {
  content: "–";
}

.page-home__record summary:hover {
  color: #fff;
}

.page-home__record summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.page-home__record-round {
  flex: 0 0 auto;
  padding: 3px 9px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--paper);
  background: var(--clay);
}

.page-home__record-body {
  margin: 0 0 18px;
  padding: 0 4px 0 4px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-faint);
}

.page-home__empty {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--mist);
}

/* ---------- 长期在用 ---------- */

.page-home__why-head {
  margin-bottom: 32px;
}

.page-home__why-grid {
  display: grid;
  gap: 1px;
  background: var(--rule-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.page-home__why-cell {
  padding: 26px 20px;
  background: var(--deep);
}

.page-home__why-num {
  margin: 0 0 8px;
  font-family: var(--font-num);
  font-size: clamp(30px, 7.6vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cyan);
}

.page-home__why-cell--wide .page-home__why-num {
  font-size: clamp(26px, 6.4vw, 36px);
  color: var(--gold);
}

.page-home__why-label {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.page-home__why-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-faint);
}

.page-home__why-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

/* ---------- 响应式 ---------- */

@media (min-width: 720px) {
  .page-home__hero {
    padding-top: 56px;
  }

  .page-home__fee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .page-home__why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home__reel {
    flex-basis: 300px;
  }
}

@media (min-width: 980px) {
  .page-home__hero-inner {
    gap: 52px;
    padding-bottom: 76px;
  }

  .page-home__hero-body {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 52px;
    align-items: start;
  }

  .page-home__board {
    order: 0;
    padding: 34px 32px 42px;
  }

  .page-home__lineup-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 60px;
    align-items: center;
  }

  .page-home__lineup-shot {
    justify-self: end;
  }

  .page-home__archive-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 56px;
    align-items: start;
  }

  .page-home__why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home__why-cell--wide .page-home__why-num {
    font-size: 30px;
  }

  .page-home__reel-track {
    padding-left: max(20px, calc((100vw - 1180px) / 2));
    padding-right: max(20px, calc((100vw - 1180px) / 2));
  }

  .page-home__reel {
    flex-basis: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home__dot {
    box-shadow: none;
  }
}
</final>
