.page-home {
  overflow-x: clip;
  color: var(--white);
}

.page-home .shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* ---------- 面包屑 ---------- */
.page-home .home-crumb {
  padding: 18px 0 4px;
}

.page-home .home-crumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mist);
}

.page-home .home-crumb__sep {
  color: var(--line);
}

.page-home .home-crumb__inner strong {
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: .02em;
}

.page-home .home-crumb__hint {
  margin-left: auto;
  font-family: var(--f-num);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--mist-dim);
}

/* ---------- 首屏拼贴 ---------- */
.page-home .hero {
  padding: 14px 0 clamp(30px, 5vw, 56px);
}

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

@media (min-width: 920px) {
  .page-home .hero-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: stretch;
  }
}

.page-home .hero-board {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(380px, 48vw, 470px);
  background: linear-gradient(152deg, var(--ink-2) 0%, var(--ink) 78%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), 0 100%);
}

.page-home .hero-board__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
  z-index: 0;
}

.page-home .hero-board::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(7, 12, 34, .94) 14%, rgba(7, 12, 34, .66) 58%, rgba(50, 225, 210, .16) 100%);
  pointer-events: none;
}

.page-home .hero-board__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3.4vw, 44px);
  padding-bottom: calc(clamp(24px, 3.4vw, 44px) + 14px);
}

.page-home .hero-board__body::before {
  content: "";
  flex: none;
  width: 62px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
}

.page-home .hero-board .page-title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.16;
  color: var(--white);
}

.page-home .hero-board .lede {
  margin: 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.6;
  color: #C9D3EF;
}

.page-home .board-figures {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(18px, 3vw, 34px);
}

.page-home .board-figure {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .board-figure__val {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}

.page-home .board-figure__num {
  font-family: var(--f-num);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 96px);
  line-height: .84;
  letter-spacing: -.03em;
  color: var(--amber);
}

.page-home .board-figure__unit {
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
}

.page-home .board-figure__label {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--mist);
}

.page-home .board-meta {
  flex: 1 1 220px;
  min-width: 190px;
  display: grid;
  gap: 8px;
  margin: 0;
}

.page-home .board-meta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .055);
  border-left: 2px solid var(--cyan);
  border-radius: var(--r-sm);
}

.page-home .board-meta__row dt {
  font-size: 12.5px;
  color: var(--mist);
}

.page-home .board-meta__row dd {
  margin: 0;
  font-family: var(--f-num);
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--white);
}

/* ---------- 右侧两张斜向错位小卡 ---------- */
.page-home .hero-side {
  display: grid;
  gap: var(--gap);
  align-content: start;
}

@media (min-width: 920px) {
  .page-home .mini-card--two {
    margin-left: clamp(0px, 4vw, 52px);
  }
}

.page-home .mini-card {
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 16px));
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.page-home .mini-card:hover,
.page-home .mini-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: var(--ink-3);
}

.page-home .mini-card__media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--ink-3);
}

.page-home .mini-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: opacity var(--t-fast);
}

.page-home .mini-card:hover .mini-card__media img {
  opacity: 1;
}

.page-home .mini-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 20px;
}

.page-home .mini-card__title {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.35;
  color: var(--white);
}

.page-home .mini-card__text {
  display: block;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mist);
}

.page-home .mini-card__go {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
}

/* ---------- 四入口条 ---------- */
.page-home .entry-bar {
  margin-top: var(--gap);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

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

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

.page-home .entry {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}

.page-home .entry span {
  font-size: 12px;
  font-weight: 400;
  color: var(--mist);
}

.page-home .entry:hover,
.page-home .entry:focus-visible {
  border-color: var(--cyan);
  background: rgba(50, 225, 210, .09);
  color: var(--cyan-soft);
}

/* ---------- 通用区块节奏 ---------- */
.page-home .section {
  padding: clamp(34px, 5vw, 62px) 0;
}

.page-home .section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 68ch;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.page-home .section-title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.24;
  color: var(--white);
}

.page-home .section-title--editorial {
  font-family: var(--f-editorial);
  font-weight: 700;
}

.page-home .lede {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #B9C4E4;
}

/* ---------- 重点场次 ---------- */
.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
}

.page-home .filter-btn {
  font: inherit;
  font-size: 13px;
  line-height: 1;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--mist);
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.page-home .filter-btn:hover {
  color: var(--cyan-soft);
  border-color: var(--cyan);
}

.page-home .filter-btn[aria-pressed="true"] {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--ink);
  font-weight: 700;
}

.page-home .filter-count {
  margin-left: auto;
  font-family: var(--f-num);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--mist-dim);
}

.page-home .match-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-3);
}

.page-home .match-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  pointer-events: none;
}

.page-home .match-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-soft);
}

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

.page-home .match {
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-areas:
    "time tag status"
    "time league league";
  align-items: center;
  gap: 6px 12px;
  padding: 14px 16px;
  background: rgba(11, 19, 56, .94);
  transition: background var(--t-fast);
}

.page-home .match:hover {
  background: rgba(16, 27, 70, .98);
}

@media (min-width: 520px) {
  .page-home .match {
    grid-template-columns: 76px auto 1fr auto;
    grid-template-areas: "time tag league status";
    gap: 8px 14px;
  }
}

.page-home .match__time {
  grid-area: time;
  font-family: var(--f-num);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--amber);
}

.page-home .match .tag {
  grid-area: tag;
  justify-self: start;
}

.page-home .match__league {
  grid-area: league;
  font-size: 14px;
  color: var(--white);
}

.page-home .match__status {
  grid-area: status;
  justify-self: end;
  white-space: nowrap;
  font-size: 12px;
  color: var(--mist);
}

.page-home .match__status--soon {
  color: var(--cyan);
}

.page-home .filter-empty {
  margin: 14px 0 0;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--mist);
  background: rgba(255, 255, 255, .04);
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
}

.page-home .filter-empty[hidden] {
  display: none;
}

/* ---------- 四条主线 ---------- */
.page-home .lane-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: clamp(18px, 3vw, 28px);
}

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

@media (min-width: 1080px) {
  .page-home .lane-grid {
    grid-template-columns: 1.14fr .86fr .96fr 1.04fr;
  }
}

.page-home .lane {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px 20px;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(168deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  transition: transform var(--t-fast), border-color var(--t-fast);
}

.page-home .lane:hover,
.page-home .lane:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cyan);
}

.page-home .lane--a { box-shadow: inset 0 2px 0 var(--cyan); }
.page-home .lane--b { box-shadow: inset 0 2px 0 var(--amber); }
.page-home .lane--c { box-shadow: inset 0 2px 0 var(--lilac); }
.page-home .lane--d { box-shadow: inset 0 2px 0 var(--lime); }

.page-home .lane__num {
  font-family: var(--f-num);
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--mist-dim);
}

.page-home .lane__title {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.page-home .lane__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--mist);
}

.page-home .lane__go {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
}

/* ---------- 刷新节奏 ---------- */
.page-home .rhythm-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: clamp(18px, 3vw, 28px) 0 0;
  padding: 0;
  list-style: none;
}

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

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

.page-home .rhythm-step {
  position: relative;
  padding: 20px 16px 18px;
  background: rgba(255, 255, 255, .035);
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--r-md) var(--r-md);
}

.page-home .rhythm-step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--amber);
}

.page-home .rhythm-step__time {
  display: block;
  font-family: var(--f-num);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--amber);
}

.page-home .rhythm-step__title {
  margin: 8px 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.page-home .rhythm-step__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mist);
}

/* ---------- 服务能力 ---------- */
.page-home .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(22px, 3.6vw, 40px);
  background:
    radial-gradient(120% 150% at 0% 0%, rgba(124, 92, 255, .18), transparent 60%),
    linear-gradient(140deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}

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

.page-home .service-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.page-home .service-copy .prose {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #B9C4E4;
}

.page-home .service-copy .prose a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-home .service-copy .prose a:hover {
  color: var(--cyan-soft);
}

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

.page-home .service-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, .05);
  border-left: 2px solid var(--cyan);
  border-radius: var(--r-md);
}

.page-home .service-stat__label {
  margin: 0;
  font-size: 12.5px;
  color: var(--mist);
}

.page-home .service-stat__value {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 0;
}

.page-home .service-stat__num {
  font-family: var(--f-num);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--white);
}

.page-home .service-stat__unit {
  font-size: 13px;
  color: var(--mist);
}

.page-home .service-stat__note {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--mist-dim);
}

/* ---------- 底部联络 ---------- */
.page-home .home-contact {
  padding: clamp(30px, 4vw, 52px) 0 clamp(40px, 5vw, 72px);
}

.page-home .home-contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: clamp(22px, 3.2vw, 34px);
  background:
    radial-gradient(130% 150% at 100% 0%, rgba(50, 225, 210, .16), transparent 62%),
    var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}

@media (min-width: 900px) {
  .page-home .home-contact__inner {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    align-items: center;
  }
}

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

.page-home .home-contact__copy .prose {
  margin: 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.6;
  color: #B9C4E4;
}

.page-home .contact-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.page-home .home-contact__addr,
.page-home .home-contact__icp {
  margin: 0;
  font-size: 13px;
  color: var(--mist);
}

.page-home .home-contact__icp {
  font-family: var(--f-num);
  letter-spacing: .04em;
  color: var(--mist-dim);
}

@media (max-width: 420px) {
  .page-home .board-meta__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .page-home .service-stats {
    grid-template-columns: 1fr;
  }
}
<<<END>>>
