/* Raíz pública provisional — misma base visual que construction. */

.start-page__title {
    max-width: 22ch;
}

.start-page__lead {
    margin: 0 auto 2rem;
    max-width: 34rem;
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.65;
}

.start-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 0 0 2.75rem;
}

.start-page__actions--after {
    margin: 2.75rem 0 0;
}

.start-page__path {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.start-page__path:hover {
    border-color: rgba(191, 219, 254, 0.45);
    transform: translateY(-2px);
}

.start-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.7rem 1.35rem;
    border-radius: 0.85rem;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.start-page__btn--primary {
    background: #2563eb;
    color: #f8fafc;
    border: 1px solid #2563eb;
}

.start-page__btn--primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.start-page__btn--ghost {
    background: rgba(15, 23, 42, 0.55);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.start-page__btn--ghost:hover {
    border-color: rgba(191, 219, 254, 0.45);
    color: #f8fafc;
}

@media (max-width: 680px) {
    .start-page__title {
        max-width: none;
    }

    .start-page__actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 2.25rem;
    }
}
