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

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#050816;

    color:#fff;

    overflow-x:hidden;

    min-height:100vh;

    position:relative;

}


/* ===========================
   BACKGROUND
=========================== */

.background{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:-2;

    background:
    radial-gradient(circle at top,#202860 0%,#090b18 45%,#04050b 100%);
}


/* Grid */

.grid{

    position:absolute;

    inset:0;

    background-image:

        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),

        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);

    background-size:50px 50px;

    mask-image:linear-gradient(to bottom,black 40%,transparent);

    opacity:.35;

}


/* ===========================
   BLOBS
=========================== */

.blob{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    opacity:.6;

    animation:float 14s ease-in-out infinite;

}

.blob1{

    width:420px;
    height:420px;

    background:#7c3aed;

    top:-120px;
    left:-100px;

}

.blob2{

    width:500px;
    height:500px;

    background:#2563eb;

    right:-180px;
    top:180px;

    animation-delay:3s;

}

.blob3{

    width:350px;
    height:350px;

    background:#ec4899;

    bottom:-100px;
    left:40%;

    animation-delay:6s;

}

@keyframes float{

0%,100%{

transform:translateY(0) translateX(0);

}

50%{

transform:translateY(-50px)
translateX(40px);

}

}


/* ===========================
   LAYOUT
=========================== */

main{

    width:min(1200px,92%);

    margin:auto;

}

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px 0;

}


/* ===========================
   GLASS CARD
=========================== */

.card{

    width:100%;

    max-width:900px;

    text-align:center;

    padding:70px;

    border-radius:30px;

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

    backdrop-filter:blur(22px);

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

    box-shadow:

    0 40px 80px rgba(0,0,0,.45);

}


/* ===========================
   STATUS
=========================== */

.status{

    display:inline-flex;

    align-items:center;

    gap:12px;

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

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

    padding:10px 20px;

    border-radius:100px;

    font-size:.9rem;

    margin-bottom:35px;

}

.dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#00ff8c;

    animation:pulse 1.5s infinite;

}

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(0,255,140,.8);

}

100%{

box-shadow:0 0 0 14px rgba(0,255,140,0);

}

}


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

.logo{

    font-size:5rem;

    font-weight:800;

    letter-spacing:-3px;

    background:

    linear-gradient(90deg,#ffffff,#8ab4ff,#b388ff,#ffffff);

    background-size:300%;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    animation:shine 8s linear infinite;

}

@keyframes shine{

0%{

background-position:0%;

}

100%{

background-position:300%;

}

}


/* ===========================
   HERO TEXT
=========================== */

.card h2{

    margin-top:25px;

    font-size:2.6rem;

    line-height:1.2;

}

.lead{

    margin:30px auto;

    max-width:700px;

    color:#c8d2e8;

    font-size:1.15rem;

    line-height:1.9;

}


/* ===========================
   BUTTONS
=========================== */

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:45px;

}

.btn{

    padding:16px 34px;

    text-decoration:none;

    color:white;

    border-radius:14px;

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

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

    transition:.35s;

}

.btn:hover{

    transform:translateY(-4px);

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

}

.primary{

    background:linear-gradient(135deg,#2563eb,#7c3aed);

    border:none;

}

.primary:hover{

    box-shadow:

    0 15px 35px rgba(99,102,241,.4);

}


/* ===========================
   FEATURES
=========================== */

.features{

    display:grid;

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

    gap:30px;

    margin:120px 0;

}

.feature{

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

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

    border-radius:22px;

    padding:40px;

    transition:.35s;

}

.feature:hover{

    transform:translateY(-8px);

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

}

.icon{

    font-size:2.2rem;

    margin-bottom:20px;

}

.feature h3{

    margin-bottom:18px;

}

.feature p{

    color:#c8d2e8;

    line-height:1.7;

}


/* ===========================
   NEWSLETTER
=========================== */

.newsletter{

    margin-bottom:120px;

}

.newsletter-card{

    padding:60px;

    text-align:center;

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

    border-radius:28px;

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

}

.newsletter-card p{

    margin:20px auto 35px;

    color:#c8d2e8;

}

form{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}

input{

    width:320px;

    max-width:100%;

    padding:16px 20px;

    border:none;

    border-radius:12px;

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

    color:white;

    outline:none;

}

input::placeholder{

    color:#a8b3ca;

}

button{

    padding:16px 28px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    font-weight:600;

    color:white;

    background:linear-gradient(135deg,#2563eb,#7c3aed);

    transition:.3s;

}

button:hover{

    transform:translateY(-3px);

}


/* ===========================
   FOOTER
=========================== */

footer{

    text-align:center;

    padding:50px 20px;

    color:#8ea0c3;

}

footer span{

    margin:0 10px;

}


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

@media(max-width:768px){

.card{

padding:45px 30px;

}

.logo{

font-size:3.4rem;

}

.card h2{

font-size:2rem;

}

.lead{

font-size:1rem;

}

.newsletter-card{

padding:40px 25px;

}

}



/* ===========================
Reveal Animation
=========================== */

.hidden{

opacity:0;

transform:translateY(50px);

transition:1s ease;

}

.show{

opacity:1;

transform:none;

}


/* ===========================
Mouse Glow
=========================== */

.mouse-glow{

position:fixed;

width:350px;

height:350px;

pointer-events:none;

border-radius:50%;

background:radial-gradient(circle,
rgba(124,58,237,.18),
transparent 70%);

transform:translate(-50%,-50%);

filter:blur(25px);

z-index:-1;

}


/* ===========================
Stars
=========================== */

.star{

position:fixed;

width:2px;

height:2px;

background:white;

border-radius:50%;

opacity:.6;

animation:twinkle infinite ease-in-out;

pointer-events:none;

z-index:-1;

}

@keyframes twinkle{

0%,100%{

opacity:.2;

transform:scale(.5);

}

50%{

opacity:1;

transform:scale(1.5);

}

}