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

body{

    font-family:Inter,sans-serif;

    background:#f8fafc;

    color:#0f172a;

}

.container{

    width:min(1150px,92%);

    margin:auto;

}

.hero{

    padding:90px 0 60px;

    text-align:center;

}

.hero h1{

    font-size:58px;

    font-weight:800;

}

.hero span{

    color:#2563eb;

}

.hero p{

    margin-top:18px;

    font-size:20px;

    color:#64748b;

}

.hero input{

    margin-top:40px;

    width:min(500px,100%);

    padding:18px 22px;

    border-radius:16px;

    border:1px solid #dbe2ea;

    font-size:16px;

    outline:none;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:24px;

    margin-bottom:80px;

}

.card{

    background:white;

    border-radius:22px;

    padding:30px;

    text-decoration:none;

    color:inherit;

    border:1px solid #e2e8f0;

    transition:.25s;

}

.card:hover{

    transform:translateY(-6px);

    border-color:#2563eb;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.emoji{

    font-size:44px;

    margin-bottom:20px;

}

.card h2{

    margin-bottom:14px;

}

.card p{

    color:#64748b;

    line-height:1.6;

}

.card span{

    display:inline-block;

    margin-top:24px;

    color:#2563eb;

    font-weight:700;

}

.disabled{

    opacity:.55;

    cursor:not-allowed;

}

footer{

    text-align:center;

    padding:40px;

    color:#94a3b8;

}
