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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    min-height: 100vh;
    background: white;
    overflow-x: hidden;
    cursor: auto;
    padding: 0%;
}

html {
    scroll-behavior: smooth;
}

/* Mouse Background Effects */
.mouse-bg {
    position: absolute;
    width: 384px; /* 24rem */
    height: 384px;
    opacity: 0.15;
    filter: blur(48px);
    transition: all 0.7s ease-out;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle, 
        rgba(99, 102, 241, 0.6) 0%, 
        rgba(168, 85, 247, 0.4) 25%, 
        rgba(236, 72, 153, 0.3) 50%, 
        rgba(251, 146, 60, 0.2) 75%, 
        transparent 100%
    );
}

.mouse-bg-secondary {
    width: 320px; /* 20rem */
    height: 320px;
    opacity: 0.1;
    filter: blur(32px);
    transition: all 1s ease-out;
    background: radial-gradient(circle, 
        rgba(34, 197, 94, 0.4) 0%, 
        rgba(59, 130, 246, 0.3) 40%, 
        transparent 70%
    );
}

/* Constellation SVG */
.constellation-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.constellation-line {
    stroke: rgba(59, 130, 246, 0.4);
    stroke-width: 0.8;
    transition: opacity 0.3s ease;
}

/* Star Container */
.star-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.star {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, rgba(139, 92, 246, 0.6) 50%, transparent 100%);
    transition: opacity 0.3s ease;
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}

/* Logo Section */
.logo-section {
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.main-title {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 300;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.title-light {
    font-weight: 200;
}

.title-gradient {
    font-weight: 400;
    background: linear-gradient(135deg, #4f46e5, #9333ea, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.subtitle-section {
    margin-bottom: 2rem;
}

.coming-soon {
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: #374151;
    font-weight: 300;
    margin-bottom: 0.75rem;
    letter-spacing: 0.025em;
}

.description {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: #6b7280;
    font-weight: 300;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

.description-light {
    color: #9ca3af;
}

/* Email Section */
.email-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease-out 0.3s both;
    max-width: 28rem;
    width: 100%;
}

@media (min-width: 640px) {
    .email-section {
        flex-direction: row;
    }
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #374151;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    outline: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.email-input:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}

.notify-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4f46e5, #9333ea, #ec4899);
    color: white;
    border-radius: 9999px;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-button:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.notify-button svg {
    transition: transform 0.3s ease;
}

.notify-button:hover svg {
    transform: translateX(4px);
}

/* Status Indicators */
.status-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0.5;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.status-icon {
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #6b7280;
}

.status-item:hover .status-icon {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.status-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.status-item:hover .status-label {
    opacity: 1;
}

/* Bottom Gradient */
.bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, rgba(249, 250, 251, 0.3), transparent);
    pointer-events: none;
}

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

/* Responsive Design */
@media (max-width: 640px) {
    .status-indicators {
        gap: 1rem;
    }
    
    .main-container {
        padding: 2rem 1rem;
    }
    
    .logo-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .logo-icon svg {
        width: 40px;
        height: 40px;
    }
}