:root { --blue: #2563eb; --teal: #0e7490; --ink: #0f172a; --muted: #64748b; --ok: #10b981; --down: #ef4444; }
* { box-sizing: border-box; }
body {
  margin: 0; min-height: 100vh; display: grid; place-items: center; padding: 24px 16px;
  font-family: Inter, system-ui, sans-serif; color: var(--ink);
  background: linear-gradient(160deg, #e0f2fe 0%, #eef2ff 55%, #f8fafc 100%); overflow-x: hidden;
}
.sky { position: fixed; inset: 0; pointer-events: none; overflow: hidden; }
.cloud { position: absolute; width: 220px; height: 70px; border-radius: 70px; background: #fff; opacity: .8; filter: blur(2px); animation: drift 40s linear infinite; }
.cloud::before, .cloud::after { content: ""; position: absolute; background: #fff; border-radius: 50%; }
.cloud::before { width: 100px; height: 100px; top: -50px; left: 30px; }
.cloud::after { width: 70px; height: 70px; top: -30px; left: 110px; }
.c1 { top: 12%; left: -240px; }
.c2 { top: 70%; left: -240px; animation-duration: 55s; animation-delay: -20s; transform: scale(.7); }
.plane { position: absolute; top: 20%; left: -60px; font-size: 34px; color: var(--blue); animation: fly 18s linear infinite; }
@keyframes drift { to { transform: translateX(calc(100vw + 480px)); } }
@keyframes fly { 0% { transform: translate(0, 0) rotate(-8deg); } 100% { transform: translate(calc(100vw + 120px), -90px) rotate(-8deg); } }

.card {
  position: relative; width: min(560px, 100%); background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px);
  border-radius: 24px; padding: 30px; box-shadow: 0 30px 70px -30px rgba(15, 23, 42, .35); animation: rise .7s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes rise { from { opacity: 0; transform: translateY(24px) scale(.97); } }
.brand { display: flex; gap: 14px; align-items: center; }
.logo { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; color: #fff; font: 700 20px Poppins, sans-serif; background: linear-gradient(135deg, var(--teal), var(--blue)); box-shadow: 0 12px 24px -10px var(--blue); }
h1 { margin: 0; font: 700 22px Poppins, sans-serif; }
.brand p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.status { display: inline-flex; align-items: center; gap: 8px; margin: 22px 0 18px; padding: 7px 14px; border-radius: 30px; font-size: 13px; font-weight: 600; }
.status.ok { background: #ecfdf5; color: #047857; }
.status.down { background: #fef2f2; color: #b91c1c; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 0 currentColor; animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .5); } 100% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stat { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; padding: 14px; }
.stat strong { display: block; font: 700 24px Poppins, sans-serif; color: var(--blue); }
.stat span { font-size: 12.5px; color: var(--muted); }
.endpoints { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 6px; font-size: 13.5px; color: var(--muted); }
code { font-family: ui-monospace, Menlo, monospace; background: #eff6ff; color: var(--blue); padding: 2px 7px; border-radius: 6px; margin-right: 6px; }
footer { font-size: 12px; color: #94a3b8; border-top: 1px dashed #e2e8f0; padding-top: 14px; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }
