/* =========================================================
   HITZIO PREMIUM HOMEPAGE
   2026
   ========================================================= */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Inter,ui-sans-serif,system-ui,-apple-system,
    "Segoe UI",Arial,sans-serif;
    color:#07162f;
    background:#f4f8fd;
    -webkit-font-smoothing:antialiased;
}

a{
    text-decoration:none;
    color:inherit;
}

.wrap{
    width:min(1420px,88%);
    margin:auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-head{
    height:92px;
    background:rgba(3,24,56,.98);
    color:#fff;
    border-bottom:1px solid rgba(54,176,255,.28);
    position:relative;
    z-index:100;
}

.nav{
    height:100%;
    display:flex;
    align-items:center;
}

.nav nav,
.main-nav{
    display:flex;
    align-items:center;
    gap:34px;
    margin-left:auto;
}

.nav nav>a,
.main-nav>a,
.drop{
    font-size:14px;
    font-weight:700;
    color:#e4f1ff;
    transition:.2s ease;
}

.nav nav>a:hover,
.main-nav>a:hover{
    color:#25ddf2;
}

.nav .current{
    color:#20dcef;
}

.drop{
    position:relative;
    cursor:pointer;
}

.drop>span{
    display:none;
    position:absolute;
    z-index:20;
    top:38px;
    left:-25px;
    width:190px;
    background:#fff;
    color:#08224a;
    border-radius:13px;
    padding:8px;
    box-shadow:0 22px 55px rgba(0,20,60,.22);
}

.drop:hover>span{
    display:block;
}

.drop>span a{
    display:block;
    padding:10px;
    border-radius:8px;
}

.drop>span a:hover{
    background:#eef7ff;
}

.navActions{
    display:flex;
    gap:10px;
    margin-left:30px;
}

.login,
.primary,
.secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    padding:12px 20px;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.login{
    border:1px solid #6084ab;
}

.primary{
    background:linear-gradient(105deg,#18d9ef,#1764ff);
    color:#fff;
    font-weight:850;
    box-shadow:0 12px 30px rgba(0,130,255,.22);
}

.primary:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 35px rgba(0,130,255,.32);
}

.secondary{
    border:1px solid #6387ae;
    color:#fff;
    background:rgba(7,28,61,.50);
    font-weight:750;
}

.secondary:hover{
    border-color:#28cde8;
    transform:translateY(-2px);
}

.large{
    padding:16px 25px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
    position:relative;
    overflow:hidden;
    min-height:705px;
    display:flex;
    align-items:center;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(20,111,208,.68) 0,
            rgba(9,66,135,.44) 28%,
            transparent 53%
        ),
        radial-gradient(
            circle at 50% 110%,
            rgba(69,56,255,.20),
            transparent 38%
        ),
        linear-gradient(
            120deg,
            #03142f 0%,
            #061e46 55%,
            #082b5c 100%
        );

    color:#fff;

    padding:74px 0 78px;
}

.glow{
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    filter:blur(100px);
    opacity:.14;
    pointer-events:none;
}

.glow.one{
    background:#00d9ff;
    right:-300px;
    top:-350px;
}

.glow.two{
    background:#6747ff;
    left:25%;
    bottom:-600px;
}

.heroGrid{
    display:grid;
    grid-template-columns:.90fr 1.10fr;
    gap:62px;
    align-items:center;
    position:relative;
    z-index:2;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    padding:8px 14px;
    border:1px solid #2984ba;
    border-radius:999px;
    color:#d8f7ff;
    background:rgba(3,29,66,.55);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
    font-size:10px;
    font-weight:850;
    letter-spacing:1.2px;
}

.heroCopy h1{
    font-size:clamp(58px,5.3vw,86px);
    line-height:.94;
    letter-spacing:-4.5px;
    margin:25px 0 24px;
    max-width:720px;
}

.heroCopy h1 span{
    background:linear-gradient(
        90deg,
        #18dff0,
        #1b9cff 48%,
        #8153ff
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.heroCopy p{
    font-size:17px;
    line-height:1.72;
    color:#c9ddf1;
    max-width:650px;
}

.heroBtns{
    display:flex;
    gap:14px;
    margin:30px 0 24px;
}

.trust{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
    color:#d6e9f9;
    font-size:11px;
}

.trust b{
    font-weight:700;
}


/* =========================================================
   HERO DASHBOARD VISUAL
   ========================================================= */

.visual{
    height:480px;
    position:relative;
}

.dash{
    position:absolute;
    left:0;
    top:27px;
    width:89%;
    height:390px;

    background:
        linear-gradient(145deg,#061a38,#04142e);

    border:2px solid #739fc1;
    border-radius:22px;

    box-shadow:
        0 45px 100px rgba(0,0,0,.50),
        0 0 55px rgba(0,132,255,.08);

    overflow:hidden;

    transform:
        perspective(1300px)
        rotateY(-2.5deg);
}

.dashTop{
    height:56px;
    border-bottom:1px solid #1c466f;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:9px;
    color:#bad1e8;
}

.miniLogo{
    display:flex;
    align-items:center;
}

.miniLogo .logoMark{
    transform:scale(.5);
    width:27px;
    margin-left:-10px;
}

.miniLogo b{
    font-size:15px;
}

.dashBody{
    display:grid;
    grid-template-columns:145px 1fr;
    height:334px;
}

.dashBody aside{
    background:#04132b;
    padding:16px 10px;
    display:flex;
    flex-direction:column;
    gap:5px;
}

.dashBody aside span,
.dashBody aside b{
    padding:9px;
    border-radius:7px;
    font-size:9px;
    color:#b6cee6;
}

.dashBody aside b{
    background:linear-gradient(90deg,#1468ff,#6849ff);
    color:#fff;
}

.dashBody>section{
    padding:20px;
}

.welcome{
    display:flex;
    justify-content:space-between;
}

.welcome small{
    font-size:7px;
    color:#90afd0;
}

.welcome h3{
    font-size:18px;
    margin:3px 0 15px;
}

.welcome mark{
    background:#153864;
    color:#ffd85c;
    height:25px;
    padding:7px 10px;
    border-radius:8px;
    font-size:7px;
}

.metric{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:9px;
}

.metric article{
    background:linear-gradient(145deg,#0d376e,#092755);
    border:1px solid #1b538b;
    border-radius:11px;
    padding:13px;
}

.metric small,
.metric b{
    display:block;
}

.metric small{
    font-size:6px;
    color:#9db8d3;
}

.metric b{
    font-size:17px;
    margin-top:6px;
}

.dashLower{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:10px;
    margin-top:13px;
}

.dashLower>div{
    background:#081f43;
    border:1px solid #153d6b;
    border-radius:11px;
    padding:11px;
}

.dashLower small{
    font-size:7px;
    color:#91afd0;
}

.bars{
    height:80px;
    display:flex;
    gap:8px;
    align-items:end;
    border-bottom:1px solid #274e78;
}

.bars i{
    flex:1;
    background:linear-gradient(#754cff,#10cbed);
    border-radius:4px 4px 0 0;
}

.bars i:nth-child(1){height:30%}
.bars i:nth-child(2){height:52%}
.bars i:nth-child(3){height:43%}
.bars i:nth-child(4){height:75%}
.bars i:nth-child(5){height:60%}
.bars i:nth-child(6){height:91%}
.bars i:nth-child(7){height:70%}

.actions{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.actions b{
    font-size:8px;
    color:#c9dced;
}

.phone{
    position:absolute;
    right:0;
    top:135px;
    width:150px;
    height:315px;

    border:3px solid #7c99b4;

    background:
        linear-gradient(#061831,#030c1d);

    border-radius:32px;

    box-shadow:
        0 35px 80px rgba(0,0,0,.65);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.phone>b{
    position:absolute;
    top:27px;
    color:#1bd9ef;
    font-size:17px;
}

.phone>div{
    width:72px;
    height:72px;
    border-radius:21px;

    background:
        linear-gradient(145deg,#11d4ed,#1763ff);

    display:grid;
    place-items:center;

    font-size:30px;

    box-shadow:
        0 12px 35px rgba(8,124,247,.40);
}

.phone strong{
    font-size:25px;
    line-height:1.02;
    margin-top:16px;
}

.phone em{
    font-style:normal;
    color:#19d9ef;
}

.note{
    position:absolute;
    right:-10px;
    top:18px;
    color:#75e8f4;
    font:18px cursive;
    text-align:center;
    transform:rotate(-5deg);
}


/* =========================================================
   GLOBAL SECTION TITLES
   ========================================================= */

.sectionTitle{
    text-align:center;
    margin-bottom:45px;
}

.sectionTitle small{
    display:block;
    font-size:10px;
    letter-spacing:2.4px;
    font-weight:900;
    color:#0dbce7;
}

.sectionTitle h2{
    font-size:clamp(36px,3.2vw,50px);
    margin:7px 0 10px;
    letter-spacing:-2px;
    line-height:1.05;
}

.sectionTitle h2 span{
    background:linear-gradient(90deg,#087ce9,#6154ff);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.sectionTitle p{
    margin:0;
    color:#6a7c91;
    font-size:14px;
}


/* =========================================================
   HOW HITZIO WORKS
   ========================================================= */

.how{
    position:relative;
    padding:88px 0 55px;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(25,190,255,.10),
            transparent 34%
        ),
        linear-gradient(#f8fbff,#f2f8ff);
}

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    position:relative;
}

.steps article{
    position:relative;
    display:flex;
    gap:16px;

    min-height:155px;

    background:
        linear-gradient(145deg,#fff,#f8fbff);

    border:1px solid #d7e5f2;

    border-radius:20px;

    padding:26px 23px;

    box-shadow:
        0 15px 40px rgba(7,60,110,.07);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.steps article:hover{
    transform:translateY(-7px);
    border-color:#9bd7f1;

    box-shadow:
        0 22px 50px rgba(7,80,150,.13);
}

.steps article>i{
    font-style:normal;

    width:58px;
    height:58px;

    flex:0 0 58px;

    border-radius:17px;

    background:
        linear-gradient(145deg,#eaf9ff,#e9efff);

    border:1px solid #d5ebf8;

    display:grid;
    place-items:center;

    font-size:24px;

    box-shadow:
        inset 0 1px 0 #fff;
}

.steps article div>b{
    display:inline-block;
    color:#1682f6;
    font-size:10px;
    letter-spacing:1px;
}

.steps h3{
    font-size:18px;
    margin:4px 0 7px;
}

.steps p{
    font-size:12px;
    color:#687a90;
    line-height:1.6;
    margin:0;
}


/* =========================================================
   MEMBER / ADVERTISER ECOSYSTEM
   ========================================================= */

.ecosystem{
    padding:28px 0 70px;

    background:
        linear-gradient(#f2f8ff,#fff);
}

.twin{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
}

.ecosystem article{
    position:relative;
    padding:38px;
    border-radius:28px;
    overflow:hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.ecosystem article:hover{
    transform:translateY(-5px);
}

.memberPanel{
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(20,190,255,.18),
            transparent 38%
        ),
        linear-gradient(145deg,#e9faff,#f9fcff);

    border:1px solid #bfe6f5;

    box-shadow:
        0 24px 60px rgba(0,100,180,.10);
}

.advertPanel{
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(239,25,145,.14),
            transparent 38%
        ),
        linear-gradient(145deg,#fff0f8,#fbf5ff);

    border:1px solid #edcce4;

    box-shadow:
        0 24px 60px rgba(190,20,130,.08);
}

.panelHead{
    display:flex;
    gap:17px;
    align-items:center;
}

.round{
    width:65px;
    height:65px;
    flex:0 0 65px;

    border-radius:20px;

    background:rgba(255,255,255,.82);

    border:1px solid rgba(255,255,255,.95);

    display:grid;
    place-items:center;

    font-size:28px;

    box-shadow:
        0 10px 28px rgba(30,80,130,.10);
}

.panelHead small{
    font-size:10px;
    letter-spacing:1.9px;
    font-weight:900;
}

.memberPanel .panelHead small{
    color:#087ee8;
}

.advertPanel .panelHead small{
    color:#df178a;
}

.panelHead h2{
    font-size:34px;
    letter-spacing:-1.4px;
    margin:3px 0 5px;
}

.memberPanel h2{
    color:#0870e8;
}

.advertPanel h2{
    color:#df178a;
}

.panelHead p{
    font-size:13px;
    color:#63768b;
    margin:0;
}

.tiles{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin:28px 0;
}

.tiles>a,
.tiles>div{
    min-height:84px;

    background:rgba(255,255,255,.88);

    border:1px solid #d9e7f0;

    border-radius:15px;

    padding:15px;

    display:flex;
    gap:12px;
    align-items:center;

    box-shadow:
        0 8px 25px rgba(20,70,120,.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.tiles>a:hover{
    transform:translateY(-3px);
    border-color:#a9dff3;
    box-shadow:0 13px 30px rgba(10,90,160,.10);
}

.tiles i{
    font-style:normal;

    width:45px;
    height:45px;

    flex:0 0 45px;

    border-radius:13px;

    background:
        linear-gradient(145deg,#e8f8ff,#eef1ff);

    display:grid;
    place-items:center;

    font-size:18px;
}

.advertPanel .tiles i{
    background:
        linear-gradient(145deg,#fff0f8,#f4efff);
}

.tiles b,
.tiles small{
    display:block;
}

.tiles b{
    font-size:14px;
}

.tiles small{
    font-size:10px;
    line-height:1.45;
    color:#6b7c90;
    margin-top:4px;
}

.pink{
    background:
        linear-gradient(100deg,#ec168b,#ff1b65);

    box-shadow:
        0 12px 30px rgba(230,20,125,.20);
}

.panelArt{
    position:absolute;
    right:25px;
    bottom:-18px;

    font-size:100px;

    color:rgba(22,134,255,.10);

    pointer-events:none;
}

.barsArt{
    font-size:42px;
    color:rgba(231,25,142,.25);
    bottom:12px;
}


/* =========================================================
   BENEFIT STRIP
   ========================================================= */

.benefits{
    background:#fff;

    border-top:1px solid #dce8f2;
    border-bottom:1px solid #dce8f2;

    padding:32px 0;

    box-shadow:
        0 12px 35px rgba(20,70,120,.04);
}

.benefitGrid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
}

.benefitGrid article{
    position:relative;
    text-align:center;

    padding:8px 18px;

    border-right:1px solid #e0e8f0;
}

.benefitGrid article:last-child{
    border:0;
}

.benefitGrid i{
    font-style:normal;

    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    margin:0 auto 9px;

    border-radius:13px;

    color:#1178f4;

    background:#edf7ff;
}

.benefitGrid b,
.benefitGrid small{
    display:block;
}

.benefitGrid b{
    font-size:13px;
    margin:5px;
}

.benefitGrid small{
    font-size:10px;
    color:#728196;
}


/* =========================================================
   DARK MONEY / ADVERTISING SECTION
   ========================================================= */

.dark{
    position:relative;

    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(14,142,255,.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 90%,
            rgba(99,67,255,.12),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #03142f,
            #061d40
        );

    color:#fff;

    padding:90px 0;
}

.dark article{
    position:relative;

    background:
        linear-gradient(
            145deg,
            rgba(15,55,104,.88),
            rgba(7,37,76,.92)
        );

    border:1px solid rgba(69,143,211,.45);

    border-radius:25px;

    padding:42px;

    box-shadow:
        0 30px 70px rgba(0,0,0,.20),
        inset 0 1px 0 rgba(255,255,255,.04);
}

.dark article>small{
    font-size:10px;
    letter-spacing:2px;
    color:#19d8ef;
    font-weight:900;
}

.dark h2{
    font-size:38px;
    line-height:1.08;
    letter-spacing:-1.5px;
    margin:8px 0 15px;
}

.dark p{
    font-size:14px;
    line-height:1.75;
    color:#bed2e6;
}

.check{
    display:grid;
    gap:10px;
    margin-top:25px;
}

.check b{
    font-size:11px;

    background:
        linear-gradient(
            90deg,
            rgba(17,65,119,.85),
            rgba(12,53,100,.70)
        );

    border:1px solid rgba(60,130,195,.16);

    padding:13px 14px;

    border-radius:10px;
}


/* =========================================================
   WHY HITZIO
   ========================================================= */

.why{
    padding:90px 0;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(16,184,255,.06),
            transparent 35%
        ),
        #fff;
}

.whyGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.whyGrid article{
    position:relative;

    border:1px solid #d9e5f0;

    border-radius:21px;

    padding:32px 25px;

    text-align:center;

    background:
        linear-gradient(145deg,#fff,#f9fcff);

    box-shadow:
        0 14px 38px rgba(15,60,110,.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.whyGrid article:hover{
    transform:translateY(-7px);
    border-color:#a8d9ee;

    box-shadow:
        0 22px 50px rgba(10,80,150,.12);
}

.whyGrid i{
    font-style:normal;

    width:60px;
    height:60px;

    border-radius:18px;

    background:
        linear-gradient(145deg,#e8f7ff,#edf1ff);

    display:grid;
    place-items:center;

    margin:auto;

    color:#1478f4;

    font-size:20px;
}

.whyGrid b{
    display:block;
    font-size:15px;
    margin:15px 0 7px;
}

.whyGrid p{
    font-size:11px;
    color:#6d7d91;
    line-height:1.65;
    margin:0;
}


/* =========================================================
   LIVE PLATFORM FIGURES
   ========================================================= */

.live{
    padding:85px 0 70px;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(18,173,255,.10),
            transparent 35%
        ),
        linear-gradient(#edf7ff,#f6fbff);
}

.numbers{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    background:
        rgba(255,255,255,.92);

    border:1px solid #cfe2f1;

    border-radius:23px;

    overflow:hidden;

    box-shadow:
        0 25px 65px rgba(15,70,120,.10);
}

.numbers article{
    position:relative;
    text-align:center;

    padding:34px 20px;

    border-right:1px solid #dce7f1;

    transition:background .2s ease;
}

.numbers article:hover{
    background:#f6fbff;
}

.numbers article:last-child{
    border:0;
}

.numbers i{
    font-style:normal;

    width:48px;
    height:48px;

    display:grid;
    place-items:center;

    margin:auto;

    border-radius:15px;

    background:
        linear-gradient(145deg,#e8f7ff,#eef1ff);

    font-size:20px;
}

.numbers b,
.numbers small{
    display:block;
}

.numbers b{
    font-size:34px;
    letter-spacing:-1px;
    margin:10px 0 4px;
}

.numbers small{
    font-size:10px;
    color:#6c7b8e;
    text-transform:uppercase;
    letter-spacing:.7px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.bottomCta{
    background:#f6fbff;
    padding:0 0 75px;
}

.bottomCta .wrap{
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(
            circle at 80% 0,
            rgba(30,138,255,.34),
            transparent 35%
        ),
        linear-gradient(
            105deg,
            #041735,
            #073d7c
        );

    border:1px solid rgba(75,150,220,.35);

    border-radius:26px;

    color:#fff;

    padding:45px 50px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    box-shadow:
        0 30px 70px rgba(0,50,110,.20);
}

.bottomCta small{
    font-size:10px;
    letter-spacing:2px;
    color:#1ad9ef;
    font-weight:900;
}

.bottomCta h2{
    font-size:38px;
    letter-spacing:-1.4px;
    margin:7px 0;
}

.bottomCta p{
    margin:0;
    color:#bed3e8;
    font-size:13px;
}

.bottomCta>div>div:last-child{
    display:flex;
    gap:12px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer{
    background:
        linear-gradient(120deg,#021126,#031933);

    color:#bdcfe2;

    padding:65px 0 20px;

    border-top:1px solid #16436d;
}

.footerGrid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;
}

.footerGrid p{
    font-size:12px;
    line-height:1.6;
    color:#8eabc7;
    max-width:280px;
}

.footerGrid>div>b{
    display:block;

    color:#fff;

    font-size:13px;

    margin-bottom:15px;

    letter-spacing:.3px;
}

.footerGrid>div>a:not(.logo):not(.hitzio-brand){
    display:block;

    font-size:11px;

    margin:10px 0;

    color:#aac0d7;

    transition:.2s ease;
}

.footerGrid>div>a:hover{
    color:#1bd9ef;
}

.copyright{
    border-top:1px solid #17385d;

    margin-top:42px;

    padding-top:18px;

    font-size:10px;

    color:#829db7;

    display:flex;

    justify-content:space-between;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1100px){

    .wrap{
        width:min(94%,1100px);
    }

    .main-nav{
        gap:20px;
    }

    .heroGrid{
        gap:35px;
    }

    .heroCopy h1{
        font-size:60px;
    }

    .visual{
        transform:scale(.92);
        transform-origin:center;
    }
}


@media(max-width:900px){

    .site-head{
        height:auto;
        min-height:78px;
    }

    .nav{
        min-height:78px;
        flex-wrap:wrap;
    }

    .nav nav,
    .main-nav{
        display:none;
    }

    body.home-nav-open .main-nav{
        display:flex;
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:4px;
        padding:10px 0 18px;
    }

    body.home-nav-open .main-nav a{
        padding:11px 12px;
        border-radius:8px;
    }

    .hero{
        min-height:auto;
        padding:65px 0;
    }

    .heroGrid,
    .twin{
        grid-template-columns:1fr;
    }

    .heroCopy{
        text-align:center;
    }

    .heroCopy p{
        margin-left:auto;
        margin-right:auto;
    }

    .heroBtns,
    .trust{
        justify-content:center;
    }

    .visual{
        width:min(720px,100%);
        margin:15px auto 0;
        transform:none;
    }

    .steps,
    .whyGrid{
        grid-template-columns:1fr 1fr;
    }

    .benefitGrid,
    .numbers{
        grid-template-columns:1fr 1fr;
    }

    .benefitGrid article:nth-child(2){
        border-right:0;
    }

    .benefitGrid article{
        padding:20px;
        border-bottom:1px solid #e0e8f0;
    }

    .footerGrid{
        grid-template-columns:1fr 1fr;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:560px){

    .wrap{
        width:92%;
    }

    .hero{
        padding:48px 0 55px;
    }

    .eyebrow{
        font-size:8px;
        letter-spacing:.7px;
    }

    .heroCopy h1{
        font-size:45px;
        letter-spacing:-2.8px;
        margin-top:20px;
    }

    .heroCopy p{
        font-size:14px;
        line-height:1.65;
    }

    .heroBtns{
        flex-direction:column;
    }

    .heroBtns a{
        width:100%;
    }

    .trust{
        gap:9px 14px;
        font-size:9px;
    }

    .visual{
        height:315px;
        margin-top:25px;
    }

    .dash{
        width:100%;
        height:290px;
        top:5px;
        transform:none;
    }

    .dashTop{
        height:45px;
    }

    .dashBody{
        grid-template-columns:100px 1fr;
        height:245px;
    }

    .dashBody aside{
        padding:8px 5px;
    }

    .dashBody aside span,
    .dashBody aside b{
        font-size:7px;
        padding:6px;
    }

    .dashBody>section{
        padding:9px;
    }

    .welcome h3{
        font-size:12px;
    }

    .welcome mark{
        display:none;
    }

    .metric{
        grid-template-columns:1fr 1fr;
    }

    .metric article:last-child{
        display:none;
    }

    .dashLower{
        grid-template-columns:1fr;
    }

    .actions{
        display:none;
    }

    .phone,
    .note{
        display:none;
    }

    .sectionTitle{
        margin-bottom:28px;
    }

    .sectionTitle h2{
        font-size:34px;
    }

    .how{
        padding:60px 0 35px;
    }

    .steps,
    .tiles,
    .whyGrid,
    .benefitGrid,
    .numbers{
        grid-template-columns:1fr;
    }

    .steps article{
        min-height:auto;
    }

    .ecosystem{
        padding-bottom:45px;
    }

    .ecosystem article{
        padding:26px 20px;
        border-radius:22px;
    }

    .panelHead h2{
        font-size:27px;
    }

    .round{
        width:54px;
        height:54px;
        flex-basis:54px;
    }

    .benefitGrid article{
        border-right:0;
        border-bottom:1px solid #e0e8f0;
    }

    .benefitGrid article:last-child{
        border-bottom:0;
    }

    .dark{
        padding:60px 0;
    }

    .dark article{
        padding:27px 22px;
    }

    .dark h2{
        font-size:29px;
    }

    .why{
        padding:60px 0;
    }

    .live{
        padding:60px 0 50px;
    }

    .numbers article{
        border-right:0;
        border-bottom:1px solid #dce7f1;
        padding:24px;
    }

    .numbers article:last-child{
        border-bottom:0;
    }

    .bottomCta{
        padding-bottom:50px;
    }

    .bottomCta .wrap{
        flex-direction:column;
        align-items:flex-start;
        gap:25px;
        padding:30px 24px;
    }

    .bottomCta h2{
        font-size:30px;
    }

    .bottomCta>div>div:last-child{
        flex-direction:column;
        width:100%;
    }

    .bottomCta a{
        width:100%;
    }

    .footerGrid{
        grid-template-columns:1fr;
        gap:28px;
    }

    footer{
        padding-top:48px;
    }

    .copyright{
        flex-direction:column;
        gap:7px;
    }
}