.page-home {
  display: block;
}

/* ---------- 首屏：分屏叙事 + 终端视觉 ---------- */
.page-home .home-hero {
  position: relative;
  padding: clamp(36px, 7vw, 84px) 0 var(--gap);
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(47, 184, 255, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(120% 82% at 76% 20%, #000 0%, transparent 70%);
  mask-image: radial-gradient(120% 82% at 76% 20%, #000 0%, transparent 70%);
  pointer-events: none;
}

.page-home .home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(30px, 6vw, 56px);
  align-items: center;
}

.page-home .home-hero__eyebrow {
  margin: 0 0 16px;
  color: var(--green);
}

.page-home .home-hero__title {
  margin: 0 0 20px;
}

.page-home .home-hero__lead {
  margin: 0 0 28px;
  max-width: var(--measure);
  color: var(--text-soft);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.page-home .home-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-dim);
  font-size: 14px;
}

.page-home .home-hero__facts li {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding-left: 12px;
  border-left: 2px solid var(--ink-600);
}

.page-home .home-hero__facts .t-data {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

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

.page-home .hero-phone {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-800);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%);
  box-shadow: var(--glow-blue);
}

.page-home .hero-phone__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.page-home .hero-phone__sweep {
  position: absolute;
  inset: -25% -45%;
  background: linear-gradient(102deg, transparent 34%, rgba(59, 227, 143, 0.26) 48%, rgba(47, 184, 255, 0.22) 58%, transparent 72%);
  animation: home-sweep 6.5s linear infinite;
  pointer-events: none;
}

@keyframes home-sweep {
  0% {
    transform: translate3d(-38%, 0, 0);
  }
  100% {
    transform: translate3d(38%, 0, 0);
  }
}

.page-home .hero-phone__frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(44%, 210px);
  height: auto;
  color: rgba(232, 240, 248, 0.5);
  pointer-events: none;
}

/* ---------- 赛季日历 ---------- */
.page-home .home-calendar__media {
  position: relative;
  margin: clamp(26px, 5vw, 46px) 0 0;
  overflow: hidden;
  background: var(--ink-800);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%);
}

.page-home .home-calendar__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 16, 0.08) 0%, rgba(7, 11, 16, 0.82) 100%);
  pointer-events: none;
}

.page-home .home-calendar__media img {
  display: block;
  width: 100%;
  height: clamp(170px, 32vw, 360px);
  object-fit: cover;
}

.page-home .home-season {
  margin-top: clamp(20px, 4vw, 36px);
}

.page-home .home-season .ribbon {
  scroll-snap-type: x mandatory;
}

.page-home .home-season__track {
  display: flex;
  gap: 16px;
  padding: 6px var(--pad) 24px;
}

.page-home .home-season__item {
  flex: 0 0 min(78vw, 300px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 20px;
  background: linear-gradient(168deg, var(--ink-700) 0%, var(--ink-800) 100%);
  border-top: 3px solid var(--blue);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut-s)), calc(100% - var(--cut-s)) 100%, 0 100%);
}

.page-home .home-season__cap {
  margin: 0;
  color: var(--blue);
}

.page-home .home-season__item .t-h3 {
  margin: 0;
  font-size: 20px;
}

.page-home .home-season__item .t-body {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

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

/* ---------- 指标面板 ---------- */
.page-home .home-metrics {
  position: relative;
  overflow: hidden;
}

.page-home .home-metrics__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-metrics__glow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.13;
}

.page-home .home-metrics .shell {
  position: relative;
  z-index: 1;
}

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

.page-home .metric {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 3.4vw, 34px);
}

.page-home .metric__num {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(46px, 10vw, 66px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--green);
  text-shadow: 0 0 26px rgba(59, 227, 143, 0.32);
}

.page-home .metric--blue .metric__num {
  color: var(--blue);
  text-shadow: 0 0 26px rgba(47, 184, 255, 0.3);
}

.page-home .metric--violet .metric__num {
  color: var(--violet);
  text-shadow: 0 0 26px rgba(139, 107, 255, 0.3);
}

.page-home .metric--orange .metric__num {
  color: var(--orange);
  text-shadow: 0 0 26px rgba(255, 138, 61, 0.28);
}

.page-home .metric__unit {
  margin: 0;
  color: var(--text-dim);
}

.page-home .metric__title {
  margin: 6px 0 0;
  color: var(--text);
  font-size: 19px;
}

.page-home .metric__text {
  margin: 0;
  max-width: 32em;
  color: var(--text-soft);
  font-size: 15.5px;
}

.page-home .metric__fold {
  margin-top: 4px;
}

.page-home .metric__fold summary {
  list-style: none;
  cursor: pointer;
}

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

.page-home .metric__link {
  margin-top: auto;
  padding-top: 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.page-home .metric__link:hover,
.page-home .metric__link:focus-visible {
  color: var(--green);
}

/* ---------- 横向主题带 ---------- */
.page-home .home-band {
  position: relative;
  margin: var(--gap) 0;
  padding: clamp(34px, 5.4vw, 60px) 0;
  background:
    linear-gradient(102deg, rgba(139, 107, 255, 0.17) 0%, rgba(7, 11, 16, 0) 62%),
    repeating-linear-gradient(102deg, rgba(47, 184, 255, 0.08) 0 1px, transparent 1px 28px);
}

.page-home .home-band::before,
.page-home .home-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0.55;
}

.page-home .home-band::before {
  top: 0;
  transform: rotate(-0.55deg);
}

.page-home .home-band::after {
  bottom: 0;
  transform: rotate(0.55deg);
}

.page-home .home-band__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.page-home .home-band__head .t-body {
  margin: 0;
}

.page-home .home-topics {
  scroll-snap-type: x mandatory;
}

.page-home .home-topics__track {
  display: flex;
  gap: 16px;
  padding: 6px var(--pad) 22px;
}

.page-home .home-topic {
  flex: 0 0 min(84vw, 340px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  background: linear-gradient(158deg, var(--ink-700) 0%, var(--ink-800) 100%);
  border-left: 3px solid var(--violet);
}

.page-home .home-topic__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .home-topic__time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.page-home .home-topic__title {
  margin: 0;
  font-size: 19px;
  line-height: 1.4;
  color: var(--text);
}

.page-home .home-topic__text {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

/* ---------- 多端一致 ---------- */
.page-home .home-devices__grid {
  display: grid;
  gap: clamp(24px, 5vw, 46px);
  align-items: center;
}

.page-home .home-devices__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-800);
  clip-path: polygon(0 var(--cut), var(--cut) 0, 100% 0, 100% 100%, 0 100%);
}

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

.page-home .home-devices__list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .home-devices__list li {
  position: relative;
  padding: 0 0 14px 20px;
  border-bottom: 1px dashed var(--ink-600);
  color: var(--text-soft);
  line-height: 1.75;
}

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

.page-home .home-devices__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--blue);
  transform: rotate(45deg);
}

/* ---------- 起步路径 ---------- */
.page-home .home-steps {
  counter-reset: hstep;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .home-step {
  position: relative;
  padding: 26px 22px 24px clamp(58px, 11vw, 78px);
  background: var(--ink-850);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%);
}

.page-home .home-step::before {
  counter-increment: hstep;
  content: "0" counter(hstep);
  position: absolute;
  left: clamp(18px, 3vw, 26px);
  top: 28px;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green);
}

.page-home .home-step__title {
  margin: 0 0 10px;
  font-size: 19px;
  color: var(--text);
}

.page-home .home-step__text {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.78;
}

.page-home .home-step__link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.page-home .home-step__link:hover,
.page-home .home-step__link:focus-visible {
  color: var(--green);
}

.page-home .home-start__note {
  margin: 28px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--ink-600);
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
}

.page-home .home-start__note a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 184, 255, 0.4);
}

.page-home .home-start__note a:hover,
.page-home .home-start__note a:focus-visible {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* ---------- 桌面端布局 ---------- */
@media (min-width: 860px) {
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(34px, 5vw, 72px);
  }

  .page-home .hero-phone {
    aspect-ratio: 5 / 4;
  }

  .page-home .home-metrics__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
  }

  .page-home .metric--a {
    grid-column: span 7;
  }

  .page-home .metric--b {
    grid-column: span 5;
  }

  .page-home .metric--c {
    grid-column: span 5;
  }

  .page-home .metric--d {
    grid-column: span 7;
  }

  .page-home .home-devices__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }

  .page-home .home-steps {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 0.88fr);
    align-items: start;
    gap: 14px;
  }
}

@media (min-width: 1180px) {
  .page-home .home-season__track,
  .page-home .home-topics__track {
    padding-left: max(var(--pad), calc((100vw - var(--shell)) / 2));
    padding-right: max(var(--pad), calc((100vw - var(--shell)) / 2));
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-phone__sweep {
    animation: none;
    opacity: 0.4;
  }
}
</
PAGE_CSS>>>
