.page-home{
  --pc-frame-cut: 22px;
}

.page-home .section-head{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.page-home .section-head > div:last-child{
  flex:1;
}
.page-home .section-head .section-title{
  margin:0 0 6px;
}
.page-home .pc-section-desc{
  color:var(--c-gray);
  font-size:14px;
  line-height:1.7;
  margin:8px 0 0;
  max-width:640px;
}
.page-home .pc-schedule .pc-section-desc,
.page-home .pc-data .pc-section-desc{
  color:var(--c-gray);
}
.page-home .pc-pricing .pc-section-desc,
.page-home .pc-feedback .pc-section-desc{
  color:#a7b8ce;
}

/* ===== 首屏框景 ===== */
.page-home .pc-hero{
  position:relative;
  overflow:hidden;
  background:var(--c-deep);
  padding:20px 16px 36px;
}
.page-home .pc-hero-particles{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}
.page-home .pc-particle{
  position:absolute;
  width:8px;
  height:8px;
  background:var(--c-neon);
  clip-path:polygon(0 0,100% 0,100% 100%,0 100%);
  opacity:.5;
}
.page-home .pc-particle-1{
  top:6%;
  left:3%;
}
.page-home .pc-particle-2{
  top:22%;
  right:2%;
  width:4px;
  height:4px;
  opacity:.35;
}
.page-home .pc-particle-3{
  bottom:16%;
  left:1%;
  width:5px;
  height:5px;
  opacity:.3;
}
.page-home .pc-particle-4{
  bottom:5%;
  right:5%;
  width:3px;
  height:3px;
  opacity:.65;
}
.page-home .pc-hero-frame{
  position:relative;
  clip-path:polygon(0 0,calc(100% - var(--pc-frame-cut)) 0,100% var(--pc-frame-cut),100% 100%,var(--pc-frame-cut) 100%,0 calc(100% - var(--pc-frame-cut)));
  background:var(--c-surface);
  box-shadow:0 14px 40px rgba(0,0,0,.35);
}
.page-home .pc-hero-frame::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:24px 24px;
  pointer-events:none;
}
.page-home .pc-hero-img{
  display:block;
  width:100%;
  height:280px;
  object-fit:cover;
  opacity:.38;
}
.page-home .pc-hero-frame-inner{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:26px 20px 22px;
  background:linear-gradient(180deg,rgba(10,25,47,.15) 0%,rgba(10,25,47,.88) 92%);
}
.page-home .pc-hero-frame-inner h1{
  color:#fff;
  font:700 24px/1.25 var(--f-head);
  letter-spacing:.01em;
  margin:14px 0 0;
  max-width:640px;
}
.page-home .pc-hero-lead{
  color:#b6c4d9;
  font-size:14px;
  line-height:1.75;
  margin:12px 0 18px;
  max-width:580px;
}
.page-home .pc-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.page-home .pc-hero-actions .btn-ghost{
  border-color:rgba(255,255,255,.55);
  color:#fff;
}
.page-home .pc-hero-actions .btn-ghost:hover,
.page-home .pc-hero-actions .btn-ghost:focus-visible{
  border-color:var(--c-neon);
}
.page-home .pc-hero-index{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:12px 22px;
  margin:22px 0 0;
  padding:14px 0 0;
  border-top:1px solid rgba(255,255,255,.14);
}
.page-home .pc-hero-index li{
  color:#8aa0bd;
  font-size:13px;
}
.page-home .pc-hero-index .mono-num{
  color:var(--c-neon);
  letter-spacing:.02em;
}

/* ===== 面包屑 ===== */
.page-home .breadcrumb{
  padding-top:26px;
  padding-bottom:10px;
}

/* ===== 直播预告 ===== */
.page-home .pc-schedule{
  background:#eef3f7;
  padding:40px 0 56px;
}
.page-home .pc-schedule-list{
  display:grid;
  gap:16px;
  margin-top:28px;
}
.page-home .pc-match-card{
  cursor:pointer;
  transition:border-color .2s var(--ease),box-shadow .2s var(--ease);
}
.page-home .pc-match-card:hover,
.page-home .pc-match-card:focus-within{
  border-color:var(--c-neon);
  box-shadow:0 6px 22px rgba(10,25,47,.1);
}
.page-home .pc-match-card > summary{
  list-style:none;
  cursor:pointer;
  display:block;
}
.page-home .pc-match-card > summary::-webkit-details-marker{
  display:none;
}
.page-home .pc-match-card[open]{
  border-color:var(--c-neon);
}
.page-home .pc-match-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom:12px;
}
.page-home .pc-live{
  display:inline-flex;
  align-items:center;
  gap:5px;
  font:600 11px var(--f-mono);
  color:var(--c-neon);
  border:1px solid rgba(0,255,157,.4);
  padding:2px 6px;
}
.page-home .pc-live-dot{
  width:6px;
  height:6px;
  background:var(--c-neon);
  clip-path:polygon(0 0,100% 0,100% 100%,0 100%);
}
.page-home .pc-match-teams{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  font-weight:700;
  font-size:18px;
  color:var(--c-text);
  line-height:1.3;
}
.page-home .pc-match-vs{
  flex:none;
  color:var(--c-neon);
  font-size:12px;
  border:1px solid rgba(0,255,157,.4);
  padding:3px 7px;
  letter-spacing:.05em;
}
.page-home .pc-match-odds{
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  margin-top:12px;
  font-size:12px;
  color:var(--c-gray);
}
.page-home .pc-match-panel{
  border-top:1px solid rgba(10,25,47,.1);
  margin-top:16px;
  padding-top:16px;
}
.page-home .pc-panel-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}
.page-home .pc-panel-more{
  font:600 12px var(--f-mono);
  color:var(--c-cyan);
  text-decoration:none;
  border-bottom:1px solid transparent;
}
.page-home .pc-panel-more:hover,
.page-home .pc-panel-more:focus-visible{
  border-bottom-color:var(--c-cyan);
}
.page-home .pc-panel-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.page-home .pc-panel-grid .data-panel{
  padding:12px;
}
.page-home .pc-panel-grid .data-label{
  font-size:11px;
}
.page-home .pc-panel-grid .data-value{
  font-size:14px;
  margin-top:4px;
}
.page-home .pc-schedule-note{
  margin-top:26px;
  font-size:13px;
  color:var(--c-gray);
  border-left:2px solid var(--c-cyan);
  padding-left:12px;
  line-height:1.7;
}

/* ===== 一口价订阅 ===== */
.page-home .pc-pricing{
  background:var(--c-deep);
  padding:56px 0;
}
.page-home .pc-pricing .section-title{
  color:#fff;
}
.page-home .pc-pricing .section-index{
  color:var(--c-neon);
}
.page-home .pc-pricing-grid{
  display:grid;
  gap:20px;
  margin-top:32px;
}
.page-home .pc-price-card{
  position:relative;
  display:flex;
  flex-direction:column;
  padding:28px 22px;
  border:1px solid rgba(0,255,157,.26);
  background:rgba(17,34,64,.86);
  transition:border-color .2s var(--ease),box-shadow .2s var(--ease);
}
.page-home .pc-price-card:hover,
.page-home .pc-price-card:focus-within{
  border-color:rgba(0,255,157,.7);
  box-shadow:0 10px 30px rgba(0,0,0,.3),0 0 20px rgba(0,255,157,.08);
}
.page-home .pc-price-card-hot{
  border-color:rgba(255,215,0,.5);
  background:rgba(17,34,64,.96);
}
.page-home .pc-price-card-hot::before{
  content:"推荐";
  position:absolute;
  top:0;
  right:0;
  background:var(--c-gold);
  color:#1a1a1a;
  font:600 12px var(--f-mono);
  padding:4px 10px;
}
.page-home .pc-price-label{
  font-size:13px;
  letter-spacing:.12em;
  color:#8fa6bd;
  margin:14px 0 4px;
}
.page-home .pc-price-amount{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin:2px 0 12px;
}
.page-home .pc-price-int{
  font-size:54px;
  line-height:1;
  color:var(--c-gold);
  font-weight:700;
}
.page-home .pc-price-unit{
  font-size:15px;
  color:#9fb0c4;
}
.page-home .pc-price-desc{
  font-size:14px;
  color:#b6c4d9;
  line-height:1.6;
  margin-bottom:16px;
}
.page-home .pc-price-save{
  width:fit-content;
  font-size:13px;
  color:var(--c-neon);
  background:rgba(0,255,157,.08);
  border:1px solid rgba(0,255,157,.3);
  padding:6px 10px;
  margin:-4px 0 16px;
  transition:box-shadow .2s var(--ease);
}
.page-home .pc-price-card:hover .pc-price-save,
.page-home .pc-price-card:focus-within .pc-price-save{
  box-shadow:0 0 14px rgba(0,255,157,.28);
}
.page-home .pc-price-list{
  list-style:none;
  padding:0;
  margin:0 0 22px;
  flex:1;
}
.page-home .pc-price-list li{
  position:relative;
  padding:6px 0 6px 20px;
  font-size:14px;
  color:#c2d1e4;
  line-height:1.5;
}
.page-home .pc-price-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:12px;
  width:8px;
  height:8px;
  background:var(--c-neon);
  clip-path:polygon(0 0,100% 0,100% 100%,0 100%);
  opacity:.72;
}
.page-home .pc-price-card-hot .pc-price-list li::before{
  background:var(--c-gold);
}
.page-home .pc-pricing-media{
  position:relative;
}
.page-home .pc-pricing-media img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}
.page-home .pc-pricing-media-note{
  margin-top:10px;
  font-size:13px;
  color:#a7b8ce;
  border-left:2px solid var(--c-gold);
  padding-left:12px;
  line-height:1.7;
}
.page-home .pc-pricing .btn-ghost{
  border-color:rgba(255,255,255,.55);
  color:#fff;
}
.page-home .pc-pricing .btn-ghost:hover,
.page-home .pc-pricing .btn-ghost:focus-visible{
  border-color:var(--c-neon);
}
.page-home .pc-pricing-note{
  margin-top:26px;
  font-size:13px;
  color:#9fb0c4;
  border:1px dashed rgba(255,215,0,.35);
  padding:12px 14px;
  line-height:1.7;
}

/* ===== 数据即战力 ===== */
.page-home .pc-data{
  background:#eef3f7;
  padding:56px 0;
}
.page-home .pc-data-grid{
  display:grid;
  gap:20px;
  margin-top:32px;
}
.page-home .pc-data-chart{
  padding:20px;
}
.page-home .pc-data-chart-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.page-home .pc-chart-svg{
  display:block;
  width:100%;
  height:auto;
  margin-top:14px;
}
.page-home .pc-chart-svg text{
  font:500 11px var(--f-mono);
  fill:#a7b8ce;
}
.page-home .pc-chart-svg .pc-chart-grid line{
  stroke:rgba(255,255,255,.08);
  stroke-dasharray:3 4;
}
.page-home .pc-chart-svg .pc-chart-axis{
  stroke:rgba(255,255,255,.25);
}
.page-home .pc-chart-svg .pc-chart-area{
  fill:rgba(0,255,157,.12);
}
.page-home .pc-chart-svg .pc-chart-line{
  stroke:var(--c-neon);
  stroke-width:2;
  fill:none;
}
.page-home .pc-chart-svg .pc-chart-threshold{
  stroke:rgba(255,215,0,.5);
  stroke-dasharray:4 3;
}
.page-home .pc-chart-svg .pc-chart-threshold-label{
  fill:var(--c-gold);
}
.page-home .pc-chart-legend{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:14px;
  font-size:12px;
  color:#a7b8ce;
}
.page-home .pc-chart-legend span:first-child{
  color:var(--c-neon);
}
.page-home .pc-data-feature-list{
  display:grid;
  gap:14px;
}
.page-home .pc-data-feature{
  display:flex;
  gap:14px;
  padding:18px;
  transition:border-color .2s var(--ease),box-shadow .2s var(--ease);
}
.page-home .pc-data-feature:hover,
.page-home .pc-data-feature:focus-within{
  border-color:var(--c-neon);
  box-shadow:0 6px 20px rgba(10,25,47,.08);
}
.page-home .pc-data-feature-index{
  font-size:24px;
  line-height:1;
  color:var(--c-cyan);
  flex:none;
}
.page-home .pc-data-feature-body h3{
  font-size:16px;
  font-weight:700;
  color:var(--c-text);
  margin:0 0 6px;
}
.page-home .pc-data-feature-body p{
  font-size:14px;
  line-height:1.6;
  color:var(--c-gray);
  margin:0;
}
.page-home .pc-data-media{
  margin:0;
}
.page-home .pc-data-media img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}
.page-home .pc-data-media-caption{
  margin-top:10px;
  font-size:12px;
  color:var(--c-gray);
  border-left:2px solid var(--c-neon);
  padding-left:10px;
}

/* ===== 用户反馈 ===== */
.page-home .pc-feedback{
  background:var(--c-deep);
  padding:56px 0 88px;
}
.page-home .pc-feedback .section-index{
  color:var(--c-neon);
}
.page-home .pc-feedback .section-title{
  color:#fff;
}
.page-home .pc-feedback-content{
  display:grid;
  gap:26px;
  padding:32px 22px;
  border:1px solid rgba(0,255,157,.22);
  background:rgba(17,34,64,.78);
}
.page-home .pc-feedback-copy .section-head{
  margin-bottom:14px;
}
.page-home .pc-feedback-lead{
  color:#c2d1e4;
  font-size:15px;
  line-height:1.75;
  margin:0 0 18px;
}
.page-home .pc-feedback-list{
  list-style:none;
  padding:0;
  margin:0 0 24px;
  display:grid;
  gap:10px;
}
.page-home .pc-feedback-list li{
  color:#9fb0c4;
  font-size:14px;
  border-left:2px solid var(--c-gold);
  padding-left:12px;
  line-height:1.5;
}
.page-home .pc-feedback-list .mono-num{
  color:var(--c-neon);
}
.page-home .pc-feedback-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.page-home .pc-feedback .btn-ghost{
  border-color:rgba(255,255,255,.55);
  color:#fff;
}
.page-home .pc-feedback .btn-ghost:hover,
.page-home .pc-feedback .btn-ghost:focus-visible{
  border-color:var(--c-neon);
}
.page-home .pc-feedback-media{
  margin:0;
}
.page-home .pc-feedback-media img{
  display:block;
  width:180px;
  max-width:100%;
  height:auto;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.14);
}
.page-home .pc-feedback-media figcaption{
  margin-top:10px;
  font-size:12px;
  color:#8fa6bd;
}

/* ===== 固定反馈按钮 ===== */
.page-home .pc-feedback-fab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:150;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--c-neon);
  color:#08131f;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  padding:10px 14px;
  box-shadow:0 4px 18px rgba(0,0,0,.35);
  transition:box-shadow .18s var(--ease),background .18s var(--ease);
}
.page-home .pc-feedback-fab:hover,
.page-home .pc-feedback-fab:focus-visible{
  background:#0fffae;
  box-shadow:0 6px 24px rgba(0,255,157,.35);
}
.page-home .pc-feedback-fab:active{
  box-shadow:0 0 0 2px var(--c-deep),0 0 0 5px var(--c-neon);
}
.page-home .pc-feedback-fab-badge{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--c-deep);
  color:var(--c-neon);
  font-family:var(--f-mono);
  font-size:13px;
  font-weight:700;
}
.page-home .pc-feedback-fab-label{
  letter-spacing:.03em;
}

/* ===== 按钮点击微光 ===== */
.page-home .btn{
  transition:box-shadow .16s var(--ease),border-color .16s var(--ease),background .16s var(--ease);
}
.page-home .btn:active{
  box-shadow:0 0 0 2px var(--c-deep),0 0 0 5px var(--c-neon);
}

/* ===== 桌面端 ===== */
@media (min-width:768px){
  .page-home .pc-hero{
    padding:32px 24px 58px;
  }
  .page-home .pc-hero-img{
    height:540px;
  }
  .page-home .pc-hero-frame-inner{
    padding:44px 40px 34px;
  }
  .page-home .pc-hero-frame-inner h1{
    font-size:36px;
  }
  .page-home .pc-hero-lead{
    font-size:16px;
    max-width:620px;
  }
  .page-home .pc-hero-index{
    margin-top:28px;
  }

  .page-home .pc-schedule-list{
    grid-template-columns:1fr 1fr;
  }

  .page-home .pc-pricing-grid{
    grid-template-columns:1fr 1fr;
  }
  .page-home .pc-pricing-media{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:auto 1fr;
    gap:22px;
    align-items:center;
  }
  .page-home .pc-pricing-media img{
    width:260px;
    height:260px;
    object-fit:cover;
  }
  .page-home .pc-pricing-media-note{
    margin:0;
    max-width:440px;
  }
}

@media (min-width:960px){
  .page-home .pc-data-grid{
    grid-template-columns:1fr 0.9fr;
    grid-template-areas:
      "chart features"
      "chart media";
    align-items:start;
  }
  .page-home .pc-data-chart{
    grid-area:chart;
    position:sticky;
    top:120px;
  }
  .page-home .pc-data-feature-list{
    grid-area:features;
  }
  .page-home .pc-data-media{
    grid-area:media;
  }

  .page-home .pc-feedback-content{
    grid-template-columns:1.4fr 1fr;
    align-items:center;
    padding:48px;
  }
  .page-home .pc-feedback-media img{
    width:240px;
    margin-left:auto;
  }
}
