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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #2C5F6F 0%, #87A96B 100%);
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    text-align: center;
    max-width: 600px;
}

.logo {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.tagline {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #D4A574;
}

.description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.status {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
    font-weight: 500;
}

.email-signup {
    margin-top: 2.5rem;
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.email-signup input[type="email"] {
    flex: 1;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-family: inherit;
    transition: all 0.3s ease;
}

.email-signup input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-signup input[type="email"]:focus {
    outline: none;
    border-color: #D4A574;
    background: rgba(255, 255, 255, 0.15);
}

.email-signup button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: #D4A574;
    color: #2C5F6F;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-signup button:hover {
    background: #E5B685;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1.125rem;
    }

    .email-signup {
        flex-direction: column;
        gap: 0.75rem;
    }

    .email-signup button {
        width: 100%;
    }
}
