:root {
  --bg: #ffffff;
  --text: #111111;
  --hint: #667085;
  --surface: #f4f6f8;
  --button: #2f80ed;
  --button-text: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.45 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 28px 18px;
}

.header {
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--hint);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: 0;
}

.status-list {
  display: grid;
  gap: 10px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 14px;
  border-radius: 8px;
  background: var(--surface);
}

.status-row span {
  color: var(--hint);
}

.status-row strong {
  color: var(--button);
  text-align: right;
}
