.page-home{
  --cut-lg: 26px;
  --cut-sm: 18px;
  --panel-pad: 28px;
  position: relative;
  overflow-x: hidden;
}

/* 面包屑 */
.page-home .home-breadcrumb{
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-top: 22px;
}
.page-home .home-breadcrumb .breadcrumb-list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--fs-12);
  color: var(--text-muted);
}
.page-home .home-breadcrumb .breadcrumb-link{
  color: var(--green);
  text-decoration: none;
}
.page-home .home-breadcrumb .breadcrumb-link:hover{
  text-decoration: underline;
}

/* 首屏 */
.page-home .home-hero{
  padding: 30px 0 0;
}
.page-home .hero-grid{
  display: grid;
  gap: 22px;
}
.page-home .hero-main{
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 560px;
  background: var(--dark-bg);
  clip-path: polygon(0 0, calc(100% - var(--cut-lg)) 0, 100% var(--cut-lg), 100% 100%, 0 100%);
  overflow: hidden;
}
.page-home .hero-main-media{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-home .hero-img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.page-home .hero-main-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,14,20,0.3) 0%, rgba(20,33,61,0.72) 100%);
}
.page-home .hero-lines{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 55%;
  z-index: 1;
  pointer-events: none;
}
.page-home .hero-main-copy{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px 24px 36px;
  color: var(--text-inverse);
}
.page-home .hero-kicker{
  display: inline-block;
  font-family: var(--font-head);
  font-size: var(--fs-12);
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--orange);
  padding: 6px 12px;
  transform: skewX(-8deg);
  margin-bottom: 16px;
}
.page-home h1{
  font-family: var(--font-head);
  font-size: clamp(30px, 6.4vw, 56px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}
.page-home .hero-lead{
  color: rgba(255,255,255,0.84);
  font-size: var(--fs-16);
  line-height: 1.75;
  max-width: 33em;
  margin: 0;
}
.page-home .hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.page-home .hero-actions .btn--ghost{
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.page-home .hero-actions .btn--ghost:hover{
  border-color: var(--orange);
  color: var(--orange);
}

/* 首屏右侧面板 */
.page-home .hero-side{
  display: grid;
  gap: 16px;
}
.page-home .hero-panel{
  position: relative;
  display: block;
  padding: 24px 26px;
  color: #fff;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - var(--cut-sm)) 0, 100% var(--cut-sm), 100% 100%, 0 100%);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.page-home .hero-panel--wine{ background: var(--wine); }
.page-home .hero-panel--teal{ background: var(--dark-teal); }
.page-home .hero-panel--indigo{ background: var(--indigo); }
.page-home .hero-panel:hover,
.page-home .hero-panel:focus-visible{
  transform: translateX(8px);
  box-shadow: 10px 10px 0 rgba(11,14,20,0.28);
}
.page-home .panel-index{
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-head);
  font-size: var(--fs-40);
  line-height: 1;
  opacity: 0.14;
}
.page-home .panel-label{
  display: block;
  font-family: var(--font-head);
  font-size: var(--fs-16);
  margin-bottom: 14px;
  padding-right: 34px;
}
.page-home .panel-value{
  display: block;
  font-family: var(--font-head);
  font-size: var(--fs-40);
  line-height: 1;
  color: var(--green);
  margin-bottom: 8px;
}
.page-home .hero-panel--teal .panel-value{ color: var(--yellow); }
.page-home .hero-panel--indigo .panel-value{ color: var(--orange); }
.page-home .panel-value small{
  font-family: var(--font-body);
  font-size: var(--fs-14);
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  margin-left: 4px;
}
.page-home .panel-desc{
  font-size: var(--fs-14);
  line-height: 1.6;
  color: rgba(255,255,255,0.76);
}

/* 状态控制台 */
.page-home .home-status{
  border-bottom: 1px solid var(--line-gray);
  padding: 18px 0;
}
.page-home .home-status .container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 32px;
}
.page-home .home-status .status-dot{
  animation: home-status-pulse 2.2s infinite;
}
@keyframes home-status-pulse{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(0,210,106,0.5); }
  50%{ box-shadow: 0 0 0 6px rgba(0,210,106,0); }
}

/* 章节标题 */
.page-home .section-header{
  margin-bottom: 24px;
}
.page-home .section-number{
  display: inline-block;
  font-family: var(--font-head);
  font-size: var(--fs-28);
  line-height: 1;
  color: var(--orange);
  transform: skewX(-8deg);
  margin-bottom: 6px;
}
.page-home .section-title{
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.18;
  margin: 6px 0 10px;
}
.page-home .section-subtitle{
  font-size: var(--fs-16);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 46em;
  margin: 0;
}
.page-home .section--wine .section-title,
.page-home .section--teal .section-title,
.page-home .section--indigo .section-title{
  color: #fff;
}
.page-home .section--wine .section-subtitle,
.page-home .section--teal .section-subtitle,
.page-home .section--indigo .section-subtitle{
  color: rgba(255,255,255,0.76);
}

/* 01 战报区 */
.page-home .report-head{
  display: grid;
  gap: 28px;
  margin-bottom: 36px;
}
.page-home .report-head-media{
  position: relative;
  aspect-ratio: 4 / 3;
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
  overflow: hidden;
  background: var(--dark-blue);
}
.page-home .report-head-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.page-home .report-media-tag{
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--dark-bg);
  border-left: 3px solid var(--green);
  padding: 8px 14px;
  color: #fff;
  font-size: var(--fs-14);
  line-height: 1.5;
}
.page-home .report-media-tag strong{
  display: block;
  font-family: var(--font-head);
}
.page-home .report-scope{
  margin-bottom: 28px;
}

/* 筛选按钮 */
.page-home .filter-group{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.page-home .filter-btn{
  appearance: none;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(20,33,61,0.25);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: var(--fs-14);
  line-height: 1.2;
  padding: 9px 18px;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.page-home .filter-btn:hover{
  border-color: var(--green);
  color: #fff;
}
.page-home .filter-btn--active{
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* 战报列表 */
.page-home .report-list{
  display: grid;
  gap: 16px;
}
.page-home .report-item{
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px 22px 22px 26px;
  background: rgba(20,33,61,0.34);
  border-left: 4px solid var(--green);
  transition: transform var(--t-fast), background var(--t-fast);
}
.page-home .report-item:hover{
  transform: translateX(8px);
  background: rgba(20,33,61,0.54);
}
.page-home .report-cat{
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  color: #fff;
  font-size: var(--fs-12);
  padding: 5px 10px;
  transform: skewX(-8deg);
}
.page-home .report-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}
.page-home .report-title{
  font-family: var(--font-head);
  font-size: var(--fs-20);
  line-height: 1.4;
  color: #fff;
  margin: 0;
}
.page-home .report-excerpt{
  font-size: var(--fs-14);
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0 0 4px;
}
.page-home .report-item .link-arrow{
  justify-self: start;
  color: var(--yellow);
}
.page-home .report-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home [data-filter-item][data-hidden]{
  display: none;
}

/* 02 视频集锦区 */
.page-home .video-layout{
  display: grid;
  gap: 32px;
}
.page-home .video-features{
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.page-home .video-feature{
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(20,33,61,0.28);
  color: #fff;
  font-size: var(--fs-14);
  line-height: 1.6;
}
.page-home .video-feature .feature-no{
  font-family: var(--font-head);
  color: var(--yellow);
  transform: skewX(-8deg);
}
.page-home .video-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.page-home .video-media{
  position: relative;
  aspect-ratio: 3 / 2;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), 0 100%);
  overflow: hidden;
  background: var(--dark-bg);
}
.page-home .video-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.page-home .video-play{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home .video-play svg{
  width: 64px;
  height: 64px;
  padding: 18px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(0,210,106,0.2);
}
.page-home .video-caption{
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(11,14,20,0.72);
  color: #fff;
  font-size: var(--fs-12);
  padding: 6px 10px;
}

/* 03 周末赛事导航区 */
.page-home .weekend-layout{
  display: grid;
  gap: 32px;
}
.page-home .weekend-desc{
  color: rgba(255,255,255,0.78);
  font-size: var(--fs-16);
  line-height: 1.75;
  margin-bottom: 22px;
}
.page-home .weekend-features{
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}
.page-home .weekend-features li{
  position: relative;
  padding: 0 0 0 20px;
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-14);
  line-height: 1.7;
}
.page-home .weekend-features li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 3px;
  background: var(--green);
  transform: skewX(-20deg);
}
.page-home .weekend-leagues{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.page-home .weekend-league{
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(20,33,61,0.3);
  color: #fff;
  font-size: var(--fs-12);
  padding: 5px 10px;
}
.page-home .weekend-league-more{
  border: 0;
  background: var(--orange);
  color: #fff;
  font-size: var(--fs-12);
  padding: 5px 10px;
}
.page-home .weekend-panel{
  position: relative;
  aspect-ratio: 4 / 3;
  clip-path: polygon(0 0, calc(100% - var(--cut-lg)) 0, 100% var(--cut-lg), 100% 100%, 0 100%);
  overflow: hidden;
  background: var(--dark-bg);
}
.page-home .weekend-panel img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.page-home .weekend-card{
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  background: rgba(11,14,20,0.82);
  border-top: 3px solid var(--yellow);
  padding: 14px 18px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}
.page-home .weekend-card-label{
  width: 100%;
  font-size: var(--fs-12);
  opacity: 0.7;
}
.page-home .weekend-card strong{
  font-family: var(--font-head);
  font-size: var(--fs-28);
  line-height: 1;
  color: var(--yellow);
}
.page-home .weekend-card strong small{
  font-size: var(--fs-12);
  font-family: var(--font-body);
  color: rgba(255,255,255,0.7);
}
.page-home .weekend-card-foot{
  margin-left: auto;
  font-size: var(--fs-12);
  color: rgba(255,255,255,0.68);
}
.page-home .weekend-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 04 订阅通知区 */
.page-home .subscribe-panel{
  display: grid;
  gap: 32px;
  background: var(--light-bg);
  border-top: 4px solid var(--green);
  border-bottom: 4px solid var(--orange);
  padding: 40px 26px;
  clip-path: polygon(0 0, calc(100% - var(--cut-lg)) 0, 100% var(--cut-lg), 100% 100%, 0 100%);
}
.page-home .subscribe-copy .section-number{
  color: var(--orange);
}
.page-home .subscribe-copy .section-title{
  color: var(--text-body);
}
.page-home .subscribe-copy .section-subtitle{
  color: var(--text-muted);
}
.page-home .subscribe-desc{
  font-size: var(--fs-14);
  line-height: 1.8;
  color: var(--text-body);
  max-width: 56em;
  margin: 0;
}
.page-home .subscribe-desc a{
  color: var(--green);
}
.page-home .subscribe-info-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.page-home .subscribe-info-item{
  background: #fff;
  border: 1px solid var(--line-gray);
  border-top: 3px solid var(--green);
  padding: 14px 16px;
}
.page-home .subscribe-info-num{
  display: block;
  font-family: var(--font-head);
  font-size: var(--fs-28);
  line-height: 1.2;
  color: var(--dark-blue);
}
.page-home .subscribe-info-label{
  display: block;
  font-size: var(--fs-12);
  color: var(--text-muted);
  margin-top: 4px;
}
.page-home .subscribe-aside{
  background: var(--dark-blue);
  color: #fff;
  padding: 28px 24px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), 0 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-home .subscribe-aside-title{
  font-family: var(--font-head);
  font-size: var(--fs-20);
}
.page-home .subscribe-steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  counter-reset: subs;
}
.page-home .subscribe-steps li{
  counter-increment: subs;
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: var(--fs-14);
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
}
.page-home .subscribe-steps li::before{
  content: counter(subs, decimal-leading-zero);
  font-family: var(--font-head);
  color: var(--orange);
  font-size: var(--fs-14);
  transform: skewX(-8deg);
}
.page-home .subscribe-legal{
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 14px;
  font-size: var(--fs-12);
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

/* 滚动显现渐进增强 */
.page-home [data-reveal]{
  transition: opacity var(--t-base), transform var(--t-base);
}

/* 平板：双栏与拼贴 */
@media (min-width: 768px){
  .page-home .hero-side{
    grid-template-columns: 1fr 1fr;
  }
  .page-home .hero-panel:last-child{
    grid-column: 1 / -1;
  }
  .page-home .report-head{
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .page-home .subscribe-panel{
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
  .page-home .subscribe-info-grid{
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 桌面：完整叙事长卷 */
@media (min-width: 1024px){
  .page-home .hero-grid{
    grid-template-columns: 1.15fr 0.85fr;
  }
  .page-home .hero-side{
    grid-template-columns: 1fr;
    padding-top: 48px;
    gap: 20px;
  }
  .page-home .hero-panel + .hero-panel{
    transform: translateX(24px);
  }
  .page-home .hero-panel:last-child{
    transform: translateX(48px);
  }
  .page-home .hero-panel:hover,
  .page-home .hero-panel:focus-visible{
    transform: translateX(56px);
  }
  .page-home .video-layout{
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }
  .page-home .weekend-layout{
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
  }
  .page-home .weekend-panel{
    aspect-ratio: auto;
    min-height: 420px;
  }
  .page-home .subscribe-panel{
    padding: 52px 48px;
  }
}
