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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #0b0f19;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.card {
    max-width: 480px;
    width: 100%;
    text-align: center;
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 48px 32px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.logo {
    margin-bottom: 24px;
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #f8fafc;
    margin-bottom: 12px;
}

.dot {
    color: #38bdf8;
}

.tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 32px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #cbd5e1;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
}
