.page-home {
  --home-pad: clamp(18px, 3.2vw, 42px);
  --home-band: clamp(46px, 7vw, 96px);
  --home-line: rgba(28, 122, 86, 0.5);
  display: block;
  color: var(--paper);
}

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

.page-home .hero {
  padding-top: clamp(16px, 3vw, 38px);
  padding-bottom: clamp(30px, 5vw, 62px);
}

.page-home .hero__frame {
  position: relative;
  padding: var(--home-pad);
  padding-left: calc(var(--home-pad) + 14px);
  background:
    radial-gradient(120% 96% at 90% 6%, rgba(28, 122, 86, 0.55) 0%, rgba(10, 58, 42, 0) 62%),
    linear-gradient(158deg, var(--turf-mid) 0%, var(--turf-deep) 68%);
}

.page-home .hero__scale {
  position: absolute;
  left: 6px;
  top: 14px;
  bottom: 14px;
  width: 6px;
  background-image: repeating-linear-gradient(
    to bottom,
    var(--turf-bright) 0 1px,
    transparent 1px 13px
  );
  opacity: 0.8;
  pointer-events: none;
}

.page-home .hero__coords {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--cool-gray);
  text-transform: uppercase;
}

.page-home .hero__grid {
  display: grid;
  gap: clamp(20px, 3vw, 42px);
}

.page-home .hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(29px, 6.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0.34em 0 0.5em;
  color: var(--paper);
}

.page-home .hero__lede {
  font-family: var(--font-body);
  font-size: clamp(14.5px, 1.6vw, 16.5px);
  line-height: 1.82;
  color: rgba(245, 241, 230, 0.85);
  max-width: 46ch;
  margin: 0 0 0.9em;
}

.page-home .hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(14px, 2vw, 24px);
}

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

.page-home .hero__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(28, 122, 86, 0.72);
  filter: saturate(0.86) contrast(1.06);
}

.page-home .hero__cap {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cool-gray);
}

.page-home .hero__overlay {
  position: absolute;
  right: 10px;
  bottom: 30px;
  width: min(300px, 86%);
  padding: 12px 14px 14px;
  border-left: 3px solid var(--whistle);
  border-top: 1px solid rgba(51, 230, 192, 0.34);
  border-right: 1px solid rgba(51, 230, 192, 0.2);
  border-bottom: 1px solid rgba(51, 230, 192, 0.2);
  background: rgba(10, 58, 42, 0.72);
  backdrop-filter: blur(7px);
  transition: border-left-color 0.22s ease, background-color 0.22s ease;
}

.page-home .hero__overlay:hover,
.page-home .hero__overlay:focus-within {
  border-left-color: var(--ref-red);
  background: rgba(10, 58, 42, 0.86);
}

.page-home .hero__overlay-k {
  margin: 0 0 4px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fluoro);
}

.page-home .hero__overlay-v {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-home .hero__overlay .stat {
  display: inline-block;
  padding: 1px 7px 2px;
  background: var(--whistle);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1.25;
}

.page-home .hero__overlay-n {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  color: var(--cool-gray);
}

.page-home .hero__metrics {
  list-style: none;
  margin: clamp(22px, 3vw, 36px) 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--home-line);
  border: 1px solid var(--home-line);
}

.page-home .metric {
  position: relative;
  padding: 16px 16px 18px;
  background: rgba(10, 58, 42, 0.88);
  transition: background-color 0.2s ease;
}

.page-home .metric::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--turf-bright);
  transition: width 0.25s ease, background-color 0.25s ease;
}

.page-home .metric:hover {
  background: rgba(18, 81, 58, 0.96);
}

.page-home .metric:hover::after {
  width: 64px;
  background: var(--ref-red);
}

.page-home .metric__label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--cool-gray);
}

.page-home .metric__value {
  margin: 0.3em 0 0.35em;
  font-family: var(--font-mono);
  font-size: clamp(25px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1;
  color: var(--whistle);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-home .metric__unit {
  font-size: 0.4em;
  font-weight: 500;
  color: rgba(245, 241, 230, 0.7);
}

.page-home .metric__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 241, 230, 0.72);
}

/* ---------- 通用区块标题下方的导语 ---------- */

.page-home .timeline__lede {
  max-width: 62ch;
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 241, 230, 0.78);
}

/* ---------- 赛季刻度 ---------- */

.page-home .timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--home-line);
  border-left: 2px solid var(--turf-bright);
}

.page-home .timeline__tick {
  position: relative;
  padding: 16px 15px 20px;
  background: rgba(7, 19, 14, 0.34);
  transition: background-color 0.22s ease;
}

.page-home .timeline__tick::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--turf-bright);
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: transform 0.26s ease, background-color 0.26s ease;
}

.page-home .timeline__tick:hover {
  background: rgba(18, 81, 58, 0.66);
}

.page-home .timeline__tick:hover::after,
.page-home .timeline__tick:focus-within::after {
  transform: scaleX(1);
  background: var(--ref-red);
}

.page-home .timeline__no {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cool-gray);
  transition: color 0.22s ease;
}

.page-home .timeline__tick:hover .timeline__no {
  color: var(--whistle);
}

.page-home .timeline__label {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--paper);
}

.page-home .timeline__hint {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--cool-gray);
}

/* ---------- 四类入口 ---------- */

.page-home .entries__grid {
  display: grid;
  gap: clamp(14px, 2.4vw, 24px);
}

.page-home .tile {
  position: relative;
  padding: clamp(18px, 2.6vw, 28px);
  background: linear-gradient(168deg, rgba(18, 81, 58, 0.9) 0%, rgba(10, 58, 42, 0.96) 100%);
  border: 1px solid var(--home-line);
  border-left: 3px solid var(--turf-bright);
  transition: transform 0.22s ease, border-left-color 0.22s ease, background 0.22s ease;
}

.page-home .tile:hover,
.page-home .tile:focus-within {
  transform: translateY(-3px);
  border-left-color: var(--ref-red);
  background: linear-gradient(168deg, rgba(28, 122, 86, 0.92) 0%, rgba(10, 58, 42, 0.97) 100%);
}

.page-home .tile__idx {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--whistle);
}

.page-home .tile__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--paper);
}

.page-home .tile__desc {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(245, 241, 230, 0.82);
}

.page-home .tile__extra {
  margin: 0 0 14px;
  padding-left: 10px;
  border-left: 2px solid var(--turf-bright);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--cool-gray);
  transition: border-left-color 0.22s ease, color 0.22s ease;
}

.page-home .tile:hover .tile__extra {
  border-left-color: var(--fluoro);
  color: rgba(245, 241, 230, 0.8);
}

.page-home .tile__figure {
  margin: 0 0 14px;
}

.page-home .tile__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(28, 122, 86, 0.6);
}

.page-home .tile__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fluoro);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.2s ease, color 0.2s ease;
}

.page-home .tile__link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.page-home .tile__link:hover,
.page-home .tile__link:focus-visible {
  border-bottom-color: var(--fluoro);
}

.page-home .tile__link:hover::after {
  transform: translateX(4px);
}

/* ---------- 主场地图 ---------- */

.page-home .pitch__grid {
  display: grid;
  gap: clamp(22px, 3.4vw, 46px);
}

.page-home .pitch__lede {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.82;
  color: rgba(245, 241, 230, 0.8);
  max-width: 52ch;
}

.page-home .pitch__facts {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--home-line);
}

.page-home .pitch__fact {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  padding: 11px 13px;
  background: rgba(7, 19, 14, 0.4);
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(245, 241, 230, 0.8);
}

.page-home .pitch__fact .mono {
  min-width: 52px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--whistle);
}

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

.page-home .pitchmap {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(28, 122, 86, 0.55);
  background:
    repeating-linear-gradient(90deg, rgba(28, 122, 86, 0.2) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(0deg, rgba(28, 122, 86, 0.2) 0 1px, transparent 1px 40px),
    linear-gradient(170deg, rgba(18, 81, 58, 0.5), rgba(7, 19, 14, 0.5));
}

.page-home .pitchmap__line {
  fill: none;
  stroke: var(--turf-bright);
  stroke-width: 1.2;
}

.page-home .pitchmap__dot {
  fill: var(--fluoro);
  opacity: 0.85;
}

.page-home .pitchmap__dot--hot {
  fill: var(--whistle);
  opacity: 1;
}

.page-home .pitch__cap {
  display: block;
  margin-top: 10px;
  padding-left: 10px;
  border-left: 2px solid var(--turf-bright);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--cool-gray);
}

/* ---------- 覆盖与更新 ---------- */

.page-home .rhythm__grid {
  display: grid;
  gap: clamp(22px, 3.2vw, 42px);
}

.page-home .rhythm__lede {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.82;
  color: rgba(245, 241, 230, 0.8);
  max-width: 52ch;
}

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

.page-home .beat__item {
  display: grid;
  gap: 4px;
  padding: 13px 0 14px;
  border-bottom: 1px solid var(--home-line);
  transition: border-bottom-color 0.22s ease;
}

.page-home .beat__item:hover {
  border-bottom-color: var(--ref-red);
}

.page-home .beat__when {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--whistle);
}

.page-home .beat__what {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(245, 241, 230, 0.84);
}

.page-home .rhythm__media {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

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

.page-home .shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(28, 122, 86, 0.6);
}

.page-home .shot--wide img {
  aspect-ratio: 4 / 3;
}

.page-home .shot--tall img {
  aspect-ratio: 1 / 1;
}

.page-home .shot figcaption {
  margin-top: 8px;
  padding-left: 9px;
  border-left: 2px solid var(--turf-bright);
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--cool-gray);
}

/* ---------- 从哪里开始 ---------- */

.page-home .paths {
  display: grid;
  gap: clamp(12px, 1.8vw, 18px);
}

.page-home .path {
  position: relative;
  display: block;
  padding: clamp(18px, 2.4vw, 26px) clamp(18px, 2.4vw, 26px) clamp(18px, 2.4vw, 26px) clamp(52px, 6vw, 74px);
  text-decoration: none;
  color: inherit;
  background: rgba(18, 81, 58, 0.62);
  border: 1px solid var(--home-line);
  border-radius: 0;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.page-home .path:hover,
.page-home .path:focus-visible {
  background: rgba(28, 122, 86, 0.72);
  border-color: var(--ref-red);
  transform: translateY(-2px);
}

.page-home .path__no {
  position: absolute;
  left: clamp(16px, 2vw, 24px);
  top: clamp(18px, 2.4vw, 26px);
  font-size: 22px;
  font-weight: 700;
  color: var(--whistle);
}

.page-home .path__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 700;
  line-height: 1.24;
  color: var(--paper);
}

.page-home .path__text {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.78;
  color: rgba(245, 241, 230, 0.8);
  max-width: 56ch;
}

.page-home .start__foot {
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--home-line);
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--cool-gray);
  max-width: 66ch;
}

.page-home .start__link {
  color: var(--fluoro);
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 230, 192, 0.45);
  transition: border-bottom-color 0.2s ease, color 0.2s ease;
}

.page-home .start__link:hover,
.page-home .start__link:focus-visible {
  color: var(--whistle);
  border-bottom-color: var(--whistle);
}

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

@media (min-width: 640px) {
  .page-home .rhythm__media {
    grid-template-columns: 1.35fr 1fr;
    align-items: start;
  }

  .page-home .shot--tall {
    margin-top: 40px;
  }

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

@media (min-width: 720px) {
  .page-home .hero__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (min-width: 960px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: start;
  }

  .page-home .pitch__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }

  .page-home .rhythm__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
  }
}

@media (min-width: 1080px) {
  .page-home .timeline {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

  .page-home .tile:nth-child(1) {
    grid-column: 1 / span 5;
  }

  .page-home .tile:nth-child(2) {
    grid-column: 6 / span 7;
    margin-top: 46px;
  }

  .page-home .tile:nth-child(3) {
    grid-column: 1 / span 7;
  }

  .page-home .tile:nth-child(4) {
    grid-column: 8 / span 5;
    margin-top: 46px;
  }

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

@media (min-width: 1280px) {
  .page-home .hero__coords {
    font-size: 11px;
  }
}
<<<END>>>
