@charset "utf-8";
/* CSS Document */

:root {
    /* Logo palette mix */
    --blue: #0068BA;
    --green: #138A3D;
    --orange: #F59E0B;
    --brand: var(--blue); /* accents/links */
    --brand-2: var(--green); /* primary buttons */
    --ink: #0b1220;
    --muted: #5b6b7a;
    --glass: rgba(255,255,255,.70);
    --glass-2: rgba(255,255,255,.55);
    --stroke: rgba(255,255,255,.75);
    --shadow: 0 20px 60px rgba(16, 24, 40, .12);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
}

/* Liquid glass background */
.liquid-bg {
    background: radial-gradient(900px 520px at 50% 20%, rgba(170, 215, 255, .55), transparent 60%), radial-gradient(780px 520px at 15% 75%, rgba(175, 170, 255, .35), transparent 62%), radial-gradient(820px 560px at 90% 80%, rgba(140, 205, 255, .30), transparent 62%), linear-gradient(180deg, #ffffff 0%, #eef7ff 45%, #ffffff 100%);
    position: relative;
}

.blob {
    position: absolute;
    filter: blur(60px);
    opacity: .55;
    pointer-events: none;
    transform: translateZ(0);
}

    .blob.b1 {
        width: 420px;
        height: 420px;
        left: -140px;
        top: 120px;
        background: rgba(120, 190, 255, .42);
        border-radius: 50%;
    }

    .blob.b2 {
        width: 520px;
        height: 520px;
        right: -220px;
        top: 60px;
        background: rgba(170, 175, 255, .34);
        border-radius: 50%;
    }

    .blob.b3 {
        width: 560px;
        height: 560px;
        right: 80px;
        bottom: -260px;
        background: rgba(120, 205, 255, .32);
        border-radius: 50%;
    }

/* Glass card */
.glass {
    background: var(--glass);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.glass-soft {
    background: var(--glass-2);
    border: 1px solid rgba(255,255,255,.65);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav-link {
    color: #1f2a37;
    font-weight: 600;
}

    .nav-link:hover {
        color: var(--brand);
    }

.btn-brand {
    background: var(--brand-2);
    border-color: var(--brand-2);
    color: #fff;
    font-weight: 800;
    border-radius: 14px;
    padding: .75rem 1.1rem;
}

    .btn-brand:hover {
        background: #0f7a35;
        border-color: #0f7a35;
        color: #fff;
    }

.btn-outline-brand {
    border-color: rgba(0,104,186,.35);
    color: var(--brand);
    font-weight: 800;
    border-radius: 14px;
    padding: .75rem 1.1rem;
    background: rgba(255,255,255,.35);
    backdrop-filter: blur(10px);
}

    .btn-outline-brand:hover {
        border-color: var(--brand);
        background: rgba(0,104,186,.08);
        color: var(--brand);
    }

.kpi {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.75);
}

.section-pad {
    padding: 80px 0;
}

.section-title {
    font-weight: 900;
    letter-spacing: -.02em;
}

.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0,104,186,.10);
    border: 1px solid rgba(0,104,186,.18);
    color: var(--brand);
    flex: 0 0 auto;
}

.badge-soft {
    background: rgba(0,104,186,.10);
    color: var(--brand);
    border: 1px solid rgba(0,104,186,.18);
    font-weight: 800;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15,23,42,.12), transparent);
}



footer a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    background-color: #f4ffff;
}

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0) !important;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
        
    }
