.page-home{
  --home-gap: 16px;
  --home-reel-card: 168px;
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 72px 72px;
  padding: 0 0 48px;
  overflow-x: clip;
}

/* ---------- 首屏 ---------- */
.page-home .home-hero{
  padding-top: 18px;
}

.page-home .breadcrumbs{
  margin-bottom: 14px;
}

.page-home .home-hero__panel{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  padding: 30px 22px 32px;
}

.page-home .home-hero__panel::after{
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(63, 191, 127, .45), transparent 70%);
  pointer-events: none;
}

.page-home .home-hero__panel .eyebrow{
  color: var(--neon);
}

.page-home .home-hero__title{
  position: relative;
  margin: 14px 0 0;
  font-size: clamp(34px, 10vw, 78px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--paper);
}

.page-home .home-hero__title-sub{
  display: block;
  margin-top: 10px;
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--grass);
}

.page-home .home-hero__lead{
  position: relative;
  margin: 18px 0 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--on-dark);
}

/* 三块内容入口 */
.page-home .home-dock{
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.page-home .home-dock__item{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  background: rgba(245, 241, 230, .07);
  border: 1px solid rgba(245, 241, 230, .18);
  color: var(--paper);
  text-decoration: none;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.page-home .home-dock__item:hover,
.page-home .home-dock__item:focus-visible{
  background: rgba(23, 135, 91, .55);
  border-color: var(--grass);
  transform: translateX(4px);
}

.page-home .home-dock__item:focus-visible{
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

.page-home .home-dock__num{
  font-size: 20px;
  font-weight: 700;
  color: var(--neon);
  line-height: 1;
}

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

.page-home .home-dock__label{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
}

.page-home .home-dock__desc{
  font-size: 12px;
  line-height: 1.5;
  color: var(--on-dark-soft);
}

/* 首屏通栏图 */
.page-home .home-banner{
  position: relative;
  margin: 20px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--night);
}

.page-home .home-banner img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 3;
  object-fit: cover;
  filter: saturate(.62) contrast(1.04);
}

.page-home .home-banner::after{
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(233, 255, 79, .45);
  border-radius: calc(var(--radius) - 10px);
  pointer-events: none;
}

.page-home .home-banner__tag{
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--neon);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .08em;
}

/* ---------- 三块并列分栏 ---------- */
.page-home .home-blocks{
  display: grid;
  gap: var(--home-gap);
  margin-top: 30px;
}

.page-home .block-panel{
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 20px 24px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}

.page-home .block-panel::before{
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 5px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--green);
  transition: transform .3s var(--ease), background .3s var(--ease);
}

.page-home .block-panel:hover{
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.page-home .block-panel:hover::before{
  transform: translateX(-5px);
  background: var(--orange);
}

.page-home .block-num{
  display: block;
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--mist);
}

@supports ((-webkit-text-stroke: 1px black) or (text-stroke: 1px black)){
  .page-home .block-num{
    color: transparent;
    -webkit-text-stroke: 2px var(--green);
  }
  .page-home .block-panel:hover .block-num{
    -webkit-text-stroke-color: var(--orange);
  }
}

.page-home .block-title{
  margin: 10px 0 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
}

.page-home .block-lead{
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
}

/* 轮次读数 */
.page-home .round-readout{
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--paper);
}

.page-home .round-readout__label{
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--on-dark-soft);
}

.page-home .round-readout__num{
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--neon);
}

.page-home .round-readout__unit{
  font-size: 12px;
  color: var(--on-dark);
}

.page-home .round-scale{
  display: block;
  width: 100%;
  height: auto;
  margin-top: 12px;
}

.page-home .round-scale .rs-base,
.page-home .round-scale .rs-tick{
  stroke: var(--line);
  stroke-width: 2;
}

.page-home .round-scale .rs-dot{
  fill: var(--neon);
  stroke: var(--ink);
  stroke-width: 2;
}

.page-home .league-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.page-home .slot-list{
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
}

.page-home .slot-list__item{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: var(--paper);
  font-size: 13px;
  color: var(--ink);
}

.page-home .slot-list__time{
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

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

.page-home .slot-list__where{
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--gray);
}

.page-home .block-note{
  margin: 14px 0 0;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--gray);
}

/* 阵容变动 */
.page-home .move-list{
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .move-list__item{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--mist);
  font-size: 13px;
  color: var(--ink);
  transition: background .25s var(--ease);
}

.page-home .move-list__item:hover{
  background: rgba(63, 191, 127, .22);
}

.page-home .move-list__text{
  min-width: 0;
  line-height: 1.5;
}

.page-home .move-list__time{
  font-size: 11px;
  color: var(--gray);
  white-space: nowrap;
}

.page-home .block-more{
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

.page-home .block-more:hover{
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.page-home .block-figure{
  margin: 18px 0 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--night);
}

.page-home .block-figure img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.55) contrast(1.05);
}

/* 回看集锦横向轴 */
.page-home .reel{
  display: flex;
  gap: 10px;
  margin: 16px 0 0;
  padding: 2px 2px 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
}

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

.page-home .reel::-webkit-scrollbar-track{
  background: var(--line-soft);
  border-radius: var(--radius-pill);
}

.page-home .reel::-webkit-scrollbar-thumb{
  background: var(--green);
  border-radius: var(--radius-pill);
}

.page-home .reel:focus-visible{
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

.page-home .reel__item{
  flex: 0 0 var(--home-reel-card);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-height: 136px;
  padding: 14px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--paper);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.page-home .reel__item:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.page-home .reel__round{
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: rgba(233, 255, 79, .16);
  color: var(--neon);
  font-size: 10px;
  letter-spacing: .08em;
}

.page-home .reel__title{
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--paper);
}

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

.page-home .reel-hint{
  margin: 6px 0 0;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--gray);
}

/* ---------- 设备区 ---------- */
.page-home .device-band{
  position: relative;
  border-radius: var(--radius);
  background: var(--night);
  color: var(--paper);
  padding: 28px 22px 30px;
  overflow: hidden;
}

.page-home .device-band::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--neon));
}

.page-home .device-head .eyebrow{
  color: var(--neon);
}

.page-home .device-head__title{
  margin: 12px 0 0;
  font-size: clamp(24px, 6vw, 38px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--paper);
}

.page-home .device-grid{
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.page-home .device-cards{
  display: grid;
  gap: 14px;
}

.page-home .device-card{
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
  color: var(--ink);
}

.page-home .device-card--ghost{
  background: rgba(245, 241, 230, .1);
  border: 1px solid rgba(245, 241, 230, .22);
  color: var(--paper);
}

.page-home .device-card__badge{
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--neon);
  font-size: 10px;
  letter-spacing: .08em;
}

.page-home .device-card--ghost .device-card__badge{
  background: var(--neon);
  color: var(--ink);
}

.page-home .device-card__title{
  margin: 12px 0 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.01em;
}

.page-home .device-card__text{
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
}

.page-home .device-card--ghost .device-card__text{
  color: var(--on-dark);
}

.page-home .device-card .btn{
  margin-top: 16px;
}

.page-home .device-shot{
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  justify-self: center;
  width: 100%;
  max-width: 240px;
}

.page-home .device-shot img{
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(.6) contrast(1.05);
}

.page-home .device-stats{
  list-style: none;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(245, 241, 230, .18);
  display: grid;
  gap: 16px;
}

.page-home .device-stats__item{
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.page-home .device-stats__num{
  font-size: 26px;
  font-weight: 700;
  color: var(--neon);
  line-height: 1;
}

.page-home .device-stats__label{
  font-size: 13px;
  color: var(--on-dark);
  line-height: 1.5;
}

/* ---------- 三步路径 ---------- */
.page-home .path-list{
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
  counter-reset: path;
}

.page-home .path-list__item{
  padding-left: 16px;
  border-left: 2px dashed var(--line);
}

.page-home .path-list__step{
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--orange);
}

.page-home .path-list__title{
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}

.page-home .path-list__text{
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
}

/* ---------- 支持区 ---------- */
.page-home .help-band{
  display: grid;
  gap: 20px;
  padding: 26px 22px;
  border-radius: var(--radius);
  background: var(--mist);
  border: 1px solid var(--line-soft);
}

.page-home .help-band__title{
  margin: 12px 0 0;
  font-size: clamp(22px, 5.4vw, 32px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}

.page-home .help-band__body{
  margin: 10px 0 0;
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray);
}

.page-home .help-band__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- 断点 ---------- */
@media (min-width: 700px){
  .page-home{
    --home-gap: 18px;
    --home-reel-card: 180px;
  }

  .page-home .home-hero__panel{
    padding: 44px 40px 46px;
  }

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

  .page-home .home-dock__item{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-radius: 20px;
    padding: 18px 18px 20px;
  }

  .page-home .home-dock__item:hover,
  .page-home .home-dock__item:focus-visible{
    transform: translateY(-4px);
  }

  .page-home .device-stats{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .page-home .path-list{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .page-home .path-list__item{
    padding: 0 22px;
    border-left: 0;
  }

  .page-home .path-list__item + .path-list__item{
    border-left: 2px dashed var(--line);
  }

  .page-home .help-band{
    grid-template-columns: minmax(0, 1.6fr) auto;
    align-items: center;
    padding: 32px 34px;
  }
}

@media (min-width: 1000px){
  .page-home .home-blocks{
    grid-template-columns: 5fr 4fr 3fr;
    align-items: start;
    gap: 20px;
  }

  .page-home .device-grid{
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
  }

  .page-home .device-shot{
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce){
  .page-home .home-dock__item,
  .page-home .block-panel,
  .page-home .block-panel::before,
  .page-home .reel__item,
  .page-home .move-list__item{
    transition: none;
  }
}
