.page-home {
  --home-cut: 18px;
  --home-gap: clamp(16px, 2.4vw, 26px);
}

/* ---------- 首屏 ---------- */
.page-home .home-cover {
  position: relative;
  padding-top: clamp(18px, 3vw, 30px);
  padding-bottom: clamp(40px, 6vw, 80px);
  background-image: repeating-linear-gradient(90deg, rgba(233, 255, 245, .028) 0 1px, transparent 1px 52px);
}

.page-home .home-cover__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(var(--home-gap) * 1.5);
  margin-top: clamp(18px, 2.6vw, 32px);
}

@media (min-width: 980px) {
  .page-home .home-cover__grid {
    grid-template-columns: minmax(0, 2.05fr) minmax(0, 1fr);
    align-items: start;
  }
}

.page-home .home-cover__eyebrow {
  letter-spacing: .2em;
  text-transform: uppercase;
}

.page-home .home-cover__title {
  margin: 12px 0 16px;
  font-size: clamp(38px, 7.2vw, 84px);
  line-height: .98;
  letter-spacing: -.02em;
  color: var(--ink);
}

.page-home .home-cover__lead {
  max-width: 60ch;
}

.page-home .home-cover__visual {
  position: relative;
  margin: clamp(20px, 3vw, 30px) 0 0;
  overflow: hidden;
  background: var(--pitch-mid);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--home-cut)), calc(100% - var(--home-cut)) 100%, 0 100%);
}

.page-home .home-cover__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(.85) brightness(.68);
}

.page-home .home-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-home .home-arc__line {
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
}

.page-home .home-arc__line--volt {
  stroke: var(--volt);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: home-arc-draw 1.1s ease-out .25s forwards;
}

.page-home .home-arc__line--electric {
  stroke: var(--electric);
  stroke-dasharray: 14 10;
  opacity: .78;
}

.page-home .home-arc__dot {
  fill: var(--pulse);
}

.page-home .home-arc__halo {
  fill: none;
  stroke: var(--pulse);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: home-halo 2.2s ease-out 3 both;
}

@keyframes home-arc-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes home-halo {
  0% { transform: scale(.35); opacity: .85; }
  100% { transform: scale(2.6); opacity: 0; }
}

.page-home .home-cover__cap {
  position: absolute;
  left: clamp(12px, 2vw, 20px);
  bottom: clamp(12px, 2vw, 20px);
  margin: 0;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink-soft);
  background: rgba(4, 16, 11, .74);
}

.page-home .home-cover__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(20px, 3vw, 30px);
  background: var(--line);
  border: 1px solid var(--line);
}

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

.page-home .home-stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  padding: clamp(14px, 1.8vw, 20px);
  background: var(--pitch-mid);
}

.page-home .home-stat__value {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1;
  color: var(--volt);
}

.page-home .home-stat:nth-child(2) .home-stat__value { color: var(--electric); }
.page-home .home-stat:nth-child(3) .home-stat__value { color: var(--ink); }
.page-home .home-stat:nth-child(4) .home-stat__value { color: var(--graphite); }

.page-home .home-stat__unit {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.page-home .home-stat__label {
  flex-basis: 100%;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* ---------- 首屏右栏索引 ---------- */
.page-home .home-cover__index {
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid var(--line-strong);
  background: rgba(233, 255, 245, .06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, var(--home-cut) 100%, 0 calc(100% - var(--home-cut)));
}

.page-home .home-index__head {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.page-home .home-index__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  background: rgba(15, 42, 29, .55);
  text-decoration: none;
  color: var(--ink);
  transition: background .2s ease, padding-left .2s ease;
}

.page-home .home-index__link:hover,
.page-home .home-index__link:focus-visible {
  background: rgba(200, 245, 63, .1);
  padding-left: 16px;
}

.page-home .home-index__num {
  font-size: 11px;
  color: var(--volt);
}

.page-home .home-index__text {
  display: block;
  min-width: 0;
}

.page-home .home-index__city {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
}

.page-home .home-index__topic {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.page-home .home-index__note {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted-dim);
}

/* ---------- 四站分工 ---------- */
.page-home .home-stations__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-gap);
  margin-top: clamp(22px, 3vw, 36px);
}

@media (min-width: 820px) {
  .page-home .home-stations__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-home .home-station--feature { grid-column: span 2; }
  .page-home .home-station--d { grid-column: span 2; }
}

.page-home .home-station {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid var(--line);
  background: var(--pitch-mid);
  overflow: hidden;
}

.page-home .home-station:not(.home-station--feature)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--electric);
}

.page-home .home-station--c::before { background: var(--pulse); }
.page-home .home-station--d::before { background: var(--volt); }

.page-home .home-station__title {
  margin: 0;
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--ink);
}

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

.page-home .home-station__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.page-home .home-station__body .bw-btn {
  margin-top: auto;
}

.page-home .home-station .bw-btn {
  align-self: flex-start;
  margin-top: auto;
}

.page-home .home-station__media {
  margin: 0;
  overflow: hidden;
  background: var(--pitch-deep);
}

.page-home .home-station__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  filter: saturate(.85) brightness(.78);
}

@media (min-width: 820px) {
  .page-home .home-station--feature {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 0;
    padding: 0;
  }
  .page-home .home-station--feature .home-station__body {
    padding: clamp(20px, 2.4vw, 30px);
  }
}

/* ---------- 赛季筛选台 ---------- */
.page-home .home-filters__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(var(--home-gap) * 1.3);
}

@media (min-width: 900px) {
  .page-home .home-filters__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    align-items: start;
  }
}

.page-home .home-filters__intro h2 {
  margin: 10px 0 14px;
}

.page-home .home-filters__hint {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .home-filters__panel {
  display: grid;
  gap: 20px;
  padding: clamp(18px, 2.4vw, 28px);
}

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

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

.page-home .home-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.page-home .home-opt.is-on {
  background: var(--volt);
  border-color: var(--volt);
  color: var(--pitch-deep);
  font-weight: 600;
}

.page-home .home-filter:nth-child(2) .home-opt.is-on {
  background: var(--electric);
  border-color: var(--electric);
}

.page-home .home-filters__result {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- 本月主图 ---------- */
.page-home .home-charts__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-gap);
  margin-top: clamp(22px, 3vw, 36px);
}

@media (min-width: 940px) {
  .page-home .home-charts__grid {
    grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
    align-items: start;
  }
}

.page-home .home-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 26px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.page-home .home-chart__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.page-home .home-chart__title {
  margin: 0;
  font-size: clamp(17px, 2.1vw, 21px);
  font-weight: 700;
  color: var(--ink);
}

.page-home .home-chart__meta {
  margin: 0;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--muted);
}

.page-home .home-chart__figure {
  margin: 0;
  overflow: hidden;
  background: var(--pitch-deep);
}

.page-home .home-chart__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(.9) brightness(.85);
}

.page-home .home-chart__figure--tall img {
  max-height: 250px;
}

.page-home .home-bars {
  display: grid;
  gap: 10px;
}

.page-home .home-bars__row {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  transition: border-color .2s ease, background .2s ease;
}

.page-home .home-bars__row:hover {
  border-color: rgba(200, 245, 63, .42);
  background: rgba(200, 245, 63, .06);
}

.page-home .home-bars__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.page-home .home-bars__label {
  font-size: 12px;
  color: var(--ink-soft);
}

.page-home .home-bars__num {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s ease;
}

.page-home .home-bars__row:hover .home-bars__num {
  color: var(--volt);
}

.page-home .home-bars__pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
}

.page-home .home-bars__track {
  display: block;
  height: 8px;
  background: rgba(233, 255, 245, .1);
  overflow: hidden;
}

.page-home .home-bars__fill {
  display: block;
  height: 100%;
  transition: width .5s ease-out;
}

.page-home .home-bars__fill--volt { background: var(--volt); }
.page-home .home-bars__fill--electric { background: var(--electric); }

.page-home .home-bars__row:nth-child(1) .home-bars__fill--volt { width: 84%; }
.page-home .home-bars__row:nth-child(1) .home-bars__fill--electric { width: 66%; }
.page-home .home-bars__row:nth-child(2) .home-bars__fill--volt { width: 56%; }
.page-home .home-bars__row:nth-child(2) .home-bars__fill--electric { width: 78%; }
.page-home .home-bars__row:nth-child(3) .home-bars__fill--volt { width: 36%; }
.page-home .home-bars__row:nth-child(3) .home-bars__fill--electric { width: 22%; }

.page-home .home-timeline {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 0 20px;
  display: grid;
  gap: 14px;
}

.page-home .home-timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line-strong);
}

.page-home .home-timeline__item {
  position: relative;
  display: grid;
  gap: 4px;
}

.page-home .home-timeline__item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--graphite);
}

.page-home .home-timeline__item--pulse::before {
  background: var(--pulse);
  box-shadow: 0 0 0 4px rgba(255, 92, 43, .18);
}

.page-home .home-timeline__mark {
  font-size: 13px;
  color: var(--volt);
}

.page-home .home-timeline__item--pulse .home-timeline__mark {
  color: var(--pulse);
}

.page-home .home-timeline__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ---------- 赛季观察 ---------- */
.page-home .home-notes__list {
  display: grid;
  gap: 10px;
  margin-top: clamp(22px, 3vw, 34px);
}

.page-home .home-note {
  border: 1px solid var(--line);
  background: var(--pitch-mid);
  transition: border-color .2s ease;
}

.page-home .home-note[open] {
  border-color: rgba(51, 214, 255, .38);
}

.page-home .home-note__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(14px, 1.8vw, 20px);
  cursor: pointer;
  list-style: none;
}

.page-home .home-note__summary::-webkit-details-marker { display: none; }

.page-home .home-note__summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 1;
  color: var(--electric);
}

.page-home .home-note[open] .home-note__summary::after {
  content: "–";
}

.page-home .home-note__title {
  flex: 1 1 220px;
  min-width: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.page-home .home-note__site {
  font-size: 12px;
  white-space: nowrap;
  color: var(--muted);
}

.page-home .home-note__body {
  margin: 0;
  padding: 0 clamp(14px, 1.8vw, 20px) 18px;
  max-width: 68ch;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page-home .home-notes__more {
  margin: clamp(20px, 2.6vw, 28px) 0 0;
}

/* ---------- 终端与支持 ---------- */
.page-home .home-access__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(var(--home-gap) * 1.3);
}

@media (min-width: 900px) {
  .page-home .home-access__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: start;
  }
}

.page-home .home-access__copy h2 {
  margin: 10px 0 14px;
}

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

.page-home .home-access__panel {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: clamp(18px, 2.2vw, 26px);
}

.page-home .home-access__panel-title {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-home .home-access__line {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  word-break: break-word;
}

.page-home .home-access__hint {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.page-home .home-access__link {
  margin-top: 10px;
  font-size: 14px;
  color: var(--electric);
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 214, 255, .4);
  padding-bottom: 2px;
  justify-self: start;
}

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

@media (prefers-reduced-motion: reduce) {
  .page-home .home-arc__line--volt {
    stroke-dashoffset: 0;
    animation: none;
  }
  .page-home .home-arc__halo {
    animation: none;
    opacity: 0;
  }
  .page-home .home-bars__fill,
  .page-home .home-index__link,
  .page-home .home-bars__row {
    transition: none;
  }
}
</｜｜DSML｜｜ parameter>
</invoke>
</parameter>
</result>
