:root {
    --bg: #0f172a;
    --card: #111827;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --accent: #22c55e;
}
* { box-sizing: border-box }
html, body { height: 100% }
body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    background: radial-gradient(1200px 500px at 20% 0%, #0b1227 0%, var(--bg) 60%), var(--bg);
    color: var(--text);
    display: grid;
    place-items: center;
}
.wrap { width: 100%; max-width: 860px; padding: 24px; }
.card {
    background: color-mix(in oklab, var(--card) 92%, black 8%);
    border: 1px solid color-mix(in oklab, var(--card) 70%, white 6%);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(6px);
    box-shadow: 0 25px 80px rgba(0,0,0,0.35);
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo {
    width: 44px; height: 44px; border-radius: 10px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white; font-weight: 700;
    box-shadow: 0 8px 24px rgba(34,197,94,0.35);
}
h1 { margin: 0; font-size: 1.75rem; line-height: 1.2; }
p { margin: 8px 0 0; color: var(--muted); font-size: 1rem; }
.status {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 18px; padding: 10px 14px; border-radius: 999px;
    background: rgba(34,197,94,0.12); color: #86efac;
    border: 1px dashed rgba(34,197,94,0.35); font-weight: 600; font-size: 0.95rem;
}
.dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #22c55e; box-shadow: 0 0 0 6px rgba(34,197,94,0.18);
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1 }
    50% { transform: scale(1.35); opacity: 0.7 }
}