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

:root {
    --navy: #1a3a5c;
    --blue-accent: #4a90d9;
    --gray-100: #f8f9fa;
    --gray-600: #6c757d;
    --text: #212529;
}

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                 'Helvetica Neue', Arial, sans-serif;
    background: var(--gray-100);
    color: var(--text);
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    width: 96px;
    height: 96px;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.2s forwards;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wordmark {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.4s forwards;
}

.subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-accent);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.6s forwards;
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--navy);
    margin: 0 auto 2.5rem;
    border-radius: 2px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-600);
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-accent);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 480px) {
    .logo { width: 72px; height: 72px; }
    .wordmark { font-size: 1.3rem; }
}
