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

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    line-height: 1.5;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #2C3930;
}

#vanta-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-top: 1.5rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(63, 79, 68, 0.2);
    padding: 3.5rem 3rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(162, 123, 92, 0.15);
    text-align: left;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}

.hero p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
}

.hero ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style-type: none;
}

.hero ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0.5rem;
    line-height: 1.5;
}

.hero ul li::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #A27B5C;
    border-radius: 50%;
}

.input-group {
    display: flex;
    margin: 2rem 0 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

input[type="email"] {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    font-size: 1rem;
    outline: none;
    background-color: rgba(255, 255, 255, 0.95);
    color: #2C3930;
}

button {
    background-color: #A27B5C;
    color: white;
    border: none;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    background-color: #8a6a4e;
    transform: translateY(-1px);
}

#status-message {
    height: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.success {
    color: #A27B5C;
}

.error {
    color: #e57373;
}

.waitlist-count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    letter-spacing: 0.2px;
    text-align: center;
}

#count {
    font-weight: 600;
    color: #A27B5C;
}

footer {
    margin-top: 4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    padding-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .input-group {
        flex-direction: column;
        box-shadow: none;
    }
    
    input[type="email"] {
        border-radius: 0.5rem;
        margin-bottom: 0.75rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    button {
        border-radius: 0.5rem;
        padding: 0.875rem;
    }
    
    .hero {
        padding: 2rem 1.5rem;
        background-color: rgba(63, 79, 68, 0.15);
    }
    
    .hero ul {
        padding-left: 1rem;
    }
    
    .hero ul li {
        padding-left: 0.25rem;
    }
    
    .hero ul li::before {
        left: -1rem;
    }
} 