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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0f1c;
    color: white;
    overflow: hidden;
    height: 100vh;
}

/* Globe Background */
.globe-background {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, 
        rgba(59, 130, 246, 0.1) 0%,
        rgba(13, 148, 136, 0.05) 40%,
        transparent 70%);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
    z-index: 0;
}

.globe-background::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.globe-background::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    border: 1px solid rgba(13, 148, 136, 0.15);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite reverse;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 600px;
    padding: 0 24px;
    text-align: center;
}

.content {
    animation: fadeInUp 1s ease-out;
}

.title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 24px;
    font-weight: 300;
    color: #94a3b8;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.5);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.email-input::placeholder {
    color: rgba(148, 163, 184, 0.7);
}

.email-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(15, 23, 42, 0.7);
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #0d9488 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

.coming-soon {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Success Message */
.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    display: none;
    animation: fadeInUp 0.5s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 48px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .cta-section {
        flex-direction: column;
        max-width: 300px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .globe-background {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .description {
        font-size: 15px;
    }
    
    .globe-background {
        width: 400px;
        height: 400px;
    }
}