.page-home{
  --home-gutter: clamp(20px, 4vw, 56px);
  --home-shadow: 10px 10px 0 rgba(13,79,60,.14);
  --home-shadow-dark: 12px 12px 0 rgba(0,0,0,.28);
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
}
.page-home img{
  max-width: 100%;
  height: auto;
}
.page-home .section{
  padding: 70px 0;
}
.page-home .eyebrow{
  color: var(--c-dark-gold);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 13px;
}
.page-home .section-title{
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--c-black);
}
.page-home .section--dark .eyebrow{
  color: var(--c-gold);
}
.page-home .section--dark .section-title{
  color: var(--c-white);
}
.page-home .home-section-head__desc{
  color: var(--c-muted);
  max-width: 720px;
  line-height: 1.75;
  margin-bottom: 0;
}
.page-home .is-filtered{
  display: none !important;
}

/* Hero 封面 */
.page-home .home-hero{
  position: relative;
  min-height: 760px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--c-green);
  color: var(--c-white);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
}
.page-home .home-hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .26;
  transform: scale(1.02);
}
.page-home .home-hero__shade{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(13,79,60,.97) 0%, rgba(13,79,60,.84) 52%, rgba(13,79,60,.38) 100%);
}
.page-home .home-hero__inner{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 26px) var(--home-gutter) 96px;
  display: grid;
  gap: 46px;
}
.page-home .home-hero__crumb{
  font-size: 14px;
  color: rgba(255,255,255,.78);
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.page-home .home-hero__crumb a{
  color: var(--c-gold);
  text-decoration: none;
}
.page-home .home-hero__eyebrow{
  color: var(--c-gold);
  font-size: 14px;
  margin-bottom: 8px;
}
.page-home .home-hero__title{
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 108px);
  line-height: .96;
  letter-spacing: -.045em;
  margin: 0 0 24px;
  max-width: 7em;
  background: linear-gradient(135deg, var(--c-white) 0 56%, var(--c-gold) 56% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--c-white);
}
.page-home .home-hero__lead{
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
  color: rgba(255,255,255,.92);
  max-width: 620px;
  margin: 0 0 22px;
}
.page-home .home-hero__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.page-home .home-hero__meta-item{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.86);
  background: rgba(13,79,60,.55);
  border: 1px solid rgba(212,175,55,.3);
  padding: 6px 12px;
}
.page-home .home-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.page-home .home-hero__panel{
  max-width: 460px;
  width: 100%;
}
.page-home .home-dashboard{
  position: relative;
  background: rgba(13,79,60,.72);
  border: 1px solid rgba(212,175,55,.34);
  padding: 26px 24px 20px;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--home-shadow);
}
.page-home .home-dashboard::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
}
.page-home .home-dashboard__head{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.page-home .home-dashboard__dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.22);
}
.page-home .home-dashboard__list{
  display: grid;
  gap: 0;
  margin: 0;
}
.page-home .home-dashboard__item{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.page-home .home-dashboard__item dt{
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
.page-home .home-dashboard__item dd{
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 28px;
  color: var(--c-gold);
  margin: 0;
}
.page-home .home-dashboard__note{
  margin: 14px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.62);
  line-height: 1.5;
}

/* 按钮 */
.page-home .button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 0;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.page-home .button:hover{
  transform: rotate(-1deg) translateY(-2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,.18);
}
.page-home .button--primary{
  background: var(--c-gold);
  border: 1px solid var(--c-gold);
  color: var(--c-black);
}
.page-home .button--ghost{
  background: transparent;
  border: 1px solid rgba(13,79,60,.55);
  color: var(--c-green);
}
.page-home .section--dark .button--ghost,
.page-home .home-hero .button--ghost{
  border-color: rgba(255,255,255,.7);
  color: var(--c-white);
}

/* 快速筛选 */
.page-home .home-search{
  background: var(--c-light);
  position: relative;
}
.page-home .home-search__toolbar{
  margin-top: 30px;
}
.page-home .home-search__input{
  width: 100%;
  border: 1px solid rgba(13,79,60,.25);
  border-bottom: 3px solid var(--c-gold);
  background: var(--c-white);
  padding: 14px 18px;
  font-size: 16px;
  color: var(--c-text);
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.page-home .home-search__input:focus{
  box-shadow: 0 0 0 4px rgba(212,175,55,.22);
  border-color: var(--c-dark-gold);
}
.page-home .home-search__bar{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .filter-button{
  background: var(--c-white);
  border: 1px solid rgba(13,79,60,.2);
  color: var(--c-green);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 0;
  cursor: pointer;
  transition: all .2s ease;
}
.page-home .filter-button:hover,
.page-home .filter-button.is-active{
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
  box-shadow: 4px 4px 0 rgba(212,175,55,.4);
}
.page-home .home-search__list{
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.page-home .home-search__item{
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-white);
  border: 1px solid rgba(13,79,60,.12);
  padding: 18px 16px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.page-home .home-search__item:hover{
  transform: rotate(-.8deg) translateY(-3px);
  box-shadow: 8px 8px 0 rgba(13,79,60,.1);
}
.page-home .home-search__tag{
  flex: 0 0 auto;
  min-width: 58px;
  text-align: center;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 6px 10px;
  color: var(--c-white);
  background: var(--c-green);
}
.page-home .tag-csl{
  background: var(--c-green);
}
.page-home .tag-cla{
  background: var(--c-gold);
  color: var(--c-black);
}
.page-home .tag-clb{
  background: var(--c-dark-gold);
  color: var(--c-white);
}
.page-home .tag-fac{
  background: var(--c-red);
}
.page-home .home-search__main{
  flex: 1 1 auto;
  min-width: 0;
}
.page-home .home-search__main h3{
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 4px;
  color: var(--c-black);
}
.page-home .home-search__main p{
  font-size: 14px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.6;
}
.page-home .home-search__status{
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-dark-gold);
}
.page-home .home-search__status--live{
  color: var(--c-green-bright);
}
.page-home .home-search__disclaimer{
  font-size: 12px;
  color: var(--c-muted);
  margin: 16px 0 0;
}

/* 本周焦点 */
.page-home .home-focus{
  background: var(--c-green);
}
.page-home .home-focus__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 30px;
}
.page-home .home-focus__item{
  background: var(--c-black);
  color: var(--c-white);
  padding: 30px 28px 26px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  transition: transform .25s ease, box-shadow .25s ease;
}
.page-home .home-focus__item:hover{
  transform: rotate(-1.2deg) translateY(-5px);
  box-shadow: var(--home-shadow-dark);
}
.page-home .home-focus__num{
  position: absolute;
  right: 16px;
  top: 14px;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: rgba(212,175,55,.24);
}
.page-home .home-focus__item h3{
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--c-gold);
}
.page-home .home-focus__item p{
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin: 0 0 18px;
  max-width: 34em;
}
.page-home .home-focus__item a{
  color: var(--c-white);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}
.page-home .home-focus__item a:hover{
  color: var(--c-gold);
}

/* 实时数据面板 */
.page-home .home-live{
  background: var(--c-light);
}
.page-home .home-live__grid{
  display: grid;
  gap: 36px;
}
.page-home .home-live__stats{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 26px 0 18px;
}
.page-home .home-live__stat{
  background: var(--c-white);
  border-left: 4px solid var(--c-gold);
  box-shadow: 6px 6px 0 rgba(13,79,60,.08);
  padding: 16px 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.page-home .home-live__stat:hover{
  transform: rotate(-1deg) translateY(-3px);
  box-shadow: 10px 10px 0 rgba(13,79,60,.12);
}
.page-home .home-live__stat dt{
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 6px;
}
.page-home .home-live__stat dd{
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  margin: 0;
  color: var(--c-green);
}
.page-home .home-live__points{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
}
.page-home .home-live__points li{
  font-size: 13px;
  padding: 6px 12px;
  background: var(--c-white);
  border: 1px solid rgba(13,79,60,.16);
  color: var(--c-green);
}
.page-home .home-live__visual{
  position: relative;
}
.page-home .home-live__visual img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}
.page-home .home-live__link{
  margin-top: 20px;
}

/* 最新动态 */
.page-home .home-news{
  background: var(--c-white);
}
.page-home .home-news__grid{
  display: grid;
  gap: 36px;
}
.page-home .home-news__visual{
  position: relative;
}
.page-home .home-news__visual img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.page-home .home-news__badge{
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--c-red);
  color: var(--c-white);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.page-home .home-news__list{
  list-style: none;
  padding: 0;
  margin: 22px 0 22px;
}
.page-home .home-news__item{
  padding: 14px 0;
  border-bottom: 1px solid rgba(13,79,60,.14);
}
.page-home .home-news__link{
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-black);
  text-decoration: none;
  transition: color .2s ease;
}
.page-home .home-news__link:hover{
  color: var(--c-dark-gold);
}
.page-home .home-news__item p{
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.6;
}

/* 信任背书 */
.page-home .home-trust{
  background: var(--c-green);
}
.page-home .home-trust__head{
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}
.page-home .home-trust__sub{
  color: rgba(255,255,255,.88);
  max-width: 640px;
  line-height: 1.8;
  margin: 0;
}
.page-home .home-trust__badges{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 38px;
}
.page-home .home-trust__badge{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(212,175,55,.35);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-home .home-trust__badge span{
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 26px;
  color: var(--c-gold);
  line-height: 1;
}
.page-home .home-trust__badge strong{
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 600;
}
.page-home .home-trust__bottom{
  display: grid;
  gap: 26px;
}
.page-home .home-trust__media img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.2);
}
.page-home .home-trust__contact{
  color: rgba(255,255,255,.9);
  line-height: 1.8;
  font-size: 15px;
}
.page-home .home-trust__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

@media (min-width: 760px){
  .page-home .section{
    padding: 90px 0;
  }
  .page-home .home-hero__inner{
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 52px;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 118px;
  }
  .page-home .home-hero__panel{
    margin-left: auto;
  }
  .page-home .home-search__toolbar{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: end;
  }
  .page-home .home-search__bar{
    margin-top: 0;
  }
  .page-home .home-focus__grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-live__grid{
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    align-items: center;
    gap: 48px;
  }
  .page-home .home-live__stats{
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-news__grid{
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: start;
  }
  .page-home .home-news__visual{
    position: sticky;
    top: 100px;
  }
  .page-home .home-trust__head{
    grid-template-columns: 1fr 1.1fr;
    align-items: end;
  }
  .page-home .home-trust__badges{
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .home-trust__bottom{
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (min-width: 1080px){
  .page-home .home-hero__title{
    font-size: clamp(76px, 9vw, 118px);
  }
  .page-home .home-dashboard{
    padding: 32px 30px 24px;
  }
}
