.page-home{
  --home-glow: rgba(57,255,20,.14);
  --home-glow-orange: rgba(255,106,0,.12);
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
}

/* 首屏主视觉 */
.page-home .hero-section{
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-bg);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
}

.page-home .hero-media,
.page-home .hero-media img{
  position: absolute;
  inset: 0;
}

.page-home .hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}

.page-home .hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10,30,63,.96) 18%, rgba(10,30,63,.78) 46%, rgba(5,13,26,.82) 82%),
    linear-gradient(180deg, transparent 58%, rgba(10,30,63,.92) 100%);
}

.page-home .hero-container{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 60px;
  padding-bottom: 88px;
}

.page-home .hero-copy{
  max-width: 660px;
}

.page-home .hero-kicker{
  margin-bottom: 14px;
}

.page-home .hero-title{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(46px, 11vw, 108px);
  line-height: .94;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--c-text);
}

.page-home .hero-version{
  font-size: 17px;
  letter-spacing: .08em;
  color: var(--c-accent);
  margin: 0 0 18px;
}

.page-home .hero-version strong{
  font-size: 24px;
  font-weight: 800;
}

.page-home .hero-lead{
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text-dim);
  margin: 0 0 30px;
  max-width: 480px;
}

.page-home .hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .hero-speed{
  position: absolute;
  height: 2px;
  border-radius: 2px;
  z-index: 1;
  transform: skewX(-24deg);
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  opacity: 0;
  animation: aoaHomeSpeedFlow 4.2s linear infinite;
}

.page-home .hero-speed-a{
  top: 24%;
  left: -12%;
  width: 42%;
}

.page-home .hero-speed-b{
  top: 49%;
  left: -26%;
  width: 24%;
  background: linear-gradient(90deg, transparent, var(--c-orange), transparent);
  animation-delay: 1.4s;
}

.page-home .hero-speed-c{
  top: 70%;
  left: -8%;
  width: 34%;
  animation-delay: 2.8s;
}

@keyframes aoaHomeSpeedFlow{
  0%{
    transform: translateX(0) skewX(-24deg);
    opacity: 0;
  }
  15%{
    opacity: .5;
  }
  85%{
    opacity: .5;
  }
  100%{
    transform: translateX(52vw) skewX(-24deg);
    opacity: 0;
  }
}

.page-home .hero-particles{
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(57,255,20,.28) 0, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(57,255,20,.18) 0, transparent 2px),
    radial-gradient(circle at 85% 24%, rgba(255,106,0,.22) 0, transparent 3px),
    radial-gradient(circle at 44% 82%, rgba(57,255,20,.16) 0, transparent 2px),
    radial-gradient(circle at 30% 58%, rgba(255,106,0,.14) 0, transparent 2px);
  background-size: 720px 720px, 460px 460px, 520px 520px, 680px 680px, 380px 380px;
  background-repeat: repeat;
  animation: aoaHomeParticleDrift 9s ease-in-out infinite alternate;
}

@keyframes aoaHomeParticleDrift{
  0%{
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }
  100%{
    background-position: 80px 40px, -60px 90px, 36px -50px, -90px -30px, 50px 60px;
  }
}

.page-home .hero-panel{
  position: relative;
  border: 1px solid var(--c-border);
  background: rgba(5,13,26,.64);
  overflow: hidden;
  transform: skewX(-2deg);
  box-shadow: 0 24px 56px rgba(0,0,0,.42);
}

.page-home .panel-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
}

.page-home .panel-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,30,63,.92), rgba(5,13,26,.86));
}

.page-home .panel-content{
  position: relative;
  z-index: 1;
  padding: 28px 24px;
}

.page-home .panel-eyebrow{
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .panel-eyebrow::after{
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--c-accent), transparent);
}

.page-home .panel-pulse{
  animation: aoaHomePulse 1.6s ease-in-out infinite;
}

@keyframes aoaHomePulse{
  0%, 100%{
    opacity: 1;
    transform: scale(1);
  }
  50%{
    opacity: .5;
    transform: scale(.9);
  }
}

.page-home .panel-stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
}

.page-home .panel-stat{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .panel-stat .stat-number{
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--c-text);
  animation: aoaHomeStatGlow 2.6s ease-in-out infinite;
}

.page-home .panel-stat:nth-child(2) .stat-number{
  color: var(--c-accent);
  animation: aoaHomeStatGlowOrange 2.6s ease-in-out infinite .4s;
}

.page-home .stat-number em{
  font-style: normal;
  font-size: 19px;
  color: var(--c-accent);
  margin-left: 2px;
}

.page-home .panel-stat:nth-child(2) .stat-number em{
  color: var(--c-accent);
}

.page-home .panel-stat .stat-label{
  font-size: 13px;
  color: var(--c-text-dim);
  line-height: 1.35;
}

@keyframes aoaHomeStatGlow{
  0%, 100%{
    text-shadow: 0 0 0 rgba(57,255,20,0);
  }
  50%{
    text-shadow: 0 0 18px rgba(57,255,20,.35);
  }
}

@keyframes aoaHomeStatGlowOrange{
  0%, 100%{
    text-shadow: 0 0 0 rgba(255,106,0,0);
  }
  50%{
    text-shadow: 0 0 16px rgba(255,106,0,.32);
  }
}

.page-home .panel-footer{
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
  font-size: 12px;
  color: var(--c-text-dim);
  letter-spacing: .04em;
}

/* 功能模块导航 */
.page-home .feature-section{
  padding: 92px 0 80px;
  position: relative;
}

.page-home .feature-head{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.page-home .feature-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .feature-card{
  position: relative;
  display: block;
  border: 1px solid var(--c-border);
  background: rgba(30,58,95,.16);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--c-text);
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.page-home .feature-card:hover{
  border-color: var(--c-accent);
  background: rgba(30,58,95,.28);
  box-shadow: 0 0 0 1px var(--c-accent), 0 16px 40px rgba(0,0,0,.36);
}

.page-home .feature-card--accent{
  border-color: rgba(255,106,0,.45);
}

.page-home .feature-card--accent:hover{
  border-color: var(--c-orange);
  background: rgba(30,58,95,.28);
  box-shadow: 0 0 0 1px var(--c-orange), 0 16px 40px rgba(0,0,0,.36);
}

.page-home .feature-index{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 18px;
  color: var(--c-orange);
  letter-spacing: .08em;
  margin-bottom: 14px;
  display: inline-block;
}

.page-home .feature-icon{
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(10,30,63,.6);
  border: 1px solid rgba(255,255,255,.14);
}

.page-home .feature-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .feature-icon--empty{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  color: var(--c-accent);
  background: var(--home-glow);
  border-color: rgba(57,255,20,.28);
}

.page-home .feature-card--accent .feature-icon--empty{
  color: var(--c-orange);
  background: var(--home-glow-orange);
  border-color: rgba(255,106,0,.3);
}

.page-home .feature-title{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: .01em;
}

.page-home .feature-text{
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-dim);
  margin: 0 0 18px;
}

.page-home .feature-link{
  font-size: 14px;
  color: var(--c-accent);
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s ease;
}

.page-home .feature-card:hover .feature-link{
  gap: 10px;
}

.page-home .feature-card--accent .feature-link{
  color: var(--c-orange);
}

/* 最新动态 */
.page-home .updates-section{
  position: relative;
  padding: 92px 0 96px;
  clip-path: polygon(0 36px, 100% 0, 100% calc(100% - 36px), 0 100%);
}

.page-home .updates-head{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.page-home .updates-title-wrap{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .link-more{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-orange);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .05em;
  transition: gap .3s ease;
}

.page-home .link-more:hover{
  gap: 12px;
}

.page-home .updates-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .update-item{
  display: flex;
  align-items: stretch;
  border: 1px solid var(--c-border);
  background: rgba(10,30,63,.35);
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.page-home .update-item:hover{
  border-color: var(--c-accent);
  background: rgba(30,58,95,.22);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}

.page-home .update-thumb{
  width: 118px;
  min-height: 100px;
  object-fit: cover;
  align-self: stretch;
  flex-shrink: 0;
}

.page-home .update-body{
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.page-home .update-title{
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
}

.page-home .update-title a{
  color: var(--c-text);
  text-decoration: none;
  transition: color .25s ease;
}

.page-home .update-title a:hover{
  color: var(--c-accent);
}

.page-home .update-text{
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-dim);
  margin: 0;
}

.page-home .update-meta{
  font-size: 12px;
  color: var(--c-text-dim);
  opacity: .82;
  margin-top: auto;
}

/* 下载入口 */
.page-home .download-section{
  position: relative;
  padding: 96px 0 100px;
  background:
    radial-gradient(ellipse at 84% 20%, rgba(57,255,20,.08), transparent 46%),
    radial-gradient(ellipse at 12% 82%, rgba(255,106,0,.08), transparent 42%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
}

.page-home .download-container{
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.page-home .download-copy{
  max-width: 680px;
}

.page-home .download-title{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(38px, 8vw, 72px);
  line-height: .95;
  margin: 0 0 18px;
}

.page-home .download-lead{
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text-dim);
  margin: 0;
  max-width: 560px;
}

.page-home .download-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (min-width: 768px){
  .page-home .hero-section{
    min-height: 720px;
  }

  .page-home .hero-container{
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: 48px;
    padding-top: 88px;
    padding-bottom: 104px;
  }

  .page-home .hero-title{
    font-size: clamp(72px, 9vw, 128px);
  }

  .page-home .hero-panel{
    margin-left: 10px;
  }

  .page-home .panel-content{
    padding: 32px 28px;
  }

  .page-home .feature-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-home .feature-card{
    padding: 32px 26px;
  }

  .page-home .updates-head{
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
  }

  .page-home .updates-list{
    gap: 18px;
  }

  .page-home .update-thumb{
    width: 180px;
  }

  .page-home .download-container{
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    align-items: end;
    gap: 48px;
  }

  .page-home .download-actions{
    justify-content: flex-end;
  }
}

@media (min-width: 1024px){
  .page-home .hero-lead{
    font-size: 17px;
  }

  .page-home .feature-section{
    padding-top: 108px;
  }

  .page-home .update-thumb{
    width: 220px;
  }

  .page-home .download-section{
    padding-top: 116px;
    padding-bottom: 120px;
  }
}
