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

body {
    font-family: 'Outfit', sans-serif;
    background: #0a0a0a;
    color: #c0c0c0;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Dark ethereal background with opal hints */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(64, 224, 208, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.02) 0%, transparent 40%),
        linear-gradient(to bottom, #0a0a0a, #0f0f0f, #0a0a0a);
    z-index: -2;
}

/* Subtle spectral effects container */
.fairy-dust-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Spectral smoke wisps with color */
.smoke-wisp {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(64, 224, 208, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0;
    animation: drift 12s ease-in-out infinite;
}

@keyframes drift {
    0% {
        transform: translateY(100vh) translateX(-50px) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
    }
    80% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(1.5);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

header {
    text-align: center;
    padding: 60px 0;
    position: relative;
}

/* New logo based on sketch */
.logo {
    display: block;
    margin: 0 auto 30px;
    opacity: 0.9;
    filter: drop-shadow(0 0 15px rgba(192, 192, 192, 0.3));
    animation: subtleFloat 6s ease-in-out infinite;
}

.logo:hover {
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.5));
    transform: scale(1.05);
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 400;
    letter-spacing: 8px;
    color: transparent;
    background: linear-gradient(90deg, #40E0D0, #c0c0c0, #8A2BE2, #FFD700, #40E0D0);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    text-transform: uppercase;
    margin-bottom: 20px;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    background: linear-gradient(90deg, #FFD700, #c0c0c0, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 4px;
    opacity: 0.8;
}

.crystal-ball {
    width: 120px;
    height: 120px;
    margin: 50px auto;
    background: radial-gradient(circle at 40% 40%, rgba(64, 224, 208, 0.1), rgba(138, 43, 226, 0.05), transparent);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.2),
        0 0 50px rgba(64, 224, 208, 0.1),
        inset 0 0 20px rgba(255, 215, 0, 0.05);
    animation: subtlePulse 4s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(138, 43, 226, 0.2),
            0 0 50px rgba(64, 224, 208, 0.1),
            inset 0 0 20px rgba(255, 215, 0, 0.05);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.02);
        box-shadow: 
            0 0 40px rgba(138, 43, 226, 0.3),
            0 0 60px rgba(64, 224, 208, 0.2),
            inset 0 0 25px rgba(255, 215, 0, 0.1);
    }
}

.crystal-ball::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 35%;
    width: 20%;
    height: 20%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(8px);
}

.intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(192, 192, 192, 0.8);
    text-align: center;
    font-weight: 300;
    margin: 40px auto 80px;
    max-width: 700px;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.product-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.02), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(64, 224, 208, 0.1);
    border-radius: 0;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    background: rgba(138, 43, 226, 0.05);
    border-color: rgba(64, 224, 208, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
}

/* Minimalist product icons */
.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
}

.product-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #40E0D0, #c0c0c0, #8A2BE2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.product-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(192, 192, 192, 0.6);
    font-weight: 300;
    letter-spacing: 1px;
}

.waitlist-section {
    margin: 120px 0;
    text-align: center;
}

.waitlist-form {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.02), rgba(138, 43, 226, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 80px 60px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.05);
}

.waitlist-form h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #40E0D0, #c0c0c0, #8A2BE2, #FFD700, #40E0D0);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: shimmer 6s linear infinite;
}

.form-group {
    margin-bottom: 30px;
}

.form-group input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(192, 192, 192, 0.3);
    color: #c0c0c0;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: rgba(64, 224, 208, 0.7);
    color: #40E0D0;
}

.form-group input::placeholder {
    color: rgba(192, 192, 192, 0.4);
    letter-spacing: 2px;
}

.submit-btn {
    background: transparent;
    color: #c0c0c0;
    border: 1px solid rgba(192, 192, 192, 0.5);
    padding: 15px 50px;
    font-size: 0.9rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    margin-top: 30px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), rgba(138, 43, 226, 0.1));
    border-color: rgba(255, 215, 0, 0.5);
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.2);
}

footer {
    text-align: center;
    padding: 80px 0 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    background: linear-gradient(90deg, rgba(64, 224, 208, 0.5), rgba(192, 192, 192, 0.5), rgba(138, 43, 226, 0.5));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        letter-spacing: 4px;
    }
    
    .waitlist-form {
        padding: 60px 30px;
    }
}