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

.page-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .055;
  background-image:
    repeating-linear-gradient(0deg, var(--mirror) 0 1px, transparent 1px 128px),
    repeating-linear-gradient(90deg, var(--mirror) 0 1px, transparent 1px 128px);
}

.page-home > * {
  position: relative;
  z-index: 1;
}

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

.page-home .hero {
  padding: clamp(22px, 3.6vw, 44px) 0 clamp(34px, 5vw, 64px);
}

.page-home .hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 46px);
  align-items: start;
}

.page-home .hero__title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-home .hero__title em {
  font-style: normal;
  color: var(--lime);
}

.page-home .hero__lede {
  margin: 18px 0 0;
  max-width: 48ch;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.85;
  color: var(--ink-soft);
}

.page-home .hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .hero__stat {
  padding: 12px 13px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(20, 22, 26, .78), rgba(7, 9, 13, .6));
}

.page-home .hero__stat b {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.1;
  color: var(--lime);
}

.page-home .hero__stat span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--ink-mute);
}

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

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

.page-home .hero__frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: 0 26px 62px rgba(0, 0, 0, .48);
}

.page-home .hero__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.78) contrast(1.06) brightness(.74);
}

.page-home .hero__board {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: min(80%, 290px);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .6));
}

.page-home .board {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .board__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  fill: var(--steel);
}

.page-home .board__round {
  font-family: var(--font-mono);
  font-size: 62px;
  font-weight: 700;
  fill: var(--lime);
}

.page-home .board__sub {
  font-family: var(--font-body);
  font-size: 12px;
  fill: var(--ink-soft);
}

.page-home .board__rule {
  stroke: var(--line);
  stroke-width: 1;
}

.page-home .board__cell {
  font-family: var(--font-body);
  font-size: 12px;
  fill: var(--ink-mute);
}

.page-home .board__val {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  fill: var(--paper);
}

.page-home .board__tape {
  stroke: var(--line);
  stroke-width: 3;
  stroke-linecap: round;
}

.page-home .board__tape-hot {
  stroke: var(--amber);
  stroke-width: 3;
  stroke-linecap: round;
}

.page-home .board__node {
  fill: var(--lime);
}

/* ---------- 轮次刻度与对照 ---------- */

.page-home .rounds {
  margin-top: clamp(18px, 2.4vw, 28px);
}

.page-home .rounds__strip {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 4px 2px 16px;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 30px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 30px), transparent 100%);
}

.page-home .rounds__strip::-webkit-scrollbar {
  height: 5px;
}

.page-home .rounds__strip::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 999px;
}

.page-home .round-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 22, 26, .78);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  scroll-snap-align: start;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .round-pill:hover {
  border-color: var(--cyan);
  color: var(--paper);
  transform: translateY(-2px);
}

.page-home .round-pill[aria-current="true"] {
  border-color: var(--lime);
  background: rgba(198, 242, 78, .1);
  color: var(--lime);
}

.page-home .rounds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

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

.page-home .round-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--line);
  border-radius: 10px;
  background: rgba(20, 22, 26, .58);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.page-home .round-row:target {
  border-color: var(--lime);
  border-left-color: var(--lime);
  background: rgba(198, 242, 78, .08);
}

.page-home .round-row__idx {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .04em;
}

.page-home .round-row__text {
  font-size: 14px;
  color: var(--ink-soft);
}

.page-home .round-row .tag {
  justify-self: end;
}

.page-home .cmp {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(20, 22, 26, .94), rgba(7, 9, 13, .88));
}

.page-home .cmp__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.page-home .cmp__switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 9, 13, .85);
  cursor: pointer;
  user-select: none;
}

.page-home .cmp__switch::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 999px;
  background: var(--lime);
  transition: transform var(--dur) var(--ease);
}

.page-home .cmp__opt {
  position: relative;
  z-index: 1;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-mute);
  transition: color var(--dur) var(--ease);
}

.page-home .cmp__input:not(:checked) + .cmp__switch .cmp__opt:first-child {
  color: var(--midnight);
}

.page-home .cmp__input:checked + .cmp__switch .cmp__opt:last-child {
  color: var(--midnight);
}

.page-home .cmp__input:checked + .cmp__switch::before {
  transform: translateX(100%);
}

.page-home .cmp__input:focus-visible + .cmp__switch {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.page-home .cmp__views {
  margin-top: 16px;
}

.page-home .cmp__view--away {
  display: none;
}

.page-home .cmp__input:checked ~ .cmp__views .cmp__view--home {
  display: none;
}

.page-home .cmp__input:checked ~ .cmp__views .cmp__view--away {
  display: block;
}

.page-home .cmp__fields {
  display: grid;
  gap: 10px;
  margin: 0;
}

.page-home .cmp__fields > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dotted var(--line);
}

.page-home .cmp__fields > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-home .cmp__fields dt {
  font-size: 13px;
  color: var(--ink-mute);
}

.page-home .cmp__fields dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--paper);
}

.page-home .cmp__note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-mute);
}

/* ---------- 读数面板 ---------- */

.page-home .readouts__figure {
  margin: 0 0 clamp(18px, 2.4vw, 26px);
}

.page-home .readouts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.page-home .readout {
  position: relative;
  padding: 20px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(16, 27, 58, .92), rgba(7, 9, 13, .96));
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .readout:hover,
.page-home .readout:focus-within {
  border-color: var(--lime);
  transform: translateY(-3px);
}

.page-home .readout--lead {
  border-color: var(--line-strong);
}

.page-home .readout--alert:hover,
.page-home .readout--alert:focus-within {
  border-color: var(--magenta);
}

.page-home .readout__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.page-home .readout__value {
  margin: 12px 0 0;
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--lime);
}

.page-home .readout--alert .readout__value {
  color: var(--amber);
}

.page-home .readout__num {
  font-size: clamp(32px, 4vw, 48px);
}

.page-home .readout__unit {
  font-size: .38em;
  font-weight: 700;
}

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

.page-home .readout__note {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-mute);
  transition: max-height var(--dur) var(--ease), opacity var(--dur) var(--ease), margin-top var(--dur) var(--ease);
}

.page-home .readout:hover .readout__note,
.page-home .readout:focus-within .readout__note {
  max-height: 100px;
  margin-top: 12px;
  opacity: 1;
}

/* ---------- 球员查询路径 ---------- */

.page-home .paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.page-home .path {
  padding: 20px 18px;
  border: 1px solid var(--line-soft);
  border-top: 3px solid var(--cyan);
  border-radius: 0 0 12px 12px;
  background: rgba(20, 22, 26, .62);
  transition: border-top-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .path:hover {
  border-top-color: var(--lime);
  transform: translateY(-3px);
}

.page-home .path__idx {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--amber);
}

.page-home .path h3 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--paper);
}

.page-home .path p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page-home .paths__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(18px, 2.4vw, 26px);
}

/* ---------- 季票 ---------- */

.page-home .tickets {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

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

.page-home .tickets__body {
  min-width: 0;
}

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

.page-home .timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  border-left: 2px dotted var(--line-strong);
}

.page-home .timeline li {
  position: relative;
  padding-bottom: 22px;
}

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

.page-home .timeline li::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 154, 46, .16);
}

.page-home .timeline h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--paper);
}

.page-home .timeline p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page-home .ticket-types {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 9, 13, .55);
  overflow: hidden;
}

.page-home .ticket-types li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 15px;
  border-bottom: 1px dashed var(--line-soft);
}

.page-home .ticket-types li:last-child {
  border-bottom: 0;
}

.page-home .ticket-types__k {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--lime);
}

.page-home .ticket-types__v {
  font-size: 14px;
  color: var(--ink-soft);
}

.page-home .tickets__body .btn {
  margin-top: 22px;
}

/* ---------- 可信度 ---------- */

.page-home .trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.page-home .trust__item {
  padding: 20px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(20, 22, 26, .8), rgba(7, 9, 13, .7));
}

.page-home .trust__item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 2.1vw, 21px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--paper);
}

.page-home .trust__item p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page-home .trust__figures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: clamp(20px, 2.8vw, 30px) 0 0;
  padding: 0;
  list-style: none;
}

.page-home .trust__figures li {
  padding: 14px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(16, 27, 58, .55);
  text-align: center;
}

.page-home .trust__figures b {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  color: var(--paper);
}

.page-home .trust__figures span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-mute);
}

/* ---------- 双通道 ---------- */

.page-home .channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.page-home .channel {
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(16, 27, 58, .9), rgba(7, 9, 13, .92));
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

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

.page-home .channel__label {
  margin: 0;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
}

.page-home .channel h3 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--paper);
}

.page-home .channel p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page-home .channel__go {
  align-self: flex-start;
  margin-top: 18px;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--lime);
  font-size: 14px;
  font-weight: 700;
  color: var(--lime);
  transition: transform var(--dur) var(--ease);
}

.page-home .channel:hover .channel__go {
  transform: translateX(4px);
}

.page-home .channels__figure {
  margin: clamp(26px, 3.6vw, 42px) 0 0;
}

/* ---------- 图片容器 ---------- */

.page-home .figure__frame {
  aspect-ratio: auto;
  height: auto;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--bg-deep);
}

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

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

@media (max-width: 560px) {
  .page-home .round-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .page-home .round-row .tag {
    grid-column: 2;
    justify-self: start;
  }

  .page-home .hero__board {
    width: min(88%, 260px);
    right: 10px;
    bottom: 10px;
  }
}

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

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

@media (min-width: 760px) {
  .page-home .readouts {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  }

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

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

@media (min-width: 900px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: clamp(30px, 4.2vw, 58px);
  }

  .page-home .hero__board {
    width: min(64%, 300px);
    right: 14px;
    bottom: 14px;
  }

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

  .page-home .tickets {
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: clamp(24px, 3.4vw, 44px);
  }

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

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

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

  .page-home .trust__item:nth-child(2) {
    grid-column: span 3;
  }

  .page-home .trust__item:nth-child(3) {
    grid-column: span 2;
  }

  .page-home .trust__item:nth-child(4) {
    grid-column: span 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home * {
    transition-duration: 1ms !important;
  }
}
<<<END>>>
