:root{
    --navy:#0C2340;
    --blue:#1B5FA8;
    --sky:#E8F2FF;
    --accent:#2E8B57;
    --accent-light:#F0FBF4;
    --text:#1A1A2E;
    --muted:#6B7280;
    --border:#E5EAF0;
    --white:#FFFFFF;
    --bg:#F8FAFD;
    --shadow:0 20px 60px rgba(9,22,45,.10);
    --shadow-soft:0 10px 30px rgba(9,22,45,.06);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    font-family:'DM Sans',sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.6;
    overflow-x:hidden;
}

a{color:inherit}
img{max-width:100%;display:block}

.container{
    width:min(1100px, calc(100% - 40px));
    margin:0 auto;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-mark{
    width:38px;
    height:38px;
    border-radius:11px;
    background:linear-gradient(135deg,var(--blue),#4AABFF);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    flex-shrink:0;
    box-shadow:0 8px 20px rgba(27,95,168,.28);
}

.logo-text{
    font-family:'DM Serif Display',serif;
    font-size:22px;
    color:#fff;
    letter-spacing:-.3px;
}

.logo-text span{color:#4AABFF}

nav{
    position:fixed;
    inset:0 0 auto 0;
    z-index:100;
    padding:16px 0;
    transition:background .25s, box-shadow .25s, backdrop-filter .25s;
}

nav.scrolled{
    background:rgba(12,35,64,.94);
    box-shadow:0 2px 24px rgba(0,0,0,.24);
    backdrop-filter:blur(12px);
}

.nav-inner{
    width:min(1100px, calc(100% - 40px));
    margin:0 auto;
    display:flex;
    align-items:center;
    gap:12px;
}

.nav-links{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:24px;
}

.nav-links a{
    color:rgba(255,255,255,.78);
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

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

.nav-cta{
    background:var(--blue);
    color:#fff !important;
    padding:10px 20px;
    border-radius:999px;
    font-weight:700;
    box-shadow:0 10px 24px rgba(27,95,168,.24);
}

.mobile-menu-btn{
    display:none;
    margin-left:auto;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    width:42px;
    height:42px;
    border-radius:12px;
    font-size:18px;
    cursor:pointer;
}

.hero{
    min-height:100vh;
    background:
        radial-gradient(circle at 82% 18%, rgba(74,171,255,.14), transparent 28%),
        radial-gradient(circle at 16% 84%, rgba(46,139,87,.10), transparent 22%),
        linear-gradient(160deg, var(--navy) 0%, #122D5A 58%, #1B3A6B 100%);
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero-grid{
    width:min(1100px, calc(100% - 40px));
    margin:0 auto;
    padding:130px 0 80px;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:54px;
    align-items:center;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(74,171,255,.14);
    border:1px solid rgba(74,171,255,.30);
    color:#82C4FF;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.2px;
    text-transform:uppercase;
    padding:8px 16px;
    border-radius:999px;
    margin-bottom:24px;
}

.hero h1{
    font-family:'DM Serif Display',serif;
    font-size:clamp(42px,6vw,72px);
    color:#fff;
    line-height:1.02;
    letter-spacing:-1px;
    margin-bottom:18px;
}

.hero h1 em{
    display:inline-block;
    font-style:italic;
    color:#DCEEFF;
}

.hero p{
    color:rgba(255,255,255,.78);
    font-size:20px;
    line-height:1.75;
    max-width:590px;
    margin-bottom:34px;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:26px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 26px;
    border-radius:999px;
    text-decoration:none;
    font-size:15px;
    font-weight:800;
    transition:transform .2s, background .2s, border-color .2s, color .2s;
}

.btn:hover{transform:translateY(-1px)}

.btn-primary{
    background:#4AABFF;
    color:var(--navy);
    box-shadow:0 16px 34px rgba(74,171,255,.25);
}

.btn-primary:hover{background:#69BAFF}

.btn-secondary{
    background:rgba(255,255,255,.08);
    color:#fff;
    border:1px solid rgba(255,255,255,.16);
}

.btn-secondary:hover{background:rgba(255,255,255,.14)}

.light-btn{
    background:rgba(255,255,255,.10);
    color:#fff;
    border:1px solid rgba(255,255,255,.18);
}

.hero-trust{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.trust-item{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:rgba(255,255,255,.76);
    font-size:14px;
    font-weight:600;
}

.trust-icon{font-size:15px}

.hero-window{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    border-radius:26px;
    backdrop-filter:blur(18px);
    box-shadow:0 30px 80px rgba(6,18,38,.28);
    padding:22px;
}

.window-top{
    display:flex;
    gap:10px;
    margin-bottom:18px;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
}

.dot.red{background:#FF5F57}
.dot.yellow{background:#FEBC2E}
.dot.green{background:#28C840}

.hero-summary{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-bottom:14px;
}

.summary-card{
    border-radius:16px;
    padding:16px;
    border:1px solid transparent;
}

.summary-blue{
    background:rgba(74,171,255,.10);
    border-color:rgba(74,171,255,.20);
}

.summary-green{
    background:rgba(46,139,87,.10);
    border-color:rgba(46,139,87,.20);
}

.summary-label{
    font-size:12px;
    color:rgba(255,255,255,.62);
    margin-bottom:6px;
}

.summary-value{
    font-family:'DM Serif Display',serif;
    color:#fff;
    font-size:28px;
    line-height:1;
}

.hero-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    margin-bottom:10px;
}

.hero-item-icon{
    width:46px;
    height:46px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.icon-blue{background:#E8F2FF}
.icon-green{background:#F0FBF4}
.icon-orange{background:#FFF3E8}

.hero-item-info{flex:1;min-width:0}

.hero-item-name{
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-bottom:3px;
}

.hero-item-sub{
    color:rgba(255,255,255,.58);
    font-size:12px;
    line-height:1.45;
}

.hero-pill{
    flex-shrink:0;
    font-size:11px;
    font-weight:800;
    padding:5px 10px;
    border-radius:999px;
}

.pill-green{
    background:rgba(46,139,87,.24);
    color:#7CF0AF;
}

.pill-orange{
    background:rgba(224,123,26,.20);
    color:#FFC381;
}

.pill-blue{
    background:rgba(74,171,255,.20);
    color:#9ED4FF;
}

.hero-bottom-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:14px;
}

.mini-stat{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:14px;
    text-align:center;
}

.mini-stat-value{
    font-family:'DM Serif Display',serif;
    color:#6ABBFF;
    font-size:24px;
    line-height:1;
    margin-bottom:4px;
}

.mini-stat-label{
    font-size:11px;
    color:rgba(255,255,255,.58);
    text-transform:uppercase;
    letter-spacing:.8px;
}

.section{
    padding:96px 0;
}

.section-soft{
    background:#F8FAFD;
}

.section-head{
    margin-bottom:50px;
}

.section-head.center{
    text-align:center;
}

.section-label{
    font-size:12px;
    font-weight:800;
    letter-spacing:1.8px;
    text-transform:uppercase;
    color:var(--blue);
    margin-bottom:12px;
}

.section-label.light{
    color:#9ED4FF;
}

.section-title{
    font-family:'DM Serif Display',serif;
    font-size:clamp(30px,4vw,48px);
    color:var(--navy);
    line-height:1.08;
    letter-spacing:-.5px;
    margin-bottom:14px;
}

.section-sub{
    color:var(--muted);
    font-size:18px;
    line-height:1.75;
    max-width:680px;
}

.section-sub.narrow{
    max-width:720px;
    margin-inline:auto;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:22px;
}

.feature-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:28px;
    box-shadow:var(--shadow-soft);
    transition:transform .22s, box-shadow .22s;
}

.feature-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.feature-icon{
    width:54px;
    height:54px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    margin-bottom:16px;
}

.bg-blue{background:var(--sky)}
.bg-green{background:var(--accent-light)}
.bg-orange{background:#FFF3E8}
.bg-purple{background:#F3F0FF}
.bg-red{background:#FFF0F0}
.bg-teal{background:#E8FAF8}

.feature-card h3{
    font-family:'DM Serif Display',serif;
    font-size:22px;
    color:var(--navy);
    margin-bottom:10px;
}

.feature-card p{
    color:var(--muted);
    font-size:15px;
    line-height:1.75;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
    gap:24px;
}

.step-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:28px;
    box-shadow:var(--shadow-soft);
}

.step-num{
    width:58px;
    height:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--blue),#4AABFF);
    color:#fff;
    font-family:'DM Serif Display',serif;
    font-size:26px;
    margin-bottom:18px;
    box-shadow:0 12px 28px rgba(27,95,168,.22);
}

.step-card h3{
    font-family:'DM Serif Display',serif;
    font-size:22px;
    color:var(--navy);
    margin-bottom:8px;
}

.step-card p{
    color:var(--muted);
    font-size:15px;
    line-height:1.75;
}

.screens-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:22px;
}

.screen-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:20px;
    box-shadow:var(--shadow-soft);
}

.screen-placeholder{
    min-height:240px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    background:
        linear-gradient(180deg, #F5FAFF 0%, #EAF3FF 100%);
    border:1px solid #D8E7FB;
    color:var(--blue);
    font-weight:800;
    margin-bottom:16px;
}

.screen-placeholder.phone{
    min-height:240px;
    max-width:180px;
    margin:0 auto 16px;
    border-radius:28px;
}

.screen-card h3{
    font-family:'DM Serif Display',serif;
    font-size:22px;
    color:var(--navy);
    margin-bottom:8px;
}

.screen-card p{
    color:var(--muted);
    font-size:15px;
    line-height:1.75;
}

.platform-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
    gap:22px;
    margin-top:10px;
}

.platform-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:24px;
    box-shadow:var(--shadow-soft);
}

.platform-card h3{
    font-family:'DM Serif Display',serif;
    font-size:22px;
    color:var(--navy);
    margin-bottom:8px;
}

.platform-card p{
    color:var(--muted);
    font-size:15px;
    line-height:1.75;
    margin-bottom:14px;
}

.platform-card a{
    display:inline-block;
    color:var(--blue);
    font-weight:800;
    text-decoration:none;
}

.cta-band{
    padding:96px 0;
    background:
        radial-gradient(circle at 50% 10%, rgba(74,171,255,.14), transparent 30%),
        linear-gradient(160deg, var(--navy), #1B3A6B);
}

.cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.cta-copy h2{
    font-family:'DM Serif Display',serif;
    font-size:clamp(32px,4vw,50px);
    color:#fff;
    line-height:1.08;
    margin-bottom:12px;
}

.cta-copy p{
    color:rgba(255,255,255,.72);
    font-size:18px;
    line-height:1.75;
    max-width:650px;
}

.cta-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

footer{
    background:#070F1C;
    padding:48px 0 26px;
}

.footer-inner{
    width:min(1100px, calc(100% - 40px));
    margin:0 auto;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
    margin-bottom:34px;
}

.footer-brand p{
    color:rgba(255,255,255,.48);
    font-size:14px;
    line-height:1.8;
    max-width:340px;
    margin-top:14px;
}

.footer-col h4{
    color:rgba(255,255,255,.62);
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.footer-col a{
    display:block;
    text-decoration:none;
    color:rgba(255,255,255,.50);
    font-size:14px;
    margin-bottom:10px;
}

.footer-col a:hover{
    color:rgba(255,255,255,.88);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
}

.footer-bottom p{
    color:rgba(255,255,255,.36);
    font-size:13px;
}

.fade-up{
    opacity:0;
    transform:translateY(24px);
    transition:opacity .6s ease, transform .6s ease;
}

.fade-up.visible{
    opacity:1;
    transform:none;
}

@media (max-width: 980px){
    .hero-grid{
        grid-template-columns:1fr;
        gap:32px;
    }

    .hero-copy{
        text-align:center;
    }

    .hero p{
        margin-inline:auto;
    }

    .hero-actions,
    .hero-trust{
        justify-content:center;
    }

    .cta-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-top{
        grid-template-columns:1fr;
    }
}

@media (max-width: 760px){
    .mobile-menu-btn{
        display:inline-flex;
        align-items:center;
        justify-content:center;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:20px;
        right:20px;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
        padding:18px;
        border-radius:18px;
        background:rgba(12,35,64,.97);
        box-shadow:0 18px 40px rgba(0,0,0,.24);
        border:1px solid rgba(255,255,255,.08);
    }

    .nav-links.open{
        display:flex;
    }

    .hero{
        min-height:auto;
    }

    .hero-grid{
        padding:112px 0 70px;
    }

    .hero h1{
        font-size:clamp(36px, 12vw, 56px);
    }

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

    .hero-summary,
    .hero-bottom-grid{
        grid-template-columns:1fr;
    }

    .hero-item{
        align-items:flex-start;
        flex-wrap:wrap;
    }

    .hero-pill{
        margin-left:60px;
    }

    .section{
        padding:80px 0;
    }

    .hero-shot-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    border-radius:26px;
    padding:16px;
    backdrop-filter:blur(18px);
    box-shadow:0 30px 80px rgba(6,18,38,.28);
}

.hero-shot{
    width:100%;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.10);
    display:block;
}

.screens-grid{
    display:grid;
    gap:22px;
}

.screens-grid-3{
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

.screens-grid-4{
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}

.screen-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:20px;
    box-shadow:var(--shadow-soft);
}

.screen-card h3{
    font-family:'DM Serif Display',serif;
    font-size:22px;
    color:var(--navy);
    margin-bottom:8px;
}

.screen-card p{
    color:var(--muted);
    font-size:15px;
    line-height:1.75;
}

.screen-img{
    width:100%;
    border-radius:16px;
    border:1px solid #E5EAF0;
    margin-bottom:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    display:block;
}

.screen-img.phone{
    max-width:260px;
    margin:0 auto 16px;
    border-radius:28px;
}

@media (max-width:760px){
    .screen-img.phone{
        max-width:220px;
    }
}
}