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

:root {
    /* Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #1f2937;
    --bg-card: #111111;
    --border-primary: #374151;
    --border-secondary: #1f2937;

    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-tertiary: #9ca3af;
    --text-muted: #6b7280;

    --color-up: #10b981;
    --color-down: #ef4444;
    --color-degraded: #f59e0b;
    --color-unknown: #6b7280;
    --color-investigating: #8b5cf6;

    --accent-green: #00ff88;
    --accent-green-dim: #00cc6a;

    /* Typography */
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
    position: relative;
}



/* ==========================================
   COMING SOON PAGE STYLES
   ========================================== */

.coming-soon-page {
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 1) 0%,
        rgba(26, 26, 26, 1) 50%,
        rgba(10, 10, 10, 1) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.coming-soon-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

/* Logo Section */
.coming-soon-logo {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out 0.5s both;
}

.logo-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-mono);
    background: linear-gradient(135deg, var(--accent-green) 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Main Content */
.coming-soon-content {
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
    animation: fadeInLeft 1s ease-out 0.8s both;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInRight 1s ease-out 1s both;
}

/* Preview Stats */
.preview-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-primary);
}

/* Launch Info */
.launch-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.launch-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-dot.launching {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-degraded);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.launch-eta {
    text-align: right;
}

.eta-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 0.25rem;
}

.eta-date {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--accent-green);
}


/* Features Preview */
.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(17, 17, 17, 0.4);
    border: 1px solid var(--border-secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(17, 17, 17, 0.6);
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.feature-item span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Footer */
.coming-soon-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-secondary);
    animation: fadeInUp 1s ease-out 2s both;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-green);
}

.contact-info {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Responsive Design for Coming Soon */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 1rem;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-subtitle {
        font-size: 1.125rem;
    }

    .preview-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .launch-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }


    .features-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .coming-soon-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}