:root {
    /* Color Palette */
    /* Blush pink, dusty rose, warm nude, muted maroon */
    --color-bg-base: #FDF6F6; /* Very light blush */
    --color-blush: #F8E8E8;
    --color-dusty-rose: #D8A6A6;
    --color-muted-maroon: #8A4B56;
    --color-deep-rose: #5D3A3A;
    --color-text-primary: #5D3A3A;
    --color-text-secondary: #8C6B6B;
    --color-white: #FFFFFF;
    
    /* Gradients */
    --gradient-bg: linear-gradient(135deg, #FFF0F0 0%, #F8E2E2 50%, #EAD4D4 100%);
    --gradient-btn: linear-gradient(135deg, #D8A6A6 0%, #8A4B56 100%);
    --gradient-btn-hover: linear-gradient(135deg, #E6B6B6 0%, #9E5C67 100%);
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(138, 75, 86, 0.1);
    --shadow-card: 0 20px 40px rgba(138, 75, 86, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background: var(--color-bg-base);
    background-image: var(--gradient-bg);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/noise.svg');
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Sections */
header.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

section {
    padding: 80px 0;
}

/* Typography & Layout */
h1.brand-name {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 500;
    color: var(--color-muted-maroon);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-deep-rose);
    margin-bottom: 1rem;
    font-weight: 400;
}

.sub-tagline {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 300;
}

/* Teaser Section */
.teaser p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.teaser p.highlight {
    font-weight: 500;
    color: var(--color-muted-maroon);
    font-family: var(--font-heading);
    font-style: italic;
}

/* Waitlist Card */
.waitlist-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto;
}

.waitlist h2 {
    font-family: var(--font-heading);
    color: var(--color-muted-maroon);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.waitlist .subtitle {
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
    font-size: 1rem;
}

/* Form Styles */
.input-group {
    margin-bottom: 1rem;
}

input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(138, 75, 86, 0.2);
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

input:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--color-muted-maroon);
    box-shadow: 0 0 0 4px rgba(138, 75, 86, 0.1);
}

input::placeholder {
    color: #B09595;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    background: var(--gradient-btn);
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-soft);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(138, 75, 86, 0.2);
    background: var(--gradient-btn-hover);
}

.submit-btn:active {
    transform: translateY(1px);
}

.micro-text {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 1rem;
    opacity: 0.8;
}

/* Utility / Status */
.hidden {
    display: none;
}

#success-message {
    padding: 20px;
    color: var(--color-muted-maroon);
    font-weight: 500;
    animation: fadeIn 0.5s ease;
}

.trust-note {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    opacity: 0.7;
}

footer {
    padding: 40px 0;
    font-size: 0.8rem;
    color: #B09595;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Animations handled by GSAP */
.gsap-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* Optional initial offset */
}

/* Responsive */
@media (max-width: 600px) {
    h1.brand-name {
        font-size: 3rem;
    }
    .tagline {
        font-size: 1.4rem;
    }
    .waitlist-card {
        padding: 2rem 1.5rem;
    }
}
