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

body{

    font-family:Poppins,sans-serif;

    background:linear-gradient(135deg,#184D47,#0d302c);

    color:#fff;

    min-height:100vh;

    overflow-x:hidden;

    position:relative;
}

.overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:

    radial-gradient(circle at top left,
    rgba(212,175,55,.25),
    transparent 45%),

    radial-gradient(circle at bottom right,
    rgba(255,255,255,.08),
    transparent 45%);

}

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px 20px;

    position:relative;

    z-index:2;
}

.container{

    width:100%;

    max-width:900px;

    text-align:center;

    padding:60px;

    border-radius:28px;

    backdrop-filter:blur(20px);

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

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

    box-shadow:0 25px 80px rgba(0,0,0,.25);

}

.logo{

    font-family:'Playfair Display',serif;

    font-size:52px;

    font-weight:700;

    margin-bottom:15px;

    letter-spacing:2px;

}

.logo span{

    color:#D4AF37;

    margin:0 8px;
}

.coming{

    color:#D4AF37;

    font-size:20px;

    letter-spacing:5px;

    margin-bottom:20px;

    text-transform:uppercase;
}

h1{

    font-family:'Playfair Display',serif;

    font-size:56px;

    line-height:1.2;

    margin-bottom:25px;
}

.description{

    max-width:650px;

    margin:auto;

    line-height:1.9;

    color:#ddd;

    font-size:17px;

}

.newsletter{

    display:flex;

    justify-content:center;

    margin-top:45px;

    gap:15px;

    flex-wrap:wrap;

}

.newsletter input{

    width:380px;

    max-width:100%;

    padding:18px 22px;

    border:none;

    border-radius:60px;

    font-size:15px;

    outline:none;

}

.newsletter button{

    background:#D4AF37;

    color:#184D47;

    border:none;

    padding:18px 35px;

    border-radius:60px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;
}

.newsletter button:hover{

    transform:translateY(-3px);

    background:#f0cb5d;
}

.countdown{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin:60px 0;

}

.box{

    padding:25px;

    border-radius:20px;

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

}

.box h2{

    font-size:42px;

    color:#D4AF37;
}

.box span{

    color:#ccc;

}

.features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:20px;

}

.features div{

    padding:18px;

    border-radius:15px;

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

}

blockquote{

    margin-top:55px;

    font-family:'Playfair Display',serif;

    font-size:28px;

    color:#f5e3aa;

    line-height:1.7;

}

footer{

    margin-top:60px;

    color:#bbb;

    font-size:14px;

}

@media(max-width:768px){

.container{

padding:40px 25px;

}

.logo{

font-size:38px;

}

h1{

font-size:38px;

}

.countdown{

grid-template-columns:repeat(2,1fr);

}

.features{

grid-template-columns:repeat(2,1fr);

}

blockquote{

font-size:22px;

}

}

@media(max-width:480px){

.countdown{

grid-template-columns:1fr 1fr;

gap:12px;

}

.box h2{

font-size:30px;

}

.features{

grid-template-columns:1fr;

}

.newsletter{

flex-direction:column;

}

.newsletter button{

width:100%;

}

.newsletter input{

width:100%;

}

}