/* Tell — sparse landing shell. The page is intentionally minimal: it is the
   surface a poll's QR code lands on, before any reply is composed. */

:root {
  --bg: #faf9f7;
  --fg: #1d1d22;
  --muted: #6b6b78;
  --rule: #e6e4df;
  --accent: #3a6df0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.site-header {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  background: #fff;
}
.site-title { font-weight: 700; font-size: 1.25rem; color: var(--fg); text-decoration: none; }
.site-tag { font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }

main { max-width: 40rem; margin: 0 auto; padding: 2rem 1.25rem; }
main h1 { margin: 0 0 1rem; font-size: 1.9rem; }
main a { color: var(--accent); }

.tell-note { color: var(--muted); font-size: .95rem; }

.tell-config {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: #fff;
}
.tell-empty { margin: 0; color: var(--muted); }
.tell-loaded { margin: 0 0 .6rem; font-weight: 600; }
.tell-grid { display: grid; gap: .35rem; }
.tell-row { display: flex; gap: .75rem; font-size: .95rem; }
.tell-k { min-width: 7rem; color: var(--muted); }
.tell-v { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; word-break: break-all; }

.site-footer {
  max-width: 40rem;
  margin: 2rem auto 3rem;
  padding: 1rem 1.25rem 0;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: .85rem;
}
