@font-face {
    font-family: 'Alta';
    src: url('alta-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.content {
    text-align: center;
}

.logo-section {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    width: 120px;
    height: auto;
}

.wordmark {
    font-family: 'Alta', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #000000;
}

.message {
    margin-bottom: 2.5rem;
}

.message h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.message p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

.email-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 200px;
    padding: 0.875rem 1rem;
    border: 1px solid #000000;
    background: #ffffff;
    color: #000000;
    font-size: 1rem;
    font-family: inherit;
}

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

.email-input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: inset 0 0 0 1px #000000;
}

.submit-btn {
    padding: 0.875rem 1.75rem;
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.submit-btn:active {
    transform: scale(0.98);
}

@media (max-width: 600px) {
    .wordmark {
        font-size: 2rem;
    }

    .message h2 {
        font-size: 1.5rem;
    }

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

    .email-input,
    .submit-btn {
        width: 100%;
    }
}
