:root {
    /* Color Palette */
    --bg-color: #050a14;
    --bg-surface: #0f172a;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-blue: #1d4ed8;
    --accent-blue-light: #3b82f6;
    --accent-cyan: #06b6d4;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    line-height: 1.6;
}

/* -----------------------------
   Background Animations
----------------------------- */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 15s ease-in-out infinite alternate;
}

.glow-1 {
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, var(--accent-blue-light) 0%, transparent 70%);
    top: -20%;
    left: -10%;
}

.glow-2 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
    opacity: 0.25;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(3%, 8%) scale(1.1);
    }
    100% {
        transform: translate(-3%, -3%) scale(0.9);
    }
}

/* -----------------------------
   Industrial Grid Overlay
----------------------------- */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
    /* Fade grid out towards the edges */
    mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
}

/* -----------------------------
   Main Layout & Content
----------------------------- */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Soft entry animation for the main content */
.content {
    animation: fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------
   Typography & UI Elements
----------------------------- */
.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: 4px; /* Slight industrial edge instead of fully rounded */
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #ffffff 30%, var(--accent-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.subheading {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3.5vw, 2.25rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
}

.description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* -----------------------------
   CTA Button
----------------------------- */
.cta-container {
    position: relative;
    display: inline-block;
}

.cta-button {
    position: relative;
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--accent-blue), #1e3a8a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px; /* Industrial structure */
    cursor: not-allowed; /* Disabled state for coming soon */
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -10px rgba(29, 78, 216, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shine 4s infinite ease-in-out;
}

@keyframes shine {
    0%, 20% {
        left: -100%;
    }
    80%, 100% {
        left: 200%;
    }
}

/* -----------------------------
   Responsive Adjustments
----------------------------- */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .glow-1 {
        width: 100vw;
        height: 100vw;
    }
    
    .glow-2 {
        width: 80vw;
        height: 80vw;
    }
    
    .badge {
        margin-bottom: 1.5rem;
    }
    
    .description {
        margin-bottom: 2.5rem;
    }
}
