:root {
    --color-background: #0A0A1A;
    --color-text: #f5f0f0;
    --color-highlight: #8A2BE2;
    --color-highlight-alt: #9945FF;
    --color-highlight-light: rgba(138, 43, 226, 0.2);
    --color-gradient-start: #1E0F40;
    --color-gradient-end: #050510;
    --color-success: #00C853;
    --color-warning: #FFD600;
    --color-input-bg: rgba(255, 255, 255, 0.08);
    --color-card-bg: rgba(255, 255, 255, 0.04);
    --transition-default: 0.3s ease;
    --transition-slow: 0.5s ease-in-out;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-button: 0 4px 12px rgba(138, 43, 226, 0.3);
    --font-primary: 'Inter', sans-serif;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes radialMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes glowAnimation {
    0% {
        box-shadow: 0 0 5px 0px var(--color-highlight);
    }
    50% {
        box-shadow: 0 0 15px 5px var(--color-highlight);
    }
    100% {
        box-shadow: 0 0 5px 0px var(--color-highlight);
    }
}

body {
    font-family: var(--font-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    position: relative;
    overflow-x: hidden;
    color: var(--color-text);
    line-height: 1.6;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.container {
    width: min(95%, 1200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 3.5rem);
    gap: clamp(2rem, 5vh, 3rem);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 2rem 0;
}

.logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    animation: floatAnimation 6s ease-in-out infinite;
}

.logo {
    width: clamp(140px, 30vw, 220px);
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    transition: transform var(--transition-default);
}

.logo:hover {
    transform: scale(1.05);
}

.ai-indicator {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-card-bg);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-highlight);
    border-radius: 50%;
    margin-right: 6px;
    position: relative;
}

.ai-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-highlight);
    animation: pulseAnimation 2s infinite;
}

.ai-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
}

.text-content {
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vh, 1.8rem);
}

h1.cta-headline {
    color: var(--color-text);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.description {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.5;
    max-width: 650px;
    margin: 0 auto;
}

.highlight {
    color: var(--color-highlight);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-highlight), transparent);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    background: var(--color-card-bg);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-default), box-shadow var(--transition-default);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px rgba(138, 43, 226, 0.3);
}

.feature-icon {
    color: var(--color-highlight);
    font-size: 1.2rem;
    margin-right: 8px;
}

.feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

.action {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 500;
    margin-top: 0.5rem;
}

.notify-form {
    width: 100%;
    max-width: 550px;
    margin: 1rem 0 2rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--color-input-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-default), box-shadow var(--transition-default);
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--color-highlight);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
}

.cta-button {
    padding: 1rem 1.5rem;
    background: linear-gradient(45deg, var(--color-highlight), var(--color-highlight-alt));
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: transform var(--transition-default), box-shadow var(--transition-default);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.form-disclaimer {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin: 0.5rem 0 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.badge i {
    color: var(--color-success);
}

.social-icons {
    display: flex;
    gap: clamp(15px, 3vw, 25px);
    margin-top: 1rem;
}

.social-icons a {
    color: var(--color-text);
    font-size: clamp(22px, 3.5vw, 28px);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-default);
}

.social-icons a:hover,
.social-icons a:focus {
    color: var(--color-highlight);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -5px rgba(138, 43, 226, 0.3);
    border-color: var(--color-highlight-light);
}

.coming-soon-badge {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(45deg, var(--color-highlight), var(--color-highlight-alt));
    color: white;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-button);
    animation: glowAnimation 3s infinite;
    z-index: 10;
}

.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .container {
        padding: 1.5rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature {
        width: 100%;
        justify-content: center;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        padding: 0.9rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .coming-soon-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    h1.cta-headline {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
    
    .text-content {
        gap: 1rem;
    }
}