:root{
    --primary:#7437ff;
    --secondary:#9d77ff;
    --bg:#f8f8ff;
    --white:#ffffff;
    --text:#181818;
    --muted:#6d6d6d;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    height:100%;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    overflow:hidden;
    color:var(--text);

}

.coming-page{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 24px;
    position:relative;
    z-index:2;
    gap:64px;
}

/*Logo*/

.brand{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.logo{
    width:130px;
    height:130px;
    object-fit:contain;
    flex-shrink:0;
}


/*Hero*/

.hero{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:22px;
    max-width:900px;
    transform:translateY(-40px);
}

.eyebrow{
    display:inline-block;
    padding:8px 20px;
    border-radius:999px;
    background:rgba(116,55,255,.08);
    border:1px solid rgba(116,55,255,.18);
    color:var(--primary);
    font-size:0.8rem;
    font-weight:700;
    letter-spacing:2.5px;
    text-transform:uppercase;
}

h1{
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
    width: min(100% - 32px, 850px);
    margin: 0 auto;      /* Equal left & right spacing */
}

h1 span{
    color:var(--primary);
}


/*Background glow*/

.background-glow{
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    filter:blur(90px);
    opacity:.35;
    pointer-events:none;
}

.glow1{
    top:-150px;
    left:-120px;
    background:var(--primary);
}

.glow2{
    bottom:-150px;
    right:-120px;
    background:var(--secondary);
}

/*Responsive*/

/* Large Tablets & Small Laptops */
@media (max-width: 1024px){

    .coming-page{
        padding:48px 32px;
        gap:48px;
    }

    .hero{
        max-width:700px;
        transform:none;
        gap:20px;
    }

    .brand{
        gap:16px;
    }

    .logo{
        width:120px;
        height:120px;
    }

    h1{
        font-size:clamp(2.3rem,5vw,3.8rem);
        width:100%;
        max-width:16ch;
    }

    .background-glow{
        width:340px;
        height:340px;
        filter:blur(80px);
    }
}

/* Tablets */
@media (max-width:768px){

    .coming-page{
        padding:40px 24px;
        gap:40px;
    }

    .hero{
        max-width:100%;
        gap:18px;
    }

    .brand{
        gap:14px;
    }

    .logo{
        width:100px;
        height:100px;
    }

    h1{
        font-size:clamp(2rem,6vw,3rem);
        line-height:1.2;
        max-width:15ch;
    }

    .eyebrow{
        font-size:.75rem;
        padding:7px 18px;
        letter-spacing:2px;
    }

    .background-glow{
        width:280px;
        height:280px;
        filter:blur(70px);
    }
}

/* Mobile */
@media (max-width:576px){

    .coming-page{
        padding:32px 20px;
        gap:32px;
    }

    .hero{
        gap:16px;
    }

    .brand{
        gap:10px;
    }

    .logo{
        width:85px;
        height:85px;
    }

    h1{
        font-size:clamp(1.8rem,8vw,2.5rem);
        line-height:1.25;
        max-width:100%;
    }

    .eyebrow{
        font-size:.72rem;
        padding:6px 16px;
        letter-spacing:1.5px;
    }

    .background-glow{
        width:220px;
        height:220px;
        filter:blur(60px);
    }
}

/*Small Phones */
@media (max-width: 380px){

    .coming-page{
        min-height:100svh;
        padding:20px 16px;
        gap:20px;
        justify-content:center;
    }

    .hero{
        transform:none;
        gap:14px;
        max-width:100%;
    }

    .logo{
        width:72px;
        height:72px;
    }

    h1{
        width:100%;
        max-width:12ch;
        font-size:clamp(1.55rem,8vw,2rem);
        line-height:1.2;
        margin:0 auto;
        word-break:normal;
        overflow-wrap:break-word;
    }

    .eyebrow{
        font-size:.68rem;
        padding:5px 14px;
    }
}