/* Shared styling for the legal / support pages.
   Matches index.html: black ground, pale-green type, monospace.
   Kept as a separate file so the three documents stay identical without a
   build step — they are plain static HTML, deployed as-is. */

:root { color-scheme: dark; }
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #e8ffe8;
  font-family: ui-monospace, "SF Mono", "Menlo", monospace;
  line-height: 1.65;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

a { color: #6cff86; text-decoration: underline; text-underline-offset: 3px; }
a:hover { background: rgba(108, 255, 134, 0.12); }

.brand {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #6cff86;
  text-decoration: none;
  margin-bottom: 40px;
}
.brand:hover { background: none; opacity: 0.8; }

h1 {
  font-size: 26px;
  letter-spacing: 1px;
  margin: 0 0 8px;
}

.updated {
  font-size: 12px;
  color: rgba(232, 255, 232, 0.45);
  margin: 0 0 40px;
}

h2 {
  font-size: 15px;
  letter-spacing: 1px;
  color: #6cff86;
  margin: 40px 0 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 255, 232, 0.12);
}

h3 {
  font-size: 13px;
  letter-spacing: 0.5px;
  margin: 24px 0 8px;
  color: rgba(232, 255, 232, 0.9);
}

p, li { font-size: 14px; color: rgba(232, 255, 232, 0.82); }
ul { padding-left: 20px; }
li { margin-bottom: 8px; }

strong { color: #e8ffe8; }

/* Unfilled placeholder — deliberately loud so it can't ship by accident.
   See the pre-release checklist in DECISIONS.md. */
.todo {
  background: #ff4444;
  color: #000;
  font-weight: bold;
  padding: 1px 6px;
  border-radius: 2px;
}

.note {
  border-left: 2px solid #6cff86;
  padding: 12px 16px;
  margin: 24px 0;
  background: rgba(108, 255, 134, 0.06);
  font-size: 13px;
}

.footer {
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 255, 232, 0.12);
  font-size: 12px;
  color: rgba(232, 255, 232, 0.4);
}
.footer a { color: rgba(232, 255, 232, 0.6); }

@media (max-width: 640px) {
  .wrap { padding: 36px 18px 72px; }
  h1 { font-size: 21px; }
}
