/* ==========================================================================
   CAMZA.ai — Minimalist 'Coming Soon' Stylesheet
   ========================================================================== */

:root {
    --bg-dark: #07090e;
    --cyan-primary: #00f2fe;
    --blue-accent: #4f46e5;
    --purple-accent: #9333ea;
    --gradient-primary: linear-gradient(135deg, #00f2fe 0%, #4f46e5 50%, #9333ea 100%);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: var(--font-body);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Interactive Canvas */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Ambient Glow Orbs */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    animation: floatGlow 14s ease-in-out infinite alternate;
}

.orb-1 {
    top: 20%;
    left: 25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.3) 0%, rgba(79, 70, 229, 0) 70%);
}

.orb-2 {
    bottom: 20%;
    right: 25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, rgba(0, 242, 254, 0) 70%);
    animation-delay: -7s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.1); }
}

/* Centered Main Content */
.centered-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

/* Temp Logo Box */
.logo-box {
    width: 110px;
    height: 110px;
    margin-bottom: 28px;
    position: relative;
    filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.45));
    animation: logoFloat 4s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.camza-logo-svg {
    width: 100%;
    height: 100%;
}

/* Brand Title */
.brand-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 9vw, 84px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(0, 242, 254, 0.3);
    backdrop-filter: blur(16px);
    padding: 10px 24px;
    border-radius: 9999px;
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--cyan-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--cyan-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.4; }
}

.badge-text {
    font-family: var(--font-heading);
    font-size: clamp(12px, 2.5vw, 15px);
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
}
