.page-home{
  --board-gap:1.5rem;
  --focus-bg:linear-gradient(135deg,var(--navy) 0%,#223b68 55%,var(--red) 130%);
  --plaque-bg:rgba(255,255,255,.08);
  --outline-w:2px;
  background:var(--snow);
}

.page-home [id]{
  scroll-margin-top:calc(var(--header-total) + 12px);
}

.page-home .home-hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 10%,rgba(212,175,55,.14) 0%,transparent 38%),
    radial-gradient(circle at 88% 82%,rgba(91,155,213,.12) 0%,transparent 42%),
    linear-gradient(160deg,var(--snow) 0%,var(--white) 55%,var(--fog) 100%);
  padding-top:3.5rem;
}

.page-home .hero-lines{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}

.page-home .hero-lines svg{
  width:100%;
  height:100%;
  display:block;
  opacity:.9;
}

.page-home .hero-layout{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr;
  gap:2.25rem;
  align-items:center;
}

.page-home .hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  font-size:.9rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--blue);
  border-left:4px solid var(--gold);
  padding-left:.85rem;
  margin-bottom:1rem;
}

.page-home .eyebrow-dot{
  width:.45rem;
  height:.45rem;
  background:var(--red);
  transform:rotate(45deg);
  display:inline-block;
}

.page-home .hero-title{
  font-family:var(--font-heading);
  font-size:clamp(2.25rem,7vw,5rem);
  font-weight:700;
  line-height:1.03;
  letter-spacing:.01em;
  text-transform:uppercase;
  color:var(--ink);
  margin:0 0 1rem;
}

.page-home .hero-title em{
  font-style:normal;
  display:block;
  color:var(--red);
  text-decoration-color:var(--gold);
  text-decoration-line:underline;
  text-decoration-thickness:.12em;
  text-underline-offset:.12em;
}

.page-home .hero-lead{
  font-size:1rem;
  line-height:1.75;
  color:var(--ink);
  max-width:38em;
  margin:0 0 1.5rem;
}

.page-home .hero-lead strong{
  font-weight:600;
  color:var(--red);
}

.page-home .hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.8rem;
}

.page-home .hero-visual{
  position:relative;
  z-index:1;
}

.page-home .hero-img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
  border:var(--outline-w) solid var(--ink);
  box-shadow:var(--shadow-2);
}

.page-home .hero-count{
  position:absolute;
  left:1rem;
  bottom:-1.25rem;
  background:var(--navy);
  color:var(--white);
  padding:1rem 1.35rem;
  border:var(--outline-w) solid var(--ink);
  box-shadow:var(--shadow-3);
  min-width:17.5rem;
}

.page-home .count-topline{
  display:block;
  font-size:.75rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
  margin-bottom:.35rem;
}

.page-home .count-display{
  display:flex;
  align-items:center;
  gap:.4rem;
  font-family:var(--font-heading);
  font-size:2.1rem;
  font-weight:700;
  color:var(--gold);
}

.page-home .count-display i{
  font-style:normal;
  color:rgba(255,255,255,.4);
}

.page-home .count-box{
  background:var(--plaque-bg);
  border:1px solid rgba(255,255,255,.18);
  padding:.2rem .5rem;
  min-width:2.5rem;
  text-align:center;
}

.page-home .count-baseline{
  display:block;
  font-size:.75rem;
  color:rgba(255,255,255,.6);
  margin-top:.35rem;
}

.page-home .hero-index{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.6rem;
  border-top:2px solid var(--ink);
  margin-top:3rem;
  padding:1.2rem 0 2rem;
}

.page-home .hero-index-item{
  display:flex;
  align-items:baseline;
  gap:.5rem;
  font-family:var(--font-heading);
  font-size:1.05rem;
  font-weight:600;
  color:var(--ink);
  text-decoration:none;
  padding:.45rem .15rem;
  border-bottom:1px solid var(--fog);
}

.page-home .hero-index-item span{
  font-weight:700;
  color:var(--red);
}

.page-home .hero-index-item:hover{
  color:var(--red);
  padding-left:.4rem;
  transition:padding .2s ease,color .2s ease;
}

.page-home .home-board{
  padding:2.5rem 0 .5rem;
}

.page-home .bento-grid{
  align-items:stretch;
  row-gap:var(--board-gap);
  column-gap:var(--board-gap);
}

.page-home .bento-grid > .card{
  height:100%;
  display:flex;
  flex-direction:column;
}

/* 焦点 */
.page-home .board-focus{
  background:var(--focus-bg);
  border:var(--outline-w) solid var(--ink);
  box-shadow:var(--shadow-2);
  overflow:hidden;
  position:relative;
}

.page-home .board-focus::after{
  content:"";
  position:absolute;
  right:-60px;
  top:-60px;
  width:170px;
  height:170px;
  border:28px solid rgba(212,175,55,.18);
  border-radius:50%;
  pointer-events:none;
}

.page-home .board-focus-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
  padding:1.5rem;
  width:100%;
}

.page-home .board-focus .plate-label{
  color:var(--gold);
}

.page-home .focus-title{
  font-family:var(--font-heading);
  font-size:1.5rem;
  font-weight:700;
  color:var(--white);
  margin:.35rem 0 .75rem;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.page-home .clock-readout{
  display:flex;
  align-items:baseline;
  gap:.4rem;
  margin:.25rem 0 .5rem;
}

.page-home .clock-number{
  font-family:var(--font-heading);
  font-size:3.1rem;
  font-weight:700;
  color:var(--gold);
  line-height:1;
}

.page-home .clock-unit{
  font-size:.85rem;
  color:rgba(255,255,255,.72);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.page-home .clock-note{
  font-size:.8rem;
  color:rgba(255,255,255,.62);
  line-height:1.5;
  max-width:22em;
}

.page-home .focus-matches{
  border-top:1px solid rgba(255,255,255,.18);
  padding-top:.5rem;
}

.page-home .focus-matches .plate-label{
  margin-bottom:.25rem;
}

.page-home .match-row{
  display:flex;
  align-items:center;
  gap:.65rem;
  padding:.7rem .15rem;
  color:var(--white);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.14);
}

.page-home .match-row:hover{
  color:var(--gold);
  padding-left:.45rem;
  transition:padding .2s ease,color .2s ease;
}

.page-home .match-round{
  flex:1;
  font-weight:600;
  font-size:.9rem;
}

.page-home .match-tags{
  font-size:.68rem;
  letter-spacing:.06em;
  padding:.16rem .5rem;
  border:1px solid var(--gold);
  color:var(--gold);
  text-transform:uppercase;
}

.page-home .match-arrow{
  font-size:1.1rem;
  color:rgba(255,255,255,.45);
}

.page-home .match-more .match-round{
  color:var(--gold);
}

.page-home .match-more .match-arrow{
  color:var(--gold);
}

/* 对比 */
.page-home .board-compare{
  background:var(--white);
  border:var(--outline-w) solid var(--ink);
  box-shadow:var(--shadow-1);
}

.page-home .board-compare-inner{
  display:flex;
  flex-direction:column;
  gap:1rem;
  padding:1.5rem;
  flex:1;
}

.page-home .compare-title{
  font-family:var(--font-heading);
  font-size:1.45rem;
  font-weight:700;
  color:var(--ink);
  margin:.25rem 0 0;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.page-home .compare-desc{
  font-size:.87rem;
  line-height:1.6;
  color:#5a5a62;
  margin:0;
}

.page-home .compare-filter{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}

.page-home .tag{
  border:var(--outline-w) solid var(--ink);
  background:var(--white);
  color:var(--ink);
  font-weight:600;
  font-size:.82rem;
  padding:.38rem .95rem;
  cursor:pointer;
  font-family:var(--font-body);
}

.page-home .tag.is-active{
  background:var(--red);
  color:var(--white);
  border-color:var(--ink);
}

.page-home .compare-table{
  display:flex;
  flex-direction:column;
  gap:.15rem;
  border-top:2px solid var(--ink);
}

.page-home .compare-head,
.page-home .compare-row{
  display:grid;
  grid-template-columns:3.2rem 3.2rem 1fr;
  gap:.4rem;
  align-items:center;
  padding:.62rem .1rem;
}

.page-home .compare-head{
  border-bottom:1px solid var(--fog);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#71717a;
}

.page-home .compare-row{
  border-bottom:1px solid var(--fog);
  font-size:.84rem;
  color:#3d3d45;
}

.page-home .compare-row strong{
  font-family:var(--font-heading);
  font-size:1.05rem;
  color:var(--red);
  font-weight:700;
}

.page-home .compare-row span:nth-child(2){
  font-family:var(--font-heading);
  font-weight:600;
  color:var(--ink);
}

.page-home .compare-more{
  margin-top:.4rem;
  align-self:flex-start;
}

.page-home .btn-sm{
  padding:.5rem 1.1rem;
  font-size:.84rem;
}

/* 评测 */
.page-home .board-reviews{
  background:var(--fog);
  border:var(--outline-w) solid var(--ink);
  box-shadow:var(--shadow-1);
}

.page-home .board-reviews-inner{
  display:flex;
  flex-direction:column;
  gap:1.1rem;
  padding:1.5rem;
  flex:1;
}

.page-home .reviews-title{
  font-family:var(--font-heading);
  font-size:1.45rem;
  font-weight:700;
  color:var(--ink);
  margin:.25rem 0 0;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.page-home .review-list{
  display:flex;
  flex-direction:column;
  gap:.6rem;
}

.page-home .review-item{
  display:block;
  padding:.85rem .9rem;
  background:var(--white);
  border:1px solid rgba(27,42,74,.12);
  box-shadow:2px 2px 0 rgba(27,42,74,.08);
  text-decoration:none;
  color:var(--ink);
  transition:box-shadow .2s ease,transform .2s ease;
}

.page-home .review-item:hover{
  box-shadow:4px 4px 0 rgba(27,42,74,.16);
  transform:translate(-1px,-1px);
}

.page-home .review-cat{
  display:block;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--blue);
}

.page-home .review-title{
  display:block;
  font-weight:600;
  font-size:.92rem;
  line-height:1.4;
  margin:.3rem 0 .2rem;
}

.page-home .review-meta{
  display:block;
  font-size:.76rem;
  color:#77777f;
}

.page-home .review-summary{
  display:grid;
  grid-template-columns:1fr;
  gap:.9rem;
  align-items:center;
  margin-top:.2rem;
  padding-top:1rem;
  border-top:1px solid rgba(27,42,74,.12);
}

.page-home .review-img{
  width:100%;
  max-width:170px;
  height:auto;
  object-fit:cover;
  border:2px solid var(--ink);
  box-shadow:2px 2px 0 rgba(27,42,74,.12);
}

.page-home .review-stats{
  display:flex;
  flex-direction:column;
  gap:.1rem;
}

.page-home .stat-num{
  font-family:var(--font-heading);
  font-size:2.4rem;
  font-weight:700;
  color:var(--red);
  line-height:1;
}

.page-home .stat-label{
  font-size:.8rem;
  color:var(--ink);
  font-weight:600;
}

.page-home .stat-note{
  font-size:.72rem;
  color:#77777f;
  margin-top:.2rem;
}

.page-home .reviews-more{
  margin-top:.2rem;
  align-self:flex-start;
}

/* 安卓 */
.page-home .board-android{
  background:linear-gradient(140deg,var(--snow) 0%,var(--white) 55%,rgba(91,155,213,.16) 100%);
  border:var(--outline-w) solid var(--ink);
  box-shadow:var(--shadow-2);
}

.page-home .board-android-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
  align-items:center;
  padding:1.5rem;
  width:100%;
  flex:1;
}

.page-home .android-title{
  font-family:var(--font-heading);
  font-size:1.45rem;
  font-weight:700;
  color:var(--ink);
  margin:.25rem 0 .5rem;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.page-home .android-desc{
  font-size:.9rem;
  line-height:1.7;
  color:#4d4d55;
  margin:0 0 .75rem;
}

.page-home .android-specs{
  list-style:none;
  padding:0;
  margin:0 0 1.1rem;
  display:flex;
  flex-direction:column;
  gap:.55rem;
}

.page-home .android-specs li{
  position:relative;
  padding-left:1.4rem;
  font-size:.87rem;
  line-height:1.5;
  color:var(--ink);
}

.page-home .android-specs li::before{
  content:"";
  position:absolute;
  left:.1rem;
  top:.5em;
  width:.55rem;
  height:.55rem;
  background:var(--gold);
  transform:rotate(45deg);
}

.page-home .android-specs strong{
  font-weight:700;
  color:var(--red);
}

.page-home .android-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
}

.page-home .android-visual{
  position:relative;
}

.page-home .android-img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
  border:2px solid var(--ink);
  box-shadow:var(--shadow-3);
}

/* 日历横幅 */
.page-home .board-calendar{
  background:var(--navy);
  border:var(--outline-w) solid var(--ink);
  box-shadow:var(--shadow-2);
  overflow:hidden;
}

.page-home .board-calendar-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
  align-items:center;
  padding:1.5rem;
  width:100%;
}

.page-home .calendar-img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
  border:2px solid var(--ink);
  box-shadow:var(--shadow-3);
}

.page-home .calendar-copy{
  color:var(--white);
}

.page-home .calendar-copy .plate-label{
  color:var(--gold);
}

.page-home .calendar-title{
  font-family:var(--font-heading);
  font-size:1.7rem;
  font-weight:700;
  color:var(--gold);
  margin:.25rem 0 .75rem;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.page-home .calendar-copy p{
  font-size:.9rem;
  line-height:1.75;
  color:rgba(255,255,255,.78);
  margin:0 0 1.25rem;
  max-width:34em;
}

.page-home .calendar-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
}

/* 平台信任 */
.page-home .home-platform{
  padding-top:3.25rem;
  display:grid;
  grid-template-columns:1fr;
  gap:1.75rem;
}

.page-home .platform-title{
  font-family:var(--font-heading);
  font-size:1.8rem;
  font-weight:700;
  color:var(--ink);
  margin:0 0 .65rem;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.page-home .platform-copy p{
  font-size:.92rem;
  line-height:1.7;
  color:#52525b;
  max-width:42em;
  margin:0 0 1.5rem;
}

.page-home .platform-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.8rem;
}

.page-home .platform-item{
  border:var(--outline-w) solid var(--ink);
  background:var(--white);
  box-shadow:var(--shadow-1);
  padding:.85rem 1rem;
  font-size:.82rem;
  color:var(--ink);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.page-home .platform-item strong{
  font-family:var(--font-heading);
  font-size:1.9rem;
  font-weight:700;
  color:var(--red);
  line-height:1;
}

.page-home .platform-links{
  display:flex;
  flex-wrap:wrap;
  gap:.8rem;
  align-content:flex-end;
}

.page-home .platform-link{
  border:var(--outline-w) solid var(--ink);
  background:var(--fog);
  color:var(--ink);
  font-weight:600;
  font-size:.9rem;
  padding:.6rem 1.25rem;
  text-decoration:none;
  box-shadow:2px 2px 0 rgba(27,42,74,.12);
}

.page-home .platform-link:hover{
  background:var(--red);
  color:var(--white);
  transform:translate(-1px,-1px);
  transition:background .2s ease,transform .2s ease,color .2s ease;
}

/* 底栏信息 */
.page-home .home-legal{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:.6rem .9rem;
  padding:1.6rem 0 3.25rem;
  font-size:.82rem;
  color:var(--ink);
}

.page-home .home-legal a{
  color:var(--ink);
  text-decoration:none;
}

.page-home .home-legal a:hover{
  color:var(--red);
}

.page-home .legal-sep{
  color:rgba(27,42,74,.4);
}

/* 断点增强 */
@media (min-width:640px){
  .page-home .hero-layout{
    grid-template-columns:1fr;
  }

  .page-home .hero-count{
    bottom:-1.1rem;
    left:auto;
    right:1.25rem;
  }

  .page-home .board-focus-inner{
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:1.8rem;
  }

  .page-home .focus-matches{
    border-top:0;
    border-left:1px solid rgba(255,255,255,.18);
    padding-top:0;
    padding-left:1.5rem;
  }

  .page-home .review-summary{
    grid-template-columns:auto 1fr;
  }

  .page-home .board-android-inner{
    grid-template-columns:1fr 1fr;
  }

  .page-home .board-calendar-inner{
    grid-template-columns:.9fr 1.1fr;
    gap:2rem;
  }

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

@media (min-width:900px){
  .page-home .home-hero{
    padding-top:4.75rem;
  }

  .page-home .hero-layout{
    grid-template-columns:1.05fr .95fr;
    gap:3rem;
  }

  .page-home .hero-index{
    grid-template-columns:repeat(4,1fr);
    gap:1rem;
    padding-bottom:2.5rem;
  }

  .page-home .board-calendar-inner{
    grid-template-columns:.9fr 1.1fr;
  }

  .page-home .home-platform{
    grid-template-columns:1.4fr 1fr;
    align-items:center;
  }
}
