@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Outfit:wght@300;400;600&display=swap');

:root {
    --bg-dark: #050507;
    --gold-primary: #d4af37;
    --gold-bright: #ffd700;
    --gold-glow: rgba(212, 175, 55, 0.25);
    --text-muted: #71717a;
    --border-gold: rgba(212, 175, 55, 0.2);
    --border-gold-focus: rgba(212, 175, 55, 0.6);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Atmosphere */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5,5,7,0.8) 0%, #050507 100%);
    z-index: -1;
}

.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: -2;
    pointer-events: none;
}

/* Teaser Container */
.teaser-container {
    margin: auto;
    text-align: center;
    padding: 2rem;
    z-index: 10;
    max-width: 600px;
    width: 100%;
    animation: fade-in 1.5s ease-out;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 6px;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 12px;
    margin-bottom: 4rem;
    padding-left: 12px; /* Offsets letter-spacing centering */
    font-weight: 400;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 1.1rem 1.5rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    outline: none;
    transition: var(--transition-smooth);
}

.email-input::placeholder {
    color: #4a4a4e;
}

.email-input:focus {
    border-color: var(--border-gold-focus);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.submit-btn {
    background: var(--gold-primary);
    color: #050507;
    border: none;
    border-radius: 4px;
    padding: 1.1rem 2.2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.submit-btn:hover {
    background: var(--gold-bright);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 2.5rem 0;
    text-align: center;
    color: #3f3f46;
    font-size: 0.75rem;
    letter-spacing: 3px;
    z-index: 10;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .logo {
        font-size: 2.4rem;
        letter-spacing: 4px;
    }
    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 8px;
        margin-bottom: 3rem;
    }
    .waitlist-form {
        flex-direction: column;
        gap: 1.25rem;
    }
    .email-input, .submit-btn {
        width: 100%;
        text-align: center;
    }
}
