*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
min-height:100vh;
background:
linear-gradient(rgba(17,24,39,.86),rgba(17,24,39,.86)),
radial-gradient(circle at top left,rgba(247,148,29,.20),transparent 28%),
radial-gradient(circle at bottom right,rgba(247,148,29,.18),transparent 30%),
#111827;
color:#243447;
}

.page{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:28px;
}

.card{
width:100%;
max-width:760px;
background:#ffffff;
border-radius:26px;
padding:58px 42px;
text-align:center;
box-shadow:0 28px 80px rgba(0,0,0,.38);
}

.logo{
width:220px;
max-width:82%;
display:block;
margin:0 auto 30px;
}

.orange-line{
width:110px;
height:3px;
background:#f7941d;
margin:0 auto 34px;
border-radius:10px;
}

h1{
max-width:680px;
margin:0 auto 22px;
font-size:48px;
line-height:1.15;
letter-spacing:-1.5px;
color:#243447;
font-weight:800;
}

.text{
max-width:620px;
margin:0 auto 8px;
font-size:21px;
line-height:1.65;
color:#3f4f5f;
}

.soon{
font-size:20px;
font-weight:700;
color:#243447;
margin-bottom:30px;
}

.divider{
width:240px;
height:1px;
background:#e5e7eb;
margin:0 auto 24px;
}

.email{
color:#243447;
font-size:22px;
font-weight:700;
text-decoration:none;
}

.email:hover{
color:#f7941d;
}

@media(max-width:700px){
.card{
padding:42px 22px;
border-radius:22px;
}

.logo{
width:190px;
}

h1{
font-size:34px;
letter-spacing:-.8px;
}

.text{
font-size:18px;
}

.soon{
font-size:18px;
}

.email{
font-size:19px;
}
}