/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4F46E5;
    --secondary-color: #1E1B4B;
    --accent-color: #10B981;
    --text-light: #FFFFFF;
    --text-dark: #1F2937;
    --gray-light: #F9FAFB;
    --gray-medium: #E5E7EB;
    --gray-dark: #6B7280;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F0C29, #302B63, #24243e);
    color: var(--text-light);
    overflow: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    z-index: 10;
    position: relative;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

/* Main Content */
.coming-soon-content {
    text-align: center;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 2rem;
}

.coming-soon-text {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 3rem;
}

/* Email Signup */
.signup-section {
    margin: 3rem 0;
}

.signup-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    padding: 0.875rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.success-message {
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 1rem;
}

/* Features Preview */
.features-preview {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.feature {
    text-align: center;
}

.feature .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 4rem;
    opacity: 0.6;
    font-size: 0.875rem;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    bottom: 10%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: #E11D48;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .coming-soon-text {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .features-preview {
        flex-direction: column;
        gap: 2rem;
    }
    
    .content-wrapper {
        padding: 3rem 1.5rem;
    }
}