/* Unsaid – Website. Bewusst ohne externe Ressourcen: keine Webfonts, keine
   Skripte, keine Cookies. Systemschrift, weißer Grund, schwarze Pillen,
   Pastelltöne wie in der App. */
:root { --ink:#111; --body:#6e6a7c; --soft:#7a7684; --muted:#9a96a8; --surface:#f2f2f5; --border:#ededf0;
        --green:#b8f49a; --yellow:#fbde6b; --orange:#fbb68c; --blue:#a8cbf7; --pink:#f9b6d2; --purple:#d6b8f7; }
* { box-sizing:border-box; }
html { -webkit-text-size-adjust:100%; }
body { margin:0; background:#fff; color:var(--ink); font:16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
a { color:#6b4fa8; text-decoration:none; } a:hover { text-decoration:underline; }
header { padding:22px 24px; display:flex; align-items:center; justify-content:space-between; max-width:820px; margin:0 auto; gap:16px; flex-wrap:wrap; }
.brand { font-weight:800; font-size:20px; letter-spacing:-.3px; color:var(--ink); display:flex; align-items:center; gap:10px; }
.brand .face { width:30px; height:30px; border-radius:10px; background:var(--green); display:inline-block; }
nav a { color:var(--soft); font-weight:600; font-size:14px; margin-left:16px; }
nav a[aria-current] { color:var(--ink); }
main { max-width:720px; margin:0 auto; padding:16px 24px 64px; }
h1 { font-size:34px; line-height:1.1; letter-spacing:-.8px; font-weight:800; margin:24px 0 12px; }
h2 { font-size:22px; line-height:1.2; letter-spacing:-.3px; font-weight:800; margin:40px 0 10px; }
h3 { font-size:17px; font-weight:800; margin:26px 0 6px; }
p, li { color:#3a3744; }
.lead { font-size:18px; color:var(--body); font-weight:500; }
.meta { color:var(--muted); font-size:14px; font-weight:600; }
.card { background:var(--surface); border-radius:22px; padding:18px 20px; margin:18px 0; }
.card.blue { background:var(--blue); } .card.yellow { background:var(--yellow); } .card.green { background:var(--green); }
.card p { color:var(--ink); margin:6px 0; }
.pill { display:inline-block; background:var(--ink); color:#fff; font-weight:800; border-radius:999px; padding:12px 22px; margin-top:8px; }
.pill:hover { text-decoration:none; opacity:.85; }
.faces { display:grid; grid-template-columns:repeat(6,1fr); gap:10px; margin:26px 0; max-width:420px; }
.faces span { aspect-ratio:1; border-radius:18px; display:block; }
.faces span:nth-child(2n) { border-radius:50%; }
table { border-collapse:collapse; width:100%; font-size:15px; margin:12px 0; }
th, td { text-align:left; vertical-align:top; padding:8px 10px; border-bottom:2px solid var(--border); }
th { font-weight:800; }
footer { max-width:820px; margin:0 auto; padding:24px; color:var(--muted); font-size:13px; font-weight:600; display:flex; gap:16px; flex-wrap:wrap; border-top:2px solid var(--border); }
footer a { color:var(--muted); }
code { background:var(--surface); border-radius:6px; padding:1px 6px; font-size:14px; }
.placeholder { background:var(--yellow); border-radius:6px; padding:0 6px; font-weight:700; }
@media (max-width:520px) { h1 { font-size:28px; } nav a { margin-left:10px; } }
