.page-home {
  --home-cut: 12px;
  --home-gap: 18px;
  background: var(--night);
  color: var(--text);
  overflow-x: clip;
}

.page-home h1,
.page-home h2,
.page-home h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--paper);
  line-height: 1.15;
}

.page-home p {
  margin: 0;
}

.page-home .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 8px;
}

.page-home .section-title {
  font-size: clamp(22px, 4.4vw, 30px);
  line-height: 1.15;
}

.page-home .lead {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
  max-width: 52ch;
}

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

.page-home .hero-home {
  position: relative;
  padding: 20px 0 0;
  border-bottom: 1px solid var(--edge);
}

.page-home .hero-home__grid {
  display: grid;
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px 30px;
}

.page-home .hero-home__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.page-home .hero-home__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 5px 11px;
  border: 1px solid var(--edge);
  background: var(--panel-2);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--lime);
}

.page-home .hero-home__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(200, 255, 60, 0.55);
  animation: home-pulse 2.6s ease-out infinite;
}

@keyframes home-pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 255, 60, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(200, 255, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 255, 60, 0); }
}

.page-home .hero-home__title {
  font-size: clamp(30px, 7.6vw, 46px);
  line-height: 1.06;
  max-width: 15ch;
}

.page-home .hero-home__lead {
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--text);
  max-width: 46ch;
}

.page-home .round-index {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid var(--edge);
  background: var(--panel-2);
}

.page-home .round-index__label {
  flex: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.page-home .round-index__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  flex: 1 1 auto;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.page-home .round-index__item {
  display: block;
  text-align: center;
  padding: 3px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  background: rgba(22, 54, 44, 0.42);
}

.page-home .round-index__item.is-current {
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
}

.page-home .snapshot {
  background: var(--panel);
  border: 1px solid var(--edge);
  padding: 14px 15px 10px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--home-cut)), calc(100% - var(--home-cut)) 100%, 0 100%);
}

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

.page-home .snapshot__title {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--text);
  font-weight: 600;
}

.page-home .snapshot__more {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.14s linear;
}

.page-home .snapshot__more:hover {
  color: var(--lime-dim);
}

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

.page-home .snapshot__row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 0;
  border-bottom: 1px solid rgba(22, 54, 44, 0.7);
}

.page-home .snapshot__list .snapshot__row:last-child {
  border-bottom: 0;
}

.page-home .snapshot__row.is-top {
  background: linear-gradient(90deg, rgba(200, 255, 60, 0.12), transparent 72%);
}

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

.page-home .snapshot__row.is-top .snapshot__rank {
  color: var(--lime);
}

.page-home .snapshot__team {
  font-size: 14.5px;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-home .snapshot__pts {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--lime);
  min-width: 2ch;
  text-align: right;
}

.page-home .hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.page-home .hero-home__right {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  background: var(--panel);
  border: 1px solid var(--edge);
}

.page-home .hero-home__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.72) brightness(0.5);
  z-index: 0;
}

.page-home .hero-home__right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(7, 19, 15, 0.2) 0%, rgba(7, 19, 15, 0.72) 58%, rgba(7, 19, 15, 0.95) 100%);
  z-index: 1;
}

.page-home .hero-home__pitch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.page-home .hero-home__route {
  stroke-dasharray: 780;
  stroke-dashoffset: 780;
  animation: home-draw 1.1s var(--ease-data) 0.25s forwards;
}

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

.page-home .hero-home__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 6px 11px;
  background: rgba(7, 19, 15, 0.78);
  border: 1px solid var(--edge);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--amber);
}

/* ---------- 第 12 轮数据带 ---------- */

.page-home .round {
  padding: 36px 0 12px;
}

.page-home .round__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.page-home .round__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.page-home .round__strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(232px, 246px);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  background: none;
}

.page-home .round__strip::-webkit-scrollbar {
  height: 6px;
}

.page-home .round__strip::-webkit-scrollbar-track {
  background: rgba(22, 54, 44, 0.5);
}

.page-home .round__strip::-webkit-scrollbar-thumb {
  background: var(--edge);
}

.page-home .round__strip:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.page-home .match {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px 13px;
  background: var(--panel);
  border: 1px solid var(--edge);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--home-cut)), calc(100% - var(--home-cut)) 100%, 0 100%);
  transition: transform 0.2s var(--ease-data);
}

.page-home .match:hover {
  transform: translateY(-4px);
}

.page-home .match__no {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--amber);
}

.page-home .match__pair {
  font-size: 13.5px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-home .match__score {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}

.page-home .match__score em {
  font-style: normal;
  font-size: 22px;
  color: var(--edge);
}

.page-home .match__facts {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.page-home .match__facts li {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
}

.page-home .match__facts li::before {
  content: "▸ ";
  color: var(--lime);
}

.page-home .round__hint {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.page-home .round__figure {
  position: relative;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid var(--edge);
  aspect-ratio: 1200 / 380;
  background: var(--panel-2);
}

.page-home .round__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.65) brightness(0.62);
}

.page-home .round__figure .media__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(0deg, rgba(7, 19, 15, 0.94), rgba(7, 19, 15, 0));
  font-size: 12.5px;
  color: var(--text);
}

/* ---------- 关注场次与主场入口 ---------- */

.page-home .follow {
  padding: 40px 0 8px;
}

.page-home .follow__grid {
  display: grid;
  gap: 22px;
}

.page-home .follow__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--edge);
  aspect-ratio: 1200 / 750;
  background: var(--panel-2);
}

.page-home .follow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.7) brightness(0.68);
}

.page-home .follow__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.page-home .follow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.page-home .follow__list li {
  position: relative;
  padding-left: 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
}

.page-home .follow__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 2px;
  background: var(--lime);
}

.page-home .follow__list strong {
  color: var(--paper);
  font-weight: 700;
}

.page-home .routes {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .route {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--panel-2);
  border-left: 2px solid var(--edge);
  transition: border-color 0.14s linear, transform 0.2s var(--ease-data), background 0.18s linear;
}

.page-home .route:hover {
  border-left-color: var(--lime);
  background: var(--panel);
  transform: translateX(4px);
}

.page-home .route.is-best {
  border-left-color: var(--lime);
}

.page-home .route__key {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--amber);
}

.page-home .route__name {
  font-size: 14px;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-home .route__dist {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--lime);
  text-align: right;
}

.page-home .follow__tip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.page-home .follow__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

/* ---------- 战报速览 ---------- */

.page-home .reports {
  padding: 44px 0 10px;
}

.page-home .reports__grid {
  display: grid;
  gap: 24px;
}

.page-home .reports__main {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.page-home .report-list {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  counter-reset: report;
  border-top: 1px solid var(--edge);
}

.page-home .report-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px 0 15px 14px;
  border-bottom: 1px solid var(--edge);
  border-left: 2px solid transparent;
  transition: border-left-color 0.14s linear, background 0.18s linear;
}

.page-home .report-item:hover {
  border-left-color: var(--lime);
  background: linear-gradient(90deg, rgba(200, 255, 60, 0.06), transparent 78%);
}

.page-home .report-item__tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.page-home .report-item__title {
  font-size: 18px;
  color: var(--paper);
  line-height: 1.35;
}

.page-home .report-item__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
  max-width: 54ch;
}

.page-home .reports__aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .reports__aside img {
  width: 100%;
  height: auto;
  aspect-ratio: 1400 / 900;
  object-fit: cover;
  border: 1px solid var(--edge);
  filter: saturate(0.7) brightness(0.66);
}

.page-home .reports__note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-left: 2px solid var(--amber);
  padding-left: 10px;
}

/* ---------- 能力速览 ---------- */

.page-home .caps {
  padding: 42px 0 56px;
}

.page-home .caps__head {
  margin-bottom: 20px;
}

.page-home .caps__grid {
  display: grid;
  gap: 2px;
  background: var(--edge);
  border: 1px solid var(--edge);
}

.page-home .cap {
  padding: 18px 16px 20px;
  background: var(--night);
  transition: background 0.18s linear;
}

.page-home .cap:hover {
  background: var(--panel);
}

.page-home .cap__idx {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--lime);
  margin-bottom: 10px;
}

.page-home .cap__title {
  font-size: 19px;
  margin-bottom: 7px;
}

.page-home .cap__text {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text);
}

.page-home .caps__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

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

@media (min-width: 700px) {
  .page-home .round__figure {
    aspect-ratio: 1200 / 320;
  }

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

  .page-home .follow__body {
    gap: 16px;
  }
}

@media (min-width: 960px) {
  .page-home .hero-home {
    padding-top: 8px;
  }

  .page-home .hero-home__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: stretch;
    gap: 0;
    padding: 0 0 0 18px;
  }

  .page-home .hero-home__left {
    padding: 26px 34px 34px 0;
    justify-content: center;
  }

  .page-home .hero-home__right {
    min-height: 600px;
    border-left: 0;
    clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
  }

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

  .page-home .follow__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: center;
    gap: 34px;
  }

  .page-home .follow__media {
    aspect-ratio: 1200 / 900;
  }

  .page-home .reports__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: 36px;
    align-items: start;
  }

  .page-home .reports__aside {
    padding-top: 8px;
  }

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

@media (min-width: 1280px) {
  .page-home .hero-home__grid {
    padding-left: calc((100% - 1280px) / 2 + 18px);
    padding-right: calc((100% - 1280px) / 2);
  }

  .page-home .hero-home__grid > *:first-child {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-home__dot,
  .page-home .hero-home__route {
    animation: none;
  }

  .page-home .hero-home__route {
    stroke-dashoffset: 0;
  }

  .page-home .match:hover,
  .page-home .route:hover {
    transform: none;
  }
}
</｜｜DSML｜｜ parameter>
</invoke>
</result>
