/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Assistant', sans-serif;
    font-size: 16px;
    color: #121212;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

/* ── Skip link ── */
.skip-link {
    position: absolute;
    top: -999px;
    left: 0;
    background: #000;
    color: #fff;
    padding: .5rem 1rem;
    z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ── Full-width hero images ── */
.banner-image {
    width: 70%;
    margin: 0 auto;
    display: block;
    line-height: 0;
}
.banner-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ── Sign-up section ── */
.signup-wrap {
    padding: 5rem 1.5rem;
    text-align: center;
    margin: 0 auto;
    background: #344eb5;
}

.signup-wrap h2 {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.signup-wrap p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #121212;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: stretch;
}

.email-form label {
    font-size: .875rem;
    font-weight: 600;
    text-align: left;
    letter-spacing: .04em;
}

.email-form input[type="email"] {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid rgba(18,18,18,.2);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    color: #121212;
    background: #fff;
    appearance: none;
    outline: none;
    transition: border-color .15s;
}
.email-form input[type="email"]:focus {
    border-color: #121212;
}
.email-form input[type="email"]::placeholder {
    color: rgba(18,18,18,.45);
}

.btn-subscribe {
    width: 100%;
    padding: 1rem;
    background: #121212;
    color: #fff;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: opacity .15s;
}
.btn-subscribe:hover { opacity: .85; }

/* ── FAQ section ── */
.faq-section {
    padding: 4rem 1.5rem;
    max-width: 768px;
    margin: 0 auto;
}

.faq-section > h1 {
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    border-top: 1px solid rgba(18,18,18,.12);
    background: #344eb5;
    padding: 0 10px;
    margin-bottom: 10px;
}
.faq-item:last-child {
    border-bottom: 1px solid rgba(18,18,18,.12);
}

.faq-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.faq-toggle .icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 1rem;
    position: relative;
}
.faq-toggle .icon::before,
.faq-toggle .icon::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.faq-toggle .icon::before {
    width: 100%; height: 2px;
    top: 50%; left: 0;
    transform: translateY(-50%);
}
.faq-toggle .icon::after {
    width: 2px; height: 100%;
    left: 50%; top: 0;
    transform: translateX(-50%);
}
.faq-item.open .faq-toggle .icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-body {
    display: none;
    padding: 0 0 1.5rem;
    font-size: .9375rem;
    line-height: 1.7;
    color: #fff;
}
.faq-item.open .faq-body { display: block; }

.faq-body p { margin-bottom: .75rem; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body em { font-style: italic; }

.faq-checks { margin-top: .5rem; }
.faq-checks p { margin: .2rem 0; }

/* ── Mission section ── */
.mission-section {
    padding: 5rem 1.5rem;
    background: #344eb5;
    border-top: 1px solid rgba(18,18,18,.12);
    color: #fff;
}

.mission-inner {
    max-width: 768px;
    margin: 0 auto;
}

.mission-section h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 15px;
}

.mission-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 15px;

}

/* ── Footer ── */
footer {
    border-top: 1px solid rgba(18,18,18,.12);
    padding: 1rem 1.5rem;
    font-size: .875rem;
    background: linear-gradient(90deg, #ef5a90 0%, #79aedd 100%);
    display: flex;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-copyright-top {
    font-size: .875rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-social a {
    font-size: .875rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-social a:hover { opacity: .7; }

.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    font-size: .8125rem;
    color: rgba(18,18,18,.6);
}

.footer-bottom a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-bottom a:hover { color: #121212; }

.footer-policy-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.modal-overlay.open { display: flex; }

.modal {
    background: #fff;
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
}

.modal h2 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.modal-body {
    font-size: .9375rem;
    line-height: 1.75;
    color: #333;
}
.modal-body p { margin-bottom: 1rem; }
.modal-body p:last-child { margin-bottom: 0; }

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #121212;
    line-height: 1;
    padding: .25rem .5rem;
}
.modal-close:hover { opacity: .6; }

@media (max-width: 750px) {
    .signup-wrap { padding: 6rem 1.5rem; }
    .faq-section { padding: 5rem 2rem; }
    .footer-inner { flex-direction: column; justify-content: space-between; text-align: center; align-items: center; }
    .footer-bottom { align-items: flex-end; }
}