/* whynot.xxx — coming soon styles */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    background-color: #000;
    color: #fff;
    font-family: "Helvetica Neue", Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1.25rem;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 560px;
    text-align: center;
}

/* ── Headline ──────────────────────────────────────────────────────────── */

.headline {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

/* ── Launching Soon badge ──────────────────────────────────────────────── */

.launching-soon {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 1.5rem;
}

/* ── Value prop ────────────────────────────────────────────────────────── */

.value-prop {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.value-prop strong {
    color: #fff;
    font-weight: 700;
}

/* ── Form ──────────────────────────────────────────────────────────────── */

.email-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
    min-width: 0;
}

.email-input::placeholder {
    color: #555;
}

.email-input:focus {
    border-color: #fff;
}

.submit-btn {
    background: #fff;
    color: #000;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.submit-btn:hover {
    background: #ddd;
}

.submit-btn:active {
    background: #ccc;
}

/* Honeypot — must remain invisible */
.hp-field {
    display: none;
}

/* ── Privacy note ──────────────────────────────────────────────────────── */

.privacy-note {
    font-size: 0.75rem;
    color: #555;
}

/* ── Status messages ───────────────────────────────────────────────────── */

.status-message {
    font-size: 0.75rem;
    color: #fff;
    padding: 0.5rem 0;
}

.status-message--error {
    color: #f66;
}

/* ── Mobile: stack form ────────────────────────────────────────────────── */

@media (max-width: 480px) {
    .headline {
        font-size: 1.5rem;
    }

    .email-form {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }
}
