
:root{
    --navy:#08163a;
    --navy-2:#0d2358;
    --blue:#2f63ff;
    --cyan:#14c7e8;
    --gold:#f4b63e;
    --green:#17b978;
    --pink:#f05b8b;
    --lav:#f4f2ff;
    --soft:#f7f9fe;
    --card:#ffffff;
    --text:#12203b;
    --muted:#60708f;
    --line:rgba(10,35,88,.12);
    --shadow:0 22px 70px rgba(8,22,58,.12);
    --radius:28px;
    --radius-md:22px;
    --radius-sm:16px;
    --container:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at top left, rgba(47,99,255,.10), transparent 30rem),
        radial-gradient(circle at 90% 15%, rgba(20,199,232,.10), transparent 22rem),
        #fff;
    line-height:1.55;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit;cursor:pointer}
.container{width:min(var(--container), calc(100% - 44px)); margin:0 auto}

.site-header{
    position:sticky;
    top:0;
    z-index:60;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.88);
    border-bottom:1px solid rgba(8,22,58,.08);
}
.nav-shell{
    min-height:88px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
}
.brand{display:flex;align-items:center;gap:14px;min-width:max-content}
.brand-mark{
    width:48px;height:48px;border-radius:16px;
    display:grid;place-items:center;
    background:linear-gradient(145deg,var(--gold),#ffda75);
    color:var(--navy);
    font-weight:900;font-size:24px;
    border:2px solid rgba(8,22,58,.08);
    box-shadow:0 14px 28px rgba(244,182,62,.22);
}
.brand-copy{display:flex;flex-direction:column;line-height:1.1}
.brand-copy strong{font-size:22px;letter-spacing:-.03em}
.brand-copy small{font-size:12px;color:var(--muted);font-weight:700;margin-top:5px}
.main-nav{display:flex;align-items:center;gap:20px;flex:1;justify-content:center}
.main-nav a{
    color:var(--muted);font-weight:800;font-size:14px;
    padding:10px 0; position:relative;
}
.main-nav a.active,.main-nav a:hover{color:var(--blue)}
.main-nav a.active::after,.main-nav a:hover::after{
    content:""; position:absolute; left:0;right:0;bottom:2px;height:3px;border-radius:3px;background:var(--blue)
}
.nav-actions{display:flex;align-items:center;gap:12px;min-width:max-content}
.btn{
    border:0;border-radius:999px;
    display:inline-flex;align-items:center;justify-content:center;
    min-height:48px;padding:0 22px;
    font-weight:900;letter-spacing:-.01em;
    transition:.22s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
    color:#fff;background:linear-gradient(135deg,var(--blue),#1a48de);
    box-shadow:0 18px 35px rgba(47,99,255,.25);
}
.btn-ghost{
    color:var(--navy); background:#fff; border:1px solid var(--line);
}
.btn-light{
    color:var(--navy); background:#fff; box-shadow:0 18px 38px rgba(8,22,58,.14);
}
.btn-large{min-height:58px;padding:0 28px}
.nav-toggle{display:none;width:48px;height:48px;border:1px solid var(--line);background:#fff;border-radius:16px;padding:11px}
.nav-toggle span{display:block;height:3px;background:var(--navy);border-radius:999px;margin:5px 0}

.hero{
    padding:80px 0 70px;
    background:
        radial-gradient(circle at 15% 10%, rgba(20,199,232,.28), transparent 28rem),
        radial-gradient(circle at 90% 20%, rgba(47,99,255,.34), transparent 32rem),
        linear-gradient(135deg,var(--navy),#071d52 55%, #092868);
    color:#fff;
    overflow:hidden;
}
.hero-grid{display:grid;grid-template-columns:1.02fr 1fr;gap:54px;align-items:center}
.section-kicker{
    display:inline-flex;align-items:center;gap:8px;
    font-size:12px;font-weight:1000;text-transform:uppercase;letter-spacing:.12em;
    color:var(--cyan);
    margin-bottom:16px;
}
.hero h1,.subhero h1{
    font-size:clamp(42px,5vw,72px);
    line-height:.98;
    letter-spacing:-.06em;
    margin:0 0 22px;
}
.hero-lead{
    color:rgba(255,255,255,.84);
    font-size:19px;
    max-width:660px;
    margin:0 0 30px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:34px}
.hero-metrics{
    display:grid;grid-template-columns:repeat(4,1fr);gap:14px;
}
.hero-metrics div{
    padding:18px 16px;border-radius:20px;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(10px);
}
.hero-metrics strong{display:block;font-size:28px;line-height:1;font-weight:1000}
.hero-metrics span{display:block;font-size:12px;color:rgba(255,255,255,.76);font-weight:800;margin-top:8px}
.hero-visual{position:relative}
.hero-screen{
    background:#fff;padding:12px;border-radius:34px;
    box-shadow:0 36px 95px rgba(0,0,0,.36);
    transform:perspective(1400px) rotateY(-6deg) rotateX(2deg);
}
.hero-screen img{border-radius:24px}
.floating-card{
    position:absolute;
    min-width:220px;
    padding:18px 20px;
    border-radius:22px;
    background:rgba(255,255,255,.96);
    color:var(--text);
    box-shadow:var(--shadow);
    border:1px solid rgba(255,255,255,.42);
}
.floating-card small{display:block;color:var(--muted);font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.floating-card strong{display:block;font-size:20px;margin:7px 0 3px;letter-spacing:-.03em}
.floating-card span{color:var(--muted);font-size:13px;font-weight:700}
.floating-one{left:-30px;bottom:24px}
.floating-two{right:-16px;top:34px}

.brand-strip{background:#fff;border-bottom:1px solid var(--line)}
.brand-strip-inner{
    min-height:86px;display:flex;align-items:center;justify-content:space-between;gap:18px;
    color:var(--navy);font-weight:1000;font-size:14px;flex-wrap:wrap;
}
.brand-strip-inner span{display:inline-flex;align-items:center;gap:10px}
.brand-strip-inner span::before{
    content:"";width:10px;height:10px;border-radius:99px;background:linear-gradient(135deg,var(--blue),var(--cyan))
}

.section{padding:96px 0}
.section-soft{background:linear-gradient(180deg,#f9fbff,#f4f7ff)}
.section-head{margin-bottom:40px}
.section-head.split{display:grid;grid-template-columns:1.3fr .7fr;gap:40px;align-items:end}
.section-head.center{text-align:center;max-width:900px;margin:0 auto 44px}
.section h2,.subhero h2{
    font-size:clamp(34px,4vw,54px);
    line-height:1.02;letter-spacing:-.055em;margin:0;
}
.section-head p{margin:0;color:var(--muted);font-size:18px;font-weight:700}

.problem-grid,.benefit-grid,.trust-grid,.mini-summary-grid{display:grid;gap:20px}
.problem-grid{grid-template-columns:repeat(3,1fr)}
.problem-grid article,.benefit-grid article,.trust-grid article,.mini-summary-grid article{
    background:#fff;border:1px solid var(--line);border-radius:var(--radius-md);
    padding:28px;box-shadow:0 16px 40px rgba(8,22,58,.07);
}
.problem-grid article span{
    display:inline-flex;width:46px;height:46px;border-radius:14px;align-items:center;justify-content:center;
    background:var(--lav);color:var(--blue);font-weight:1000;margin-bottom:18px;
}
.problem-grid h3,.benefit-grid h3,.trust-grid strong,.mini-summary-grid strong{
    margin:0 0 10px;font-size:22px;letter-spacing:-.03em;display:block
}
.problem-grid p,.benefit-grid p,.trust-grid p,.mini-summary-grid p{margin:0;color:var(--muted);font-weight:700}

.benefit-grid{grid-template-columns:repeat(3,1fr)}
.benefit-grid i{
    width:56px;height:56px;border-radius:18px;display:grid;place-items:center;
    background:linear-gradient(135deg,rgba(47,99,255,.15),rgba(20,199,232,.18));
    color:var(--blue);font-style:normal;font-size:24px;font-weight:1000;margin-bottom:18px;
}

.module-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.module-grid article{
    min-height:190px;padding:24px;border:1px solid var(--line);border-radius:22px;background:#fff;
    box-shadow:0 16px 40px rgba(8,22,58,.06);
}
.module-grid strong{display:block;font-size:20px;margin-bottom:12px;letter-spacing:-.03em}
.module-grid p{margin:0;color:var(--muted);font-weight:700;font-size:14px}

.dashboard-section{background:#fff}
.dashboard-head p{color:var(--muted);font-size:18px;font-weight:800;margin:14px 0 0}
.dashboard-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.dashboard-card{
    overflow:hidden;border-radius:28px;background:#fff;border:1px solid var(--line);
    box-shadow:0 18px 48px rgba(8,22,58,.10);
}
.dashboard-image,.gallery-screen{
    border:0;background:#fff;padding:0;display:block;width:100%;
}
.dashboard-image img{aspect-ratio:3/2;object-fit:cover;width:100%}
.dashboard-body{padding:24px}
.eyebrow-chip{
    display:inline-flex;padding:7px 12px;border-radius:999px;
    background:var(--lav);color:var(--blue);font-weight:1000;font-size:12px;letter-spacing:.04em;text-transform:uppercase
}
.dashboard-body h3{font-size:24px;line-height:1.05;letter-spacing:-.04em;margin:14px 0 10px}
.dashboard-body p{margin:0 0 16px;color:var(--muted);font-weight:700}
.text-link{border:0;background:transparent;padding:0;color:var(--blue);font-weight:1000}
.center-action{text-align:center;margin-top:38px}

.license-section{
    background:
        radial-gradient(circle at left top, rgba(20,199,232,.20), transparent 24rem),
        linear-gradient(135deg,var(--navy),#08245c);
    color:#fff;
}
.license-shell{display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:center}
.license-copy p{color:rgba(255,255,255,.82);font-size:18px;font-weight:700;margin:20px 0 26px}
.license-points{display:flex;flex-wrap:wrap;gap:12px}
.license-points span{
    padding:12px 16px;border-radius:999px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);
    font-weight:900;font-size:14px;
}
.pricing-stack{display:grid;gap:18px}
.pricing-stack article{
    padding:24px;border-radius:26px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.18)
}
.pricing-stack article.featured{background:#fff;color:var(--text);box-shadow:0 30px 80px rgba(0,0,0,.24)}
.pricing-stack small{display:inline-flex;color:var(--cyan);font-weight:1000;text-transform:uppercase;letter-spacing:.10em}
.pricing-stack .featured small{color:var(--blue)}
.pricing-stack strong{display:block;font-size:28px;margin:10px 0 7px;letter-spacing:-.04em}
.pricing-stack p{margin:0;color:inherit;opacity:.78;font-weight:700}

.trust-grid{grid-template-columns:repeat(4,1fr)}
.cta-section{
    padding:0 0 96px;
    background:linear-gradient(180deg,#f4f7ff,#fff);
}
.cta-shell{
    min-height:260px;border-radius:36px;padding:42px 48px;
    display:flex;justify-content:space-between;align-items:center;gap:28px;
    background:
        radial-gradient(circle at left center, rgba(20,199,232,.22), transparent 20rem),
        linear-gradient(135deg,var(--navy),#092a72);
    color:#fff;box-shadow:var(--shadow);
}
.cta-shell h2{max-width:760px}
.cta-actions{display:flex;gap:14px;flex-wrap:wrap}

.site-footer{background:var(--navy);color:#fff;padding:76px 0 28px}
.footer-grid{
    display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:34px;padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,.15)
}
.footer-logo .brand-copy small{color:rgba(255,255,255,.62)}
.footer-brand p{color:rgba(255,255,255,.74);font-weight:700;max-width:420px}
.footer-pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.footer-pills span{padding:9px 12px;border-radius:999px;background:rgba(255,255,255,.1);font-weight:900;font-size:12px}
.footer-grid h4{font-size:16px;text-transform:uppercase;letter-spacing:.10em;color:var(--cyan);margin:0 0 18px}
.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) p{
    display:block;color:rgba(255,255,255,.76);margin:0 0 12px;font-weight:700
}
.footer-bottom{display:flex;justify-content:space-between;gap:24px;padding-top:24px;color:rgba(255,255,255,.58);font-weight:700;font-size:13px}

.lightbox{
    position:fixed;inset:0;background:rgba(3,10,28,.92);z-index:120;
    display:none;align-items:center;justify-content:center;padding:32px;
    flex-direction:column;
}
.lightbox.active{display:flex}
.lightbox img{max-width:min(1320px,92vw);max-height:82vh;border-radius:28px;box-shadow:0 30px 100px rgba(0,0,0,.56)}
.lightbox p{color:#fff;font-weight:1000;font-size:18px;margin:18px 0 0}
.lightbox-close{
    position:absolute;top:24px;right:28px;width:58px;height:58px;border-radius:999px;border:0;
    background:#fff;color:var(--navy);font-size:38px;line-height:1;
}

.subhero{
    padding:78px 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(20,199,232,.22), transparent 26rem),
        linear-gradient(135deg,var(--navy),#0a2767);
    color:#fff;
}
.subhero-grid{display:grid;grid-template-columns:1fr .86fr;gap:46px;align-items:center}
.subhero p{color:rgba(255,255,255,.80);font-size:19px;font-weight:700;max-width:680px}
.subhero-preview{background:#fff;border-radius:30px;padding:12px;box-shadow:var(--shadow)}
.subhero-preview img{border-radius:22px}
.gallery-list{display:grid;gap:34px}
.gallery-row{
    display:grid;grid-template-columns:.78fr 1.22fr;gap:32px;align-items:center;
    padding:28px;border:1px solid var(--line);background:#fff;border-radius:32px;box-shadow:0 18px 55px rgba(8,22,58,.08)
}
.gallery-row:nth-child(even){grid-template-columns:1.22fr .78fr}
.gallery-row:nth-child(even) .gallery-copy{order:2}
.gallery-row:nth-child(even) .gallery-screen{order:1}
.gallery-copy h2{font-size:40px;margin:0 0 14px}
.gallery-copy p{color:var(--muted);font-size:17px;font-weight:700;margin:0 0 22px}
.gallery-screen{padding:10px;border-radius:24px;border:1px solid var(--line);box-shadow:0 16px 40px rgba(8,22,58,.08)}
.gallery-screen img{border-radius:18px}
.mini-summary-grid{grid-template-columns:repeat(4,1fr)}

@media (max-width:1180px){
    .main-nav{position:fixed;left:22px;right:22px;top:92px;background:#fff;border:1px solid var(--line);border-radius:24px;padding:18px;display:none;flex-direction:column;align-items:flex-start;box-shadow:var(--shadow)}
    .main-nav.open{display:flex}
    .nav-toggle{display:block}
    .nav-actions .btn-ghost{display:none}
    .hero-grid,.license-shell,.subhero-grid,.section-head.split,.gallery-row,.gallery-row:nth-child(even){grid-template-columns:1fr}
    .gallery-row:nth-child(even) .gallery-copy,.gallery-row:nth-child(even) .gallery-screen{order:initial}
    .hero-visual{margin-top:18px}
    .problem-grid,.benefit-grid,.dashboard-grid{grid-template-columns:repeat(2,1fr)}
    .module-grid{grid-template-columns:repeat(3,1fr)}
    .trust-grid,.mini-summary-grid{grid-template-columns:repeat(2,1fr)}
    .footer-grid{grid-template-columns:1.3fr 1fr 1fr}
}
@media (max-width:760px){
    .container{width:min(100% - 28px, var(--container))}
    .site-header{position:relative}
    .nav-shell{min-height:78px}
    .brand-mark{width:42px;height:42px}
    .brand-copy strong{font-size:19px}
    .brand-copy small{display:none}
    .nav-actions{display:none}
    .hero,.section,.subhero{padding:66px 0}
    .hero h1,.subhero h1{font-size:40px}
    .hero-lead,.subhero p,.section-head p{font-size:16px}
    .hero-metrics,.problem-grid,.benefit-grid,.dashboard-grid,.module-grid,.trust-grid,.mini-summary-grid,.footer-grid{grid-template-columns:1fr}
    .floating-card{position:static;margin-top:14px}
    .brand-strip-inner{padding:18px 0;justify-content:flex-start}
    .license-copy h2,.section h2{font-size:34px}
    .cta-shell{padding:28px;display:block}
    .cta-actions{margin-top:22px}
    .footer-bottom{display:block}
    .footer-bottom span{display:block;margin-top:10px}
    .lightbox{padding:16px}
    .lightbox-close{top:14px;right:14px;width:48px;height:48px;font-size:32px}
    .gallery-row{padding:18px}
    .gallery-copy h2{font-size:30px}
}
