/* offscreen.review — Snail Design v1, restrained.
   Law: no italics anywhere. No IDE aesthetics. One accent. Warm paper, deep ink. */
:root {
  --bg: #0b0e0c;
  --bg2: #1c231a;
  --fg: #f2f5ee;
  --muted: #a0aa97;
  --line: rgba(242, 245, 238, 0.09);
  --lime: #a3e635;
  --teal: #2dd4bf;
  --gold: #ffc266;
  --coral: #ff6b5e;
  --ink: #131a07;
  --paper: #f6f8f1;
  --sans: "Söhne", "Inter", -apple-system, "SF Pro Text", system-ui, sans-serif;
  --serif: "Fraunces", "Iowan Old Style", "Palatino", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* italics are banned site-wide — element, attribute, everything */
* { font-style: normal !important; }
em, i, cite, var, dfn, address { font-style: normal !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--lime); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }
