.page-home{
  --hm-edge:clamp(18px,4vw,52px);
  --hm-h2:clamp(22px,4.6vw,34px);
  --hm-r:var(--cut,14px);
  background:var(--ink);
  color:var(--body-text);
  overflow-x:clip;
}

/* ---------- 通用小件 ---------- */
.page-home .hm-crumbs{
  display:block;
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--steel);
  margin-bottom:16px;
}

.page-home .hm-h2{
  margin:0;
  font-size:var(--hm-h2);
  line-height:1.2;
  letter-spacing:.03em;
  font-weight:700;
  color:var(--white);
  max-width:22ch;
}

.page-home .hm-lede{
  margin:0;
  font-size:15px;
  line-height:1.78;
  color:var(--steel);
  max-width:66ch;
}

.page-home .hm-head{
  display:grid;
  gap:10px;
  margin-bottom:26px;
}

.page-home .hm-sec{
  padding:56px 0;
}

@media (min-width:768px){
  .page-home .hm-sec{ padding:88px 0; }
}

/* ---------- 首屏声明画板 ---------- */
.page-home .hm-deck{
  padding-top:calc(var(--head-h,92px) + 18px);
  padding-bottom:10px;
}

.page-home .hm-stage{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:var(--panel);
  clip-path:polygon(0 var(--hm-r),var(--hm-r) 0,100% 0,100% calc(100% - var(--hm-r)),calc(100% - var(--hm-r)) 100%,0 100%);
}

.page-home .hm-stage::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:4;
  pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(147,160,184,.24);
  clip-path:polygon(0 var(--hm-r),var(--hm-r) 0,100% 0,100% calc(100% - var(--hm-r)),calc(100% - var(--hm-r)) 100%,0 100%);
}

.page-home .hm-stage__bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.page-home .hm-stage__bg img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.46;
  filter:saturate(.85) contrast(1.08);
}

.page-home .hm-stage__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(115% 82% at 6% 4%, rgba(255,42,60,.34), transparent 62%),
    radial-gradient(115% 82% at 94% 98%, rgba(46,123,255,.34), transparent 64%),
    linear-gradient(180deg, rgba(10,13,20,.70), rgba(10,13,20,.95));
}

.page-home .hm-stage__split{
  position:absolute;
  inset:-15% -6%;
  z-index:1;
  pointer-events:none;
  opacity:.85;
  background:linear-gradient(104deg,
    transparent 43%,
    rgba(255,42,60,.42) 47%,
    rgba(255,42,60,.08) 49.3%,
    rgba(46,123,255,.08) 50.7%,
    rgba(46,123,255,.42) 53%,
    transparent 57%);
}

.page-home .hm-stage__inner{
  position:relative;
  z-index:2;
  padding:38px var(--hm-edge) 34px;
  display:grid;
  gap:18px;
}

@media (min-width:768px){
  .page-home .hm-stage__inner{
    padding:64px 52px 56px;
    gap:24px;
  }
}

.page-home .hm-stage__title{
  margin:0;
  font-size:clamp(30px,7.4vw,60px);
  line-height:1.08;
  letter-spacing:.035em;
  font-weight:800;
  color:var(--white);
  max-width:19ch;
}

.page-home .hm-stage__lede{
  margin:0;
  font-size:16px;
  line-height:1.78;
  color:var(--body-text);
  max-width:64ch;
}

@media (min-width:768px){
  .page-home .hm-stage__lede{ font-size:17px; }
}

.page-home .hm-stage__cols{
  display:grid;
  gap:1px;
  margin-top:6px;
  background:var(--rule);
  border:1px solid var(--rule);
}

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

.page-home .hm-stage__col{
  position:relative;
  overflow:hidden;
  padding:18px 16px 20px;
  background:rgba(10,13,20,.86);
  display:grid;
  gap:10px;
  align-content:start;
}

.page-home .hm-stage__col::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}

.page-home .hm-stage__col--red::before{
  background:linear-gradient(140deg, rgba(255,42,60,.22), transparent 64%);
}

.page-home .hm-stage__col--blue::before{
  background:linear-gradient(320deg, rgba(46,123,255,.24), transparent 64%);
}

.page-home .hm-stage__col > *{
  position:relative;
  z-index:1;
}

.page-home .hm-stage__col p{
  margin:0;
  font-size:15px;
  line-height:1.74;
  color:var(--body-text);
}

.page-home .hm-stage__tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:2px;
}

.page-home .hm-stage__note{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.08em;
  color:var(--steel);
}

.page-home .hm-stage__stats{
  list-style:none;
  margin:12px 0 0;
  padding:20px 0 0;
  border-top:1px solid var(--rule);
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.page-home .hm-stage__stats li{
  display:grid;
  gap:6px;
  min-width:0;
}

.page-home .hm-stat__num{
  font-size:clamp(22px,6vw,40px);
  font-weight:700;
  line-height:1;
  letter-spacing:-.02em;
  color:var(--white);
}

.page-home .hm-stage__statlabel{
  font-size:13px;
  line-height:1.5;
  color:var(--steel);
}

/* ---------- 名单滚动带 ---------- */
.page-home .hm-window{
  display:grid;
  gap:16px;
}

@media (min-width:900px){
  .page-home .hm-window{
    grid-template-columns:262px minmax(0,1fr);
    gap:22px;
  }
}

.page-home .hm-window__figure{
  margin:0;
  position:relative;
  min-height:186px;
  overflow:hidden;
  border:1px solid var(--rule);
  background:var(--panel);
  clip-path:polygon(0 14px,14px 0,100% 0,100% calc(100% - 14px),calc(100% - 14px) 100%,0 100%);
}

.page-home .hm-window__figure img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.9);
}

@media (min-width:900px){
  .page-home .hm-window__figure{ min-height:236px; }
}

.page-home .hm-window__rail{
  display:grid;
  gap:10px;
  min-width:0;
}

.page-home .hm-rail{
  display:flex;
  gap:12px;
  margin:0;
  padding:2px 2px 14px;
  list-style:none;
  overflow-x:auto;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}

.page-home .hm-rail::-webkit-scrollbar{ display:none; }

.page-home .hm-entry{
  flex:0 0 228px;
  scroll-snap-align:start;
  display:grid;
  gap:10px;
  align-content:start;
  padding:16px 14px 18px;
  background:var(--panel);
  border:1px solid var(--rule);
  clip-path:polygon(0 12px,12px 0,100% 0,100% calc(100% - 12px),calc(100% - 12px) 100%,0 100%);
  transition:background .18s var(--ease),transform .18s var(--ease);
}

.page-home .hm-entry:hover{
  background:#151c2b;
  transform:translateY(-2px);
}

.page-home .hm-entry__main{
  font-size:15px;
  font-weight:600;
  line-height:1.6;
  color:var(--white);
}

.page-home .hm-entry__meta{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.05em;
  color:var(--steel);
}

.page-home .hm-progress{
  height:3px;
  background:rgba(36,44,61,.85);
  overflow:hidden;
}

.page-home .hm-progress__bar{
  display:block;
  height:100%;
  width:36%;
  background:linear-gradient(90deg,var(--red),var(--blue));
}

/* ---------- 积分阶梯 ---------- */
.page-home .hm-ladder{
  display:grid;
  gap:26px;
}

@media (min-width:900px){
  .page-home .hm-ladder{
    grid-template-columns:minmax(0,1.4fr) minmax(0,.6fr);
    gap:32px;
  }
}

.page-home .hm-ladder__main{
  display:grid;
  gap:10px;
  min-width:0;
}

.page-home .hm-steps{
  list-style:none;
  margin:20px 0 0;
  padding:0;
  height:220px;
  display:flex;
  align-items:flex-end;
  gap:8px;
}

@media (min-width:640px){
  .page-home .hm-steps{ height:296px; gap:12px; }
}

.page-home .hm-step{
  flex:1 1 0;
  min-width:0;
  height:100%;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.page-home .hm-step__cap{
  text-align:center;
  color:var(--white);
  font-size:13px;
}

.page-home .hm-step__track{
  position:relative;
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  border-bottom:1px solid var(--rule);
}

.page-home .hm-step__fill{
  display:block;
  position:relative;
  height:var(--hm-h,60%);
  border:1px solid rgba(46,123,255,.5);
  border-bottom:0;
  background:linear-gradient(180deg, rgba(46,123,255,.55), rgba(46,123,255,.10));
  transition:box-shadow .18s var(--ease),border-color .18s var(--ease);
}

.page-home .hm-step--red .hm-step__fill{
  border-color:rgba(255,42,60,.55);
  background:linear-gradient(180deg, rgba(255,42,60,.58), rgba(255,42,60,.10));
}

.page-home .hm-step__fill::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:var(--hm-t,40%);
  border-top:1px solid rgba(79,240,214,.42);
  background-image:repeating-linear-gradient(135deg, rgba(79,240,214,.5) 0 3px, rgba(79,240,214,0) 3px 7px);
}

.page-home .hm-step:hover .hm-step__fill,
.page-home .hm-step:focus-within .hm-step__fill{
  border-color:var(--cyan);
  box-shadow:0 0 0 1px var(--cyan), 0 0 20px rgba(79,240,214,.22);
}

.page-home .hm-step__tip{
  position:absolute;
  left:50%;
  bottom:calc(var(--hm-h,60%) + 10px);
  z-index:5;
  transform:translate(-50%,4px);
  padding:6px 10px;
  white-space:nowrap;
  font-size:12px;
  line-height:1.4;
  color:var(--white);
  background:rgba(10,13,20,.96);
  border:1px solid var(--rule);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .18s var(--ease),transform .18s var(--ease),visibility .18s;
}

@media (min-width:900px){
  .page-home .hm-step:hover .hm-step__tip{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,0);
  }
}

.page-home .hm-step__label{
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.05em;
  text-align:center;
  color:var(--steel);
}

.page-home .hm-ladder__figure{
  margin:0;
  position:relative;
  overflow:hidden;
  min-height:220px;
  border:1px solid var(--rule);
  background:var(--panel);
  clip-path:polygon(0 16px,16px 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%);
}

.page-home .hm-ladder__figure img{
  display:block;
  width:100%;
  height:100%;
  min-height:220px;
  object-fit:cover;
}

/* ---------- 球员数据卡 ---------- */
.page-home .hm-cards{
  display:grid;
  gap:14px;
}

@media (min-width:860px){
  .page-home .hm-cards{ grid-template-columns:repeat(3,minmax(0,1fr)); }
}

.page-home .hm-pcard{
  overflow:hidden;
  border:1px solid var(--rule);
  background:var(--glass);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  clip-path:polygon(0 16px,16px 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%);
  transition:border-color .18s var(--ease);
}

.page-home .hm-pcard:hover{ border-color:rgba(79,240,214,.4); }

.page-home .hm-pcard__head{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  width:100%;
  padding:18px 16px;
  background:none;
  border:0;
  font:inherit;
  color:inherit;
  text-align:left;
  cursor:pointer;
}

.page-home .hm-pcard__num{
  font-size:30px;
  font-weight:700;
  line-height:1;
  letter-spacing:-.02em;
  color:var(--white);
}

.page-home .hm-pcard__label{
  display:grid;
  gap:5px;
  min-width:0;
  font-size:14px;
  font-weight:600;
  line-height:1.45;
  color:var(--white);
}

.page-home .hm-pcard__sub{
  font-size:12px;
  font-weight:400;
  letter-spacing:.02em;
  color:var(--steel);
}

.page-home .hm-pcard .ax-expand__body-inner{
  display:grid;
  gap:8px;
  padding:0 16px 18px;
}

.page-home .hm-kvrow{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  border-top:1px solid var(--rule);
  font-size:13px;
}

.page-home .hm-kvrow__k{
  font-family:var(--mono);
  letter-spacing:.05em;
  color:var(--steel);
}

.page-home .hm-kvrow__v{
  font-family:var(--mono);
  color:var(--white);
}

.page-home .hm-bar{
  display:grid;
  grid-template-columns:64px minmax(0,1fr) 58px;
  align-items:center;
  gap:10px;
  padding:8px 0;
  border-top:1px solid var(--rule);
  font-size:12px;
}

.page-home .hm-bar__k{
  font-family:var(--mono);
  letter-spacing:.04em;
  color:var(--steel);
}

.page-home .hm-bar__track{
  display:block;
  height:5px;
  background:rgba(36,44,61,.9);
  overflow:hidden;
}

.page-home .hm-bar__fill{
  display:block;
  height:100%;
  width:var(--hm-w,50%);
  background:linear-gradient(90deg,var(--blue),var(--cyan));
}

.page-home .hm-bar__v{
  font-family:var(--mono);
  text-align:right;
  color:var(--white);
}

.page-home .hm-chart{
  margin:28px 0 0;
  overflow:hidden;
  border:1px solid var(--rule);
  aspect-ratio:2 / 1;
  clip-path:polygon(0 16px,16px 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%);
}

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

/* ---------- 赛区日历 ---------- */
.page-home .hm-zones{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}

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

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

.page-home .hm-zone{
  position:relative;
  overflow:hidden;
  padding:22px 16px 20px;
  background:var(--panel);
  border:1px solid var(--rule);
  display:grid;
  gap:8px;
  align-content:start;
  clip-path:polygon(0 14px,14px 0,100% 0,100% calc(100% - 14px),calc(100% - 14px) 100%,0 100%);
  transition:transform .18s var(--ease),background .18s var(--ease);
}

.page-home .hm-zone::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:var(--blue);
}

.page-home .hm-zone--red::before{ background:var(--red); }
.page-home .hm-zone--cyan::before{ background:var(--cyan); }
.page-home .hm-zone--amber::before{ background:var(--amber); }

.page-home .hm-zone:hover{
  transform:translateY(-3px);
  background:#151c2b;
}

.page-home .hm-zone__name{
  margin:0;
  font-size:17px;
  font-weight:700;
  letter-spacing:.03em;
  color:var(--white);
}

.page-home .hm-zone__win{
  margin:0;
  font-size:13px;
  line-height:1.6;
  color:var(--steel);
}

.page-home .hm-zone__round{
  margin:0;
  font-family:var(--mono);
  font-size:13px;
  letter-spacing:.04em;
  color:var(--body-text);
}

/* ---------- 继续深入 ---------- */
.page-home .hm-more{
  display:grid;
  gap:12px;
}

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

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

.page-home .hm-more__card{
  position:relative;
  display:grid;
  gap:10px;
  align-content:start;
  padding:20px 18px 22px;
  background:var(--panel);
  border:1px solid var(--rule);
  color:inherit;
  text-decoration:none;
  clip-path:polygon(0 16px,16px 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%);
  transition:background .18s var(--ease),transform .18s var(--ease);
}

.page-home .hm-more__card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  box-shadow:inset 0 0 0 1px transparent;
  transition:box-shadow .18s var(--ease);
  clip-path:polygon(0 16px,16px 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%);
}

.page-home .hm-more__card:hover{
  background:#151c2b;
  transform:translateY(-3px);
}

.page-home .hm-more__card:hover::after{
  box-shadow:inset 0 0 0 1px rgba(79,240,214,.45);
}

.page-home .hm-more__kicker{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--cyan);
}

.page-home .hm-more__text{
  margin:0;
  font-size:14px;
  line-height:1.72;
  color:var(--body-text);
}

.page-home .hm-more__go{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.06em;
  color:var(--steel);
}

.page-home .hm-more__foot{
  margin:22px 0 0;
  font-size:14px;
  line-height:1.7;
  color:var(--steel);
}

.page-home .hm-more__foot a{
  color:var(--cyan);
  text-decoration:none;
  border-bottom:1px solid rgba(79,240,214,.4);
}

.page-home .hm-more__foot a:hover{
  border-bottom-color:var(--cyan);
}

/* ---------- 窄屏收口 ---------- */
@media (max-width:520px){
  .page-home .hm-stage__stats{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
  }
  .page-home .hm-stage__statlabel{ font-size:12px; }
  .page-home .hm-entry{ flex:0 0 202px; }
  .page-home .hm-bar{ grid-template-columns:56px minmax(0,1fr) 54px; }
  .page-home .hm-pcard__num{ font-size:26px; }
}

@media (prefers-reduced-motion:reduce){
  .page-home *{
    transition-duration:.01ms !important;
    animation-duration:.01ms !important;
  }
}
<<<END>>>

.page-home {
  --hm-h: 1rem;
  --hm-t: 1rem;
  --hm-w: 1rem;
}
