.page-home{
  background:var(--gobi);
  color:var(--paper);
  overflow-x:hidden;
}

/* ---------- 首屏 ---------- */
.page-home .hero{
  position:relative;
  padding:56px 0 0;
  isolation:isolate;
}
.page-home .hero__media{
  position:absolute;
  inset:0;
  z-index:0;
}
.page-home .hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.4;
  filter:saturate(.8) contrast(1.06) brightness(.85);
}
.page-home .hero__glow{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg,rgba(11,18,32,.62) 0%,rgba(11,18,32,.86) 48%,var(--gobi) 96%),
    radial-gradient(110% 70% at 82% 6%,rgba(53,224,140,.16),transparent 58%),
    radial-gradient(90% 60% at 8% 96%,rgba(255,107,53,.10),transparent 60%);
}
.page-home .hero__inner{
  position:relative;
  z-index:2;
  padding-top:36px;
}
.page-home .hero__eyebrow{
  margin:0 0 18px;
  font-size:var(--fs-12);
  letter-spacing:.16em;
  color:var(--mist);
}
.page-home .hero__title{
  margin:0;
  font-size:clamp(38px,10.5vw,96px);
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.01em;
  color:var(--paper);
}
.page-home .hero__title-accent{
  display:inline-block;
  color:var(--turf);
  text-shadow:0 0 44px rgba(53,224,140,.28);
}
.page-home .hero__lead{
  margin:24px 0 0;
  max-width:44ch;
  color:var(--mist);
}

.page-home .hero__metrics{
  position:relative;
  z-index:2;
  margin-top:44px;
  display:grid;
  gap:0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.page-home .hero__metric{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:22px 0;
  text-decoration:none;
  color:inherit;
  border-bottom:1px solid var(--line-faint);
}
.page-home .hero__metric:last-child{
  border-bottom:0;
}
.page-home .hero__num{
  display:block;
  font-family:var(--font-mono);
  font-size:clamp(52px,13vw,104px);
  line-height:.94;
  letter-spacing:.02em;
  font-weight:700;
  color:var(--paper);
  transition:color .25s ease;
}
.page-home .hero__num .num__unit{
  font-size:.24em;
  letter-spacing:.1em;
  color:var(--mist);
  margin-left:.12em;
}
.page-home .hero__metric:nth-child(2) .hero__num{
  color:var(--turf);
}
.page-home .hero__metric:nth-child(3) .hero__num{
  color:var(--stoppage);
}
.page-home .hero__metric:hover .hero__num,
.page-home .hero__metric:focus-visible .hero__num{
  color:var(--copper);
}
.page-home .hero__metric-label{
  font-size:var(--fs-14);
  line-height:1.6;
  color:var(--mist);
  max-width:30ch;
}
.page-home .hero__metric-more{
  font-size:var(--fs-12);
  letter-spacing:.12em;
  color:var(--copper);
}

/* ---------- 通用章节 ---------- */
.page-home .section{
  padding:72px 0;
}
.page-home .sec-title{
  margin:10px 0 0;
  font-weight:900;
  line-height:1.06;
  color:var(--paper);
}
.page-home .sec-lead{
  margin:18px 0 0;
  max-width:46ch;
  color:var(--mist);
}
.page-home .section__index{
  display:inline-block;
  font-family:var(--font-mono);
  font-size:var(--fs-12);
  letter-spacing:.2em;
  color:var(--copper);
  padding-bottom:6px;
  border-bottom:1px solid rgba(201,138,75,.45);
}
.page-home .sec-foot{
  margin:36px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.page-home .sec-note{
  margin:28px 0 0;
  font-size:var(--fs-14);
  line-height:1.8;
  color:var(--mist);
  padding-left:16px;
  border-left:2px solid var(--copper);
}

/* ---------- 时间轴 ---------- */
.page-home .sec-journey{
  background:
    linear-gradient(180deg,var(--gobi) 0%,var(--night) 46%,var(--gobi) 100%);
}
.page-home .timeline{
  position:relative;
  margin:40px 0 0;
  padding:0 0 0 30px;
  list-style:none;
}
.page-home .timeline::before{
  content:"";
  position:absolute;
  left:6px;
  top:10px;
  bottom:26px;
  width:1px;
  background:linear-gradient(180deg,var(--turf) 0%,var(--scale) 40%,var(--line-faint) 100%);
}
.page-home .timeline__node{
  position:relative;
  padding:0 0 34px;
}
.page-home .timeline__node:last-child{
  padding-bottom:0;
}
.page-home .timeline__node::before{
  content:"";
  position:absolute;
  left:-30px;
  top:8px;
  width:13px;
  height:13px;
  border-radius:3px;
  background:var(--board);
  border:1px solid var(--scale);
  transition:background .25s ease,border-color .25s ease;
}
.page-home .timeline__node[data-state="done"]::before{
  background:var(--turf);
  border-color:var(--turf);
  box-shadow:0 0 0 4px rgba(53,224,140,.14);
}
.page-home .timeline__node[data-state="live"]::before{
  background:var(--stoppage);
  border-color:var(--stoppage);
  box-shadow:0 0 0 5px rgba(255,107,53,.2);
}
.page-home .timeline__step{
  margin:0 0 6px;
  font-family:var(--font-mono);
  font-size:var(--fs-12);
  letter-spacing:.18em;
  color:var(--scale);
}
.page-home .timeline__node[data-state="live"] .timeline__step{
  color:var(--stoppage);
}
.page-home .timeline__title{
  margin:0 0 10px;
  font-size:var(--fs-20);
  font-weight:800;
  line-height:1.35;
  color:var(--paper);
}
.page-home .timeline__body .body-text{
  margin:0;
  color:var(--mist);
  max-width:38ch;
}
.page-home .timeline__toggle{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  font:inherit;
  font-size:var(--fs-12);
  letter-spacing:.1em;
  color:var(--turf);
  background:transparent;
  border:1px solid rgba(53,224,140,.4);
  border-radius:999px;
  cursor:pointer;
  transition:background .2s ease,border-color .2s ease;
}
.page-home .timeline__toggle:hover{
  background:rgba(53,224,140,.1);
}
.page-home .timeline__toggle:focus-visible{
  outline:2px solid var(--copper);
  outline-offset:2px;
}
.page-home .timeline__toggle[aria-expanded="true"]{
  background:rgba(53,224,140,.14);
  border-color:var(--turf);
}
.page-home .timeline__fields{
  margin:14px 0 0;
  padding:12px 14px;
  font-family:var(--font-mono);
  font-size:var(--fs-12);
  line-height:2;
  letter-spacing:.06em;
  color:var(--mist);
  background:rgba(34,49,79,.55);
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
}
.page-home .timeline__fields[hidden]{
  display:none;
}

/* ---------- 四个模块 ---------- */
.page-home .sec-modules{
  border-top:1px solid var(--line-faint);
  border-bottom:1px solid var(--line-faint);
}
.page-home .sticker-board{
  margin-top:40px;
  display:grid;
  gap:18px;
}
.page-home .mod{
  padding:24px 22px 26px;
  background:linear-gradient(160deg,rgba(34,49,79,.92),rgba(20,30,51,.92));
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  position:relative;
}
.page-home .mod::after{
  content:"";
  position:absolute;
  left:22px;
  right:22px;
  top:0;
  height:2px;
  border-radius:2px;
}
.page-home .mod--a::after{background:var(--turf);}
.page-home .mod--b::after{background:var(--scale);}
.page-home .mod--c::after{background:var(--copper);}
.page-home .mod--d::after{background:var(--stoppage);}
.page-home .mod__tag{
  display:inline-block;
  margin:0 0 12px;
}
.page-home .mod__title{
  margin:0 0 12px;
  font-size:var(--fs-20);
  font-weight:800;
  line-height:1.35;
  color:var(--paper);
}
.page-home .mod .body-text{
  margin:0;
  color:var(--mist);
  font-size:var(--fs-14);
}
.page-home .mod__use{
  margin:16px 0 0;
  padding-top:14px;
  border-top:1px dashed var(--line-soft);
  font-size:var(--fs-12);
  line-height:1.7;
  letter-spacing:.04em;
  color:var(--copper);
}

/* ---------- 补时构成 ---------- */
.page-home .sec-stoppage{
  background:var(--gobi);
}
.page-home .bar{
  display:flex;
  height:58px;
  margin-top:36px;
  border-radius:10px;
  overflow:hidden;
  border:1px solid var(--line);
}
.page-home .bar__seg{
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-mono);
  font-size:var(--fs-14);
  font-weight:700;
  letter-spacing:.06em;
  color:var(--gobi);
  transition:opacity .2s ease;
}
.page-home .bar__seg--1{flex:0 0 42%;background:var(--stoppage);}
.page-home .bar__seg--2{flex:0 0 25%;background:var(--turf);}
.page-home .bar__seg--3{flex:0 0 18%;background:var(--copper);}
.page-home .bar__seg--4{flex:0 0 15%;background:var(--scale);color:var(--paper);}
.page-home .bar:hover .bar__seg{
  opacity:.42;
}
.page-home .bar:hover .bar__seg:hover{
  opacity:1;
}
.page-home .bar-legend{
  margin:26px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:18px;
}
.page-home .bar-legend__item{
  padding-left:16px;
  border-left:1px solid var(--line-soft);
}
.page-home .bar-legend__dot{
  display:block;
  width:22px;
  height:3px;
  border-radius:2px;
  margin-bottom:10px;
}
.page-home .bar-legend__dot--1{background:var(--stoppage);}
.page-home .bar-legend__dot--2{background:var(--turf);}
.page-home .bar-legend__dot--3{background:var(--copper);}
.page-home .bar-legend__dot--4{background:var(--scale);}
.page-home .bar-legend__name{
  margin:0 0 8px;
  font-size:var(--fs-16);
  font-weight:800;
  color:var(--paper);
}
.page-home .bar-legend__item .body-text{
  margin:0;
  font-size:var(--fs-14);
  color:var(--mist);
}

/* ---------- 传球分区 ---------- */
.page-home .sec-passing{
  background:linear-gradient(180deg,var(--night) 0%,var(--gobi) 100%);
}
.page-home .passing__grid{
  display:grid;
  gap:34px;
}
.page-home .passing__visual{
  position:relative;
}
.page-home .pitch{
  position:relative;
  aspect-ratio:5/4;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:
    radial-gradient(circle at 50% -10%,rgba(53,224,140,.18),transparent 62%),
    linear-gradient(180deg,rgba(34,49,79,.9),rgba(11,18,32,.95));
}
.page-home .pitch__lines{
  position:absolute;
  inset:0;
  background-image:
    repeating-linear-gradient(90deg,var(--line-faint) 0 1px,transparent 1px 8.333%),
    repeating-linear-gradient(0deg,var(--line-faint) 0 1px,transparent 1px 10%);
}
.page-home .pitch__zone{
  position:absolute;
  left:0;
  right:0;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  padding:0 12px 8px;
}
.page-home .pitch__zone span{
  font-family:var(--font-mono);
  font-size:var(--fs-12);
  letter-spacing:.16em;
  color:var(--paper);
}
.page-home .pitch__zone--back{
  top:0;
  height:34%;
  background:linear-gradient(90deg,rgba(53,224,140,.32),rgba(53,224,140,.06));
}
.page-home .pitch__zone--mid{
  top:34%;
  height:34%;
  background:linear-gradient(90deg,rgba(201,138,75,.34),rgba(201,138,75,.06));
}
.page-home .pitch__zone--front{
  top:68%;
  height:32%;
  background:linear-gradient(90deg,rgba(255,107,53,.34),rgba(255,107,53,.06));
}
.page-home .passing__figure{
  margin:-46px 0 0 18px;
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line-soft);
}
.page-home .passing__figure img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  filter:saturate(.85) contrast(1.05) brightness(.82);
}
.page-home .passing__copy .body-text{
  margin:18px 0 0;
  color:var(--mist);
  max-width:40ch;
}
.page-home .zone-list{
  margin:28px 0;
  padding:0;
  border-top:1px solid var(--line-soft);
}
.page-home .zone-list__row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid var(--line-faint);
}
.page-home .zone-list__row dt{
  font-size:var(--fs-14);
  letter-spacing:.1em;
  color:var(--paper);
  min-width:3em;
}
.page-home .zone-list__row dd{
  margin:0;
  display:flex;
  align-items:baseline;
  gap:14px;
  text-align:right;
}
.page-home .zone-list__num{
  font-family:var(--font-mono);
  font-size:var(--fs-28);
  letter-spacing:.04em;
  color:var(--paper);
}
.page-home .zone-list__num--hot{
  color:var(--turf);
}
.page-home .zone-list__note{
  font-size:var(--fs-12);
  letter-spacing:.08em;
  color:var(--mist);
}

/* ---------- 更新节奏 ---------- */
.page-home .sec-rhythm{
  background:var(--gobi);
}
.page-home .rhythm{
  margin-top:38px;
  display:grid;
  gap:16px;
}
.page-home .rhythm__item{
  padding:24px 22px;
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  background:rgba(20,30,51,.72);
  position:relative;
  overflow:hidden;
}
.page-home .rhythm__item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:var(--scale);
}
.page-home .rhythm__item:nth-child(1)::before{background:var(--turf);}
.page-home .rhythm__item:nth-child(2)::before{background:var(--stoppage);}
.page-home .rhythm__badge{
  display:inline-block;
  margin-bottom:12px;
}
.page-home .rhythm__title{
  margin:0 0 10px;
  font-size:var(--fs-20);
  font-weight:800;
  color:var(--paper);
}
.page-home .rhythm__item .body-text{
  margin:0;
  font-size:var(--fs-14);
  color:var(--mist);
}

/* ---------- 尾部形象带 ---------- */
.page-home .edge-band{
  position:relative;
  height:190px;
  overflow:hidden;
}
.page-home .edge-band img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.7) contrast(1.05) brightness(.7);
}
.page-home .edge-band::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,var(--gobi) 0%,rgba(11,18,32,.25) 45%,var(--sand) 100%);
}

/* ---------- 目录区 ---------- */
.page-home .sec-directory{
  background:var(--sand);
  color:var(--gobi);
}
.page-home .sec-title--dark{
  color:var(--gobi);
}
.page-home .sec-lead--dark{
  color:#4A5568;
}
.page-home .sec-directory .section__index{
  color:#96652F;
  border-bottom-color:rgba(150,101,47,.5);
}
.page-home .directory{
  margin:38px 0 0;
  padding:0;
  list-style:none;
  border-top:1px solid rgba(11,18,32,.16);
}
.page-home .directory__item{
  border-bottom:1px solid rgba(11,18,32,.14);
}
.page-home .directory__link{
  display:flex;
  gap:18px;
  padding:22px 0;
  text-decoration:none;
  color:inherit;
  transition:padding-left .25s ease;
}
.page-home .directory__link:hover,
.page-home .directory__link:focus-visible{
  padding-left:10px;
}
.page-home .directory__link:focus-visible{
  outline:2px solid var(--copper);
  outline-offset:4px;
}
.page-home .directory__no{
  flex:0 0 auto;
  font-family:var(--font-mono);
  font-size:var(--fs-14);
  letter-spacing:.12em;
  color:#96652F;
  padding-top:4px;
}
.page-home .directory__body{
  display:block;
}
.page-home .directory__name{
  display:block;
  font-size:var(--fs-20);
  font-weight:800;
  color:var(--gobi);
  margin-bottom:8px;
}
.page-home .directory__desc{
  display:block;
  font-size:var(--fs-14);
  line-height:1.8;
  color:#4A5568;
  max-width:52ch;
}

/* ---------- 响应式 ---------- */
@media (min-width:600px){
  .page-home .hero__metric{
    padding:26px 20px 26px 0;
  }
  .page-home .bar-legend{
    grid-template-columns:repeat(2,1fr);
    gap:22px 26px;
  }
  .page-home .rhythm{
    grid-template-columns:repeat(3,1fr);
  }
  .page-home .edge-band{
    height:260px;
  }
}

@media (min-width:900px){
  .page-home .hero{
    padding-top:88px;
  }
  .page-home .hero__inner{
    padding-top:64px;
    max-width:820px;
  }
  .page-home .hero__metrics{
    grid-template-columns:repeat(3,1fr);
    border-bottom:1px solid var(--line);
  }
  .page-home .hero__metric{
    padding:30px 26px 30px 0;
    border-bottom:0;
    border-right:1px solid var(--line-faint);
  }
  .page-home .hero__metric:last-child{
    border-right:0;
  }

  .page-home .section{
    padding:104px 0;
  }

  .page-home .timeline{
    padding-left:56px;
    margin-top:56px;
  }
  .page-home .timeline::before{
    left:8px;
  }
  .page-home .timeline__node::before{
    left:-56px;
    width:17px;
    height:17px;
  }
  .page-home .timeline__body{
    max-width:640px;
  }
  .page-home .timeline__body .body-text{
    max-width:52ch;
  }

  .page-home .sticker-board{
    grid-template-columns:repeat(12,1fr);
    gap:22px;
  }
  .page-home .mod--a{grid-column:1 / span 7;}
  .page-home .mod--b{grid-column:8 / span 5;margin-top:44px;}
  .page-home .mod--c{grid-column:2 / span 5;margin-top:-16px;}
  .page-home .mod--d{grid-column:8 / span 5;margin-top:-52px;}

  .page-home .bar-legend{
    grid-template-columns:repeat(4,1fr);
  }

  .page-home .passing__grid{
    grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);
    gap:56px;
    align-items:start;
  }
  .page-home .passing__figure{
    margin:-62px 0 0 34px;
  }

  .page-home .edge-band{
    height:340px;
  }

  .page-home .directory__link{
    align-items:baseline;
    padding:26px 0;
  }
  .page-home .directory__no{
    flex:0 0 72px;
  }
}

@media (prefers-reduced-motion:reduce){
  .page-home .hero__num,
  .page-home .timeline__node::before,
  .page-home .bar__seg,
  .page-home .directory__link{
    transition:none;
  }
}
