.hero{
    min-height:calc(100vh - 78px);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero h1{
    max-width:950px;

    font-size:clamp(52px,6vw,78px);
    font-weight:800;
    line-height:1.05;
    letter-spacing:-2px;

    margin-bottom:28px;
}

.hero p{
    max-width:760px;

    color:var(--muted);

    font-size:22px;
    line-height:1.7;

    margin-bottom:48px;
}

.hero .buttons{
    display:flex;
    gap:20px;
}

.button{
    padding:16px 34px;

    border-radius:8px;

    font-size:16px;
    font-weight:600;

    transition:.2s;
}

.button-primary{
    background:var(--primary);
    color:white;
}

.button-primary:hover{
    background:var(--primary-hover);
}

.button-secondary{
    border:1px solid var(--border);
    color:var(--text);
}

.button-secondary:hover{
    border-color:var(--primary);
    color:var(--primary);
}

.home-products{
    width:min(var(--max-width),calc(100% - 80px));
    margin:0 auto;
    padding:80px 0;
}

.home-products h2{
    margin-bottom:32px;
    font-size:42px;
}

.hero-actions{
    display:flex;
    gap:20px;
}

.home-products .feature-card a{
    display:inline-block;
    margin-top:18px;
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
}

.home-products{
    width:min(var(--max-width),calc(100% - 80px));
    margin:0 auto;
    padding:100px 0;
}

.home-products h2{
    text-align:center;
    font-size:44px;
    margin-bottom:48px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.product-card{
    background:#111827;
    border:1px solid #1f2937;
    border-radius:12px;
    padding:28px;
    transition:.2s;
}

.product-card:hover{
    border-color:var(--primary);
    transform:translateY(-4px);
}

.product-card h3{
    margin:0 0 12px;
    font-size:28px;
}

.product-card p{
    margin:0 0 24px;
    color:var(--muted);
    line-height:1.6;
}

.product-card a{
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
}