*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
background:#081826;
color:white;
line-height:1.6;
-webkit-font-smoothing:antialiased;
}

/* ========== NAV ========== */

.lp-nav{
position:fixed;
top:0;
left:0;
right:0;
z-index:100;
display:flex;
align-items:center;
padding:0 40px;
height:64px;
background:rgba(8,24,38,0.85);
backdrop-filter:blur(20px);
-webkit-backdrop-filter:blur(20px);
border-bottom:1px solid rgba(255,255,255,0.06);
}

.lp-nav-brand{
font-size:1.25rem;
font-weight:700;
color:#fff;
text-decoration:none;
margin-right:auto;
}

.lp-nav-links{
display:flex;
gap:2rem;
margin-right:2rem;
}

.lp-nav-links a{
color:rgba(255,255,255,0.6);
text-decoration:none;
font-size:0.875rem;
font-weight:500;
transition:color 0.2s;
}

.lp-nav-links a:hover{
color:#fff;
}

.lp-nav-actions{
display:flex;
gap:0.75rem;
}

.lp-nav-toggle{
display:none;
background:none;
border:none;
cursor:pointer;
padding:6px;
margin-left:auto;
}

.lp-nav-toggle span{
display:block;
width:22px;
height:2px;
background:#fff;
margin:5px 0;
transition:all 0.2s;
}

/* ========== HERO ========== */

.hero{
min-height:100dvh;
position:relative;
display:flex;
align-items:flex-end;
padding-top:64px;
overflow:hidden;
}

.hero-bg{
position:absolute;
inset:0;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 1.2s ease-in-out;
}

.hero-bg.hero-bg-active{
opacity:1;
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.05) 40%,rgba(0,0,0,0.35) 65%,rgba(0,0,0,0.80) 100%);
z-index:1;
}

.hero-inner{
position:relative;
z-index:2;
max-width:700px;
padding:80px;
}

.hero h1{
font-size:56px;
line-height:1.1;
margin-bottom:20px;
font-weight:800;
letter-spacing:-0.02em;
}

.hero p{
font-size:20px;
margin-bottom:30px;
opacity:.9;
}

.hero-cta.btn-full{
margin-top:20px;
height:52px;
font-size:18px;
font-weight:700;
letter-spacing:0.02em;
display:flex;
align-items:center;
justify-content:center;
}

.hero-buttons .btn{
flex:1;
text-align:center;
}

/* ========== BUTTONS ========== */

.btn{
padding:16px 28px;
border-radius:12px;
text-decoration:none;
font-weight:600;
cursor:pointer;
color:white;
border:none;
display:inline-block;
transition:all 0.2s ease;
font-size:16px;
}

.btn:hover{
text-decoration:none;
}

.primary{
background:#2e8cff;
}

.primary:hover{
background:#1a7aee;
transform:translateY(-1px);
box-shadow:0 8px 24px rgba(46,140,255,0.3);
}

.secondary{
border:1px solid rgba(255,255,255,0.5);
background:transparent;
}

.secondary:hover{
border-color:#fff;
background:rgba(255,255,255,0.08);
}

.btn-full{
display:block;
width:100%;
text-align:center;
margin-bottom:24px;
}

.btn-sm{
padding:8px 20px;
font-size:14px;
border-radius:8px;
}

.large{
font-size:20px;
padding:18px 40px;
}

/* ========== TRUST ========== */

.trust{
list-style:none;
display:flex;
gap:20px;
font-size:14px;
opacity:.85;
}

/* ========== TRUST STRIP ========== */

.trust-strip{
background:#081826;
padding:60px 40px;
text-align:center;
}

.trust-strip-inner{
max-width:700px;
margin:0 auto;
}

.trust-strip h2{
font-size:28px;
font-weight:700;
margin-bottom:12px;
}

.trust-strip p{
font-size:16px;
opacity:0.7;
margin-bottom:28px;
line-height:1.6;
}

.trust-signals{
display:flex;
justify-content:center;
gap:40px;
}

.trust-item{
font-size:15px;
font-weight:600;
color:rgba(255,255,255,0.85);
white-space:nowrap;
}

/* ========== STATS ========== */

.stats{
display:flex;
justify-content:center;
gap:100px;
padding:70px 20px;
text-align:center;
background:#0d2236;
}

.stat h2{
font-size:40px;
color:#2e8cff;
font-weight:800;
}

.stat p{
opacity:.6;
font-size:15px;
}

/* ========== HOW ========== */

.how{
padding:80px 20px;
text-align:center;
}

.how > h2{
font-size:32px;
font-weight:700;
margin-bottom:40px;
}

.steps{
display:flex;
justify-content:center;
gap:80px;
}

.step h3{
font-size:32px;
color:#2e8cff;
font-weight:800;
margin-bottom:8px;
}

.step p{
opacity:.8;
font-size:16px;
}

/* ========== CTA ========== */

.cta{
background:#0d2236;
padding:80px 20px;
text-align:center;
}

.cta h2{
font-size:32px;
font-weight:700;
margin-bottom:30px;
}

/* ========== FOOTER ========== */

footer{
border-top:1px solid rgba(255,255,255,0.08);
padding:40px 20px;
}

.footer-inner{
max-width:900px;
margin:0 auto;
text-align:center;
}

.footer-brand{
font-size:1.25rem;
font-weight:700;
color:#fff;
margin-bottom:1rem;
}

.footer-links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:2rem;
margin-bottom:1.5rem;
}

.footer-links a{
color:rgba(255,255,255,0.6);
text-decoration:none;
font-size:0.875rem;
transition:color 0.2s;
}

.footer-links a:hover{
color:#fff;
}

.footer-copy{
font-size:13px;
opacity:.4;
}

/* ========== MOBILE ========== */

@media (max-width:768px){

.lp-nav{
padding:0 20px;
}

.lp-nav-links,
.lp-nav-actions{
display:none;
}

.lp-nav-toggle{
display:block;
}

.lp-nav.open{
flex-wrap:wrap;
height:auto;
padding-bottom:16px;
}

.lp-nav.open .lp-nav-links{
display:flex;
flex-direction:column;
width:100%;
gap:0.75rem;
margin:12px 0 8px;
order:3;
}

.lp-nav.open .lp-nav-actions{
display:flex;
width:100%;
order:4;
}

.lp-nav.open .lp-nav-actions .btn{
flex:1;
text-align:center;
}

.hero{
align-items:flex-end;
padding-top:64px;
}

.hero-inner{
padding:40px 25px;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:16px;
}

.hero-buttons{
flex-direction:row;
}

.hero-buttons .btn,
.btn-full{
padding:12px 16px;
font-size:14px;
}

.trust{
flex-direction:row;
gap:6px 14px;
font-size:11px;
flex-wrap:nowrap;
justify-content:center;
}

.trust-strip{
padding:40px 24px;
}

.trust-strip h2{
font-size:22px;
}

.trust-signals{
flex-wrap:wrap;
gap:10px 24px;
justify-content:center;
}

.trust-item{
font-size:13px;
}

.stats{
flex-direction:column;
gap:40px;
}

.steps{
flex-direction:column;
gap:40px;
}

.cta h2{
font-size:24px;
}

.footer-links{
gap:1.25rem;
}

}
