.hero {
    padding: 100px 0 80px;
    text-align: center;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-primary);
}

.subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.description {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-tagline {
    display: none;
}

.subtitle-alt {
    display: none;
}

@media (max-width: 768px) {
    .hero h1:not(.hero-tagline) {
        display: none;
    }

    .subtitle:not(.subtitle-alt) {
        display: none;
    }

    .hero-tagline {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 48px;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 25px;
        letter-spacing: -1px;
    }

    .tagline-keep,
    .tagline-code {
        color: var(--text-primary);
    }

    .tagline-context,
    .tagline-and,
    .tagline-on {
        color: #FFC107;
    }

    .subtitle-alt {
        display: block;
        font-size: 22px;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .hero {
        padding: 60px 0 60px;
    }

    .description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
