.page-home{
  --home-cyan:#00E5FF;
  --home-amber:#FFC107;
  --home-uv:#3D0A6E;
  --home-deep:#0A0E27;
  --home-paper:#F5F0E1;
  --home-ink:#1A1A1A;
  --home-glass:rgba(255,255,255,0.08);
  position:relative;
  overflow-x:hidden;
  background:var(--home-deep);
}

.page-home .container{
  width:min(1200px,100% - 48px);
  margin-inline:auto;
}
.page-home .section-kicker{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--cyan);
  margin-bottom:12px;
  display:inline-block;
  border-left:2px solid var(--cyan);
  padding-left:10px;
}
.page-home .section-head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:28px;
}
.page-home .section-title{
  font-family:var(--font-head);
  font-size:clamp(24px,4vw,36px);
  line-height:1.15;
  font-weight:700;
  letter-spacing:.02em;
  color:var(--home-paper);
  margin:0;
}
.page-home .section-more{
  flex-shrink:0;
}
.page-home .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:var(--radius-s);
  font-family:var(--font-body);
  font-weight:600;
  font-size:14px;
  letter-spacing:.04em;
  padding:12px 24px;
  text-decoration:none;
  transition:transform .25s var(--ease-out),box-shadow .25s var(--ease-out),background .25s var(--ease-out),border-color .25s var(--ease-out);
}
.page-home .btn-primary{
  background:var(--home-cyan);
  color:#04121A;
  border:1px solid var(--home-cyan);
  box-shadow:0 0 20px rgba(0,229,255,.25);
}
.page-home .btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 28px rgba(0,229,255,.5);
}
.page-home .btn-ghost{
  background:transparent;
  color:var(--home-cyan);
  border:1px solid rgba(0,229,255,.4);
}
.page-home .btn-ghost:hover{
  border-color:var(--home-cyan);
  background:rgba(0,229,255,.08);
  transform:translateY(-2px);
}
.page-home .btn-amber{
  background:var(--home-amber);
  color:#241800;
  border:1px solid var(--home-amber);
  box-shadow:0 0 16px rgba(255,193,7,.25);
}
.page-home .btn-amber:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 24px rgba(255,193,7,.45);
}

/* ===== hero ===== */
.page-home .hero{
  position:relative;
  padding:72px 0 96px;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%,rgba(0,229,255,.14),transparent 70%),
    radial-gradient(ellipse 50% 50% at 8% 92%,rgba(61,10,110,.55),transparent 70%),
    linear-gradient(135deg,var(--home-deep) 0%,var(--home-uv) 100%);
  overflow:hidden;
  border-bottom:1px solid rgba(0,229,255,.15);
}
.page-home .hero-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:32px 32px;
  mask-image:linear-gradient(135deg,transparent 20%,#000 80%);
  pointer-events:none;
}
.page-home .hero-slice{
  position:absolute;
  top:0;
  right:0;
  width:62%;
  height:100%;
  background:linear-gradient(135deg,rgba(0,229,255,.08),rgba(61,10,110,.25));
  clip-path:polygon(28% 0,100% 0,100% 100%,8% 100%);
  pointer-events:none;
}
.page-home .hero-beam{
  position:absolute;
  top:50%;
  left:-15%;
  width:130%;
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(0,229,255,.8),rgba(255,193,7,.7),transparent);
  transform:rotate(-6deg);
  opacity:.55;
  pointer-events:none;
}
.page-home .hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1fr;
  gap:44px;
  align-items:center;
}
.page-home .hero-kicker{
  font-size:12px;
  color:var(--home-cyan);
  letter-spacing:.14em;
  border:1px solid rgba(0,229,255,.3);
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  background:rgba(0,229,255,.06);
  border-radius:2px;
}
.page-home .crumb-now{color:var(--home-paper)}
.page-home .crumb-sep{color:var(--home-amber);opacity:.6}
.page-home .hero-title{
  font-family:var(--font-head);
  font-size:clamp(32px,6vw,58px);
  line-height:1.08;
  font-weight:700;
  letter-spacing:.01em;
  color:var(--home-paper);
  margin:22px 0 20px;
  max-width:640px;
  text-wrap:balance;
}
.page-home .hero-lead{
  font-family:var(--font-body);
  font-size:16px;
  font-weight:300;
  line-height:1.8;
  letter-spacing:.03em;
  color:rgba(245,240,225,.82);
  max-width:560px;
  margin:0 0 28px;
}
.page-home .hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:32px;
}
.page-home .hero-cta{
  position:relative;
  overflow:hidden;
}
.page-home .hero-cta::after{
  content:'';
  position:absolute;
  top:-50%;
  left:-40%;
  width:30%;
  height:200%;
  background:rgba(255,255,255,.35);
  transform:rotate(35deg) translateX(-120%);
  transition:transform .5s var(--ease-out);
}
.page-home .hero-cta:hover::after{
  transform:rotate(35deg) translateX(380%);
}
.page-home .hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.1);
}
.page-home .hero-meta-item{
  font-size:12px;
  color:rgba(245,240,225,.6);
  letter-spacing:.08em;
  padding-left:12px;
  border-left:2px solid var(--home-amber);
}
.page-home .hero-meta-sep{
  width:1px;
  height:14px;
  background:rgba(255,255,255,.15);
}
.page-home .hero-visual{
  position:relative;
}
.page-home .hero-img{
  width:100%;
  max-width:100%;
  height:auto;
  border-radius:12px;
  display:block;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 60px rgba(0,0,0,.4);
}
.page-home .hero-stat{
  position:absolute;
  left:-12px;
  bottom:-18px;
  min-width:150px;
  padding:16px 20px;
  border-radius:10px;
  border:1px solid rgba(0,229,255,.35);
  background:rgba(10,14,39,.78);
  backdrop-filter:blur(10px);
  box-shadow:0 12px 32px rgba(0,0,0,.35);
}
.page-home .hero-stat-label{
  font-size:11px;
  color:rgba(245,240,225,.65);
  letter-spacing:.12em;
}
.page-home .hero-stat-value{
  font-family:var(--font-head);
  font-size:42px;
  line-height:1;
  font-weight:700;
  color:var(--home-cyan);
  margin:6px 0 10px;
}
.page-home .hero-stat-unit{
  font-size:18px;
  margin-left:4px;
  color:rgba(245,240,225,.7);
}
.page-home .hero-stat-track{
  height:3px;
  border-radius:3px;
  background:rgba(255,255,255,.12);
  overflow:hidden;
}
.page-home .hero-stat-progress{
  display:block;
  height:100%;
  width:100%;
  background:linear-gradient(90deg,var(--home-cyan),var(--home-amber));
  border-radius:3px;
  animation:heroStream 2.4s var(--ease-out) infinite;
}
@keyframes heroStream{
  0%{transform:translateX(-100%)}
  60%{transform:translateX(0)}
  100%{transform:translateX(0)}
}
.page-home .hero-scroll{
  position:absolute;
  bottom:22px;
  left:50%;
  transform:translateX(-50%);
  font-size:11px;
  letter-spacing:.3em;
  color:rgba(245,240,225,.4);
  border-bottom:1px solid rgba(0,229,255,.3);
  padding-bottom:6px;
  white-space:nowrap;
}

/* ===== overview ===== */
.page-home .overview{
  padding:72px 0 56px;
  background:var(--home-deep);
  position:relative;
}
.page-home .overview::before{
  content:'';
  position:absolute;
  top:0;
  right:0;
  width:38%;
  height:220px;
  background:radial-gradient(ellipse at right top,rgba(0,229,255,.08),transparent 70%);
  pointer-events:none;
}
.page-home .overview-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-bottom:32px;
}
.page-home .metric-card{
  position:relative;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  border-radius:12px;
  padding:24px 20px;
  transition:transform .3s var(--ease-out),box-shadow .3s var(--ease-out);
  overflow:hidden;
}
.page-home .metric-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 36px rgba(0,0,0,.4);
}
.page-home .metric-cyan{
  background:linear-gradient(135deg,rgba(0,229,255,.14),rgba(0,229,255,.04));
  border:1px solid rgba(0,229,255,.35);
}
.page-home .metric-cyan .metric-value{
  color:var(--home-cyan);
}
.page-home .metric-paper{
  background:var(--home-paper);
  color:var(--home-ink);
  border:1px solid transparent;
}
.page-home .metric-paper .metric-label,
.page-home .metric-paper .metric-note{
  color:rgba(26,26,26,.65);
}
.page-home .metric-paper .metric-value{
  color:var(--home-ink);
}
.page-home .metric-glass{
  background:var(--home-glass);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
  color:var(--home-paper);
}
.page-home .metric-glass .metric-note{
  color:rgba(245,240,225,.6);
}
.page-home .metric-amber{
  background:linear-gradient(135deg,rgba(255,193,7,.22),rgba(255,193,7,.06));
  border:1px solid rgba(255,193,7,.4);
  color:var(--home-paper);
}
.page-home .metric-amber .metric-value{
  color:var(--home-amber);
}
.page-home .metric-label{
  font-size:11px;
  color:rgba(245,240,225,.55);
  letter-spacing:.12em;
  margin-bottom:10px;
}
.page-home .metric-value{
  font-family:var(--font-head);
  font-size:40px;
  line-height:1;
  font-weight:700;
  margin-bottom:10px;
}
.page-home .metric-unit{
  font-size:16px;
  margin-left:2px;
  opacity:.7;
}
.page-home .metric-note{
  font-family:var(--font-body);
  font-size:13px;
  color:rgba(245,240,225,.6);
  letter-spacing:.02em;
}
.page-home .overview-chart{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  align-items:center;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:28px;
}
.page-home .overview-chart img{
  width:100%;
  max-width:100%;
  height:auto;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.1);
}
.page-home .chart-caption{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  color:rgba(245,240,225,.6);
  letter-spacing:.08em;
}
.page-home .chart-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--home-cyan);
  box-shadow:0 0 10px rgba(0,229,255,.7);
  flex-shrink:0;
}

/* ===== records ===== */
.page-home .records{
  position:relative;
  padding:72px 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 0%,rgba(61,10,110,.45),transparent 70%),
    var(--home-deep);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.page-home .records-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
  align-items:center;
}
.page-home .records-visual{
  position:relative;
}
.page-home .records-visual img{
  width:100%;
  max-width:100%;
  height:auto;
  border-radius:12px;
  display:block;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 20px 44px rgba(0,0,0,.35);
}
.page-home .records-float{
  position:absolute;
  right:-10px;
  bottom:-12px;
  background:rgba(245,240,225,.92);
  color:var(--home-ink);
  font-size:12px;
  letter-spacing:.08em;
  padding:8px 16px;
  border-radius:20px;
  box-shadow:0 8px 24px rgba(0,0,0,.3);
}
.page-home .records-content .section-title{
  color:var(--home-paper);
}
.page-home .records-content > p{
  font-size:15px;
  line-height:1.8;
  color:rgba(245,240,225,.75);
  margin:0 0 26px;
  max-width:520px;
}
.page-home .records-timeline{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:28px;
}
.page-home .tl-item{
  display:flex;
  align-items:center;
  gap:12px;
}
.page-home .tl-month{
  flex:0 0 68px;
  font-size:12px;
  color:rgba(245,240,225,.6);
  letter-spacing:.06em;
}
.page-home .tl-track{
  flex:1;
  height:6px;
  border-radius:6px;
  background:rgba(255,255,255,.08);
  overflow:hidden;
}
.page-home .tl-fill{
  display:block;
  height:100%;
  border-radius:6px;
  background:linear-gradient(90deg,var(--home-cyan),rgba(0,229,255,.4));
}
.page-home .records-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

/* ===== pricing ===== */
.page-home .pricing{
  padding:72px 0;
  position:relative;
  background:
    radial-gradient(ellipse 40% 40% at 90% 20%,rgba(255,193,7,.08),transparent 70%),
    var(--home-deep);
}
.page-home .pricing-intro{
  font-size:15px;
  line-height:1.8;
  color:rgba(245,240,225,.7);
  margin:0 auto 32px;
  max-width:720px;
}
.page-home .pricing-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
.page-home .price-card{
  border-radius:14px;
  padding:28px 22px;
  display:flex;
  flex-direction:column;
  gap:6px;
  transition:transform .3s var(--ease-out),box-shadow .3s var(--ease-out);
}
.page-home .price-card:hover{
  transform:translateY(-8px);
}
.page-home .price-standard,
.page-home .price-flagship{
  background:var(--home-paper);
  color:var(--home-ink);
  border:1px solid rgba(245,240,225,.4);
  box-shadow:0 8px 30px rgba(0,0,0,.18);
}
.page-home .price-standard:hover,
.page-home .price-flagship:hover{
  box-shadow:0 16px 40px rgba(0,0,0,.3);
}
.page-home .price-advance{
  background:linear-gradient(160deg,rgba(0,229,255,.16),rgba(61,10,110,.35));
  border:1px solid rgba(0,229,255,.45);
  color:var(--home-paper);
  box-shadow:0 8px 32px rgba(0,229,255,.12);
}
.page-home .price-advance:hover{
  box-shadow:0 16px 44px rgba(0,229,255,.22);
}
.page-home .price-tag{
  font-family:var(--font-head);
  font-size:26px;
  font-weight:700;
  letter-spacing:.04em;
  margin-bottom:4px;
}
.page-home .price-advance .price-tag{
  color:var(--home-cyan);
}
.page-home .price-label{
  font-size:11px;
  letter-spacing:.14em;
  opacity:.55;
  margin-bottom:14px;
}
.page-home .price-features{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:20px;
  flex:1;
}
.page-home .price-features p{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:14px;
  line-height:1.5;
  margin:0;
}
.page-home .check{
  color:var(--home-cyan);
  font-weight:700;
  flex-shrink:0;
}
.page-home .price-standard .check,
.page-home .price-flagship .check{
  color:#0E7C86;
}
.page-home .price-card .btn{
  margin-top:auto;
}

/* ===== promo ===== */
.page-home .promo{
  padding:72px 0 92px;
  background:
    radial-gradient(ellipse 45% 55% at 10% 85%,rgba(255,193,7,.12),transparent 70%),
    var(--home-deep);
  border-top:1px solid rgba(255,255,255,.06);
}
.page-home .promo-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
  align-items:center;
}
.page-home .promo-copy .section-title{
  color:var(--home-paper);
}
.page-home .promo-copy > p{
  font-size:15px;
  line-height:1.8;
  color:rgba(245,240,225,.75);
  margin:0 0 28px;
  max-width:560px;
}
.page-home .promo-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:28px;
}
.page-home .promo-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px 18px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  text-decoration:none;
  transition:background .3s var(--ease-out),border-color .3s var(--ease-out),transform .3s var(--ease-out);
}
.page-home .promo-item:hover{
  transform:translateX(6px);
  border-color:rgba(0,229,255,.4);
  background:rgba(0,229,255,.07);
}
.page-home .promo-num{
  font-size:20px;
  color:var(--home-amber);
  font-weight:700;
  flex-shrink:0;
  letter-spacing:.04em;
}
.page-home .promo-main{
  display:flex;
  flex-direction:column;
  gap:4px;
  flex:1;
}
.page-home .promo-name{
  font-family:var(--font-body);
  font-size:16px;
  font-weight:600;
  color:var(--home-paper);
}
.page-home .promo-meta{
  font-size:12px;
  color:rgba(245,240,225,.55);
  letter-spacing:.05em;
}
.page-home .promo-visual{
  position:relative;
}
.page-home .promo-visual img{
  width:100%;
  max-width:100%;
  height:auto;
  border-radius:12px;
  display:block;
  border:1px solid rgba(255,193,7,.3);
  box-shadow:0 20px 44px rgba(0,0,0,.35);
}
.page-home .promo-note{
  position:absolute;
  left:-10px;
  bottom:-12px;
  background:rgba(255,193,7,.92);
  color:#241800;
  font-size:12px;
  letter-spacing:.08em;
  padding:8px 16px;
  border-radius:20px;
  box-shadow:0 8px 24px rgba(0,0,0,.3);
}

/* ===== md ===== */
@media (min-width:768px){
  .page-home .hero{
    padding:96px 0 120px;
  }
  .page-home .hero-inner{
    grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
    gap:50px;
  }
  .page-home .hero-stat{
    left:-18px;
    bottom:-22px;
  }
  .page-home .overview-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }
  .page-home .records-inner{
    grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
    gap:48px;
  }
  .page-home .pricing-grid{
    grid-template-columns:repeat(3,1fr);
    gap:22px;
  }
  .page-home .promo-inner{
    grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr);
    gap:48px;
  }
}

/* ===== lg ===== */
@media (min-width:1100px){
  .page-home .hero-title{
    font-size:58px;
  }
  .page-home .hero-lead{
    font-size:18px;
  }
  .page-home .overview-grid{
    grid-template-columns:repeat(4,1fr);
  }
  .page-home .overview-chart{
    grid-template-columns:minmax(0,1fr) 360px;
  }
  .page-home .hero-visual{
    transform:translateY(10px);
  }
}

```
