*{box-sizing:border-box}
:root{
    --dark:#06101d;
    --dark2:#0d1d34;
    --dark3:#102746;
    --text:#eaf1fb;
    --muted:#9fb2c9;
    --line:rgba(255,255,255,.12);
    --card:rgba(255,255,255,.075);
    --silver:#dbe5f2;
    --blue:#8fa8cc;
    --accent:#f4c66a;
}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Inter,Segoe UI,Arial,sans-serif;
    background:var(--dark);
    color:var(--text);
}
a{color:inherit}
.container{
    width:min(1180px,92%);
    margin:0 auto;
}
.site-header{
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(6,16,29,.86);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--line);
}
.nav{
    height:86px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}
.brand{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}
.brand img{
    width:92px;
    height:48px;
    object-fit:contain;
}
.brand-copy{
    display:flex;
    flex-direction:column;
    line-height:1.05;
}
.brand-copy strong{
    font-size:23px;
    letter-spacing:.08em;
}
.brand-copy small{
    color:var(--muted);
    font-size:12px;
    margin-top:5px;
}
nav{
    display:flex;
    align-items:center;
    gap:24px;
}
nav a{
    text-decoration:none;
    color:#c8d6e8;
    font-weight:700;
    font-size:14px;
}
.nav-cta{
    padding:11px 18px;
    background:#eef4ff;
    color:#07111f;
    border-radius:999px;
}
.hero{
    position:relative;
    overflow:hidden;
    padding:105px 0 90px;
    background:
        radial-gradient(circle at top right,rgba(143,168,204,.26),transparent 38%),
        linear-gradient(135deg,#06101d 0%,#0d1d34 100%);
}
.hero-watermark{
    position:absolute;
    right:-80px;
    top:60px;
    opacity:.075;
    transform:scale(2.4);
    pointer-events:none;
}
.hero-watermark img{width:520px}
.hero-grid{
    position:relative;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:54px;
    align-items:center;
}
.eyebrow{
    display:inline-flex;
    padding:9px 13px;
    border:1px solid var(--line);
    border-radius:999px;
    color:#c4d2e8;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:24px;
}
h1{
    font-size:64px;
    line-height:.96;
    letter-spacing:-2.8px;
    margin:0 0 24px;
}
.hero p{
    color:#c6d3e5;
    font-size:19px;
    line-height:1.7;
    margin:0;
    max-width:720px;
}
.hero-actions{
    display:flex;
    gap:14px;
    margin:34px 0 20px;
    flex-wrap:wrap;
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 22px;
    border-radius:14px;
    text-decoration:none;
    font-weight:900;
}
.btn.primary{
    background:#f1f5fb;
    color:#06101d;
}
.btn.secondary{
    border:1px solid var(--line);
    color:#eaf1fb;
}
.trust-line{
    color:#91a5bd;
    font-size:14px;
}
.dashboard-preview{
    background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.055));
    border:1px solid var(--line);
    box-shadow:0 30px 90px rgba(0,0,0,.35);
    border-radius:28px;
    padding:26px;
}
.preview-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:18px;
    border-bottom:1px solid var(--line);
}
.preview-header span{
    color:#9fb2c9;
    font-size:12px;
    font-weight:900;
    letter-spacing:.1em;
}
.preview-header strong{
    font-size:46px;
    color:#f7fbff;
}
.preview-row{
    display:flex;
    justify-content:space-between;
    padding:17px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.preview-row span{color:#c4d2e8}
.preview-row b{
    font-size:13px;
    padding:6px 10px;
    border-radius:999px;
}
.good{background:rgba(210,229,255,.16);color:#e9f3ff}
.warn{background:rgba(244,198,106,.18);color:#f7d58b}
.recommendation{
    margin-top:22px;
    padding:22px;
    background:#f1f5fb;
    color:#06101d;
    border-radius:18px;
}
.recommendation span{
    display:block;
    color:#53657c;
    font-size:12px;
    font-weight:900;
    letter-spacing:.1em;
}
.recommendation strong{
    display:block;
    margin:8px 0;
    font-size:24px;
}
.recommendation small{color:#4f6075}
.stats{
    background:#081525;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}
.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}
.stats-grid div{
    padding:30px 24px;
    border-right:1px solid var(--line);
}
.stats-grid div:last-child{border-right:0}
.stats-grid strong{
    display:block;
    font-size:34px;
}
.stats-grid span{
    color:#95a9c3;
    font-weight:700;
}
.section{
    padding:95px 0;
    background:#f3f6fb;
    color:#102033;
}
.section.dark{
    background:
        radial-gradient(circle at bottom left,rgba(143,168,204,.18),transparent 40%),
        #07111f;
    color:#eef4ff;
}
.center{text-align:center}
h2{
    font-size:44px;
    line-height:1.05;
    letter-spacing:-1.5px;
    margin:0 0 16px;
}
.section-intro{
    max-width:760px;
    margin:0 auto 42px;
    color:#66758a;
    font-size:18px;
    line-height:1.65;
}
.cards{
    display:grid;
    gap:22px;
}
.cards.three{grid-template-columns:repeat(3,1fr)}
.cards.four{grid-template-columns:repeat(4,1fr)}
.card,.price-card{
    background:white;
    border:1px solid #dfe7f1;
    border-radius:24px;
    padding:30px;
    text-align:left;
    box-shadow:0 18px 45px rgba(12,28,48,.07);
}
.card-number{
    display:block;
    color:#8194ae;
    font-weight:900;
    margin-bottom:18px;
}
.card h3,.price-card h3{
    margin:0 0 12px;
    font-size:22px;
}
.card p,.price-card p{
    color:#66758a;
    line-height:1.6;
}
.split{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:55px;
    align-items:center;
}
.split p{
    color:#b9c8da;
    font-size:18px;
    line-height:1.7;
}
.intelligence-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}
.intelligence-grid div{
    background:rgba(255,255,255,.075);
    border:1px solid var(--line);
    border-radius:18px;
    padding:20px;
    font-weight:800;
}
.section-head{
    max-width:850px;
    margin-bottom:36px;
}
.section-head p{
    color:#66758a;
    font-size:18px;
    line-height:1.65;
}
.feature-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}
.feature-list div{
    background:white;
    border:1px solid #dfe7f1;
    border-radius:20px;
    padding:24px;
}
.feature-list strong{
    display:block;
    margin-bottom:8px;
}
.feature-list span{
    color:#66758a;
    line-height:1.55;
}
.plans{
    background:#eef3f8;
}
.price-card.highlight{
    background:#07111f;
    color:white;
    border-color:#07111f;
    transform:translateY(-8px);
}
.price-card.highlight p{color:#c3d0e0}
.price-card strong{
    display:block;
    color:#52647c;
    margin-bottom:12px;
}
.price-card.highlight strong{color:#dce8f8}
.cta{
    padding:90px 0;
    background:linear-gradient(135deg,#07111f,#10213a);
}
.cta p{
    color:#b9c8da;
    font-size:18px;
}
footer{
    background:#050c16;
    border-top:1px solid var(--line);
    padding:42px 0;
    color:#b7c6da;
}
.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}
.footer-brand{
    display:flex;
    align-items:center;
    gap:12px;
}
.footer-brand img{
    width:76px;
    height:38px;
}
.footer-brand strong{
    color:white;
    letter-spacing:.08em;
}
footer a{color:#eaf1fb}
@media(max-width:900px){
    .nav{height:auto;padding:18px 0;align-items:flex-start}
    nav{display:none}
    .hero{padding:70px 0}
    .hero-grid,.split,.footer-grid{grid-template-columns:1fr}
    h1{font-size:46px}
    h2{font-size:34px}
    .cards.three,.cards.four,.feature-list,.stats-grid{grid-template-columns:1fr}
    .stats-grid div{border-right:0;border-bottom:1px solid var(--line)}
}
