:root {
    /* Color Palette - Figma inspired with gold accent */
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-subtle: rgba(255, 255, 255, 0.6);
    --accent-gold: #C5A059;
    --accent-gold-dark: #9A7B3F;
    --accent-glow: rgba(197, 160, 89, 0.2);
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-border: rgba(255, 255, 255, 0.15);
    --chip-bg: rgba(197, 160, 89, 0.05);
    --chip-border: rgba(197, 160, 89, 0.2);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.container {
    width: 100%;
    max-width: 672px;
    padding: 3rem 2rem;
    text-align: center;
    z-index: 1;
}

/* Hero Image with Glow Effect */
.hero-image-container {
    position: relative;
    margin-bottom: 2.5rem;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: var(--accent-gold);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    z-index: -1;
}

.hero-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-avatar:hover {
    transform: scale(1.02);
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.tagline {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* Description text */
.description {
    font-size: 1rem;
    color: var(--text-subtle);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Question Chips */
.question-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.chip {
    background: var(--chip-bg);
    border: 1px solid var(--chip-border);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    cursor: default;
}

.chip:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--accent-gold);
    color: var(--text-color);
}

/* CTA Section */
.cta-section {
    margin-bottom: 2rem;
}

/* Input & Button - Pill shaped */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

input[type="email"] {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    padding: 1rem 1.5rem;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
    max-width: 360px;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

input[type="email"]::placeholder {
    color: var(--text-subtle);
}

button {
    background: var(--accent-gold);
    border: none;
    color: #000000;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 9999px;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 360px;
}

button:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.3);
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Status Message */
.status-message {
    min-height: 1.6em;
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-top: 1rem;
}

/* Footer */
footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--text-subtle);
}

/* Animations */
.fade-in-slow {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.2s;
}

.fade-in-medium {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.fade-in-fast {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2.25rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero-avatar {
        width: 140px;
        height: 140px;
    }

    .question-chips {
        gap: 0.5rem;
    }

    .chip {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}