/* =========================
   LAUNCH HERO
========================= */

.launch-hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #000;
}

/* VIDEO */

.launch-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* OVERLAY */

.launch-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);
}

/* =========================
   TOPBAR
========================= */

.launch-topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 5;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1.5rem;
    box-sizing: border-box;
}

.launch-topbar a {
    color: #F5F3EE;
    text-decoration: none;

    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    opacity: 0.75;
}

/* =========================
   CONTENT
========================= */

.launch-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 720px;

    padding: 2rem;
    box-sizing: border-box;

    text-align: center;

    color: #F5F3EE;
}

/* KICKER */

.launch-kicker {
    margin-bottom: 1rem;

    font-size: 0.7rem;
    letter-spacing: 0.3em;

    opacity: 0.7;
}

/* TITLE */

.launch-content h1 {
    margin-bottom: 1.5rem;

    font-size: clamp(2.6rem, 8vw, 5rem);
    line-height: 1.05;

    font-style: italic;
    font-weight: 400;
}

/* DESCRIPTION */

.launch-description {
    margin-bottom: 2rem;

    opacity: 0.75;
    line-height: 1.8;
}

/* =========================
   FORM ROW
========================= */

.launch-form__row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;

    padding: 0.4rem;

    border: 1px solid rgba(245, 243, 238, 0.14);

    background: rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* INPUT */

.launch-form input[type="email"] {
    height: 56px;

    padding: 0 1rem;

    border: none;
    outline: none;

    background: transparent;
    color: #F5F3EE;

    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* placeholder */

.launch-form input[type="email"]::placeholder {
    color: rgba(245, 243, 238, 0.45);
}

/* BUTTON */

.launch-form button {
    height: 48px;

    border: none;
    cursor: pointer;

    background: #F5F3EE;
    color: #1A1A1A;

    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    transition:
        background 0.25s ease,
        opacity 0.25s ease;
}

/* hover */

.launch-form button:hover {
    background: rgba(245, 243, 238, 0.9);
}


/* =========================
   CONSENT
========================= */

.launch-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;

    margin-top: 1rem;

    text-align: left;

    font-size: 0.75rem;
    line-height: 1.5;

    opacity: 0.8;
}

.launch-consent input {
    margin-top: 2px;
}

/* =========================
   LEGAL TEXT
========================= */

.launch-legal {
    margin-top: 0.8rem;

    font-size: 0.7rem;
    line-height: 1.6;

    text-align: left;

    opacity: 0.45;
}

/* =========================
   FORM MESSAGE
========================= */

.launch-form-message {
    margin-top: 1rem;

    font-size: 0.78rem;
    line-height: 1.5;

    opacity: 0;

    transform: translateY(4px);

    animation: launchMessageFade 0.35s ease forwards;
}

.launch-form-message.is-success {
    color: rgba(245, 243, 238, 0.78);
}

.launch-form-message.is-error {
    color: #d86c6c;
}

.launch-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.launch-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 2rem;
    padding: 1rem 2rem;

    border: 1px solid rgba(245, 243, 238, 0.3);

    color: #F5F3EE;
    text-decoration: none;

    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;

    transition: all 0.3s ease;
}

.launch-cta:hover {
    background: rgba(245, 243, 238, 0.08);
}

@keyframes launchMessageFade {

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 1024px) {

    .launch-form__row {
        flex-direction: row;
        align-items: center;
    }

    .launch-form input[type="email"] {
        flex: 1;
    }

    .launch-form button {
        width: 180px;
        flex-shrink: 0;
    }
}