/* rcll.ai — one stylesheet, same origin, no external requests.
   The product claims nothing leaves the box; the site must not either. */
:root {
  color-scheme: dark;
  --bg: #0b0d10;
  --panel: #11151c;
  --fg: #e7e9ee;
  --muted: #99a1b3;
  --dim: #6b7488;
  --line: #232833;
  --accent: #7dd3a0;
  --warm: #e0b978;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
main { max-width: 46rem; margin: 0 auto; padding: 3.5rem 1.5rem 4rem; }
nav.top {
  max-width: 46rem; margin: 0 auto; padding: 1.5rem 1.5rem 0;
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  font-size: 0.85rem; letter-spacing: 0.04em;
}
nav.top a { color: var(--muted); text-decoration: none; }
nav.top a:hover, nav.top a[aria-current] { color: var(--accent); }
h1 { font-size: 2.75rem; letter-spacing: 0.12em; margin: 0 0 0.5rem; font-weight: 600; }
h2 {
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); font-weight: 600;
  margin: 3.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--line);
}
h3 { font-size: 1rem; margin: 2rem 0 0.5rem; font-weight: 600; }
p { margin: 0 0 1.25rem; }
ul, ol { margin: 0 0 1.25rem; padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }
.lead { font-size: 1.2rem; margin: 0 0 2rem; }
.muted { color: var(--muted); }
.dim { color: var(--dim); font-size: 0.9rem; }
a { color: var(--accent); }
a:hover { color: #a8e6c1; }
code, .mono, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}
code { font-size: 0.92em; background: #151922; border: 1px solid var(--line); border-radius: 4px; padding: 0.12em 0.38em; }
pre {
  background: var(--panel); border: 1px solid var(--line); border-radius: 6px;
  padding: 1rem 1.1rem; overflow-x: auto; font-size: 0.85rem; line-height: 1.55;
  margin: 0 0 1.25rem;
}
pre code { background: none; border: 0; padding: 0; font-size: inherit; }
table { width: 100%; border-collapse: collapse; margin: 0 0 1.25rem; font-size: 0.92rem; }
th, td { text-align: left; padding: 0.5rem 0.6rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
td.num, th.num { text-align: right; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-variant-numeric: tabular-nums; }
.stats { display: flex; flex-wrap: wrap; gap: 1.75rem 2.5rem; margin: 0 0 1.25rem; }
.stat b { display: block; font-size: 1.75rem; font-weight: 600; font-variant-numeric: tabular-nums; line-height: 1.2; }
.stat span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.scene { border-left: 2px solid var(--line); padding-left: 1.25rem; margin: 0 0 1.5rem; }
.scene .when { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--warm); }
.scene .who { font-family: ui-monospace, monospace; font-size: 0.9rem; color: var(--muted); }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 6px; padding: 1.1rem 1.25rem; margin: 0 0 1.25rem; }
.card h3 { margin-top: 0; }
.note { border-left: 2px solid var(--warm); padding-left: 1rem; color: var(--muted); margin: 0 0 1.25rem; }
.pending code { color: var(--muted); border-style: dashed; }
.pending-note { display: block; font-size: 0.8rem; color: var(--dim); margin-top: 0.35rem; }
.label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.25rem; }
.links { margin: 2.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid var(--line);
         display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem; }
.links > div { min-width: 13rem; }
footer { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); }
footer a { color: var(--muted); }
svg.floor { width: 100%; height: auto; display: block; margin: 0 0 0.75rem; }
@media (max-width: 34rem) {
  h1 { font-size: 2.1rem; }
  main { padding-top: 2.5rem; }
  .stats { gap: 1.25rem 1.75rem; }
  .stat b { font-size: 1.4rem; }
}
