.ngt-persona {
    position: relative;
    min-height: 70vh;
    background-image: var(--ngt-persona-bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 96px 24px 120px;
    color: #0b0b0b;
}

.ngt-persona::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
}

.ngt-persona__content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    z-index: 1;
}

.ngt-persona__label {
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.ngt-persona__title {
    font-size: clamp(28px, 4vw, 52px);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ngt-persona__subtitle {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 auto 24px;
    max-width: 520px;
}

.ngt-persona__powers {
    margin: 24px auto 32px;
}

.ngt-persona__powers-title {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ngt-persona__powers ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.ngt-persona__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.ngt-persona__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 18px;
    background: #0b0b0b;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 11px;
    border: 1px solid #0b0b0b;
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.ngt-persona__cta--ghost {
    background: transparent;
    color: #0b0b0b;
}

.ngt-persona__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .ngt-persona {
        padding: 72px 20px 96px;
    }
}
