*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter,sans-serif;
}

body{

background:#fafaff;
overflow:hidden;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
position:relative;

}

.bg1{

position:absolute;
width:550px;
height:550px;
background:#7b4dff25;
border-radius:50%;
top:-180px;
left:-150px;
filter:blur(90px);

}

.bg2{

position:absolute;
width:500px;
height:500px;
background:#4d8cff20;
border-radius:50%;
bottom:-180px;
right:-120px;
filter:blur(100px);

}

.coming{

width:min(1400px,92%);
height:85vh;

background:white;

border-radius:35px;

display:flex;

overflow:hidden;

box-shadow:
0 30px 80px rgba(0,0,0,.08);

position:relative;

}

.left{

flex:1;

padding:80px;

display:flex;
flex-direction:column;
justify-content:center;

}

.logo{

font-size:34px;
font-weight:800;

color:#6d42ff;

margin-bottom:30px;

}

.badge{

display:inline-flex;

width:max-content;

padding:10px 20px;

background:#f2edff;

color:#6d42ff;

border-radius:50px;

font-weight:600;

margin-bottom:25px;

}

.left h1{

font-size:72px;
font-weight:800;
line-height:1.05;

margin-bottom:25px;

color:#111;

}

.left h1 span{

color:#6d42ff;

}

.left p{

font-size:18px;

color:#666;

max-width:580px;

line-height:1.8;

margin-bottom:45px;

}

.countdown{

display:flex;
gap:20px;

margin-bottom:50px;

}

.countdown div{

width:110px;
height:110px;

border-radius:25px;

background:white;

box-shadow:0 15px 40px rgba(0,0,0,.06);

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

}

.countdown h2{

font-size:42px;

color:#6d42ff;

}

.countdown span{

margin-top:5px;

color:#777;

}

.notify{

display:flex;

width:100%;
max-width:580px;

gap:15px;

}

.notify input{

flex:1;

height:65px;

border:none;

outline:none;

padding:0 25px;

border-radius:18px;

background:#f5f6fa;

font-size:16px;

}

.notify button{

width:180px;

border:none;

background:#6d42ff;

color:white;

font-size:17px;

border-radius:18px;

cursor:pointer;

transition:.3s;

}

.notify button:hover{

transform:translateY(-3px);

}

.right{

flex:1;

position:relative;

display:flex;
justify-content:center;
align-items:center;

background:linear-gradient(
135deg,
#f8f5ff,
#ffffff
);

overflow:hidden;

}

.circle{

position:absolute;

width:520px;
height:520px;

border-radius:50%;

background:linear-gradient(
135deg,
#6d42ff,
#8f7dff
);

opacity:.12;

}

.main-card{

width:340px;

padding:50px;

border-radius:30px;

background:rgba(255,255,255,.85);

backdrop-filter:blur(20px);

text-align:center;

box-shadow:0 25px 60px rgba(0,0,0,.08);

z-index:10;

}

.main-card i{

font-size:80px;

color:#6d42ff;

margin-bottom:30px;

}

.main-card h3{

font-size:34px;

margin-bottom:15px;

}

.main-card p{

line-height:1.8;

color:#666;

}

.product{

position:absolute;

width:95px;
height:95px;

border-radius:25px;

background:white;

display:flex;
justify-content:center;
align-items:center;

font-size:42px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

animation:float 4s infinite ease-in-out;

}

.one{

top:120px;
left:120px;

}

.two{

top:170px;
right:130px;

animation-delay:1s;

}

.three{

bottom:130px;
left:120px;

animation-delay:2s;

}

.four{

bottom:150px;
right:130px;

animation-delay:3s;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

@media(max-width:1000px){

body{

height:auto;
padding:40px 0;

overflow:auto;

}

.coming{

flex-direction:column;

height:auto;

}

.left{

padding:50px 30px;

}

.right{
    display: none;

height:500px;

}

.left h1{

font-size:48px;

}

.countdown{

flex-wrap:wrap;

}

.countdown div{

width:90px;
height:90px;

}

.notify{

flex-direction:column;

}

.notify button{

width:100%;
height:60px;

}

}

@media(max-width:700px){
    .right{
        display: none;
    }
}