.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 80px;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-body) 100%);

    .hero-logo {
        width: 96px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 3em;
        font-weight: 800;
        color: var(--text-main);
        margin-bottom: 12px;
    }

    .hero-tagline {
        color: var(--text-sub);
        font-size: 1.15em;
        line-height: 1.5;
        margin-bottom: 28px;
        max-width: 580px;
    }

    .hero-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
}
