/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Fintech Color Palette */
    --primary-blue: #3B82F6;
    --secondary-cyan: #06B6D4;
    --dark-navy: #0F172A;
    --slate-900: #0A0E1A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --accent-gradient: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--slate-900);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 0 2rem;
    position: relative;
    z-index: 1;
}

/* Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

/* Brand Section */
.brand {
    margin-bottom: 3rem;
}

.logo-container {
    margin-bottom: 1.5rem;
    animation: fadeIn 1.2s ease-out;
}

.logo-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.3));
    animation: float 3s ease-in-out infinite;
}

.company-name {
    font-size: 3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    animation: fadeIn 1.4s ease-out;
}

.company-full-name {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.05em;
    animation: fadeIn 1.6s ease-out;
}

/* Message Section */
.message {
    margin-bottom: 3rem;
}

.status-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    animation: fadeIn 1.8s ease-out;
}

.status-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 2s ease-out;
}

/* Decorative Dots */
.decorative-dots {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 2.2s ease-out;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-gradient);
    animation: pulse 2s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
    opacity: 0.8;
}

/* Background Gradient Orbs */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-cyan) 0%, transparent 70%);
    bottom: -250px;
    left: -150px;
    animation: float 10s ease-in-out infinite reverse;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
    }

    .company-full-name {
        font-size: 0.875rem;
    }

    .status-title {
        font-size: 1.75rem;
    }

    .status-description {
        font-size: 1rem;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.5rem;
    }

    .company-full-name {
        font-size: 0.75rem;
    }

    .status-title {
        font-size: 1.5rem;
    }

    .status-description {
        font-size: 0.9375rem;
    }

    .orb-1,
    .orb-2 {
        width: 400px;
        height: 400px;
    }
}

.footer {
    margin: 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 200;
}