/* ─── Legal layout ───────────────────────────────────────── */
.legal-body {
    font-family: 'Mulish', sans-serif;
    background: var(--off-white, #faf9f7);
    color: var(--black, #1a1a1a);
    margin: 0;
    padding: 0;
}

.legal-body--bare {
    background: #ffffff;
}

.legal-header {
    background: var(--coral, #F86258);
    padding: 1rem clamp(1.5rem, 6vw, 8rem);
}

.legal-header__brand img {
    height: 28px;
    width: auto;
}

.legal-main {
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.legal-body--bare .legal-main {
    padding: 2rem 1.5rem;
}

.legal-footer {
    background: var(--coral, #F86258);
    padding: 1.5rem clamp(1.5rem, 6vw, 8rem);
}

.legal-footer p {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ─── Legal article ──────────────────────────────────────── */
.legal {
    max-width: 740px;
}

.legal__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1;
    color: var(--black, #1a1a1a);
    margin-bottom: 0.4rem;
}

.legal-body--bare .legal__title {
    font-size: clamp(1.8rem, 5vw, 3rem);
}

.legal__date {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(26, 26, 26, 0.4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.legal__section {
    margin-bottom: 2.5rem;
}

.legal__section h2 {
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--coral, #F86258);
    margin-bottom: 0.75rem;
}

.legal__section p {
    font-size: 0.97rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.75);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal__section ul {
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.legal__section li {
    font-size: 0.97rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.75);
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.legal__section strong {
    color: var(--black, #1a1a1a);
    font-weight: 800;
}

.legal__section a {
    color: var(--coral, #F86258);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ─── Expression of interest page ───────────────────────── */
.interest-page {
    max-width: 600px;
}

.interest-page__headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    color: var(--black, #1a1a1a);
    margin-bottom: 0.75rem;
}

.interest-page__intro {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.65);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.interest-form {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.interest-form__errors {
    background: #fdecea;
    border: 1px solid #f5c6c3;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #c0392b;
}

.interest-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.interest-form__label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--black, #1a1a1a);
}

.interest-form__input {
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black, #1a1a1a);
    background: #fff;
    border: 1.5px solid rgba(26, 26, 26, 0.18);
    border-radius: 6px;
    padding: 0.7rem 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.interest-form__input:focus {
    border-color: var(--coral, #F86258);
}

.interest-form__textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.interest-form__error {
    font-size: 0.82rem;
    color: #c0392b;
}

.interest-form__field--checkbox {
    margin-top: 0.5rem;
}

.interest-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.75);
    line-height: 1.5;
}

.interest-form__checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--coral, #F86258);
    cursor: pointer;
}

.interest-form__submit {
    margin-top: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--coral, #F86258);
    border: none;
    border-radius: 6px;
    padding: 0.85rem 2rem;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}

.interest-form__submit:hover {
    background: #e04f46;
}

/* Confirmation */
.interest-page__inner--confirmation {
    text-align: center;
}

.interest-confirmation__icon {
    font-size: 3rem;
    color: var(--coral, #F86258);
    margin-bottom: 1rem;
}

.interest-confirmation__back {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--coral, #F86258);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Pioneer info button */
.interest-form__info-btn {
    display: inline;
    background: none;
    border: none;
    padding: 0;
    margin-left: 2px;
    font-family: 'Mulish', sans-serif;
    font-size: 0.85em;
    font-weight: 700;
    color: var(--coral, #F86258);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    line-height: inherit;
    vertical-align: baseline;
}

.interest-form__info-btn:hover {
    color: #e04f46;
}

/* Pioneer modal */
.pioneer-modal {
    border: none;
    border-radius: 10px;
    padding: 0;
    max-width: 480px;
    width: calc(100% - 2rem);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    position: fixed;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    margin: 0;
}

.pioneer-modal::backdrop {
    background: rgba(0, 0, 0, 0.45);
}

.pioneer-modal__inner {
    padding: 2rem;
}

.pioneer-modal__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--black, #1a1a1a);
    margin-bottom: 1rem;
}

.pioneer-modal__body {
    font-family: 'Mulish', sans-serif;
    font-size: 0.97rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.75);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.pioneer-modal__close {
    margin-top: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--coral, #F86258);
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.pioneer-modal__close:hover {
    background: #e04f46;
}