/* ==========================================================================
   SDCI MINIMAL COMING SOON - STYLE.CSS
   Brand Colors: Midnight (#02273d), Green (#00be64), Lime (#c0ff71)
   ========================================================================== */

/* --- Custom Properties --- */
:root {
    /* Color Palette */
    --brand-navy: #02273d;
    --brand-navy-rgb: 2, 39, 61;
    --brand-navy-dark: #011320;
    --brand-navy-light: #f0f6fa;
    --brand-green: #00be64;
    --brand-green-rgb: 0, 190, 100;
    --brand-green-hover: #00a556;
    --brand-lime: #c0ff71;
    --brand-lime-rgb: 192, 255, 113;
    --brand-white: #ffffff;
    
    /* Backgrounds & Glassmorphism */
    --body-bg: #f5f9fb;
    --glass-bg: rgba(255, 255, 255, 0.78);
    --glass-bg-hover: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(2, 39, 61, 0.08);
    --glass-border-focus: rgba(0, 190, 100, 0.4);
    
    /* Typography */
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(2, 39, 61, 0.03), 0 2px 4px -1px rgba(2, 39, 61, 0.02);
    --shadow-md: 0 10px 15px -3px rgba(2, 39, 61, 0.06), 0 4px 6px -2px rgba(2, 39, 61, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(2, 39, 61, 0.08), 0 10px 10px -5px rgba(2, 39, 61, 0.04);
    
    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--body-bg);
    color: var(--brand-navy);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* --- Floating Background Blobs --- */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    mix-blend-mode: multiply;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: 10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(var(--brand-green-rgb), 0.4) 0%, rgba(255,255,255,0) 70%);
    animation-duration: 25s;
}

.blob-2 {
    bottom: -10%;
    right: 15%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(var(--brand-lime-rgb), 0.5) 0%, rgba(255,255,255,0) 70%);
    animation-duration: 28s;
    animation-delay: -4s;
}

.blob-3 {
    top: 30%;
    left: -10%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(var(--brand-navy-rgb), 0.08) 0%, rgba(255,255,255,0) 70%);
    animation-duration: 22s;
    animation-delay: -2s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(6%, 4%) scale(1.1) rotate(120deg);
    }
    100% {
        transform: translate(-4%, -6%) scale(0.9) rotate(240deg);
    }
}

/* --- Centered Page Wrapper --- */
.coming-soon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 2.5rem 1.25rem;
}

/* --- Central Card Layout --- */
.coming-soon-card {
    max-width: 620px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3.5rem 3rem;
    animation: fadeInCard 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeInCard {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism Styles */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition-normal), background var(--transition-normal);
}

.glass-card:hover {
    box-shadow: var(--shadow-lg);
    background: var(--glass-bg-hover);
}

/* --- Logo Styling --- */
.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.brand-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.brand-logo:hover {
    transform: scale(1.015);
}

/* --- Content / Copy Area --- */
.content-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand-navy-light);
    border: 1px solid rgba(var(--brand-navy-rgb), 0.05);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-navy);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-green);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--brand-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.main-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--brand-navy);
    letter-spacing: -0.02em;
}

.highlight-green {
    color: var(--brand-green);
    position: relative;
    display: inline-block;
}

.highlight-green::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(var(--brand-lime-rgb), 0.45);
    z-index: -1;
    border-radius: 2px;
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(var(--brand-navy-rgb), 0.72);
    max-width: 490px;
}

.hero-desc strong {
    color: var(--brand-navy);
    font-weight: 600;
}



/* --- Social Footer Section --- */
.social-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    border-top: 1px solid rgba(var(--brand-navy-rgb), 0.06);
    padding-top: 1.75rem;
    width: 100%;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(var(--brand-navy-rgb), 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-link i {
    width: 15px;
    height: 15px;
    color: rgba(var(--brand-navy-rgb), 0.45);
    transition: color var(--transition-fast);
}

.footer-link:hover, .footer-link:hover i {
    color: var(--brand-green);
}

.footer-dot {
    width: 4px;
    height: 4px;
    background-color: rgba(var(--brand-navy-rgb), 0.15);
    border-radius: 50%;
}

.copyright {
    font-size: 0.78rem;
    color: rgba(var(--brand-navy-rgb), 0.45);
    text-align: center;
}

/* --- Responsive Media Queries --- */

/* Small Devices (Mobile) */
@media (max-width: 640px) {
    .coming-soon-card {
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }
    
    .brand-logo {
        max-width: 250px;
    }
    
    .main-title {
        font-size: 2.1rem;
    }
    
    .hero-desc {
        font-size: 0.92rem;
    }
    

    
    .footer-links {
        flex-direction: column;
        gap: 0.65rem;
    }
    
    .footer-dot {
        display: none;
    }
}
