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

img { display: block; max-width: 100%; }

/* ── Base ────────────────────────────────────────────────────── */
body {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background: #0b1818;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Container ───────────────────────────────────────────────── */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    padding: 40px 24px;
}

/* ── Mesa × Claude Logos ─────────────────────────────────────── */
.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-img.claude {
    border-radius: 8px;
    max-width: 80px;
}

.logo-x {
    font-size: 18px;
    font-weight: 300;
    color: #2e5050;
    flex-shrink: 0;
}

/* ── Badge ───────────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #10b981;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ── Heading ─────────────────────────────────────────────────── */
h1 {
    font-size: 22px;
    font-weight: 600;
    color: #f1f5f9;
}

p {
    font-size: 14px;
    color: #475569;
}
