.page-home {
  --home-radius-lg: 28px;
  --home-radius-md: 20px;
  --home-line: rgba(108, 122, 115, .34);
  --home-glow: rgba(200, 242, 74, .55);
  background: var(--stand);
  color: var(--navy);
  overflow-x: hidden;
}

/* ============ HERO ============ */
.page-home .hero {
  position: relative;
  background: var(--pitch);
  color: var(--white);
  padding: 40px 0 64px;
  overflow: hidden;
}

.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .04) 0 2px, transparent 2px 60px),
    radial-gradient(110% 78% at 96% 4%, rgba(76, 138, 94, .55), transparent 62%),
    radial-gradient(80% 60% at 4% 96%, rgba(22, 50, 79, .55), transparent 68%);
  pointer-events: none;
}

.page-home .hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
}

.page-home .hero__context {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .62);
}

.page-home .hero__context .mono {
  color: var(--lime);
}

.page-home .hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 6px 16px 6px 12px;
  border: 1px solid rgba(200, 242, 74, .42);
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .86);
}

.page-home .hero__kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whistle);
  box-shadow: 0 0 0 4px rgba(242, 112, 31, .22);
}

.page-home .hero__title {
  margin: 20px 0 22px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 8.4vw, 96px);
  line-height: .98;
  letter-spacing: -.02em;
  overflow-wrap: break-word;
}

.page-home .hero__title-slant {
  display: inline-block;
  margin-top: .08em;
  padding: .02em .2em .1em;
  font-style: normal;
  color: var(--pitch);
  background: var(--lime);
  clip-path: polygon(1.5% 10%, 100% 0%, 98.5% 92%, 0% 100%);
  transform: rotate(-1.2deg);
}

.page-home .hero__lede {
  max-width: 46ch;
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .84);
}

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

.page-home .hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px dashed rgba(255, 255, 255, .28);
}

.page-home .hero__facts > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .hero__facts dt {
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .56);
}

.page-home .hero__facts dd {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  color: var(--lime);
}

.page-home .hero__frame {
  position: relative;
  margin: 0;
  padding: 14px 14px 0;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--home-radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .02));
  transform: rotate(.8deg);
}

.page-home .hero__frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(200, 242, 74, .32);
  border-radius: calc(var(--home-radius-lg) - 8px);
  pointer-events: none;
}

.page-home .hero__frame-inner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--home-radius-lg) - 12px);
}

.page-home .hero__frame-inner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.page-home .hero__ruler {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 8px;
  background: repeating-linear-gradient(90deg, rgba(200, 242, 74, .85) 0 1px, transparent 1px 14px);
  opacity: .6;
  pointer-events: none;
}

.page-home .hero__tickline {
  position: absolute;
  z-index: 2;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 8px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .5) 0 1px, transparent 1px 26px);
  opacity: .5;
  pointer-events: none;
}

.page-home .hero__frame-note {
  position: relative;
  z-index: 2;
  padding: 14px 4px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .74);
}

.page-home .hero__frame-tag {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--pitch);
  background: var(--lime);
}

.page-home .hero__annotation {
  position: absolute;
  top: 24px;
  right: -6px;
  color: rgba(200, 242, 74, .6);
}

/* ============ 通用段落 ============ */
.page-home .section {
  padding: 68px 0;
}

.page-home .section__head {
  margin-bottom: 40px;
}

.page-home .section__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--navy);
}

.page-home .lede {
  max-width: 64ch;
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.page-home .plaque {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-lg);
  background: var(--white);
  box-shadow: 0 22px 44px -34px rgba(16, 54, 42, .6);
}

.page-home .plaque img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .plaque figcaption {
  padding: 16px 20px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  border-top: 1px dashed var(--home-line);
}

/* ============ 01 战术板索引 ============ */
.page-home .board-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

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

.page-home .board__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px 40px 20px 0;
  border-bottom: 1px dashed var(--home-line);
  transition: background-color var(--dur) var(--ease);
}

.page-home .board__item:first-child {
  border-top: 1px dashed var(--home-line);
}

.page-home .board__num {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.4vw, 66px);
  font-weight: 900;
  line-height: .86;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--moss);
  transition: -webkit-text-stroke-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .board__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.page-home .board__title {
  display: block;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
}

.page-home .board__desc {
  display: block;
  margin-top: 6px;
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--ink-soft);
}

.page-home .board__side {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--stone);
  opacity: .55;
  transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-home .board__item:hover .board__num,
.page-home .board__item:focus-within .board__num {
  -webkit-text-stroke-color: var(--whistle);
  transform: translateX(3px);
}

.page-home .board__item:hover .board__side,
.page-home .board__item:focus-within .board__side {
  opacity: 1;
  color: var(--whistle);
}

.page-home .board__link:focus-visible {
  outline: 2px solid var(--whistle);
  outline-offset: 4px;
  border-radius: 6px;
}

/* ============ 02 客场胜率速查 ============ */
.page-home .strip {
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-lg);
  background: var(--white);
}

.page-home .strip__filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 24px 22px;
  background: linear-gradient(180deg, rgba(221, 233, 220, .68), rgba(255, 255, 255, 0));
  border-bottom: 1px dashed var(--home-line);
}

.page-home .strip__key {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--stone);
}

.page-home .strip__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .strip__result {
  padding: 22px 18px 26px;
}

.page-home .strip__result-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .strip__result-note {
  font-size: 12.5px;
  color: var(--stone);
  letter-spacing: .02em;
}

.page-home .strip__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-home .strip__caption {
  caption-side: bottom;
  padding-top: 14px;
  font-size: 12.5px;
  text-align: left;
  color: var(--stone);
}

.page-home .strip-sec .plaque--viz {
  max-width: 520px;
  margin-top: 44px;
  border-radius: var(--home-radius-lg);
}

.page-home .strip-sec .plaque--viz img {
  aspect-ratio: 1 / 1;
}

/* ============ 03 四个数字 ============ */
.page-home .pulse-sec {
  position: relative;
}

.page-home .pulse-sec::before {
  content: "";
  position: absolute;
  inset: 12% -12% 6% -12%;
  background: radial-gradient(52% 42% at 22% 30%, rgba(242, 112, 31, .14), transparent 70%),
              radial-gradient(48% 40% at 84% 68%, rgba(76, 138, 94, .18), transparent 72%);
  pointer-events: none;
}

.page-home .pulse {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .pulse__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px 28px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-md);
  background: var(--white);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .pulse__card:hover {
  border-color: var(--whistle);
  transform: translateY(-3px);
}

.page-home .pulse__label {
  margin: 0;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--stone);
}

.page-home .pulse__value {
  margin: 0;
  font-size: clamp(40px, 7vw, 60px);
  font-weight: 700;
  line-height: 1;
  color: var(--pitch);
  letter-spacing: -.01em;
}

.page-home .pulse__unit {
  margin-left: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--stone);
}

.page-home .pulse__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-soft);
}

.page-home .pulse__meter {
  height: 10px;
  border-radius: var(--r-pill);
  background: var(--turf);
  overflow: hidden;
}

.page-home .pulse__meter span {
  display: block;
  height: 100%;
  width: var(--w, 60%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--moss), var(--lime));
}

.page-home .pulse__clock {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .pulse__clock li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--turf);
}

.page-home .pulse__clock span {
  font-size: 22px;
  font-weight: 700;
  color: var(--pitch);
}

.page-home .pulse__clock em {
  font-style: normal;
  font-size: 12.5px;
  color: var(--stone);
}

.page-home .pulse__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.page-home .pulse__spec {
  margin: 0;
  display: grid;
  gap: 12px;
}

.page-home .pulse__spec > div {
  display: grid;
  gap: 3px;
  padding-left: 14px;
  border-left: 2px solid var(--moss);
}

.page-home .pulse__spec dt {
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--stone);
}

.page-home .pulse__spec dd {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--navy);
}

.page-home .pulse__card--spec::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 242, 74, .5), transparent 68%);
  pointer-events: none;
}

/* ============ 04 哨声说明 ============ */
.page-home .whistle-sec__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding: 30px 24px 34px;
  border-radius: var(--home-radius-lg);
  background: linear-gradient(150deg, var(--pitch), #0B271E 70%);
  color: var(--white);
  border: 1px solid rgba(200, 242, 74, .22);
}

.page-home .whistle-sec__ring {
  position: relative;
  width: 84px;
  height: 84px;
  flex: none;
}

.page-home .whistle-sec__ring span {
  position: absolute;
  border-radius: 50%;
  background: conic-gradient(from 20deg,
      var(--whistle) 0 88deg, transparent 88deg 138deg,
      var(--whistle) 138deg 226deg, transparent 226deg 276deg,
      var(--whistle) 276deg 360deg);
  -webkit-mask: radial-gradient(circle, transparent 60%, #000 62%);
  mask: radial-gradient(circle, transparent 60%, #000 62%);
}

.page-home .whistle-sec__ring span:nth-child(1) { inset: 0; opacity: .32; }
.page-home .whistle-sec__ring span:nth-child(2) { inset: 15px; opacity: .58; }
.page-home .whistle-sec__ring span:nth-child(3) { inset: 30px; opacity: 1; }

.page-home .whistle-sec__body .section__title {
  color: var(--white);
  font-size: clamp(22px, 3.2vw, 32px);
  margin-bottom: 14px;
}

.page-home .whistle-sec__body p {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.76;
  color: rgba(255, 255, 255, .84);
  max-width: 68ch;
}

.page-home .whistle-sec__types {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
}

.page-home .whistle-sec__types li {
  padding: 6px 14px;
  border: 1px solid rgba(200, 242, 74, .5);
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--lime);
}

.page-home .whistle-sec__fallback {
  padding: 12px 16px;
  border-left: 3px solid var(--whistle);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, .06);
  font-size: 14px !important;
}

/* ============ 05 三段时间轴 ============ */
.page-home .tl-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.page-home .tl {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 0 26px;
}

.page-home .tl::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--moss) 0 6px, transparent 6px 14px);
}

.page-home .tl__item {
  position: relative;
  padding: 0 0 30px;
}

.page-home .tl__item:last-child {
  padding-bottom: 0;
}

.page-home .tl__item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--whistle);
  box-shadow: 0 0 0 4px rgba(242, 112, 31, .2);
}

.page-home .tl__stage {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--whistle);
}

.page-home .tl__title {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
}

.page-home .tl__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.76;
  color: var(--ink-soft);
}

/* ============ 收口 ============ */
.page-home .coda {
  position: relative;
  margin-top: 12px;
  padding: 76px 0 88px;
  background: var(--pitch);
  color: var(--white);
  overflow: hidden;
}

.page-home .coda::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .035) 0 2px, transparent 2px 56px);
  pointer-events: none;
}

.page-home .coda .wrap {
  position: relative;
}

.page-home .coda__mark {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--lime);
}

.page-home .coda__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4.4vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.01em;
}

.page-home .coda__lede {
  max-width: 60ch;
  margin: 0 0 28px;
  font-size: 16.5px;
  line-height: 1.78;
  color: rgba(255, 255, 255, .82);
}

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

.page-home .coda__actions .btn--ghost {
  border-color: rgba(200, 242, 74, .6);
  color: var(--lime);
}

/* ============ 响应式 ============ */
@media (min-width: 640px) {
  .page-home .hero {
    padding: 56px 0 84px;
  }

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

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

  .page-home .whistle-sec__panel {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    padding: 36px 34px 40px;
  }
}

@media (min-width: 900px) {
  .page-home .board-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 52px;
  }

  .page-home .board__plaque {
    position: sticky;
    top: 96px;
  }

  .page-home .strip__filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 28px 30px;
  }

  .page-home .strip__result {
    padding: 26px 30px 30px;
  }

  .page-home .tl-layout {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: 48px;
  }

  .page-home .section {
    padding: 104px 0;
  }

  .page-home .coda {
    padding: 104px 0 116px;
  }
}

@media (min-width: 1000px) {
  .page-home .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 56px;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .board__item,
  .page-home .board__num,
  .page-home .board__side,
  .page-home .pulse__card,
  .page-home .hero__frame {
    transition: none;
    transform: none;
  }
}
</main>

.page-home {
  --w: 1rem;
}
