*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

h1,h2, h3, h4 {
    font-weight: 500;
}
p{
    font-size: 1.25rem;
}

/* Helvetica World style stack */
body{
    font-family: "Helvetica World", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background:var(--bright);
    color:#000000;
    line-height:1.6;
    background-color: white;
    /*background: linear-gradient(
        -90deg,
        var(--depthhalf) 0%,
        var(--depth) 100%
    );*/
    overflow-x: hidden;
}



/* layout */
.container{
    margin: 20px;
    width:100%;
    max-width:1100px;
    /*margin:auto;*/
    display: flex;
    flex-direction: column;
    /*margin: 20px;*/
    /*padding: 50px;*/
    /*border-radius: 25px;*/
    justify-content: center;
    /*border: 2px solid var(--depthhalf);*/
    /*align-items: center;*/
}



.gradient-text {
    /*background: linear-gradient(
        90deg,
        var(--depth) 0%,
        var(--depthhalf) 100%
    );
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    */
    color: var(--bright);

    
}




.small{
    max-width:750px;
}

/* ONLY COLOR */
:root{
    --depth:#0080ff15;
    --bright: black;
    --depthhalf: #0080ff15;
    /*--brighthalf: #ffffff15;*/
    --depth:#005cb913;
    --bright: black;
    --depthhalf: #005cb920;
    
}

/* HEADER */
header {
    position: sticky;
    width: 100%;
    top: 0;
    
    z-index: 1000;
   
    display: flex;
    justify-content: center;
    background-color: white;
}

.nav {
    flex-grow: 1;
    max-width: 2500px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    margin: 0 20px;
    /* background-color: var(--bright); */
}

.logo{
    /*color:var(--depth);*/
    font-size:1.6rem;
    display: flex;
    user-select: none;

}
.logo p{font-size:1.6rem;}
.logo .weight{
    font-weight: 450;
}

/* TOP BUTTON */
.btn-small {
    /*background-color: var(--depth);*/
    /*color: var(--bright);*/
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    /*border: 2px solid var(--depthhalf);*/
    color: black;
    background-color: var(--depthhalf);
    font-size: 1.1rem;
}


/* HERO */
.hero{
    display: flex;
    justify-content: center;

    /*padding: 0px 120px;*/
    text-align:center;
    padding: 20px;
    
    background-color: var(--depth);
}

.hero h1{
    line-height: 1.3;
    font-size:5.2rem;

    letter-spacing:-0.5px;
    margin-bottom:25px;
}

.hero p{
    font-size:1.35rem;
    
    max-width:750px;
    margin:auto;
    color: var(--bright);
}
.herobtn{
    /*border: 2px solid var(--depthhalf);*/
   background-color: var(--depthhalf) !important;
    margin-top: 25px;


}

/* SECTIONS */
.section{
    /*padding:110px 0;*/
    display: flex;
    justify-content: center;
    margin: 20px auto;
    max-width: calc(100% - 40px);


}

.bright {
    background:#ffffff;
}

.depth{
    background:var(--depth);
    color:var(--bright);
}

.depth .container .cards .card {
    background: rgb(255 255 255 / 8%);
    background: var(--depthhalf);
}
.depth .container {
    /*border: 2px solid var(--brighthalf);*/
}

/* TITLES */
.section-title {
    /* text-align: center; */
    margin-bottom: 25px;
}

.section-title h2{
    font-size:4rem;

    
}
.center {
    display: flex;
    justify-content: center;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
   /* margin: 20px;*/
    min-width: 0;
}

.card{
    
    min-width: 0;

    padding:40px;
    border-radius:22px;
    background:rgba(37,99,235,0.08);
}

.blue .card{
    background:rgba(255,255,255,0.15);
    color:var(--bright);
}

.card h3{
    font-size:1.6rem;
    margin-bottom:12px;

}

.card p{
    font-size:1.25rem;
    color:inherit;
    opacity:0.85;
    
}

/* text center */
.center-text{
    text-align:center;
    font-size:1.2rem;
    opacity:0.95;
    
}

/* CTA */
.cta {
    background: var(--depth);
    color: var(--bright);
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
}



.cta h2{
    font-size:4.2rem;

    margin-bottom:15px;
}

.cta p{
    max-width:750px;
    margin:0 auto 40px;
    font-size:1.25rem;
    
    opacity:0.9;
}

/* BUTTON */
.btn {
   
    background: var(--depthhalf);
    color: var(--bright);
    padding: 16px 34px;
    border-radius: 999px;
    width: fit-content;
    align-self: center;
    text-decoration: none;
    font-size: 1.1rem;
    /*border: 2px solid var(--brighthalf);*/
}
.standalone{
    padding-bottom: 20px;
}

/* FOOTER */
footer {
    /* background: var(--depth); */
    background-color: white;
    color: var(--bright);
    text-align: center;
    /* padding: 45px 0; */
    font-size: 1rem;
    display: flex;
    justify-content: center;
}
footer .container {
    color: black;
    border: none;
    padding: 0;
    
}

/* mobile */
@media(max-width:768px){

    .hero h1{
        font-size:2.8rem;
    }

    .section-title h2{
        font-size:2.4rem;
    }

    .cta h2{
        font-size:2.4rem;
    }
}