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

html{
    scroll-behavior:smooth;
}

body{
    background:#09090b;
    color:#ffffff;
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.6;
}/* ==========================
   NAVIGATION
========================== */

nav{

    position:sticky;
    top:0;
    z-index:1000;

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

    padding:15px 60px;

    background:rgba(15,8,25,.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(162,107,255,.15);

}

.nav-logo{

    display:flex;

    align-items:center;

}

.nav-logo img{

    height:85px;

    width:auto;

    display:block;

    filter:drop-shadow(0 0 20px rgba(162,107,255,.5));

}

.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

    margin-left:auto;

}

nav a{

    color:#ffffff;

    text-decoration:none;

    font-size:1rem;

    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:#b783ff;

}

.nav-call{

    margin-left:30px;

    background:#7a2cff;

    color:#ffffff;

    padding:14px 30px;

    border-radius:999px;

    text-decoration:none;

    font-weight:700;

    box-shadow:
    0 0 15px rgba(138,43,226,.7),
    0 0 35px rgba(138,43,226,.4);

    transition:.3s;

}


.nav-call:hover{

    transform:translateY(-4px);

    box-shadow:
    0 0 25px rgba(183,131,255,.9),
    0 0 60px rgba(138,43,226,.8);

}
/* ==========================
   HERO
========================== */

.hero{

    min-height:calc(100vh - 100px);

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px 20px;

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(circle at top,#6f2cff 0%,#1a102d 35%,#09090b 100%);

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(138,43,226,.35) 0%,
    rgba(138,43,226,.15) 45%,
    transparent 70%);

    filter:blur(35px);

    z-index:0;

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}

.hero h1{

    font-size:5.8rem;

    letter-spacing:2px;

    text-transform:uppercase;

    line-height:1;

    margin-bottom:15px;

    text-shadow:0 0 30px rgba(162,107,255,.65);

}

.hero h2{

    color:#b783ff;

    font-size:2.2rem;

    margin-bottom:30px;

}

.hero p{

    font-size:1.35rem;

    max-width:760px;

    margin:0 auto 50px;

    line-height:1.55;

}

.hero-button{

    display:inline-block;

    background:#7a2cff;

    color:#fff;

    text-decoration:none;

    padding:18px 46px;

    border-radius:50px;

    font-weight:700;

    box-shadow:0 0 30px rgba(138,43,226,.55);

    transition:.3s;
    font-size:1.2rem;
padding:20px 54px;

}

.hero-button:hover{

    transform:translateY(-4px);

    box-shadow:0 0 55px rgba(138,43,226,.9);

}

.sparkle{

    position:absolute;

    width:10px;

    height:10px;

    border-radius:50%;

    background:#fff;

    box-shadow:0 0 20px #b26dff;

}

.sparkle1{top:12%;left:25%;}
.sparkle2{top:25%;right:22%;}
.sparkle3{top:48%;left:18%;}
.sparkle4{top:62%;right:18%;}
.sparkle5{top:35%;left:72%;}


/* ==========================
   REST OF PAGE
========================== */

.hero h1 span{

    display:block;

}


/* ABOUT */

#about{

    max-width:900px;

    margin:100px auto;

    padding:60px 30px;

    background:#15151d;

    border:1px solid rgba(162,107,255,.2);

    border-radius:25px;

    box-shadow:0 0 40px rgba(162,107,255,.15);

}


#about h2{

    text-align:center;

    font-size:3rem;

    color:#ffffff;

    margin-bottom:40px;

    text-shadow:0 0 20px rgba(162,107,255,.6);

}


#about p{

    color:#dddddd;

    font-size:1.15rem;

    line-height:1.8;

    margin-bottom:25px;

}


/* WHY */

#why{

    max-width:1300px;

    margin:100px auto;

    padding:60px 30px;

}


#why h2{

    text-align:center;

    font-size:3rem;

    margin-bottom:50px;

}


.cards{

    display:grid;

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

    gap:30px;

}


.card{

    background:#15151d;

    padding:35px;

    border-radius:20px;

    border:1px solid rgba(162,107,255,.2);

}


.card h3{

    color:#b783ff;

    margin-bottom:15px;

}


.card p{

    color:#dddddd;

}


/* CONTACT */

#contact{

    max-width:900px;

    margin:100px auto;

    padding:60px;

    text-align:center;

    background:#15151d;

    border-radius:25px;

    border:1px solid rgba(162,107,255,.2);

}


#contact h2{

    font-size:3rem;

    margin-bottom:30px;

}


#contact p{

    font-size:1.2rem;

    margin-bottom:20px;

}


#contact .hero-button{

    margin-top:25px;

}
body{
    overflow-x:hidden;
    overflow-y:auto;
}

.hero{
    min-height:calc(100vh - 100px);
    height:auto;
}
/* ==========================
   MAGIC PAGE LOAD
========================== */

.hero-content{

    animation: wizardFade 1.4s ease forwards;

}


@keyframes wizardFade{

    from{

        opacity:0;

        transform:translateY(40px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ==========================
   MAGIC INTRO SCREEN
========================== */

.intro-screen{

    position:fixed;

    inset:0;

    background:#09090b;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:9999;

    animation:introFade 2.8s ease forwards;

}


.intro-screen h1{

    color:white;

    font-size:3rem;

    margin-top:20px;

    text-shadow:0 0 30px rgba(162,107,255,.8);

}


.intro-screen p{

    color:#b783ff;

    font-size:1.3rem;

}


.intro-sparkle{

    font-size:4rem;

    animation:sparklePulse 1.5s infinite;

}


@keyframes sparklePulse{

    0%{
        transform:scale(1);
        opacity:.6;
    }

    50%{
        transform:scale(1.3);
        opacity:1;
    }

    100%{
        transform:scale(1);
        opacity:.6;
    }

}


@keyframes introFade{

    0%,70%{

        opacity:1;

    }

    100%{

        opacity:0;

        visibility:hidden;

    }

}