:root {
    --primary-color: #553388;
    --accent-color: #55ccbb;
    --text-color: #2D3436;
    --background-color: #F5F6FA;
    --gradient-1: #553388;
    --gradient-2: #556699;
    --gradient-3: #5599aa;
    --gradient-4: #55ccbb;
    --gradient-5: #55ffcc;
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, var(--gradient-1) 0%, var(--gradient-2) 25%, var(--gradient-3) 50%, var(--gradient-4) 75%, var(--gradient-5) 100%);
    color: white;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

header {
    padding: 2rem;
}

.logo {
    max-width: 300px;
}

.bubble-logo {
    width: 100%;
    height: auto;
}

.bubble {
    fill: var(--gradient-5);
    opacity: 0.9;
}

.bubble-2 {
    fill: var(--gradient-4);
    opacity: 0.8;
}

.bubble-3 {
    fill: var(--gradient-3);
    opacity: 0.7;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    fill: white;
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

.logo-text:hover {
    fill: var(--accent-color);
    transition: fill 0.3s ease;
}

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--gradient-5);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.coming-soon {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: white;
}

.cta-container {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--gradient-5);
    color: var(--gradient-1);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
    background-color: white;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
} 