@font-face {
    font-family: 'Neurial Grotesk';
    src: url('../fonts/NeurialGrotesk-Regular.woff2') format('woff2'),
         url('../fonts/NeurialGrotesk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --accent: #ffe94b;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background: #000;
    font-family: 'Neurial Grotesk', sans-serif;
    color: #fff;
    text-transform: uppercase;
}

/* Full-bleed background video — fills the viewport, cropped as needed */
.bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
    pointer-events: none;
}

.main {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.signup {
    width: 100%;
    max-width: 360px;
}

.signup_inner {
    width: 100%;
}

#sib-form {
    margin: 0;
}

input[type="email"],
input[type="text"] {
    width: 100%;
    background: var(--accent);
    border: 1px solid #000;
    color: #000;
    padding: 10px 14px;
    font-family: 'Neurial Grotesk', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    outline: none;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

input::placeholder { color: #000 !important; opacity: 1; }
input:-ms-input-placeholder { color: #000 !important; }
input::-ms-input-placeholder { color: #000 !important; }

.button-signup {
    display: block;
    width: 100%;
    margin-top: 12px;
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-family: 'Neurial Grotesk', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.button-signup:hover {
    background: var(--accent);
    color: #000;
}

.input--hidden {
    display: none;
}

@media only screen and (max-width: 740px) {
    html, body {
        height: 100dvh;
    }

    .main {
        min-height: 100dvh;
        padding: 24px 20px;
    }
}

/* Thankyou page */
.thankyou-wrap {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.thankyou-wrap h2 {
    font-weight: normal;
    font-size: clamp(20px, 2vw, 36px);
    margin: 0;
    letter-spacing: 0.02em;
}
