:root {

    --navy: #06152f;
    --blue: #1266e8;
    --cyan: #09b6dc;
    --green: #55c934;

    --text: #0f172a;
    --muted: #64748b;

    --bg: #f7faff;
    --line: #e4ebf5;

    --white: #ffffff;

    --shadow:
        0 24px 70px rgba(8, 32, 72, .14);
}


/* RESET */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Inter,
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--bg);

    line-height: 1.6;

}


a {

    text-decoration: none;

    color: inherit;

}


.container {

    width: min(1180px, 92%);

    margin: auto;

}


/* HEADER */

.header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    background:
        rgba(255,255,255,.92);

    backdrop-filter:
        blur(16px);

    border-bottom:
        1px solid
        rgba(228,235,245,.8);

}


.nav {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand img {

    width: 185px;

    height: 62px;

    object-fit: contain;

}


.nav-links {

    display: flex;

    align-items: center;

    gap: 27px;

}


.nav-links > a {

    font-size: 14px;

    font-weight: 700;

    color: #334155;

}


.nav-links > a:hover {

    color: var(--blue);

}


/* BUTTONS */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 21px;

    border-radius: 11px;

    font-weight: 800;

    font-size: 14px;

    transition: .2s;

}


.btn-primary {

    background:
        linear-gradient(
            135deg,
            #1266e8,
            #08aee0
        );

    color: white;

    box-shadow:
        0 12px 28px
        rgba(18,102,232,.25);

}


.btn-primary:hover {

    transform:
        translateY(-2px);

}


.btn-outline {

    border:
        1px solid
        var(--line);

    background:
        white;

    color:
        var(--navy);

}


.btn-white {

    background:
        white;

    color:
        #0c4fd1;

}


/* MOBILE MENU */

.menu-btn {

    display: none;

    border: 0;

    background: transparent;

    font-size: 27px;

    color: var(--navy);

}


/* HERO */

.hero {

    padding:
        155px
        0
        95px;

    background:

        radial-gradient(
            circle at 85% 25%,
            rgba(8,182,220,.16),
            transparent 30%
        ),

        radial-gradient(
            circle at 8% 20%,
            rgba(18,102,232,.11),
            transparent 28%
        );

    overflow: hidden;

}


.hero-grid {

    display: grid;

    grid-template-columns:
        1.02fr
        .98fr;

    gap: 65px;

    align-items: center;

}


.eyebrow {

    display: inline-flex;

    gap: 9px;

    align-items: center;

    color:
        #1266e8;

    background:
        #eaf3ff;

    padding:
        8px 12px;

    border-radius:
        99px;

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        1.2px;

    margin-bottom:
        20px;

}


.eyebrow span {

    width: 7px;

    height: 7px;

    border-radius:
        50%;

    background:
        #20bf55;

}


h1 {

    font-size:
        clamp(
            42px,
            5.2vw,
            70px
        );

    line-height:
        1.04;

    letter-spacing:
        -3px;

    color:
        var(--navy);

    margin-bottom:
        22px;

}


h1 strong {

    color:
        var(--blue);

}


.hero-content > p {

    font-size:
        18px;

    color:
        var(--muted);

    max-width:
        650px;

}


.hero-actions {

    display:
        flex;

    gap:
        12px;

    flex-wrap:
        wrap;

    margin-top:
        30px;

}


.trust-row {

    display:
        flex;

    gap:
        32px;

    margin-top:
        40px;

}


.trust-row div {

    display:
        flex;

    flex-direction:
        column;

}


.trust-row b {

    font-size:
        20px;

    color:
        var(--navy);

}


.trust-row span {

    font-size:
        11px;

    color:
        var(--muted);

}


/* DASHBOARD */

.dashboard-wrap {

    position:
        relative;

}


.glow {

    position:
        absolute;

    inset:
        12% 5%;

    background:
        linear-gradient(
            135deg,
            #06b6d4,
            #2563eb,
            #54c933
        );

    filter:
        blur(65px);

    opacity:
        .18;

}


.dashboard {

    position:
        relative;

    background:
        white;

    border:
        1px solid
        var(--line);

    border-radius:
        25px;

    padding:
        23px;

    box-shadow:
        var(--shadow);

    transform:
        rotate(1deg);

}


.dash-head {

    display:
        flex;

    justify-content:
        space-between;

    font-weight:
        800;

    color:
        var(--navy);

    margin-bottom:
        18px;

}


.dot {

    display:
        inline-block;

    width:
        9px;

    height:
        9px;

    background:
        #2563eb;

    border-radius:
        50%;

    margin-right:
        6px;

}


.live {

    font-size:
        10px;

    background:
        #dcfce7;

    color:
        #16803d;

    border-radius:
        99px;

    padding:
        5px 9px;

}


.balance {

    background:
        linear-gradient(
            135deg,
            #061b40,
            #1266e8
        );

    color:
        white;

    border-radius:
        18px;

    padding:
        24px;

}


.balance span,
.balance small {

    display:
        block;

    opacity:
        .72;

    font-size:
        12px;

}


.balance b {

    display:
        block;

    font-size:
        34px;

    letter-spacing:
        -1px;

    margin:
        5px 0;

}


.dash-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        12px;

    margin-top:
        14px;

}


.dash-grid > div {

    padding:
        17px;

    border:
        1px solid
        var(--line);

    border-radius:
        15px;

    background:
        #f8fafc;

}


.dash-grid span,
.dash-grid small {

    display:
        block;

    color:
        var(--muted);

    font-size:
        11px;

}


.dash-grid b {

    display:
        block;

    color:
        var(--navy);

    font-size:
        20px;

    margin:
        3px 0;

}


.activity {

    margin-top:
        14px;

    padding:
        15px;

    border-radius:
        15px;

    background:
        #f8fafc;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        12px;

    font-size:
        12px;

}


.activity span {

    display:
        block;

    color:
        var(--muted);

}


.activity b {

    display:
        block;

    color:
        var(--navy);

}


.activity strong {

    color:
        #16a34a;

}


/* SECTIONS */

.section {

    padding:
        95px 0;

}


.section-title {

    text-align:
        center;

    max-width:
        760px;

    margin:
        0 auto 48px;

}


.section-title > span,
.section-label,
.cta-box > div > span {

    font-size:
        11px;

    letter-spacing:
        1.7px;

    font-weight:
        900;

    color:
        var(--blue);

}


h2 {

    font-size:
        clamp(
            31px,
            4vw,
            47px
        );

    line-height:
        1.1;

    letter-spacing:
        -1.7px;

    color:
        var(--navy);

    margin:
        10px 0 14px;

}


.section-title p,
.about p {

    color:
        var(--muted);

}


/* SERVICE CARDS */

.cards {

    display:
        grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:
        18px;

}


.card {

    padding:
        26px;

    background:
        white;

    border:
        1px solid
        var(--line);

    border-radius:
        20px;

    box-shadow:
        0 7px 30px
        rgba(10,30,70,.05);

    transition:
        .2s;

}


.card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);

}


.icon {

    width:
        49px;

    height:
        49px;

    border-radius:
        14px;

    display:
        grid;

    place-items:
        center;

    background:
        #eaf3ff;

    color:
        var(--blue);

    font-size:
        23px;

    margin-bottom:
        19px;

}


.card h3 {

    font-size:
        18px;

    color:
        var(--navy);

    margin-bottom:
        8px;

}


.card p {

    font-size:
        14px;

    color:
        var(--muted);

    margin-bottom:
        18px;

}


.card a {

    font-size:
        13px;

    font-weight:
        800;

    color:
        var(--blue);

}


/* DARK SECTION */

.dark-section {

    padding:
        95px 0;

    background:
        linear-gradient(
            135deg,
            #06142f,
            #0b2d62
        );

    color:
        white;

}


.section-title.light h2 {

    color:
        white;

}


.section-title.light p {

    color:
        #b9c8df;

}


.section-title.light > span {

    color:
        #6dc8ff;

}


.solution-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        18px;

}


.solution {

    padding:
        30px;

    border:
        1px solid
        rgba(255,255,255,.1);

    background:
        rgba(255,255,255,.055);

    border-radius:
        20px;

}


.solution > b {

    color:
        #65c7ff;

    font-size:
        12px;

}


.solution h3 {

    margin:
        12px 0 6px;

}


.solution p {

    color:
        #b8c7df;

    font-size:
        14px;

}


/* ABOUT */

.about-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        80px;

    align-items:
        center;

}


.about h2 {

    text-align:
        left;

}


.checks {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        12px;

    margin-top:
        25px;

}


.checks div {

    padding:
        14px;

    border:
        1px solid
        var(--line);

    border-radius:
        12px;

    background:
        white;

    font-size:
        13px;

    font-weight:
        700;

}


.about-panel {

    padding:
        25px;

    background:
        white;

    border:
        1px solid
        var(--line);

    border-radius:
        22px;

    box-shadow:
        var(--shadow);

}


.mini {

    display:
        flex;

    justify-content:
        space-between;

    padding:
        20px 10px;

    border-bottom:
        1px solid
        var(--line);

}


.mini:last-child {

    border:
        0;

}


.mini span {

    color:
        #16a34a;

    font-weight:
        700;

    font-size:
        13px;

}


/* CTA */

.cta {

    padding:
        30px 0 90px;

}


.cta-box {

    background:
        linear-gradient(
            135deg,
            #0b2a63,
            #1266e8
        );

    border-radius:
        27px;

    padding:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    box-shadow:
        var(--shadow);

}


.cta-box h2 {

    color:
        white;

    max-width:
        700px;

}


.cta-box p {

    color:
        #d8e6ff;

    max-width:
        650px;

}


/* FOOTER */

footer {

    background:
        #041127;

    color:
        #9eafca;

    padding:
        55px 0 22px;

}


.footer-grid {

    display:
        grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap:
        35px;

}


.footer-logo {

    width:
        190px;

    height:
        65px;

    object-fit:
        contain;

}


.footer-grid p {

    font-size:
        14px;

    max-width:
        300px;

    margin-top:
        8px;

}


.footer-grid h4 {

    color:
        white;

    margin-bottom:
        13px;

}


.footer-grid a {

    display:
        block;

    font-size:
        13px;

    margin:
        8px 0;

}


.footer-grid a:hover {

    color:
        white;

}


.copyright {

    border-top:
        1px solid
        rgba(255,255,255,.1);

    margin-top:
        35px;

    padding-top:
        20px;

    font-size:
        12px;

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:950px) {

    .nav-links {

        display:
            none;

    }

    .menu-btn {

        display:
            block;

    }

    .hero-grid,
    .about-grid {

        grid-template-columns:
            1fr;

    }

    .cards {

        grid-template-columns:
            1fr 1fr;

    }

    .solution-grid {

        grid-template-columns:
            1fr 1fr;

    }

    .footer-grid {

        grid-template-columns:
            1fr 1fr;

    }

    .dashboard {

        max-width:
            650px;

        margin:
            auto;

    }

}


@media(max-width:600px) {

    .nav {

        height:
            70px;

    }

    .brand img {

        width:
            150px;

        height:
            55px;

    }

    .hero {

        padding-top:
            125px;

    }

    .cards,
    .solution-grid,
    .footer-grid,
    .checks {

        grid-template-columns:
            1fr;

    }

    .trust-row {

        gap:
            18px;

        flex-wrap:
            wrap;

    }

    .dashboard {

        transform:
            none;

    }

    .cta-box {

        display:
            block;

        padding:
            32px;

    }

    .cta-box .btn {

        margin-top:
            20px;

    }

    h1 {

        letter-spacing:
            -2px;

    }

    .section {

        padding:
            70px 0;

    }

}