/* ================================
   ExoDesign - Coming Soon Page
   Dark Theme with Animated Effects
   ================================ */

:root {
    /* Trendy Color Palette - Purple to Cyan */
    --color-bg-dark: #0a0a0f;
    --color-bg-card: rgba(20, 20, 35, 0.8);
    --color-primary: #8b5cf6;
    /* Purple */
    --color-secondary: #06b6d4;
    /* Cyan */
    --color-accent: #ec4899;
    /* Pink */
    --color-text: #f1f5f9;
    --color-text-muted: #94a3b8;
    --color-border: rgba(139, 92, 246, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-bg: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);

    /* Typography */
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

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

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Gradient */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    z-index: -2;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite;
    box-shadow: 0 0 10px var(--color-primary);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

/* Main Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-lg);
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

/* Logo */
.logo-container {
    animation: fadeInDown 1s ease-out;
}

.logo {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-xs);
}

.logo-exo {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-design {
    color: var(--color-text);
}

.tagline {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Status Card */
.status-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: var(--spacing-xl) var(--spacing-xl);
    backdrop-filter: blur(20px);
    animation: fadeInUp 1s ease-out 0.3s both;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.status-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.pulse-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulseDot {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.status-text {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-sub {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Product Tags */
.products-preview {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.product-tag {
    padding: 0.6rem 1.2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.product-tag:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.product-tag.coming {
    color: var(--color-text-muted);
    border-style: dashed;
}

/* Contact */
.contact-info {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.contact-info a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-primary);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: var(--spacing-md);
    text-align: center;
    background: linear-gradient(to top, var(--color-bg-dark), transparent);
}

.footer p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .status-card {
        padding: var(--spacing-lg);
        margin: 0 var(--spacing-sm);
    }

    .products-preview {
        gap: var(--spacing-xs);
    }

    .product-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}