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

:root {
    --brand-color: #01a08a;
    --text-color: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    text-align: center;
}

.coming-soon {
    font-size: 3rem;
    text-transform: uppercase;
    text-align: cetner;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    font-weight: 500;
}

.logo {
    font-size: 10rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 0rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.tagline-small {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10rem;
    display: block;
    font-style: italic;
    text-align: right;
    margin-left: 62%;
    white-space: nowrap;
}

.tagline {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.status {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    justify-content: center;
    white-space: nowrap;
}

.check {
    color: var(--brand-color);
    font-size: 1.25rem;
    align-items: center;
    font-weight: bold;
}

.waitlist-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.waitlist-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
    color: var(--text-color);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--brand-color);
}

.waitlist-form button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--brand-color);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.waitlist-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 160, 138, 0.3);
}

.waitlist-form button:active {
    transform: translateY(0);
}

.privacy-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

footer {
    text-align: center;
    padding: 2rem 0 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-top: auto;
}

footer a {
    color: var(--brand-color);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

footer a:hover {
    opacity: 0.8;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.35rem;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    .waitlist-form button {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .coming-soon {
        font-size: 2.5rem;
    }
    
    .logo {
        font-size: 4rem;
    }
    
    .tagline-small {
        font-size: 1.25rem;
        text-align: center;
        margin-left: 0;
        padding-right: 0;
    }
}