/* Base reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #1f2937;
  background: linear-gradient(180deg, #f7fafc 0%, #eef2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 720px;
  padding: 48px 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  text-align: center;
}

.logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: inline-block;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

h1 {
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 8px;
}

.subtitle {
  margin: 0 auto 20px;
  max-width: 520px;
  color: #4b5563;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #065f46;
  font-weight: 600;
  border: 1px solid #a7f3d0;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(16,185,129,0.15);
}

