.page-home{
  --home-chamfer: 18px;
  --home-gap: clamp(72px, 10vw, 128px);
  background: var(--bw-bg);
}

.page-home section[id^="home-"]{
  scroll-margin-top: 120px;
}

/* ===== 面包屑 ===== */
.page-home .breadcrumb{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px 24px 0;
}
.page-home .breadcrumb-list{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .875rem;
  color: var(--bw-gray);
}
.page-home .breadcrumb-item + .breadcrumb-item::before{
  content: "·";
  margin-right: 6px;
  color: var(--bw-blue);
}
.page-home .breadcrumb-item a{
  color: var(--bw-blue);
  text-decoration: none;
  transition: color .25s var(--ease);
}
.page-home .breadcrumb-item a:hover{
  color: var(--bw-orange);
}
.page-home .breadcrumb-item[aria-current="page"]{
  color: var(--bw-gray);
}

/* ===== 品牌宣言 ===== */
.page-home .home-manifesto{
  padding: clamp(20px, 4vw, 56px) 0 0;
}
.page-home .manifesto-panel{
  position: relative;
  display: grid;
  gap: 0;
  background: var(--bw-blue);
  color: var(--bw-white);
  clip-path: polygon(0 0, calc(100% - var(--home-chamfer)) 0, 100% var(--home-chamfer), 100% 100%, var(--home-chamfer) 100%, 0 calc(100% - var(--home-chamfer)));
}
.page-home .manifesto-media{
  position: relative;
  min-height: 240px;
  overflow: hidden;
}
.page-home .manifesto-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-home .manifesto-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 59, 117, .42) 0%, rgba(0, 59, 117, .06) 100%);
  pointer-events: none;
}
.page-home .manifesto-content{
  position: relative;
  z-index: 1;
  padding: clamp(24px, 5vw, 56px);
}
.page-home .manifesto-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border-left: 3px solid var(--bw-orange);
  color: #fff;
  padding: 6px 14px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.page-home .manifesto-dot{
  width: 6px;
  height: 6px;
  background: var(--bw-orange);
  border-radius: 50%;
  display: inline-block;
}
.page-home .manifesto-title{
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 20px 0 16px;
  letter-spacing: -.01em;
}
.page-home .manifesto-desc{
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .85);
  max-width: 46em;
  margin: 0 0 24px;
}
.page-home .manifesto-index{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.page-home .manifesto-index a{
  color: rgba(255, 255, 255, .78);
  font-size: .8125rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .25s var(--ease);
}
.page-home .manifesto-index a::before{
  content: "→";
  margin-right: 6px;
  color: var(--bw-orange);
}
.page-home .manifesto-index a:hover{
  color: #fff;
}
.page-home .manifesto-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .manifesto-actions .btn-ghost{
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  background: transparent;
}
.page-home .manifesto-actions .btn-ghost:hover{
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

/* ===== 核心数据摘要 ===== */
.page-home .home-data{
  padding: var(--home-gap) 0 0;
}
.page-home .section-head-data{
  margin-bottom: 8px;
}
.page-home .section-desc{
  color: var(--bw-gray);
  margin-top: 8px;
  max-width: 62ch;
  font-size: .9375rem;
  line-height: 1.7;
}
.page-home .data-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.page-home .data-item{
  position: relative;
  background: var(--bw-white);
  padding: 26px 24px 22px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  border: 1px solid rgba(17, 17, 17, .06);
}
.page-home .data-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--bw-orange);
}
.page-home .data-num{
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--bw-blue);
  display: block;
}
.page-home .data-num sup{
  font-size: .38em;
  vertical-align: super;
  color: var(--bw-orange);
  font-weight: 700;
}
.page-home .data-label{
  display: block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--bw-ink);
  font-size: .9375rem;
}
.page-home .data-note{
  display: block;
  margin-top: 6px;
  color: var(--bw-gray);
  font-size: .8125rem;
  line-height: 1.55;
}
.page-home .data-strip{
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  padding: 18px 24px;
  background: var(--bw-blue);
  color: var(--bw-white);
  overflow: hidden;
}
.page-home .data-strip::after{
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 90px;
  height: 4px;
  background: var(--bw-orange);
  transform: skewX(-36deg) translateY(-50%);
}
.page-home .data-strip p{
  margin: 0;
  flex: 1;
  min-width: 220px;
  position: relative;
  z-index: 1;
  font-size: .875rem;
  line-height: 1.6;
}
.page-home .data-strip-icon{
  width: 12px;
  height: 12px;
  background: var(--bw-orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.page-home .data-strip-link{
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  border-bottom: 2px solid var(--bw-orange);
  padding-bottom: 2px;
  transition: color .25s var(--ease);
}
.page-home .data-strip-link:hover{
  color: var(--bw-orange);
}

/* ===== 最新动态 ===== */
.page-home .home-news{
  padding: var(--home-gap) 0 0;
}
.page-home .news-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.page-home .news-more{
  color: var(--bw-blue);
  font-weight: 600;
  text-decoration: none;
  font-size: .875rem;
  transition: color .25s var(--ease);
}
.page-home .news-more:hover{
  color: var(--bw-orange);
}
.page-home .news-list{
  margin-top: 32px;
  border-top: 1px solid rgba(17, 17, 17, .08);
  max-width: 840px;
}
.page-home .news-item{
  position: relative;
  display: grid;
  gap: 8px;
  padding: 26px 0 26px 22px;
  border-bottom: 1px solid rgba(17, 17, 17, .08);
}
.page-home .news-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 8px;
  height: 8px;
  background: var(--bw-orange);
  transform: rotate(45deg);
}
.page-home .news-tag{
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--bw-blue);
  background: var(--bw-lightblue);
  padding: 4px 10px;
  justify-self: flex-start;
}
.page-home .news-item:nth-child(even) .news-tag{
  background: var(--bw-lighter-orange);
  color: var(--bw-orange);
}
.page-home .news-item-title{
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
}
.page-home .news-item-title a{
  color: var(--bw-ink);
  text-decoration: none;
  transition: color .25s var(--ease);
}
.page-home .news-item-title a:hover{
  color: var(--bw-blue);
}
.page-home .news-item-desc{
  margin: 0;
  color: var(--bw-gray);
  font-size: .875rem;
  line-height: 1.65;
  max-width: 650px;
}

/* ===== 赛程对照入口 ===== */
.page-home .home-schedule{
  padding: var(--home-gap) 0 0;
}
.page-home .schedule-panel{
  display: grid;
  background: var(--bw-lightblue);
  clip-path: polygon(0 0, calc(100% - var(--home-chamfer)) 0, 100% var(--home-chamfer), 100% 100%, var(--home-chamfer) 100%, 0 calc(100% - var(--home-chamfer)));
}
.page-home .schedule-content{
  padding: clamp(24px, 5vw, 52px);
}
.page-home .schedule-media{
  position: relative;
  min-height: 240px;
  overflow: hidden;
}
.page-home .schedule-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-home .schedule-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(0, 59, 117, .22) 0%, transparent 55%);
  pointer-events: none;
}
.page-home .panel-kicker{
  font-family: var(--font-heading);
  font-size: .875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bw-orange);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}
.page-home .schedule-title,
.page-home .possession-title,
.page-home .subscribe-title{
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
}
.page-home .schedule-desc,
.page-home .possession-desc{
  margin: 0 0 20px;
  line-height: 1.75;
  font-size: .9375rem;
  color: var(--bw-gray);
  max-width: 50ch;
}
.page-home .schedule-features,
.page-home .possession-features,
.page-home .subscribe-features{
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-home .schedule-features li,
.page-home .possession-features li,
.page-home .subscribe-features li{
  position: relative;
  padding-left: 22px;
  font-size: .875rem;
  line-height: 1.6;
  color: var(--bw-gray);
}
.page-home .schedule-features li::before,
.page-home .possession-features li::before,
.page-home .subscribe-features li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 10px;
  height: 10px;
  background: var(--bw-orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* ===== 控球率追踪模块 ===== */
.page-home .home-possession{
  padding: var(--home-gap) 0 0;
}
.page-home .possession-panel{
  display: grid;
  background: var(--bw-lighter-orange);
  clip-path: polygon(var(--home-chamfer) 0, 100% 0, 100% calc(100% - var(--home-chamfer)), calc(100% - var(--home-chamfer)) 100%, 0 100%, 0 var(--home-chamfer));
}
.page-home .possession-content{
  padding: clamp(24px, 5vw, 52px);
}
.page-home .possession-media{
  position: relative;
  min-height: 240px;
  overflow: hidden;
}
.page-home .possession-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-home .possession-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(330deg, rgba(0, 59, 117, .18) 0%, transparent 60%);
  pointer-events: none;
}

/* ===== 订阅引导 ===== */
.page-home .home-subscribe{
  padding: var(--home-gap) 0;
}
.page-home .subscribe-panel{
  position: relative;
  display: grid;
  background: var(--bw-ink);
  color: var(--bw-white);
  clip-path: polygon(0 0, calc(100% - var(--home-chamfer)) 0, 100% var(--home-chamfer), 100% 100%, var(--home-chamfer) 100%, 0 calc(100% - var(--home-chamfer)));
  overflow: hidden;
}
.page-home .subscribe-panel::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bw-orange) 0%, var(--bw-orange) 32%, var(--bw-blue) 100%);
}
.page-home .subscribe-content{
  padding: clamp(24px, 5vw, 56px);
}
.page-home .subscribe-desc{
  margin: 0 0 20px;
  line-height: 1.75;
  font-size: .9375rem;
  color: rgba(255, 255, 255, .8);
}
.page-home .subscribe-features li{
  color: rgba(255, 255, 255, .78);
}
.page-home .subscribe-media{
  position: relative;
  min-height: 240px;
  overflow: hidden;
}
.page-home .subscribe-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-home .subscribe-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 17, 17, .4));
  pointer-events: none;
}
.page-home .subscribe-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .subscribe-actions .btn-ghost{
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  background: transparent;
}
.page-home .subscribe-actions .btn-ghost:hover{
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

/* ===== 动效与响应式 ===== */
.page-home [data-reveal],
.page-home [data-reveal-group] > *{
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

@media (min-width: 640px){
  .page-home .data-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .page-home .data-strip{
    padding: 20px 28px;
  }
}

@media (min-width: 920px){
  .page-home .manifesto-panel{
    grid-template-columns: 1fr 1.05fr;
  }
  .page-home .manifesto-media{
    min-height: 400px;
  }
  .page-home .manifesto-content{
    padding: clamp(40px, 5vw, 68px);
  }
  .page-home .data-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .page-home .news-list{
    margin-top: 40px;
  }
  .page-home .schedule-panel{
    grid-template-columns: 0.95fr 1.05fr;
  }
  .page-home .schedule-media{
    min-height: 380px;
  }
  .page-home .possession-panel{
    grid-template-columns: 1.05fr 0.95fr;
  }
  .page-home .possession-media{
    min-height: 360px;
  }
  .page-home .subscribe-panel{
    grid-template-columns: 1.05fr 0.95fr;
  }
  .page-home .subscribe-media{
    min-height: 380px;
  }
}

@media (min-width: 1200px){
  .page-home .home-schedule .page-container{
    padding-right: clamp(32px, 6vw, 88px);
  }
  .page-home .home-possession .page-container{
    padding-left: clamp(32px, 6vw, 88px);
  }
}

@media (prefers-reduced-motion: reduce){
  .page-home [data-reveal],
  .page-home [data-reveal-group] > *{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .page-home *,
  .page-home *::before,
  .page-home *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
