:root { color-scheme: dark; }

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: #0b0f17;
  color: #e7eefc;
}

.wrap { max-width: 820px; margin: 0 auto; padding: 26px 16px 44px; }

.top { display: flex; gap: 14px; align-items: flex-start; }
.back { color: #9fb0d0; text-decoration: none; padding-top: 6px; }
.back:hover { text-decoration: underline; }

h1 { margin: 0; font-size: 20px; }
.muted { margin: 6px 0 0; color: #9fb0d0; font-size: 13px; line-height: 1.5; }

.card {
  margin-top: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 16px;
}

.label { display:block; font-size: 12px; color:#a9b8d6; margin-bottom: 8px; }

.row { display:flex; gap: 10px; align-items:center; }

.input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: #e7eefc;
  padding: 12px 12px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.input:focus { box-shadow: 0 0 0 4px rgba(231,238,252,.08); }

.ghost {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  color: #e7eefc;
  padding: 10px 12px;
  cursor: pointer;
}
.ghost:hover { background: rgba(255,255,255,.06); }

.meter {
  margin-top: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
}
.meter__fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width .18s ease;
}

.status { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top: 12px; }

.pill {
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,.12);
}
.pill--red { background: rgba(255, 80, 80, .18); }
.pill--yellow { background: rgba(255, 210, 90, .18); }
.pill--green { background: rgba(90, 230, 160, .18); }

.checks { margin: 12px 0 0; padding-left: 18px; }
.check { margin: 6px 0; color:#a9b8d6; }
.check.ok { color: #baf2d4; }
.hint { margin-top: 12px; }
