:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #d4af37;
    /* Darker Gold for contrast */
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.8) 100%);
    pointer-events: none;
}

/* Re-enable pointer events for interactive elements */
header,
main,
footer,
.waitlist-input,
.waitlist-btn {
    pointer-events: auto;
}

header {
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo {
    height: 80px;
    /* Adjusted size as requested */
    width: auto;
    /* Removed drop-shadow as it might look dirty on white, added subtle one if needed */
}

main {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #000;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    max-width: 600px;
}

.waitlist-container {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 500px;
}

.waitlist-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: white;
    color: black;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.waitlist-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.15);
}

.waitlist-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

footer {
    padding: 2rem;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .waitlist-container {
        flex-direction: column;
    }

    .waitlist-btn {
        width: 100%;
    }
}