/* ===== HOME ===== */

.home-hero{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:24px;
}

.ffn-title{
    font-size:2rem;
    font-weight:700;
    color:#0b4f8a;
    margin:0;
}

.ffn-subtitle{
    color:#666;
    margin-top:-8px;
    font-size:.95rem;
}

.status-card{
    background:linear-gradient(135deg,#0d6efd,#3fa9ff);
    color:white;
    border-radius:20px;
    padding:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.status-card h3{
    margin:0 0 10px;
}

.status-row{
    display:flex;
    justify-content:space-between;
    margin:8px 0;
}

.start-button{
    width:100%;
    border:none;
    border-radius:18px;
    padding:18px;
    font-size:1.2rem;
    font-weight:bold;
    background:#ff7a00;
    color:white;
    cursor:pointer;
    transition:.2s;
}

.start-button:hover{
    transform:scale(1.02);
}

@media (min-width:900px){

    .home-hero{
        max-width:700px;
        margin:auto;
    }

}