/* Renderdis on the server - the few public pages (23 September 2026). One look, one font, one size scale. */
:root { --bg: #FAF8F4; --panel: #FFFFFF; --ink: #1F1F1F; --muted: #6B6B6B; --line: #E4DFD6; --accent: #1F1F1F; --bad: #B42318; --good: #15803D; }
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body { background: var(--bg); color: var(--ink); font-family: "Heebo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif; font-size: 16px;
       display: grid; place-items: center; min-height: 100vh; padding: 16px; }
main { width: 100%; max-width: 420px; }
main.wide { max-width: 620px; text-align: center; }
h1 { font-size: 34px; font-weight: 800; margin: 0 0 6px; text-align: center; }
.lead { color: var(--muted); text-align: center; margin: 0 0 22px; line-height: 1.6; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.tabs { display: flex; gap: 6px; margin: 0 0 18px; background: var(--bg); border-radius: 12px; padding: 4px; }
.tabs button { flex: 1; border: 0; background: transparent; border-radius: 9px; padding: 9px; font: inherit; font-weight: 600; color: var(--muted); cursor: pointer; }
.tabs button.on { background: var(--panel); color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
label { display: block; font-size: 14px; color: var(--muted); margin: 12px 0 5px; }
input { width: 100%; font: inherit; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--ink); direction: ltr; text-align: left; }
input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.go { width: 100%; margin-top: 18px; border: 0; border-radius: 12px; background: var(--accent); color: #fff; font: inherit; font-weight: 700; font-size: 17px; padding: 12px; cursor: pointer; }
.go:disabled { opacity: .5; cursor: default; }
.ghost { width: 100%; margin-top: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); color: var(--ink); font: inherit; font-weight: 600; padding: 11px; cursor: pointer; display: flex; gap: 10px; align-items: center; justify-content: center; }
.ghost:disabled { opacity: .55; cursor: default; }
.or { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; margin: 16px 0 6px; }
.or::before, .or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.link { background: none; border: 0; color: var(--muted); font: inherit; font-size: 14px; text-decoration: underline; cursor: pointer; padding: 0; margin-top: 12px; }
.say { min-height: 22px; margin-top: 12px; font-size: 14px; line-height: 1.5; }
.say.bad { color: var(--bad); }
.say.good { color: var(--good); }
.btnlink { display: inline-block; margin-top: 22px; background: var(--accent); color: #fff; text-decoration: none; border-radius: 12px; padding: 12px 26px; font-weight: 700; }
.small { font-size: 13px; color: var(--muted); }
.gbtn { display: flex; justify-content: center; min-height: 44px; margin-top: 10px; }
[hidden] { display: none !important; }                       /* .ghost sets display, which beat the hidden attribute */
