.page-home {
  --hm-hair: 1px solid var(--rule);
  --hm-gap: clamp(20px, 3.5vw, 44px);
  background-color: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* ---------- 首屏 ---------- */
.page-home .hm-hero {
  border-bottom: var(--hm-hair);
  padding-block: clamp(40px, 8vw, 112px) clamp(32px, 5vw, 72px);
}

.page-home .hm-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.page-home .hm-hero__text {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 26px);
}

.page-home .hm-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(38px, 7.4vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.page-home .hm-hero__lede {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.78;
  color: var(--muted);
}

.page-home .hm-hero__board {
  border-top: var(--hm-hair);
  padding-top: clamp(16px, 2.4vw, 26px);
}

.page-home .hm-hero__meta {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pitch);
}

.page-home .hm-hero__score {
  display: flex;
  align-items: baseline;
  gap: clamp(6px, 1.4vw, 16px);
  margin: 0;
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: clamp(62px, 12vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  color: var(--orange);
}

.page-home .hm-hero__score span {
  display: inline-block;
  animation: hm-flip 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.page-home .hm-hero__score span:nth-child(3) {
  animation-delay: 0.12s;
}

.page-home .hm-hero__score i {
  font-style: normal;
  font-size: 0.36em;
  color: var(--ink);
  align-self: center;
}

.page-home .hm-hero__teams {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--ink);
}

.page-home .hm-hero__vs {
  color: var(--muted);
  font-weight: 400;
  padding-inline: 6px;
}

.page-home .hm-hero__queue {
  list-style: none;
  margin: 20px 0 0;
  padding: 14px 0 0;
  border-top: var(--hm-hair);
  display: grid;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.page-home .hm-hero__qi {
  display: inline-block;
  min-width: 26px;
  margin-right: 8px;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brown);
}

.page-home .hm-hero__fig {
  margin: 0;
}

.page-home .hm-hero__fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.page-home .hm-hero__fig figcaption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
}

@media (min-width: 900px) {
  .page-home .hm-hero__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr);
    grid-template-areas:
      "text fig"
      "board fig";
    column-gap: clamp(36px, 5vw, 84px);
    row-gap: clamp(28px, 3vw, 44px);
  }
  .page-home .hm-hero__text { grid-area: text; }
  .page-home .hm-hero__board { grid-area: board; }
  .page-home .hm-hero__fig { grid-area: fig; }
}

@keyframes hm-flip {
  from { opacity: 0; transform: translateY(0.18em); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- 赛程时间轴 ---------- */
.page-home .hm-calendar__lede {
  max-width: 62ch;
  margin: 0 0 clamp(28px, 4vw, 52px);
  color: var(--muted);
  line-height: 1.78;
}

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

.page-home .hm-day {
  position: relative;
  padding-left: clamp(18px, 2.6vw, 34px);
  padding-bottom: clamp(30px, 4.4vw, 56px);
  border-left: 1px solid var(--rule);
}

.page-home .hm-day:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.page-home .hm-day__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.page-home .hm-day__dot {
  position: absolute;
  left: -4px;
  top: 6px;
  width: 7px;
  height: 7px;
  background: var(--pitch);
}

.page-home .hm-day__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.2;
  color: var(--ink);
}

.page-home .hm-day__name span {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.page-home .hm-day__count {
  margin-left: auto;
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pitch);
}

.page-home .hm-day__body {
  display: grid;
  gap: 18px;
}

.page-home .hm-games {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.page-home .hm-game {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 14px;
  align-items: baseline;
  padding: 13px clamp(12px, 1.6vw, 18px);
  background: var(--paper);
  transition: background-color 0.18s ease, color 0.18s ease;
}

.page-home .hm-game:hover,
.page-home .hm-game:focus-within {
  background: var(--ink);
  color: var(--paper);
}

.page-home .hm-game:hover .hm-game__league,
.page-home .hm-game:focus-within .hm-game__league {
  color: var(--lime);
}

.page-home .hm-game:hover .hm-game__city,
.page-home .hm-game:focus-within .hm-game__city {
  color: var(--paper-2);
}

.page-home .hm-game__league {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--pitch);
}

.page-home .hm-game__teams {
  font-size: 15px;
  line-height: 1.5;
  color: inherit;
}

.page-home .hm-game__city {
  grid-column: 1;
  font-size: 12px;
  color: var(--muted);
}

.page-home .hm-game__time {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: 0.02em;
  color: inherit;
}

@media (min-width: 760px) {
  .page-home .hm-game {
    grid-template-columns: 118px minmax(0, 1fr) 88px 76px;
    grid-row: 1;
  }
  .page-home .hm-game__teams { grid-column: 2; }
  .page-home .hm-game__city {
    grid-column: 3;
    grid-row: 1;
    text-align: right;
    align-self: center;
  }
  .page-home .hm-game__time {
    grid-column: 4;
    grid-row: 1;
    text-align: right;
  }
}

.page-home .hm-day__fig {
  margin: 0;
}

.page-home .hm-day__fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-home .hm-day__fig figcaption {
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

@media (min-width: 1000px) {
  .page-home .hm-day:first-child .hm-day__body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
    align-items: start;
    gap: clamp(20px, 3vw, 36px);
  }
}

.page-home .hm-calendar__more {
  margin: clamp(28px, 4vw, 44px) 0 0;
  padding-top: 18px;
  border-top: var(--hm-hair);
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home a {
  color: var(--pitch);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.page-home a:hover { color: var(--orange); }

/* ---------- 名次快照 ---------- */
.page-home .hm-tables__lede {
  max-width: 62ch;
  margin: 0 0 clamp(28px, 4vw, 48px);
  color: var(--muted);
  line-height: 1.78;
}

.page-home .hm-boards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 30px);
  align-items: start;
}

.page-home .hm-board {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .hm-board--ink {
  background: var(--ink-2);
  border-color: var(--ink-2);
  color: var(--paper);
}

.page-home .hm-board__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}

.page-home .hm-board--ink .hm-board__head {
  border-bottom-color: rgba(245, 241, 231, 0.24);
}

.page-home .hm-board__league {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 18px);
}

.page-home .hm-board__round {
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.page-home .hm-board--ink .hm-board__round { color: var(--paper-2); }

.page-home .hm-board__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.page-home .hm-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto auto auto;
  gap: 10px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 14px;
}

.page-home .hm-board--ink .hm-row {
  border-bottom-color: rgba(245, 241, 231, 0.18);
}

.page-home .hm-row:last-child { border-bottom: 0; }

.page-home .hm-row__rank {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 15px;
  color: var(--pitch-lt);
}

.page-home .hm-board--ink .hm-row__rank { color: var(--lime); }

.page-home .hm-row__team {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-home .hm-row__gd {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  color: var(--muted);
}

.page-home .hm-board--ink .hm-row__gd { color: var(--paper-2); }

.page-home .hm-row__pts {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 16px;
}

.page-home .hm-board--ink .hm-row__pts { color: var(--lime); }

.page-home .hm-board .delta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-home .hm-board__foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.page-home .hm-board--ink .hm-board__foot {
  border-top-color: rgba(245, 241, 231, 0.24);
}

.page-home .hm-src {
  font-size: 12px;
  letter-spacing: 0.04em;
}

.page-home .hm-board--ink .hm-src { color: var(--lime); }

@media (min-width: 820px) {
  .page-home .hm-boards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .page-home .hm-boards {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(20px, 2.4vw, 34px);
    row-gap: clamp(24px, 3vw, 40px);
  }
  .page-home .hm-board--a { grid-column: 1 / span 5; }
  .page-home .hm-board--b { grid-column: 7 / span 4; margin-top: clamp(28px, 4vw, 64px); }
  .page-home .hm-board--c { grid-column: 1 / span 4; }
  .page-home .hm-board--d { grid-column: 6 / span 4; margin-top: clamp(20px, 3vw, 48px); }
}

/* ---------- 射门统计 ---------- */
.page-home .hm-shots__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
}

.page-home .hm-shots__fig {
  margin: 0 0 clamp(20px, 3vw, 32px);
}

.page-home .hm-shots__fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 9;
  object-fit: cover;
}

.page-home .hm-shots__fig figcaption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.page-home .hm-shots__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.18;
  color: var(--ink);
}

.page-home .hm-shots__p {
  margin: 0 0 14px;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.page-home .hm-shots__chart {
  border: 1px solid var(--rule);
  background: var(--paper-2);
  padding: clamp(16px, 2.4vw, 28px);
}

.page-home .hm-shothead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 17px);
}

.page-home .hm-shothead__team--away { text-align: right; }

.page-home .hm-shothead__score {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--orange);
}

.page-home .hm-segs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(6px, 1.2vw, 16px);
  align-items: end;
  padding: clamp(18px, 2.6vw, 30px) 0 10px;
}

.page-home .hm-seg {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.page-home .hm-seg__plot {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: clamp(96px, 14vw, 158px);
  border-bottom: 1px solid var(--rule);
}

.page-home .hm-seg__bar {
  display: block;
  width: 42%;
  max-width: 22px;
  transform-origin: bottom;
  animation: hm-rise 0.5s ease both;
}

.page-home .hm-seg__bar--home { background: var(--pitch); }
.page-home .hm-seg__bar--away { background: var(--ink-2); }

.page-home .hm-seg:nth-child(1) .hm-seg__bar--home { height: 40%; }
.page-home .hm-seg:nth-child(1) .hm-seg__bar--away { height: 20%; }
.page-home .hm-seg:nth-child(2) .hm-seg__bar--home { height: 60%; }
.page-home .hm-seg:nth-child(2) .hm-seg__bar--away { height: 40%; }
.page-home .hm-seg:nth-child(3) .hm-seg__bar--home { height: 20%; }
.page-home .hm-seg:nth-child(3) .hm-seg__bar--away { height: 80%; }
.page-home .hm-seg:nth-child(4) .hm-seg__bar--home { height: 100%; }
.page-home .hm-seg:nth-child(4) .hm-seg__bar--away { height: 40%; }
.page-home .hm-seg:nth-child(5) .hm-seg__bar--home { height: 60%; }
.page-home .hm-seg:nth-child(5) .hm-seg__bar--away { height: 60%; }
.page-home .hm-seg:nth-child(6) .hm-seg__bar--home { height: 80%; }
.page-home .hm-seg:nth-child(6) .hm-seg__bar--away { height: 20%; }

.page-home .hm-seg__label {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes hm-rise {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.page-home .hm-shotkey {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 12px;
  color: var(--muted);
}

.page-home .hm-shotkey__item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.page-home .hm-shotkey__swatch {
  width: 10px;
  height: 10px;
  display: inline-block;
}

.page-home .hm-shotkey__swatch--home { background: var(--pitch); }
.page-home .hm-shotkey__swatch--away { background: var(--ink-2); }

.page-home .hm-shotstats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  margin-top: 18px;
}

.page-home .hm-shotstat {
  background: var(--paper-2);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .hm-shotstat__num {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  color: var(--pitch);
}

.page-home .hm-shotstat__sep {
  color: var(--rule);
  font-weight: 400;
  padding-inline: 4px;
  font-size: 0.7em;
}

.page-home .hm-shotstat__label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

@media (min-width: 1020px) {
  .page-home .hm-shots__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
  }
}

/* ---------- 场馆 ---------- */
.page-home .hm-venue__fig {
  margin: 0 0 clamp(24px, 3.4vw, 40px);
}

.page-home .hm-venue__fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-home .hm-venue__fig figcaption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.page-home .hm-facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 0;
}

.page-home .hm-fact {
  background: var(--paper);
  padding: 14px clamp(12px, 1.6vw, 20px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
}

.page-home .hm-fact__key {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--pitch);
}

.page-home .hm-fact__val {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

@media (min-width: 760px) {
  .page-home .hm-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-home .hm-fact {
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: baseline;
    gap: 12px;
  }
}

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

.page-home .hm-venue__note {
  margin: clamp(20px, 3vw, 30px) 0 0;
  max-width: 72ch;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* ---------- 更新节奏 ---------- */
.page-home .hm-cadence {
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid var(--ink-2);
  padding-block: clamp(44px, 7vw, 96px);
}

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

.page-home .hm-cadence__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}

.page-home .hm-cadence__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-home .hm-cadence__p {
  margin: 0 0 14px;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--paper-2);
}

.page-home .hm-cadence__btn {
  margin-top: 12px;
}

.page-home .hm-changes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: rgba(245, 241, 231, 0.22);
  border: 1px solid rgba(245, 241, 231, 0.22);
}

.page-home .hm-change {
  background: var(--ink-2);
  padding: clamp(14px, 2vw, 22px);
  display: grid;
  gap: 8px;
}

.page-home .hm-change__tag {
  justify-self: start;
}

.page-home .hm-change__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--paper);
}

.page-home .hm-change__when {
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--lime);
}

.page-home .hm-change .tag--orange {
  background: var(--orange);
  color: var(--paper);
}

.page-home .hm-change .tag {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--paper-2);
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

@media (min-width: 1020px) {
  .page-home .hm-cadence__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

/* ---------- 新手指引 ---------- */
.page-home .hm-start__lede {
  max-width: 58ch;
  margin: 0 0 clamp(28px, 4vw, 48px);
  color: var(--muted);
  line-height: 1.78;
}

.page-home .hm-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.page-home .hm-step {
  background: var(--paper);
  padding: clamp(18px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .hm-step__idx {
  align-self: flex-start;
  padding: 3px 9px;
  border: 1px solid var(--pitch);
  color: var(--pitch);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.page-home .hm-step__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.3;
  color: var(--ink);
}

.page-home .hm-step__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .hm-step__list li {
  padding-left: 16px;
  position: relative;
}

.page-home .hm-step__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 7px;
  height: 1px;
  background: var(--pitch-lt);
}

.page-home .hm-start__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 44px);
}

@media (min-width: 700px) {
  .page-home .hm-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

/* ---------- 窄屏收口 ---------- */
@media (max-width: 480px) {
  .page-home .hm-segs { gap: 4px; }
  .page-home .hm-seg__label { font-size: 9px; letter-spacing: 0; }
  .page-home .hm-seg__plot { height: 88px; }
  .page-home .hm-row { font-size: 13px; gap: 8px; }
  .page-home .hm-hero__queue { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hm-hero__score span,
  .page-home .hm-seg__bar {
    animation: none;
  }
  .page-home .hm-game { transition: none; }
}
<<<END>>>
