/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base */
html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Inter, Helvetica, Arial, sans-serif;
    background: #0b0d10;
    color: #e6e8eb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Layout */
.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.tagline {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #b7bcc4;
}

.status {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #8a9099;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 1.5rem;
    font-size: 0.8rem;
    color: #6b717a;
}
