.page-home {
  --home-gap: clamp(1rem, 3vw, 1.6rem);
  --home-sec: clamp(3.2rem, 8vw, 6rem);
  --home-soft: #c3d4cf;
  background: var(--ink);
  color: var(--paper);
  overflow-x: clip;
}

.page-home .link {
  color: var(--neon-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(127, 243, 224, 0.45);
  padding-bottom: 1px;
}
.page-home .link:hover,
.page-home .link:focus-visible {
  color: var(--neon);
  border-bottom-color: var(--neon);
}

.page-home .section {
  padding-block: var(--home-sec);
}

/* ---------- 滚动进度 ---------- */
.page-home .page-progress {
  position: fixed;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 36vh;
  background: rgba(30, 74, 64, 0.6);
  border-radius: 99px;
  z-index: 30;
  pointer-events: none;
}
.page-home .page-progress i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--neon), var(--neon-soft));
  transform: scaleY(0);
  transform-origin: top center;
  box-shadow: 0 0 10px rgba(22, 224, 192, 0.55);
  transition: transform 0.08s linear;
}

/* ---------- 显现动效 ---------- */
.page-home .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.page-home .reveal.is-in {
  opacity: 1;
  transform: none;
}
.page-home .reveal[data-step="2"] { transition-delay: 0.07s; }
.page-home .reveal[data-step="3"] { transition-delay: 0.14s; }
.page-home .reveal[data-step="4"] { transition-delay: 0.21s; }
.page-home .reveal[data-step="5"] { transition-delay: 0.28s; }

/* ---------- 首屏 ---------- */
.page-home .hero {
  padding-top: clamp(1.6rem, 5vw, 3rem);
  padding-bottom: clamp(1.6rem, 4vw, 3rem);
}
.page-home .hero__grid {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.4rem);
}
.page-home .hero__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.05rem;
}
.page-home .hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: clamp(2rem, 8vw, 4.1rem);
  color: var(--paper);
  text-wrap: balance;
}
.page-home .hero__lead {
  margin: 0;
  max-width: 54ch;
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  line-height: 1.8;
  color: var(--home-soft);
}
.page-home .hero__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.page-home .verbs {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  width: 100%;
}
.page-home .verbs__item {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(12, 42, 35, 0.9), rgba(7, 26, 22, 0.9));
  text-decoration: none;
  color: var(--paper);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.page-home .verbs__item:hover,
.page-home .verbs__item:focus-visible {
  border-color: var(--neon);
  transform: translateY(-3px);
  background: linear-gradient(160deg, rgba(14, 51, 42, 0.95), rgba(9, 33, 28, 0.95));
}
.page-home .verbs__num {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--neon);
}
.page-home .verbs__label {
  font-weight: 700;
  font-size: 0.98rem;
}
.page-home .verbs__desc {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- 比分浮层 ---------- */
.page-home .board {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.page-home .board__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: -1;
}
.page-home .board__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1rem, 3.4vw, 1.5rem);
}
.page-home .board__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.page-home .board__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.page-home .board__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .bowl {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(30, 74, 64, 0.85);
}
.page-home .bowl:last-child {
  border-bottom: 0;
}
.page-home .bowl__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.page-home .bowl__line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.page-home .bowl__team {
  font-size: 0.94rem;
  font-weight: 600;
}
.page-home .bowl__team--r {
  text-align: right;
}
.page-home .bowl__score {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 700;
  color: var(--neon);
  letter-spacing: -0.02em;
}
.page-home .bowl__score--wait {
  color: var(--muted);
  font-size: 0.95rem;
}
.page-home .bowl__score--done {
  color: var(--paper);
  opacity: 0.85;
}
.page-home .bowl__sep {
  padding-inline: 0.1em;
  opacity: 0.6;
}
.page-home .bowl__hint {
  margin: 0.35rem 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--muted);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.page-home .bowl:hover .bowl__hint,
.page-home .bowl:focus-within .bowl__hint {
  max-height: 4rem;
  opacity: 1;
}
.page-home .board__foot {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- 今晚赛程时间轴 ---------- */
.page-home .timeline {
  margin-top: clamp(1.4rem, 4vw, 2.2rem);
}
.page-home .timeline__stream {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1.1rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.page-home .timeline__stream::-webkit-scrollbar {
  height: 6px;
}
.page-home .timeline__stream::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 99px;
}
.page-home .timeline__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex: 0 0 auto;
}
.page-home .tnode {
  position: relative;
  flex: 0 0 248px;
  padding-top: 2.5rem;
  scroll-snap-align: start;
}
.page-home .tnode::before {
  content: "";
  position: absolute;
  top: 1.32rem;
  left: 0;
  right: -1rem;
  height: 2px;
  background: var(--line);
}
.page-home .tnode:last-child::before {
  right: 0;
}
.page-home .tnode::after {
  content: "";
  position: absolute;
  top: 1.32rem;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--neon);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(22, 224, 192, 0.14);
}
.page-home .tnode__time {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  color: var(--neon);
}
.page-home .tcard {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  padding: 0.95rem 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.page-home .tcard:hover {
  border-color: rgba(22, 224, 192, 0.6);
  transform: translateY(-3px);
}
.page-home .tcard__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
}
.page-home .tcard__meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.page-home .tcard__note {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--home-soft);
}
.page-home .timeline__figure {
  position: relative;
  flex: 0 0 244px;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-home .timeline__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  height: auto;
}
.page-home .timeline__figure .figure__cap {
  position: relative;
  padding: 0.75rem 0.9rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--paper);
  background: linear-gradient(0deg, rgba(7, 26, 22, 0.92), rgba(7, 26, 22, 0));
}
.page-home .timeline__foot {
  margin: 0.6rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- 订阅 ---------- */
.page-home .sub__grid {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.6rem);
}
.page-home .sub__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.page-home .sub__lead {
  margin: 0;
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--home-soft);
}
.page-home .steps {
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  width: 100%;
  counter-reset: none;
}
.page-home .steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--neon);
  border-radius: var(--radius-sm);
  background: rgba(12, 42, 35, 0.55);
}
.page-home .steps__num {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--neon);
  line-height: 1.1;
}
.page-home .steps__body {
  display: grid;
  gap: 0.35rem;
}
.page-home .steps__t {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}
.page-home .steps__d {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--home-soft);
}
.page-home .sub__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.2rem;
}
.page-home .sub__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  min-height: 220px;
  background: var(--panel);
}
.page-home .sub__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .sub__figure .figure__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  color: var(--paper);
  background: linear-gradient(0deg, rgba(7, 26, 22, 0.94), rgba(7, 26, 22, 0));
}

/* ---------- 比分说明 ---------- */
.page-home .livelane {
  position: relative;
}
.page-home .livelane::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.page-home .lanes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.page-home .lane {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "n t"
    "n d";
  gap: 0.3rem 1rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, rgba(12, 42, 35, 0.85), rgba(7, 26, 22, 0.45));
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.page-home .lane:hover {
  border-color: rgba(22, 224, 192, 0.55);
  transform: translateY(-2px);
}
.page-home .lane__n {
  grid-area: n;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(22, 224, 192, 0.55);
  line-height: 1;
}
.page-home .lane__t {
  grid-area: t;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
}
.page-home .lane__d {
  grid-area: d;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--home-soft);
}

/* ---------- 家庭日刊 ---------- */
.page-home .daily {
  background: linear-gradient(180deg, rgba(12, 42, 35, 0.55), rgba(7, 26, 22, 0));
}
.page-home .daily__grid {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.6rem);
  align-items: center;
}
.page-home .daily__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.page-home .daily__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .daily__figure .figure__cap {
  display: block;
  padding: 0.7rem 1rem 0.9rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--panel);
}
.page-home .daily__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}
.page-home .daily__lead {
  margin: 0;
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--home-soft);
}
.page-home .daily__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  width: 100%;
}
.page-home .daily__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--home-soft);
}
.page-home .daily__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

/* ---------- 战报 ---------- */
.page-home .recap__grid {
  display: grid;
  gap: 1rem;
}
.page-home .recap__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(14, 51, 42, 0.95), rgba(7, 26, 22, 0.9));
}
.page-home .recap__lead-t {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 800;
  line-height: 1.35;
}
.page-home .recap__lead-d {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--home-soft);
}
.page-home .recap__side {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.page-home .recap__item {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(12, 42, 35, 0.55);
}
.page-home .recap__item-t {
  margin: 0 0 0.3rem;
  font-size: 0.96rem;
  font-weight: 700;
}
.page-home .recap__item-d {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- 四个入口 ---------- */
.page-home .entrygrid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.page-home .entry {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(12, 42, 35, 0.5);
  text-decoration: none;
  color: var(--paper);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.page-home .entry:hover,
.page-home .entry:focus-visible {
  border-color: var(--flame);
  background: rgba(255, 122, 47, 0.09);
  transform: translateY(-3px);
}
.page-home .entry__n {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--flame);
}
.page-home .entry__t {
  font-size: 1.05rem;
  font-weight: 700;
}
.page-home .entry__d {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--muted);
}
.page-home .entries__foot {
  margin: 1.4rem 0 0;
  font-size: 0.86rem;
  line-height: 1.9;
  color: var(--muted);
}

/* ---------- 断点 ---------- */
@media (min-width: 640px) {
  .page-home .lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .entrygrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .timeline__track {
    gap: 1.15rem;
  }
  .page-home .tnode {
    flex-basis: 268px;
  }
}

@media (min-width: 900px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: start;
  }
  .page-home .verbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-home .sub__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    align-items: start;
  }
  .page-home .sub__figure {
    min-height: 100%;
    align-self: stretch;
  }
  .page-home .daily__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
  .page-home .recap__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: stretch;
  }
  .page-home .recap__side {
    align-content: start;
  }
  .page-home .entrygrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .page-home .timeline__figure {
    flex-basis: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .reveal,
  .page-home .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .page-home .reveal[data-step] {
    transition-delay: 0s;
  }
  .page-home .page-progress {
    display: none;
  }
  .page-home .bowl__hint {
    max-height: 4rem;
    opacity: 1;
  }
  .page-home .verbs__item,
  .page-home .tcard,
  .page-home .lane,
  .page-home .entry {
    transition: none;
  }
}
<<<END>>>
