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

body{

font-family:Inter,Arial,sans-serif;

background:#0f0f10;

display:flex;

justify-content:center;

align-items:center;

min-height:100vh;

overflow-x:hidden;

color:white;

}

.bg{

position:fixed;

width:100%;

height:100%;

background:

radial-gradient(circle at top left,#ff000035,transparent 35%),

radial-gradient(circle at bottom right,#ff000025,transparent 35%),

linear-gradient(135deg,#0f0f10,#181818);

z-index:-1;

}

.container{

width:430px;

max-width:95%;

}

.logo{

display:block;

width:320px;

max-width:90%;

margin:0 auto 35px;

background:white;

padding:18px;

border-radius:18px;

}

h1{

text-align:center;

font-size:42px;

font-weight:800;

margin-bottom:15px;

}

.description{

text-align:center;

color:#d4d4d4;

line-height:1.7;

margin-bottom:40px;

font-size:18px;

}

.card{

display:flex;

align-items:center;

padding:18px;

margin-bottom:20px;

border-radius:22px;

text-decoration:none;

background:#1b1b1d;

color:white;

transition:.25s;

box-shadow:

0 20px 50px rgba(0,0,0,.45);

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

}

.card:hover{

transform:translateY(-5px);

}

.icon{

width:72px;

height:72px;

border-radius:18px;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

margin-right:20px;

flex-shrink:0;

}

.red .icon{

background:#e30613;

}

.blue .icon{

background:#229ED9;

}

.green .icon{

background:#25D366;

}

.text{

flex:1;

}

.text h2{

font-size:26px;

margin-bottom:8px;

}

.text span{

color:#cfcfcf;

font-size:18px;

}

.arrow{

font-size:24px;

opacity:.6;

}

.features{

margin-top:35px;

display:flex;

justify-content:space-between;

text-align:center;

}

.features div{

width:30%;

}

.features i{

font-size:34px;

color:#ff3030;

margin-bottom:10px;

}

.features p{

font-size:15px;

color:#ddd;

}