/*==========================
RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#050505;

    color:white;

    overflow-x:hidden;

    font-family:"Space Grotesk",sans-serif;

    min-height:100vh;

}

/*==========================
VARIABLES
==========================*/

:root{

    --purple:#8B3DFF;

    --purpleLight:#B57CFF;

    --gray:#9b9b9b;

    --white:#fff;

}

/*==========================
BACKGROUND
==========================*/

.background{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:-20;

    background:#050505;

}

/* Glow */

.hero-glow{

    position:absolute;

    left:50%;

    top:22%;

    transform:translateX(-50%);

    width:min(900px,70vw);

    aspect-ratio:1;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(139,61,255,.65),

    rgba(139,61,255,.15) 45%,

    transparent 75%);

    filter:blur(90px);

    animation:glow 8s ease-in-out infinite;

}

/* Noise */

.noise{

    position:absolute;

    inset:0;

    background-image:

    radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);

    background-size:4px 4px;

    opacity:.18;

    mix-blend-mode:soft-light;

}

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    padding:32px clamp(30px,5vw,70px);

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo-small{

    font-size:34px;

    font-weight:700;

}

.logo-small sup{

    font-size:10px;

}

.header-right{

    display:flex;

    align-items:center;

    gap:50px;

}

.sound{

    font-size:12px;

    letter-spacing:5px;

}

.sound span{

    color:var(--purpleLight);

}

.menu{

    background:none;

    border:none;

    color:white;

    display:flex;

    align-items:center;

    gap:16px;

    letter-spacing:4px;

    cursor:pointer;

}

.menu span{

    width:22px;

    height:2px;

    background:white;

    display:block;

    position:relative;

}

.menu span::before,

.menu span::after{

    content:"";

    position:absolute;

    left:0;

    width:22px;

    height:2px;

    background:white;

}

.menu span::before{

    top:-6px;

}

.menu span::after{

    top:6px;

}

.hero{

    min-height:100svh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    padding:

    clamp(120px,15vh,180px)

    30px

    80px;

}

.hero-content{

    width:min(1000px,92vw);

    display:flex;

    flex-direction:column;

    align-items:center;

    position:relative;

    z-index:5;

}

.hero-logo{

    width:clamp(150px,18vw,230px);

    margin-bottom:45px;

    filter:

    drop-shadow(0 0 25px rgba(139,61,255,.8))

    drop-shadow(0 0 60px rgba(139,61,255,.45));

    animation:floatLogo 6s ease-in-out infinite;

}
.hero h1{

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(5rem,10vw,8rem);

    font-weight:500;

    letter-spacing:18px;

    text-transform:uppercase;

    line-height:.9;

}
.hero h2{

    margin-top:18px;

    font-size:clamp(1.4rem,2vw,2rem);

    letter-spacing:14px;

    font-weight:300;

}
.hero p{

    margin-top:28px;

    color:#b58cff;

    letter-spacing:8px;

    font-size:14px;

    text-transform:uppercase;

}
.coming-button{

    margin-top:65px;

    width:min(460px,90vw);

    height:72px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    text-decoration:none;

    letter-spacing:8px;

    border:1px solid rgba(139,61,255,.8);

    transition:.35s;

    backdrop-filter:blur(25px);

    background:rgba(255,255,255,.02);

}

.coming-button:hover{

    background:rgba(139,61,255,.12);

    box-shadow:

    0 0 40px rgba(139,61,255,.35);

}
@keyframes glow{

    0%,100%{
    
    transform:translateX(-50%) scale(1);
    
    }
    
    50%{
    
    transform:translateX(-50%) scale(1.08);
    
    }
    
    }
    
    @keyframes floatLogo{
    
    0%,100%{
    
    transform:translateY(0);
    
    }
    
    50%{
    
    transform:translateY(-10px);
    
    }
    
    }


    /*==========================================
LAUNCH PANEL
==========================================*/

.launch-panel{

    border-top:1px solid rgba(255,255,255,.07);

    margin-top:-60px;

    position:relative;

    z-index:5;

}

.launch-grid{

    width:min(1500px,92vw);

    margin:auto;

    display:grid;

    grid-template-columns:

    1fr

    1.1fr

    .8fr;

}

.launch-box{

    padding:70px 60px;

}

.launch-box:not(:last-child){

    border-right:1px solid rgba(255,255,255,.07);

}

.launch-box h4{

    color:#B57CFF;

    letter-spacing:6px;

    margin-bottom:25px;

    font-size:13px;

    font-weight:400;

}

.count-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.count-grid span{

    display:block;

    font-size:62px;

    font-weight:300;

    color:#9d52ff;

}

.count-grid small{

    letter-spacing:4px;

    color:#888;

}

.launch-box form{

    margin-top:25px;

    display:flex;

}

.launch-box input{

    flex:1;

    height:62px;

    background:#090909;

    border:1px solid rgba(139,61,255,.35);

    color:white;

    padding:0 22px;

}

.launch-box button{

    width:70px;

    background:#8B3DFF;

    color:white;

    border:none;

    font-size:24px;

    cursor:pointer;

}
.social-box{

    text-align:center;

}

.socials{

    display:flex;

    justify-content:center;

    gap:45px;

    margin-top:40px;

}

.socials a{

    color:white;

    letter-spacing:3px;

    transition:.35s;

}

.socials a:hover{

    color:#B57CFF;

}

@media(max-width:1100px){

    .launch-grid{
    
    grid-template-columns:1fr;
    
    }
    
    .launch-box{
    
    border-right:none !important;
    
    border-bottom:1px solid rgba(255,255,255,.07);
    
    }
    
    }

    .smoke-container{

        position:absolute;
        
        inset:0;
        
        pointer-events:none;
        
        overflow:hidden;
        
        z-index:2;
        
        }
        
        .smoke{
        
        position:absolute;
        
        opacity:.16;
        
        filter:blur(4px);
        
        mix-blend-mode:screen;
        
        }
        
        .smoke1{
        
        left:-120px;
        
        bottom:120px;
        
        width:650px;
        
        animation:smokeLeft 18s linear infinite;
        
        }
        
        .smoke2{
        
        right:-120px;
        
        top:140px;
        
        width:620px;
        
        animation:smokeRight 22s linear infinite reverse;
        
        }
        
        @keyframes smokeLeft{
        
        0%{
        
        transform:
        translateX(0)
        translateY(0)
        scale(1);
        
        }
        
        100%{
        
        transform:
        translateX(80px)
        translateY(-60px)
        scale(1.2);
        
        }
        
        }
        
        @keyframes smokeRight{
        
        0%{
        
        transform:
        translateX(0)
        translateY(0)
        scale(1);
        
        }
        
        100%{
        
        transform:
        translateX(-90px)
        translateY(60px)
        scale(1.3);
        
        }
        
        }


        .cursor{

            position:fixed;
            
            width:18px;
            
            height:18px;
            
            border-radius:50%;
            
            background:white;
            
            pointer-events:none;
            
            z-index:99999;
            
            }
            
            .cursor-glow{
            
            position:fixed;
            
            width:220px;
            
            height:220px;
            
            border-radius:50%;
            
            background:rgba(139,61,255,.22);
            
            filter:blur(60px);
            
            pointer-events:none;
            
            }