:root {
    --primary-blue: #1063ff; /* Matches the blue in the logo */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-color: #f5f8ff; /* very light tint of primary */
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

header {
    margin-bottom: 2rem;
}

.logo {
    max-width: 250px;
    height: auto;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tagline {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 2rem;
}

.coming-soon {
    margin-bottom: 2rem;
}

.badge {
    background-color: rgba(16, 99, 255, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.notify-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.notify-form input:focus {
    border-color: var(--primary-blue);
}

.notify-form button {
    padding: 1rem 2rem;
    background-color: #1677ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

.notify-form button:hover {
    background-color: #0d62e0;
}

footer {
    margin-top: 3rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

@media (max-width: 600px) {
    .tagline {
        font-size: 2.5rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form button {
        width: 100%;
    }
}