
:root{
  --bg:#000000;
  --navy:#07111F;
  --navy2:#0C1E38;
  --blue:#2E7DFF;
  --blue2:#5AA3FF;
  --text:#FFFFFF;
  --muted:#B8C7DB;
  --line:rgba(90,163,255,.28);
  --glass:rgba(8,21,38,.78);
  --shadow:0 0 42px rgba(46,125,255,.30);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(46,125,255,.22), transparent 34rem),
    radial-gradient(circle at 10% 20%, rgba(90,163,255,.12), transparent 26rem),
    linear-gradient(180deg,#000 0%,#02060d 55%,#000 100%);
  color:var(--text);
}
body:before{
  content:"";
  position:fixed; inset:0; z-index:-1;
  background-image:
    linear-gradient(rgba(90,163,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,163,255,.035) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.9),transparent 80%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%}
.site{
  width:100%;
  max-width:460px;
  margin:0 auto;
  min-height:100vh;
  border-left:1px solid rgba(90,163,255,.08);
  border-right:1px solid rgba(90,163,255,.08);
  background:linear-gradient(180deg,rgba(0,0,0,.20),rgba(0,0,0,.70));
}
.header{
  position:sticky;top:0;z-index:10;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:12px 16px;
  backdrop-filter:blur(18px);
  background:rgba(0,0,0,.76);
  border-bottom:1px solid rgba(90,163,255,.18);
}
.brand{display:flex;align-items:center;gap:9px;font-weight:800;letter-spacing:.3px}
.brand img{width:46px;height:46px;object-fit:contain;border-radius:10px}
.menu{display:flex;gap:8px;align-items:center}
.menu a{
  font-size:12px;color:var(--muted);
  padding:8px 9px;border:1px solid rgba(90,163,255,.16);
  border-radius:999px;background:rgba(7,17,31,.55);
}
.menu .hot{background:var(--blue);color:#fff;border-color:var(--blue);box-shadow:0 0 20px rgba(46,125,255,.35)}
.section{padding:34px 20px}
.hero{padding:28px 20px 36px;min-height:84vh;display:flex;flex-direction:column;justify-content:center}
.logo-hero{width:250px;margin:0 0 22px;filter:drop-shadow(0 0 26px rgba(46,125,255,.38))}
.eyebrow{
  display:inline-flex;width:max-content;
  color:#CFE2FF;background:rgba(46,125,255,.12);
  border:1px solid var(--line);border-radius:999px;
  padding:8px 12px;font-size:12px;font-weight:700;letter-spacing:.5px;text-transform:uppercase
}
h1,h2,h3{margin:0}
h1{font-size:48px;line-height:.98;letter-spacing:-2px;margin:18px 0 14px}
h2{font-size:32px;line-height:1.04;letter-spacing:-1px;margin-bottom:12px}
h3{font-size:20px;line-height:1.12;margin-bottom:8px}
p{color:var(--muted);line-height:1.55;margin:0 0 16px;font-size:16px}
.lead{font-size:18px;color:#DFEAFA}
.hero-points{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:18px 0}
.pill{
  border:1px solid var(--line);border-radius:16px;padding:12px;
  background:linear-gradient(180deg,rgba(12,30,56,.75),rgba(7,17,31,.55));
  color:#EAF3FF;font-weight:700;font-size:14px
}
.btns{display:grid;gap:10px;margin-top:16px}
.btn{
  display:flex;align-items:center;justify-content:center;
  min-height:52px;padding:15px 18px;border-radius:16px;
  font-weight:850;text-align:center;border:1px solid var(--line);
}
.btn.primary{background:linear-gradient(135deg,var(--blue),#0F55DF);box-shadow:var(--shadow);border-color:rgba(255,255,255,.14)}
.btn.secondary{background:rgba(7,17,31,.78);color:#DCEBFF}
.card{
  background:linear-gradient(180deg,rgba(12,30,56,.88),rgba(7,17,31,.72));
  border:1px solid var(--line);
  border-radius:24px;padding:20px;margin:14px 0;
  box-shadow:0 14px 50px rgba(0,0,0,.32);
}
.card.glow{box-shadow:0 0 45px rgba(46,125,255,.18)}
.icon{
  width:42px;height:42px;border-radius:14px;margin-bottom:12px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(46,125,255,.16);border:1px solid rgba(90,163,255,.35);
  font-size:22px
}
.big-number{
  font-size:54px;line-height:.95;font-weight:900;letter-spacing:-2px;
  color:#fff;text-shadow:0 0 26px rgba(46,125,255,.60)
}
.stats{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:16px 0}
.stat{
  background:rgba(7,17,31,.72);border:1px solid var(--line);
  border-radius:18px;padding:16px
}
.stat strong{display:block;font-size:26px;color:white}
.stat span{font-size:12px;color:var(--muted)}
.progress{height:14px;background:#07111F;border:1px solid var(--line);border-radius:999px;overflow:hidden;margin:10px 0 8px}
.progress div{height:100%;width:28%;background:linear-gradient(90deg,var(--blue),var(--blue2));box-shadow:0 0 18px rgba(46,125,255,.7)}
.list{display:grid;gap:10px;margin-top:14px}
.li{display:flex;gap:10px;align-items:flex-start;color:#DDEAFF;font-size:15px}
.li:before{content:"";width:8px;height:8px;border-radius:50%;background:var(--blue2);margin-top:8px;box-shadow:0 0 14px var(--blue)}
.tabs{display:grid;gap:12px;margin-top:12px}
.price{font-size:28px;font-weight:900;color:white;margin-top:8px}
.small{font-size:13px;color:#8EA6C5}
form{display:grid;gap:10px;margin-top:14px}
input,select,textarea,button{
  width:100%;border-radius:15px;border:1px solid rgba(90,163,255,.28);
  padding:15px 14px;background:rgba(0,0,0,.35);color:white;font:inherit;
}
textarea{min-height:110px;resize:vertical}
input::placeholder, textarea::placeholder{color:#8296B3}
button{cursor:pointer;background:linear-gradient(135deg,var(--blue),#0F55DF);font-weight:850;box-shadow:var(--shadow)}
.footer{padding:28px 20px 44px;border-top:1px solid rgba(90,163,255,.18);color:#91A5C0;font-size:13px;text-align:center}
.footer a{color:#DCEBFF}
.page-title{padding:26px 20px 12px}
.notice{border-left:3px solid var(--blue);padding:12px 14px;background:rgba(46,125,255,.09);border-radius:12px;color:#DCEBFF;font-size:14px}
@media(min-width:700px){
  .site{max-width:520px}
  h1{font-size:56px}
}
