.home-page{
    display:flex;
    flex-direction:column;
    gap:38px;
}

.home-hero{
    padding:24px 0 0;
}

.home-hero-card{
    background:linear-gradient(135deg,#0f172a,#111827 55%,#0f766e);
    border-radius:32px;
    color:#fff;
    padding:62px 34px;
    text-align:center;
    box-shadow:0 20px 50px rgba(15,23,42,.18);
}

.home-eyebrow{
    display:inline-flex;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);
    font-weight:900;
    margin-bottom:18px;
}

.home-hero-card h1{
    max-width:860px;
    margin:0 auto;
    font-size:54px;
    line-height:1.04;
    letter-spacing:-.055em;
}

.home-hero-card p{
    max-width:740px;
    margin:20px auto 0;
    color:rgba(255,255,255,.76);
    line-height:1.8;
    font-size:17px;
}

.home-hero-actions{
    margin-top:28px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

.feature-strip-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}

.feature-strip-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:18px;
    box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.feature-strip-card strong{
    display:block;
    font-size:17px;
}

.feature-strip-card span{
    display:block;
    margin-top:6px;
    color:var(--muted);
    line-height:1.6;
}

.homepage-section{
    padding-bottom:10px;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:16px;
    margin-bottom:20px;
}

.section-eyebrow{
    color:#0f766e;
    font-weight:950;
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:.08em;
}

.section-head h2{
    margin:6px 0 0;
    font-size:34px;
    letter-spacing:-.04em;
}

.section-head a{
    font-weight:900;
    color:#0f766e;
}

.home-empty-products{
    text-align:center;
    padding:38px 22px;
}

.home-empty-products h3{
    margin:0;
    font-size:26px;
    letter-spacing:-.03em;
}

.home-empty-products p{
    color:var(--muted);
    max-width:620px;
    margin:12px auto 20px;
    line-height:1.8;
}

@media(max-width:900px){
    .feature-strip-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .home-hero-card{
        text-align:left;
        padding:44px 24px;
    }

    .home-hero-card h1{
        font-size:38px;
    }

    .home-hero-actions{
        justify-content:flex-start;
    }

    .section-head{
        align-items:flex-start;
        flex-direction:column;
    }
}

@media(max-width:560px){
    .feature-strip-grid{
        grid-template-columns:1fr;
    }

    .home-hero-card h1{
        font-size:32px;
    }
}
