:root{
--bg:#05070d;
--panel:#101827;
--text:#f7fbff;
--muted:#aab7ca;
--blue:#27b7ff;
--cyan:#56f0ff;
--line:rgba(255,255,255,.12);
}

*{
box-sizing:border-box;
}

body{
margin:0;
background:
radial-gradient(circle at 20% 5%, rgba(39,183,255,.24), transparent 30%),
linear-gradient(180deg,#05070d,#090d16,#05070d);
font-family:Segoe UI,Arial,sans-serif;
color:var(--text);
}

.hero{
min-height:85vh;
padding:80px 8vw;
display:flex;
flex-direction:column;
justify-content:center;
max-width:1250px;
}

.badge{
display:inline-flex;
padding:10px 16px;
border-radius:999px;
border:1px solid rgba(86,240,255,.35);
background:rgba(39,183,255,.08);
color:var(--cyan);
font-weight:800;
margin-bottom:18px;
width:max-content;
}

h1{
font-size:clamp(3rem,7vw,6.3rem);
line-height:.93;
margin:0 0 24px;
font-weight:950;
max-width:1050px;
letter-spacing:-.05em;
}

h2{
font-size:clamp(2rem,4vw,3.4rem);
line-height:1;
margin:0 0 18px;
font-weight:900;
}

.sub,
.muted{
color:var(--muted);
font-size:1.15rem;
line-height:1.7;
max-width:850px;
}

.center{
margin:auto;
}

.actions{
display:flex;
gap:16px;
flex-wrap:wrap;
margin-top:24px;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 26px;
border-radius:14px;
background:linear-gradient(135deg,var(--blue),var(--cyan));
color:#00111a;
font-weight:950;
text-decoration:none;
border:none;
cursor:pointer;
font-size:1rem;
box-shadow:0 16px 45px rgba(39,183,255,.23);
}

.btn.ghost{
background:transparent;
border:1px solid var(--line);
color:var(--text);
box-shadow:none;
}

.large{
padding:18px 34px;
font-size:1.1rem;
}

.section{
padding:70px 8vw;
max-width:1300px;
margin:auto;
}

.grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:28px;
align-items:center;
}

.video-box,
.card,
.form{
background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03));
border:1px solid var(--line);
border-radius:24px;
padding:24px;
}

video{
width:100%;
border-radius:18px;
background:#000;
}

.placeholder{
text-align:center;
padding:70px 24px;
color:var(--muted);
}

.form{
display:flex;
flex-direction:column;
gap:16px;
max-width:620px;
margin:auto;
}

input{
padding:15px;
border-radius:12px;
border:1px solid var(--line);
background:#08101b;
color:white;
font-size:1rem;
}

.cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
margin-top:26px;
}

.card{
min-height:200px;
}

.card p{
color:var(--muted);
line-height:1.6;
}

.capture{
text-align:center;
}

.top-space{
margin-top:30px;
}

@media(max-width:1000px){

.grid,
.cards{
grid-template-columns:1fr;
}

.hero,
.section{
padding-left:6vw;
padding-right:6vw;
}

}
