/* =============================================
   KYNAMATIX — Under Maintenance Page
   Light Mode | Minimalist UI
   Brand Colors: #00C1EB + #8CFF00
   Font: Satoshi
   ============================================= */

:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f1f5f9;
    --color-surface: #ffffff;
    --color-border: #e2e8f0;
    --color-text: #0f172a;
    --color-text-muted: #64748b;
    --color-text-subtle: #94a3b8;
    
    --color-primary: #00C1EB;
    --color-primary-light: #e0f8fd;
    --color-accent: #8CFF00;
    
    --font-main: 'Satoshi', sans-serif;
    
    --radius-md: 12px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 0 10px rgba(0, 0, 0, 0.02);
    
    --transition: 0.2s ease;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* --- Background Animation --- */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-animation::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 0);
    background-size: 24px 24px;
    z-index: 1;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.9;
    animation: float 10s infinite ease-in-out alternate;
    z-index: 0;
    transition: translate 0.2s ease-out;
}

.blob-1 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: rgba(0, 193, 235, 0.4);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: rgba(140, 255, 0, 0.35);
    bottom: -10%;
    right: -5%;
    animation-delay: -3s;
}

.blob-3 {
    width: 30vw;
    height: 30vw;
    max-width: 400px;
    max-height: 400px;
    background: rgba(0, 193, 235, 0.3);
    top: 40%;
    left: 50%;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* --- Header / Brand --- */
.site-header {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5); /* semi-transparent var(--color-border) */
    padding: 16px 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0;
    color: #464646;
    text-transform: uppercase;
    line-height: 1.1;
}

.tagline {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* --- Layout --- */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* --- Maintenance Notice --- */
.maintenance-notice {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-premium), 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    width: 100%;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2; /* light red background */
    color: #ef4444; /* red text */
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.maintenance-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
}

.maintenance-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* --- Contact Section --- */
.contact-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.contact-info {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

.whatsapp-link:hover {
    color: #25D366;
}

/* --- Footer --- */
.footer {
    padding: 24px;
    text-align: center;
    color: var(--color-text-subtle);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .main-content {
        padding: 40px 16px;
    }
    
    .maintenance-notice {
        padding: 32px 24px;
        background: rgba(255, 255, 255, 0.85); /* Increase opacity for readability on mobile */
    }

    .maintenance-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
        justify-content: center;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

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

    .main-content {
        padding: 24px 12px;
    }
    
    .maintenance-notice {
        padding: 28px 16px;
    }

    .maintenance-title {
        font-size: 1.75rem;
    }
    
    .maintenance-desc {
        font-size: 1rem;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .contact-section {
        margin-top: 24px;
        padding-top: 24px;
    }
}
