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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
    /* Uses dynamic viewport height to fix mobile browser bar issues */
    min-height: 100dvh; 
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* --- Animated Bubble Background --- */
.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08); /* Extremely subtle outline */
    border-radius: 50%;
    /* The --sway variable is injected via JS for natural movement */
    animation: rise infinite ease-in-out;
}

@keyframes rise {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    50% {
        /* Gently drift horizontally */
        transform: translate(calc(var(--sway) * 1), -50vh) scale(1.05);
    }
    85% {
        opacity: 0.1;
    }
    100% {
        transform: translate(calc(var(--sway) * 2), -110vh) scale(1.1);
        opacity: 0;
    }
}

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

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
}

/* --- Typography & Elements --- */
.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.65rem, 2vw, 0.8rem); /* Smaller & more refined */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #555555;
    margin-bottom: 2rem;
    padding: 6px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5); /* Slight white fill so bubbles don't disrupt it */
    backdrop-filter: blur(4px);
}

.status-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #000000;
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.company-name {
    /* Dramatically smaller on mobile (1.8rem), scales up smoothly */
    font-size: clamp(1.8rem, 6vw, 4rem); 
    font-weight: 400; /* Lighter weight for a premium feel */
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: #000000;
}

.tagline {
    /* Smaller on mobile (0.85rem), perfect for reading */
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    color: #666666;
    line-height: 1.6;
    font-weight: 300;
    padding: 0 1rem; /* Prevent touching edges on small screens */
}

.footer {
    position: absolute;
    bottom: 2rem;
    color: #999999;
    font-size: clamp(0.65rem, 1.5vw, 0.75rem); /* Extra delicate */
    letter-spacing: 0.02em;
}

/* --- Simple Load Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(15px); /* Shorter travel distance looks tighter */
    transition: opacity 1s ease, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* --- Mobile Specific Refinements --- */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .status-badge {
        margin-bottom: 1.5rem;
    }
    
    .company-name {
        margin-bottom: 1rem;
    }
    
    .footer {
        bottom: 1.5rem;
    }
    
    .desktop-break {
        display: none; /* Allows text to wrap naturally on tiny screens */
    }
}