

@import url('https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@62..125,400..700&family=DM+Mono:wght@300;400;500&display=swap');


/* ============================================================
   ROOT
============================================================= */

.gdf9 {
    --ink: #0d1c2a;
    --ink-2: #35505f;
    --muted: #647e8e;
    --faint: #89a0ae;

    --blue: #2f6db5;
    --blue-deep: #1b4a80;

    --line: rgba(70,112,145,.15);

    --container: 1280px;
    --gutter: 28px;

    --ease: cubic-bezier(.22,.61,.36,1);

    /*
       Mouse glow position.
       JS updates these continuously.
    */
    --mx: 76%;
    --my: 18%;

    position: relative;

    width: 100%;

    margin: 0;

    overflow: hidden;

    isolation: isolate;

    border-top:
        1px solid
        rgba(98,145,180,.16);

    /*
       BASE gradient stays visible
       even without JavaScript.
    */
    background:
        linear-gradient(
            118deg,
            #f9fcfe 0%,
            #eef7fc 25%,
            #e1eff9 52%,
            #edf7fc 78%,
            #f9fcfe 100%
        );

    color:
        var(--ink-2);

    font-family:
        'Archivo',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 14px;

    -webkit-font-smoothing:
        antialiased;
}


.gdf9,
.gdf9 *,
.gdf9 *::before,
.gdf9 *::after {
    box-sizing: border-box;
}



/* ============================================================
   MOUSE-FOLLOWING GRADIENT

   This is the actual light that follows the cursor.
============================================================= */

.gdf9::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:

        /*
           MAIN cursor light
        */
        radial-gradient(
            520px circle
            at var(--mx) var(--my),

            rgba(76,151,216,.32) 0%,
            rgba(99,166,220,.22) 18%,
            rgba(135,188,229,.13) 36%,
            rgba(156,201,235,.06) 53%,
            rgba(156,201,235,0) 72%
        ),

        /*
           Very subtle overall blue depth
        */
        linear-gradient(
            110deg,
            rgba(255,255,255,.15) 0%,
            rgba(95,163,219,.05) 50%,
            rgba(255,255,255,.15) 100%
        );

    opacity: 1;

    will-change:
        background;
}



/* ============================================================
   SECOND AMBIENT LIGHT

   Static, low intensity.
   Keeps footer looking good even when cursor is elsewhere.
============================================================= */

.gdf9::after {
    content: "";

    position: absolute;

    z-index: 0;

    width: 440px;
    height: 440px;

    left: -220px;
    bottom: -310px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(76,150,211,.14) 0%,
            rgba(76,150,211,.05) 45%,
            transparent 72%
        );

    pointer-events: none;
}



/* ============================================================
   LINK RESET
============================================================= */

.gdf9 a,
.gdf9 a:link,
.gdf9 a:visited,
.gdf9 a:hover,
.gdf9 a:focus,
.gdf9 a:active {
    color: inherit;

    text-decoration:
        none !important;

    text-decoration-line:
        none !important;
}



/* ============================================================
   WRAPPER
============================================================= */

.gdf9-wrap {
    position: relative;

    z-index: 2;

    width:
        min(
            var(--container),
            calc(
                100% -
                (var(--gutter) * 2)
            )
        );

    margin-inline:
        auto;
}



/* ============================================================
   MAIN
============================================================= */

.gdf9-main {
    position: relative;

    z-index: 2;

    padding:
        30px
        0
        24px;
}


.gdf9-grid {
    display: grid;

    grid-template-columns:
        minmax(235px,1.5fr)
        repeat(4,minmax(100px,.72fr));

    align-items: start;

    gap:
        24px
        38px;
}



/* ============================================================
   BRAND
============================================================= */

.gdf9-brand {
    max-width:
        275px;
}



/* ============================================================
   LOGO
============================================================= */

.gdf9-logo {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    transition:
        transform
        .3s
        var(--ease);
}


.gdf9-logo:hover {
    transform:
        translateY(-2px);
}



/* ============================================================
   LOGO MARK
============================================================= */

.gdf9-mark {
    position: relative;

    width: 34px;
    height: 34px;

    flex:
        0 0 auto;

    display: grid;

    place-items: center;

    overflow: hidden;

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

    border-radius:
        5px;

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

    box-shadow:
        0 5px 18px
        rgba(27,74,128,.06);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    transition:
        transform
        .3s
        var(--ease),

        box-shadow
        .3s
        var(--ease),

        background
        .3s
        var(--ease);
}



/* shine */

.gdf9-mark::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            125deg,
            transparent 15%,
            rgba(255,255,255,.88) 48%,
            transparent 78%
        );

    transform:
        translateX(-160%);

    transition:
        transform
        .68s
        var(--ease);
}


.gdf9-logo:hover
.gdf9-mark {
    transform:
        rotate(-3deg)
        scale(1.05);

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

    box-shadow:
        0 9px 24px
        rgba(27,74,128,.13);
}


.gdf9-logo:hover
.gdf9-mark::before {
    transform:
        translateX(160%);
}


.gdf9-mark svg {
    position: relative;

    z-index: 2;

    width: 22px;
    height: 22px;
}



/* ============================================================
   LOGO TEXT
============================================================= */

.gdf9-logo-copy {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.gdf9-logo-name {
    color:
        var(--ink);

    font-size:
        19px;

    font-weight:
        520;

    letter-spacing:
        -.04em;

    transition:
        color
        .2s
        var(--ease);
}


.gdf9-logo-name span {
    color:
        var(--blue-deep);
}


.gdf9-logo:hover
.gdf9-logo-name {
    color:
        var(--blue-deep);
}


.gdf9-logo-tag {
    margin-top:
        5px;

    color:
        var(--faint);

    font-family:
        'DM Mono',
        monospace;

    font-size:
        7px;

    letter-spacing:
        .22em;

    text-transform:
        uppercase;
}



/* ============================================================
   DESCRIPTION
============================================================= */

.gdf9-brand-text {
    max-width:
        30ch;

    margin:
        13px
        0
        0;

    color:
        var(--muted);

    font-size:
        11.5px;

    line-height:
        1.55;
}



/* ============================================================
   COLUMNS
============================================================= */

.gdf9-col {
    min-width: 0;

    transition:
        transform
        .28s
        var(--ease);
}


.gdf9-col:hover {
    transform:
        translateY(-2px);
}



/* ============================================================
   COLUMN TITLE
============================================================= */

.gdf9-col h3 {
    position: relative;

    width:
        fit-content;

    margin:
        1px
        0
        11px;

    padding-bottom:
        5px;

    color:
        var(--blue-deep);

    font-family:
        'DM Mono',
        monospace;

    font-size:
        8px;

    font-weight:
        500;

    line-height:
        1.2;

    letter-spacing:
        .16em;

    text-transform:
        uppercase;
}


.gdf9-col h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 13px;
    height: 1px;

    background:
        var(--blue);

    transition:
        width
        .3s
        var(--ease);
}


.gdf9-col:hover
.gdf9-col-title::after,
.gdf9-col:hover
h3::after {
    width:
        100%;
}



/* ============================================================
   LINKS
============================================================= */

.gdf9-col ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.gdf9-col li + li {
    margin-top:
        6px;
}


.gdf9-col a {
    display:
        inline-flex;

    align-items:
        center;

    color:
        var(--muted) !important;

    font-size:
        11.5px;

    line-height:
        1.3;

    transition:
        color
        .2s
        var(--ease),

        transform
        .24s
        var(--ease);
}



/* little blue line on hover */

.gdf9-col a::before {
    content: "";

    width: 0;
    height: 1px;

    margin-right: 0;

    flex:
        0 0 auto;

    opacity: 0;

    background:
        var(--blue);

    transition:
        width
        .25s
        var(--ease),

        margin-right
        .25s
        var(--ease),

        opacity
        .2s
        var(--ease);
}


.gdf9-col a:hover {
    color:
        var(--blue-deep) !important;

    transform:
        translateX(2px);
}


.gdf9-col a:hover::before {
    width:
        10px;

    margin-right:
        6px;

    opacity:
        1;
}



/* ============================================================
   BENEFIT STRIP
============================================================= */

.gdf9-benefits {
    position: relative;

    z-index: 2;

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

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

    backdrop-filter:
        blur(11px);

    -webkit-backdrop-filter:
        blur(11px);
}


.gdf9-benefits-inner {
    min-height:
        46px;

    display: grid;

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



/* ============================================================
   BENEFIT ITEM
============================================================= */

.gdf9-benefit {
    position: relative;

    min-width: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap:
        9px;

    overflow: hidden;

    padding:
        8px
        18px;

    transition:
        background
        .3s
        var(--ease);
}


.gdf9-benefit + .gdf9-benefit {
    border-left:
        1px solid
        var(--line);
}



/* glass sweep */

.gdf9-benefit::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: -60%;

    width:
        42%;

    opacity: 0;

    transform:
        skewX(-18deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.72),
            transparent
        );

    transition:
        left
        .65s
        var(--ease),

        opacity
        .25s
        var(--ease);
}


.gdf9-benefit:hover {
    background:
        rgba(255,255,255,.38);
}


.gdf9-benefit:hover::before {
    left:
        118%;

    opacity:
        1;
}



/* ============================================================
   BENEFIT ICON
============================================================= */

.gdf9-benefit svg {
    position: relative;

    z-index: 2;

    width: 14px;
    height: 14px;

    flex:
        0 0 auto;

    color:
        var(--blue);

    transition:
        transform
        .3s
        var(--ease),

        color
        .3s
        var(--ease);
}


.gdf9-benefit:hover svg {
    color:
        var(--blue-deep);

    transform:
        translateY(-2px)
        scale(1.08);
}



/* ============================================================
   BENEFIT TEXT
============================================================= */

.gdf9-benefit-copy {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: baseline;

    gap:
        5px;

    min-width: 0;
}


.gdf9-benefit strong {
    color:
        var(--ink);

    font-size:
        10px;

    font-weight:
        520;

    white-space:
        nowrap;

    transition:
        color
        .2s
        var(--ease);
}


.gdf9-benefit:hover strong {
    color:
        var(--blue-deep);
}


.gdf9-benefit span {
    color:
        var(--muted);

    font-size:
        9px;

    white-space:
        nowrap;
}



/* ============================================================
   BOTTOM BAR
============================================================= */

.gdf9-bottom {
    position: relative;

    z-index: 3;

    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            #0d1c2a 0%,
            #10293d 100%
        );
}


.gdf9-bottom::before {
    content: "";

    position: absolute;

    width:
        330px;

    height:
        120px;

    right:
        10%;

    bottom:
        -105px;

    border-radius:
        50%;

    background:
        rgba(76,146,207,.25);

    filter:
        blur(28px);

    pointer-events:
        none;

    transition:
        transform
        .7s
        var(--ease);
}


.gdf9-bottom:hover::before {
    transform:
        translateY(-18px)
        scale(1.15);
}


.gdf9-bottom-inner {
    position: relative;

    z-index: 2;

    min-height:
        42px;

    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items: center;

    gap:
        22px;

    padding:
        8px
        0;
}



/* ============================================================
   COPYRIGHT
============================================================= */

.gdf9-copy {
    margin: 0;

    color:
        rgba(255,255,255,.47);

    font-family:
        'DM Mono',
        monospace;

    font-size:
        7px;

    letter-spacing:
        .10em;

    text-transform:
        uppercase;

    white-space:
        nowrap;
}



/* ============================================================
   LEGAL
============================================================= */

.gdf9-legal {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap:
        5px
        20px;
}


.gdf9-legal a {
    position: relative;

    color:
        rgba(255,255,255,.48) !important;

    font-family:
        'DM Mono',
        monospace;

    font-size:
        7px;

    letter-spacing:
        .09em;

    text-transform:
        uppercase;

    transition:
        color
        .2s
        var(--ease);
}


.gdf9-legal a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom:
        -3px;

    height:
        1px;

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

    transform:
        scaleX(0);

    transform-origin:
        right;

    transition:
        transform
        .28s
        var(--ease);
}


.gdf9-legal a:hover {
    color:
        #ffffff !important;
}


.gdf9-legal a:hover::after {
    transform:
        scaleX(1);

    transform-origin:
        left;
}



/* ============================================================
   BACK TO TOP
============================================================= */

.gdf9-top {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        6px;

    color:
        rgba(255,255,255,.62) !important;

    font-family:
        'DM Mono',
        monospace;

    font-size:
        7px;

    letter-spacing:
        .10em;

    text-transform:
        uppercase;

    white-space:
        nowrap;

    transition:
        color
        .2s
        var(--ease),

        transform
        .25s
        var(--ease);
}


.gdf9-top svg {
    width:
        10px;

    height:
        10px;

    transition:
        transform
        .25s
        var(--ease);
}


.gdf9-top:hover {
    color:
        #ffffff !important;

    transform:
        translateY(-1px);
}


.gdf9-top:hover svg {
    transform:
        translateY(-3px);
}



/* ============================================================
   TABLET
============================================================= */

@media (max-width:1050px) {

    .gdf9-main {
        padding:
            27px
            0
            23px;
    }


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

        gap:
            22px
            28px;
    }


    .gdf9-brand {
        grid-column:
            1 / -1;

        max-width:
            none;

        display: grid;

        grid-template-columns:
            auto
            minmax(0,430px);

        align-items:
            center;

        column-gap:
            20px;
    }


    .gdf9-brand-text {
        margin:
            0;
    }

}



/* ============================================================
   MOBILE
============================================================= */

@media (max-width:720px) {

    .gdf9 {
        --gutter:
            18px;
    }


    .gdf9-main {
        padding:
            24px
            0
            22px;
    }


    .gdf9-grid {
        grid-template-columns:
            repeat(2,1fr);

        gap:
            23px
            20px;
    }


    .gdf9-brand {
        grid-column:
            1 / -1;

        display:
            block;

        max-width:
            320px;
    }


    .gdf9-brand-text {
        margin-top:
            12px;
    }


    .gdf9-col h3 {
        margin-bottom:
            9px;
    }


    .gdf9-col li + li {
        margin-top:
            5px;
    }


    .gdf9-col a {
        font-size:
            11px;
    }



    /* BENEFITS REMAIN HORIZONTAL */

    .gdf9-benefits-inner {
        min-height:
            58px;

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


    .gdf9-benefit {
        flex-direction:
            column;

        justify-content:
            center;

        gap:
            4px;

        padding:
            8px
            5px;

        text-align:
            center;
    }


    .gdf9-benefit svg {
        width:
            13px;

        height:
            13px;
    }


    .gdf9-benefit-copy {
        display:
            block;
    }


    .gdf9-benefit strong {
        display:
            block;

        font-size:
            8.5px;
    }


    .gdf9-benefit span {
        display:
            none;
    }



    /* BOTTOM */

    .gdf9-bottom-inner {
        grid-template-columns:
            1fr
            auto;

        gap:
            9px
            18px;

        padding:
            10px
            0;
    }


    .gdf9-legal {
        grid-column:
            1 / -1;

        grid-row:
            1;

        justify-content:
            flex-start;

        gap:
            5px
            13px;
    }


    .gdf9-copy {
        grid-column:
            1;

        grid-row:
            2;
    }


    .gdf9-top {
        grid-column:
            2;

        grid-row:
            2;
    }

}



/* ============================================================
   SMALL MOBILE
============================================================= */

@media (max-width:420px) {

    .gdf9-grid {
        gap:
            21px
            15px;
    }


    .gdf9-col h3 {
        font-size:
            7.5px;
    }


    .gdf9-col a {
        font-size:
            10.5px;
    }


    .gdf9-benefit strong {
        font-size:
            7.8px;
    }


    .gdf9-legal {
        gap:
            5px
            11px;
    }


    .gdf9-legal a {
        font-size:
            6.5px;
    }

}



/* ============================================================
   TOUCH DEVICES

   Cursor effect isn't needed there.
============================================================= */

@media (hover:none), (pointer:coarse) {

    .gdf9::before {
        background:

            radial-gradient(
                520px circle
                at 76% 18%,

                rgba(76,151,216,.25) 0%,
                rgba(99,166,220,.16) 24%,
                rgba(156,201,235,.06) 50%,
                transparent 72%
            ),

            linear-gradient(
                110deg,
                rgba(255,255,255,.15),
                rgba(95,163,219,.05),
                rgba(255,255,255,.15)
            );
    }

}



/* ============================================================
   FOCUS
============================================================= */

.gdf9 a:focus-visible {
    outline:
        2px solid
        var(--blue);

    outline-offset:
        3px;
}



/* ============================================================
   REDUCED MOTION
============================================================= */

@media (prefers-reduced-motion:reduce) {

    .gdf9 *,
    .gdf9 *::before,
    .gdf9 *::after {
        animation:
            none !important;

        transition:
            none !important;
    }

}


/* Plugin: optional uploaded logo mark */
.gdf9-mark img{display:block;width:100%;height:100%;object-fit:contain;padding:4px}
