.hero {
    position: relative;
    padding: 2.75rem 0 0;
}

.hero-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 1.25rem;
}

.hero-eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
}

.hero-h1 {
    font-size: clamp(2.15rem, 5vw, 3.2rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--navy-text);
    margin: 0 0 0.85rem;
}

[data-theme="dark"] .hero-h1 {
    color: var(--navy);
}

.hero-p {
    font-size: 1.22rem;
    line-height: 1.65;
    color: var(--muted);
    margin: 0 0 1.5rem;
    text-align: justify;
    text-justify: inter-word;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

@media (max-width: 900px) {
    .hero {
        padding: 1.75rem 0 0;
    }
    .hero-intro {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 1.15rem 0 0;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 22rem;
    }
    .hero-buttons .btn {
        justify-content: center;
        padding: 0.85rem 1.4rem;
        font-size: 1.05rem;
        min-height: 3rem;
        box-sizing: border-box;
    }
}
