.page-home {
  overflow-x: hidden;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(46px, 7vw, 96px) clamp(52px, 8vw, 108px);
  background:
    radial-gradient(118% 84% at 84% 4%, rgba(108, 75, 244, 0.42), transparent 62%),
    radial-gradient(96% 78% at 4% 96%, rgba(51, 225, 224, 0.2), transparent 60%),
    var(--space-ink);
}

.page-home .home-hero__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: saturate(0.85);
  -webkit-mask-image: radial-gradient(112% 88% at 62% 42%, #000 18%, transparent 78%);
  mask-image: radial-gradient(112% 88% at 62% 42%, #000 18%, transparent 78%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 7, 15, 0.4) 0%, rgba(5, 7, 15, 0.72) 56%, var(--space-ink) 100%);
}

.page-home .home-hero__orbit {
  position: absolute;
  top: -18%;
  right: -16%;
  z-index: -1;
  width: min(58vw, 640px);
  height: auto;
  opacity: 0.4;
  animation: home-orbit-spin 84s linear infinite;
}

@keyframes home-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.page-home .home-hero__inner {
  position: relative;
  display: grid;
  gap: clamp(30px, 4.5vw, 60px);
  align-items: end;
  grid-template-columns: minmax(0, 1fr);
}

.page-home .home-hero__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: var(--fs-index);
  line-height: var(--lh-index);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--electric-cyan);
}

.page-home .home-hero__body h1 {
  margin: 0;
  max-width: 17ch;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5.4vw, var(--fs-hero));
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--star-white);
}

.page-home .home-hero__lede {
  margin: 22px 0 0;
  max-width: 34em;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--star-grey);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-home .home-hero__meta {
  display: grid;
  gap: 1px;
  padding: 4px;
  border: 1px solid rgba(27, 42, 85, 0.85);
  border-radius: var(--radius-md);
  background: rgba(16, 26, 56, 0.6);
}

.page-home .home-hero__metarow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(11, 18, 38, 0.72);
}

.page-home .home-hero__metak {
  font-size: var(--fs-note);
  line-height: var(--lh-note);
  color: var(--star-grey);
}

.page-home .home-hero__metav {
  font-family: var(--font-mono);
  font-size: var(--fs-h3);
  line-height: 1;
  font-weight: 700;
  color: var(--amber);
}

@media (min-width: 900px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  }
}

/* ---------- 当轮赛果 ---------- */
.page-home .home-board {
  position: relative;
  padding-block: clamp(48px, 6.5vw, 88px);
  background: var(--space-blue);
  background-image: linear-gradient(160deg, rgba(16, 26, 56, 0.9) 0%, rgba(11, 18, 38, 0.4) 64%, transparent 100%);
}

.page-home .home-board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
  opacity: 0.45;
}

.page-home .home-board__grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.page-home .home-board__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(27, 42, 85, 0.75);
}

.page-home .home-board__row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  grid-template-areas:
    "no match flag"
    "no nums  nums";
  gap: 6px 14px;
  align-items: baseline;
  padding: clamp(14px, 2vw, 20px) 4px;
  border-bottom: 1px solid rgba(27, 42, 85, 0.75);
  transition: background-color 0.25s var(--ease);
}

.page-home .home-board__row:hover {
  background-color: rgba(16, 26, 56, 0.55);
}

.page-home .home-board__no {
  grid-area: no;
  font-family: var(--font-mono);
  font-size: var(--fs-index);
  line-height: var(--lh-index);
  color: var(--star-grey);
  letter-spacing: 0.08em;
}

.page-home .home-board__match {
  grid-area: match;
  font-size: var(--fs-body);
  line-height: var(--lh-note);
  font-weight: 600;
  color: var(--star-white);
}

.page-home .home-board__match em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: var(--fs-index);
  color: var(--star-grey);
  padding-inline: 4px;
}

.page-home .home-board__flag {
  grid-area: flag;
  justify-self: end;
  align-self: center;
  padding: 3px 10px;
  font-size: var(--fs-index);
  line-height: var(--lh-index);
  white-space: nowrap;
  color: var(--electric-cyan);
  border: 1px solid rgba(51, 225, 224, 0.35);
  border-radius: 999px;
}

.page-home .home-board__nums {
  grid-area: nums;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.page-home .home-board__ft {
  font-family: var(--font-mono);
  font-size: var(--fs-h3);
  line-height: 1.1;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.04em;
}

.page-home .home-board__ht {
  font-family: var(--font-mono);
  font-size: var(--fs-note);
  line-height: var(--lh-note);
  color: var(--star-grey);
  transition: color 0.25s var(--ease);
}

.page-home .home-board__row:hover .home-board__ht {
  color: var(--star-white);
}

.page-home .home-board__side {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(16, 26, 56, 0.96) 0%, rgba(5, 7, 15, 0.9) 100%);
  border: 1px solid rgba(51, 225, 224, 0.16);
}

.page-home .home-board__sideimg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: 0.82;
  margin-bottom: 20px;
}

.page-home .home-board__sidetitle {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  font-weight: 800;
  color: var(--star-white);
}

.page-home .home-board__sidetext {
  margin: 0 0 18px;
  font-size: var(--fs-note);
  line-height: var(--lh-note);
  color: var(--star-grey);
}

@media (min-width: 900px) {
  .page-home .home-board__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  }
}

/* ---------- 轮次复盘 ---------- */
.page-home .home-rounds {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 6.5vw, 88px);
  background: var(--nebula-indigo);
}

.page-home .home-rounds::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -30%;
  width: min(56vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 196, 234, 0.18), transparent 66%);
  pointer-events: none;
}

.page-home .home-rounds__scale {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  margin-bottom: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(27, 42, 85, 0.9);
  border-radius: var(--radius-md);
  background: rgba(11, 18, 38, 0.6);
}

.page-home .home-rounds__tick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease), background-color 0.22s var(--ease);
}

.page-home .home-rounds__ticknum {
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  line-height: 1;
  font-weight: 700;
  color: var(--star-grey);
  transition: color 0.22s var(--ease);
}

.page-home .home-rounds__ticktag {
  font-size: var(--fs-index);
  line-height: var(--lh-index);
  color: var(--city-sky);
}

.page-home .home-rounds__tick:hover,
.page-home .home-rounds__tick:focus-visible {
  border-color: rgba(51, 225, 224, 0.5);
  background: rgba(51, 225, 224, 0.08);
}

.page-home .home-rounds__tick:hover .home-rounds__ticknum,
.page-home .home-rounds__tick:focus-visible .home-rounds__ticknum {
  color: var(--electric-cyan);
}

.page-home .home-rounds__tick--now {
  border-color: rgba(127, 196, 234, 0.6);
  background: rgba(127, 196, 234, 0.12);
}

.page-home .home-rounds__tick--now .home-rounds__ticknum {
  color: var(--city-sky);
}

.page-home .home-rounds__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  border-top: 1px solid rgba(27, 42, 85, 0.9);
}

.page-home .home-rounds__item {
  padding: clamp(20px, 3vw, 28px) 0;
  border-bottom: 1px solid rgba(27, 42, 85, 0.9);
}

.page-home .home-rounds__item--focus {
  border-left: 2px solid var(--city-sky);
  padding-left: clamp(14px, 2vw, 22px);
  background: linear-gradient(90deg, rgba(127, 196, 234, 0.08), transparent 70%);
}

.page-home .home-rounds__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.page-home .home-rounds__badge {
  font-family: var(--font-mono);
  font-size: var(--fs-index);
  line-height: var(--lh-index);
  letter-spacing: 0.12em;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  color: var(--city-sky);
  background: rgba(127, 196, 234, 0.12);
  white-space: nowrap;
}

.page-home .home-rounds__badge--now {
  color: var(--space-ink);
  background: var(--city-sky);
}

.page-home .home-rounds__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  font-weight: 800;
  color: var(--star-white);
}

.page-home .home-rounds__text {
  margin: 12px 0 0;
  max-width: 36em;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--star-grey);
}

.page-home .home-rounds__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin: 18px 0 0;
}

.page-home .home-rounds__stats > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-home .home-rounds__stats dt {
  font-size: var(--fs-index);
  line-height: var(--lh-index);
  color: var(--star-grey);
}

.page-home .home-rounds__stats dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  line-height: 1;
  font-weight: 700;
  color: var(--amber);
}

.page-home .home-rounds__more {
  margin: clamp(26px, 4vw, 38px) 0 0;
}

/* ---------- 集锦回看 ---------- */
.page-home .home-reels {
  padding-block: clamp(48px, 6.5vw, 88px);
  background:
    radial-gradient(90% 74% at 10% 0%, rgba(51, 225, 224, 0.12), transparent 60%),
    var(--space-ink);
}

.page-home .home-reels__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(244px, 78%);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}

.page-home .home-reels__track::-webkit-scrollbar {
  height: 6px;
}

.page-home .home-reels__track::-webkit-scrollbar-thumb {
  background: var(--orbit-blue);
  border-radius: 999px;
}

.page-home .home-reels__card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(11, 18, 38, 0.9);
  border: 1px solid rgba(27, 42, 85, 0.9);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-home .home-reels__card:hover {
  border-color: rgba(51, 225, 224, 0.45);
  transform: translateY(-3px);
}

.page-home .home-reels__cover {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
}

.page-home .home-reels__cover span {
  font-family: var(--font-mono);
  font-size: var(--fs-h3);
  letter-spacing: 0.1em;
  color: rgba(245, 247, 255, 0.72);
}

.page-home .home-reels__cover--a {
  background: linear-gradient(135deg, #1B2A55 0%, #0E2C28 100%);
}

.page-home .home-reels__cover--b {
  background: linear-gradient(135deg, #101A38 0%, #3A1030 100%);
}

.page-home .home-reels__cover--c {
  background: linear-gradient(135deg, #0B1226 0%, #1B2A55 100%);
}

.page-home .home-reels__cover--d {
  background: linear-gradient(135deg, #0E2C28 0%, #101A38 100%);
}

.page-home .home-reels__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 20px;
}

.page-home .home-reels__stamp {
  font-family: var(--font-mono);
  font-size: var(--fs-index);
  line-height: var(--lh-index);
  letter-spacing: 0.08em;
  color: var(--electric-cyan);
}

.page-home .home-reels__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: 1.35;
  font-weight: 800;
  color: var(--star-white);
}

.page-home .home-reels__desc {
  margin: 0;
  font-size: var(--fs-note);
  line-height: var(--lh-note);
  color: var(--star-grey);
}

.page-home .home-reels__more {
  margin: clamp(22px, 3vw, 30px) 0 0;
}

@media (min-width: 900px) {
  .page-home .home-reels__track {
    grid-auto-columns: minmax(300px, 32%);
  }
}

/* ---------- 转会窗口 ---------- */
.page-home .home-window {
  padding-block: clamp(48px, 6.5vw, 88px);
  background: var(--deep-teal);
}

.page-home .home-window__grid {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.page-home .home-window__figure {
  margin: 0;
}

.page-home .home-window__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(51, 225, 224, 0.16);
}

.page-home .home-window__figure figcaption {
  margin-top: 12px;
  font-size: var(--fs-index);
  line-height: var(--lh-index);
  color: var(--star-grey);
}

.page-home .home-window__lede {
  margin: 14px 0 0;
  max-width: 34em;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--star-grey);
}

.page-home .home-window__segs {
  display: grid;
  gap: 16px;
  margin-top: clamp(24px, 3.4vw, 34px);
  grid-template-columns: minmax(0, 1fr);
}

.page-home .home-window__seg {
  padding: 18px 20px 8px;
  border-radius: var(--radius-md);
  background: rgba(5, 7, 15, 0.46);
  border: 1px solid rgba(51, 225, 224, 0.14);
}

.page-home .home-window__seghead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(51, 225, 224, 0.25);
}

.page-home .home-window__segtag {
  font-family: var(--font-mono);
  font-size: var(--fs-note);
  line-height: var(--lh-note);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .home-window__segtag--summer {
  color: var(--electric-cyan);
}

.page-home .home-window__segtag--winter {
  color: var(--city-sky);
}

.page-home .home-window__segtime {
  font-family: var(--font-mono);
  font-size: var(--fs-index);
  color: var(--star-grey);
}

.page-home .home-window__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-window__item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(51, 225, 224, 0.1);
}

.page-home .home-window__item:last-child {
  border-bottom: none;
}

.page-home .home-window__text {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--star-white);
}

.page-home .home-window__src {
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: var(--fs-index);
  line-height: var(--lh-index);
  color: var(--star-grey);
}

.page-home .home-window__more {
  margin: clamp(22px, 3vw, 30px) 0 0;
}

@media (min-width: 900px) {
  .page-home .home-window__grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  }

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

  .page-home .home-window__figure {
    position: sticky;
    top: calc(var(--rail-w) * 0 + 40px);
  }
}

/* ---------- 四条内容线 ---------- */
.page-home .home-paths {
  padding-block: clamp(48px, 6.5vw, 88px) clamp(56px, 7vw, 96px);
  background: var(--space-blue);
}

.page-home .home-paths__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(27, 42, 85, 0.85);
}

.page-home .home-paths__item {
  border-bottom: 1px solid rgba(27, 42, 85, 0.85);
}

.page-home .home-paths__link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  grid-template-areas:
    "num name go"
    "num desc desc";
  gap: 6px 16px;
  align-items: baseline;
  padding: clamp(18px, 2.6vw, 26px) 6px;
  text-decoration: none;
  transition: background-color 0.25s var(--ease);
}

.page-home .home-paths__link:hover,
.page-home .home-paths__link:focus-visible {
  background-color: rgba(16, 26, 56, 0.7);
}

.page-home .home-paths__num {
  grid-area: num;
  font-family: var(--font-mono);
  font-size: var(--fs-note);
  line-height: var(--lh-note);
  letter-spacing: 0.08em;
  color: var(--star-grey);
  transition: color 0.25s var(--ease);
}

.page-home .home-paths__link:hover .home-paths__num {
  color: var(--electric-cyan);
}

.page-home .home-paths__name {
  grid-area: name;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  font-weight: 800;
  color: var(--star-white);
}

.page-home .home-paths__desc {
  grid-area: desc;
  font-size: var(--fs-note);
  line-height: var(--lh-note);
  color: var(--star-grey);
}

.page-home .home-paths__go {
  grid-area: go;
  font-family: var(--font-mono);
  font-size: var(--fs-h3);
  line-height: 1;
  color: var(--electric-cyan);
  transition: transform 0.25s var(--ease);
}

.page-home .home-paths__link:hover .home-paths__go {
  transform: translateX(4px);
}

.page-home .home-paths__cta {
  display: grid;
  gap: 18px;
  margin-top: clamp(30px, 4vw, 46px);
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(108, 75, 244, 0.22) 0%, rgba(51, 225, 224, 0.1) 100%);
  border: 1px solid rgba(108, 75, 244, 0.32);
}

.page-home .home-paths__ctatext {
  margin: 0;
  max-width: 36em;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--star-white);
}

.page-home .home-paths__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 900px) {
  .page-home .home-paths__cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .page-home .home-paths__link {
    grid-template-columns: 56px minmax(0, 3fr) minmax(0, 6fr) auto;
    grid-template-areas: "num name desc go";
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__orbit {
    animation: none;
  }

  .page-home .home-reels__card,
  .page-home .home-paths__go {
    transition: none;
  }
}
