/* Document pages — privacy, terms, support, the Zoom guide.
 *
 * style.css is built for the landing page: a fixed hero, a two-column card
 * grid, everything centred. None of that suits a page someone has to read a
 * thousand words of, so these pages link this instead.
 *
 * Same world though — black ground, monospace, Special Elite for headings.
 * What changes is the measure, the leading and the vertical rhythm, because the
 * job changes from "look at this" to "read this".
 *
 * These four are the URLs Zoom asks for at submission, so they are also the
 * pages a reviewer will read. Plain, complete, and no marketing.
 */

:root {
  --bg:      #000000;
  --ink:     #ffffff;
  --muted:   #b2b1b1;
  --faint:   #7d7c7c;
  --line:    rgba(255, 255, 255, .14);
  --line-soft: rgba(255, 255, 255, .07);
  --panel:   #0b0b0b;
}

* { box-sizing: border-box; }

body {
  font-family: monospace;
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

/* ── Chrome ────────────────────────────────────────────────────────────────
   Not the landing page's fixed hero: on a long document a fixed header eats a
   third of a laptop screen and never gives it back. */
.topbar {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.topbar .brand {
  font-family: 'Special Elite', monospace;
  font-size: 15px;
  letter-spacing: .5px;
  color: var(--ink);
  text-decoration: none;
}
.topbar .spacer { flex: 1; }
.topbar a.back { font-size: 13px; color: var(--muted); text-decoration: none; }
.topbar a.back:hover { color: var(--ink); }

/* ── Document ──────────────────────────────────────────────────────────────
   Around 68 characters. Monospace runs wide, so the pixel width is generous
   while the character count stays where the eye wants it. */
.doc {
  max-width: 46rem;
  margin: 0 auto;
  padding: 52px 24px 96px;
}

.doc header { margin-bottom: 40px; }
h1 {
  font-family: 'Special Elite', monospace;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: .5px;
  margin: 0;
}
.updated {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--faint);
}
.lede {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14.5px;
}

h2 {
  font-family: 'Special Elite', monospace;
  font-size: 18px;
  letter-spacing: .4px;
  margin: 46px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
h3 {
  font-size: 14.5px;
  font-weight: 600;
  margin: 28px 0 8px;
  color: var(--ink);
}

p { margin: 0 0 16px; color: var(--muted); }
p strong, li strong { color: var(--ink); font-weight: 600; }

ul, ol { margin: 0 0 16px; padding-left: 26px; color: var(--muted); }
li { margin-bottom: 9px; }
li::marker { color: var(--faint); }

a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--muted); }

/* ── Numbered procedure ────────────────────────────────────────────────────
   Used where the order genuinely matters — adding and removing the app. Not
   decoration: a reader following these has to know they are on step three. */
ol.steps { list-style: none; padding: 0; counter-reset: step; }
ol.steps > li {
  counter-increment: step;
  position: relative;
  padding: 0 0 0 42px;
  margin-bottom: 20px;
}
ol.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 12px;
  color: var(--ink);
}
ol.steps > li > strong { display: block; color: var(--ink); margin-bottom: 3px; }

/* ── Callout ───────────────────────────────────────────────────────────────*/
.note {
  border: 1px solid var(--line);
  border-left-width: 3px;
  border-radius: 4px;
  background: var(--panel);
  padding: 14px 16px;
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}
.note strong { color: var(--ink); }
.note :last-child { margin-bottom: 0; }

/* ── Definition rows ───────────────────────────────────────────────────────
   For "what we store" and "what it is for" — a table would scroll sideways on
   a phone, and this reads the same at every width. */
dl.rows { margin: 0 0 20px; }
dl.rows > div {
  display: grid;
  grid-template-columns: 13rem 1fr;
  gap: 6px 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
}
dl.rows > div:last-child { border-bottom: 1px solid var(--line-soft); }
dl.rows dt { color: var(--ink); font-size: 13.5px; }
dl.rows dd { margin: 0; color: var(--muted); font-size: 14px; }
@media (max-width: 620px) {
  dl.rows > div { grid-template-columns: 1fr; gap: 2px; }
}

code {
  font-size: .92em;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  padding: 1px 5px;
  color: var(--ink);
}

.foot {
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--faint);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.foot a { color: var(--faint); }
.foot a:hover { color: var(--muted); }

@media (max-width: 880px) {
  .doc { padding: 36px 20px 72px; }
  h1 { font-size: 22px; }
}
