:root {
  color-scheme: dark;
  --page: #131313;
  --card: #121212;
  --text: #e5e2e1;
  --text-muted: #8a938b;
  --border: rgb(255 255 255 / 0.10);
  --radius-xl: 1.5rem;
  --container-padding: 32px;
  --panel-gap: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-rendering: optimizeLegibility;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--container-padding);
}

.panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--panel-gap);
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
}

.logo {
  display: block;
  height: 34px;
  width: auto;
}

.status {
  margin: 0;
  color: var(--text-muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.05em;
}
