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

html{
    scroll-behavior:smooth;
}

body{

    background:#000;
    color:#000000;

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

    overflow-x:hidden;
}

/*
#bg{

    position:fixed;
    inset:0;

    background:
        radial-gradient(circle at top,#221105 0%,#000 60%);

    z-index:-2;
}
*/

body::before{

    content:"";

    position:fixed;
    inset:0;

    /*
     background:
        radial-gradient(circle,#ff7b00 1px,transparent 1px);
    */
    background-size:180px 180px;

    opacity:.08;

    animation:drift 60s linear infinite;

    z-index:-1;
}

@keyframes drift{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(-180px);
    }

}

header{

    width:min(1200px,92%);
    margin:auto;

    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.logo{

    width:100%;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0 auto 20px;

}

.logo img{

    display:block;

    width:100%;
    max-width:520px;
    height:auto;

    margin:auto;

    filter:none;

    animation:none;

}

@keyframes float{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

}

h1{

    margin-top:30px;

    font-size:clamp(2rem,5vw,4.3rem);

    letter-spacing:2px;

    color:#ffffff;

    /*
     text-shadow:
        0 0 20px rgba(255,130,20,.4);
   */
}

.tagline{

    margin-top:20px;

    max-width:850px;

    font-size:1.2rem;

    line-height:1.8;

    color:#cccccc;
}

.buttons{

    margin-top:45px;

    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.button{

    padding:18px 34px;

    text-decoration:none;

    color:white;

    border:2px solid #ff7a00;

    border-radius:8px;

    transition:.3s;

    font-weight:700;

    letter-spacing:.5px;
}

.primary{

    background:#ffcc22;
    color:#000;
}

.button:hover{

    transform:translateY(-4px);

   /*
 box-shadow:
        0 0 20px rgba(255,130,20,.5);
*/
    background:#ffffff;
    color:black;
}

.cards{

    width:min(1300px,92%);
    margin:70px auto 100px;

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(270px,1fr));

    gap:30px;
}

.card{

    background:rgba(20,20,20,.85);

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

    border-radius:14px;

    padding:35px;

    transition:.35s;

    backdrop-filter:blur(8px);
}

.card:hover{

    transform:translateY(-8px);

    /*
     border-color:#ff7b00;

    box-shadow:
        0 0 35px rgba(255,120,0,.18);
    */
}

.card h2{

    color:#ffffff;

    margin-bottom:20px;

    font-size:1.6rem;
}

.card p{

    line-height:1.8;

    color:#cfcfcf;
}

footer{

    padding:60px 20px;

    text-align:center;

    color:#777;

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