/* Newsletter confirm / unsubscribe result page, and the signup form that lives
   in the footer. Scoped .nl* so nothing here touches the legacy cascade. */

:root { --nl-brand: #E32D44; --nl-ink: #2c2c38; --nl-muted: #5a5a67; }

/* ---------- result page ---------- */
.nlp {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(50px, 9vw, 110px) 20px;
}
.nlp__card {
    width: 100%;
    max-width: 520px;
    text-align: center;
    background: #fff;
    border-radius: 18px;
    padding: clamp(30px, 5vw, 48px) clamp(22px, 4vw, 42px);
    box-shadow: 0 10px 34px rgba(30, 22, 40, .10);
}
.nlp__icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.nlp__icon svg { width: 30px; height: 30px; }
.nlp__icon--ok  { background: rgba(21, 128, 61, .10);  color: #15803d; }
.nlp__icon--off { background: rgba(90, 90, 103, .10);  color: var(--nl-muted); }
.nlp__icon--err { background: rgba(227, 45, 68, .10);  color: var(--nl-brand); }

.nlp__title {
    margin: 0 0 12px;
    font-size: clamp(21px, 2.4vw, 27px);
    line-height: 1.3;
    color: var(--nl-ink);
}
.nlp__text {
    margin: 0 0 26px;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--nl-muted);
}
.nlp__btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 100px;
    background: var(--nl-brand);
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s ease;
}
.nlp__btn:hover { background: #c8253a; color: #fff; text-decoration: none; }

/* ---------- signup form ---------- */
.nlf { max-width: 460px; }
.nlf__row { display: flex; gap: 8px; flex-wrap: wrap; }
.nlf__input {
    flex: 1 1 220px;
    min-width: 0;
    height: 46px;
    padding: 0 16px;
    border: 1px solid #d9d9e0;
    border-radius: 8px;
    background: #fff;
    font-size: 14.5px;
    color: var(--nl-ink);
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.nlf__input:focus {
    border-color: var(--nl-brand);
    box-shadow: 0 0 0 3px rgba(227, 45, 68, .12);
}
.nlf__btn {
    flex: 0 0 auto;
    height: 46px;
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
    background: var(--nl-brand);
    color: #fff;
    font-size: 14.5px;
    cursor: pointer;
    transition: background .2s ease;
}
.nlf__btn:hover { background: #c8253a; }

/* honeypot — hidden from people, visible to naive bots */
.nlf__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.nlf__note { margin: 9px 0 0; font-size: 12.5px; line-height: 1.6; }
.nlf__note--ok  { color: #15803d; }
.nlf__note--err { color: #b91c1c; }
.nlf__hint { margin: 9px 0 0; font-size: 12px; line-height: 1.6; color: #8a8a96; }

@media (prefers-reduced-motion: reduce) {
    .nlf__input, .nlf__btn, .nlp__btn { transition: none; }
}
