/* Vector Leads — public site.
   One stylesheet for the three static pages served at the apex domain.
   No web fonts and no external requests: these pages are read by app
   reviewers and by people on bad mobile connections, and a page that waits
   on a CDN is a page that sometimes does not render at all. */

:root {
  --ink: #1c1612;
  --ink-mid: #4a4038;
  --ink-light: #7d7268;
  --paper: #ffffff;
  --parchment: #faf7f3;
  --seam: #e6ded4;
  --sage: #4a6b5a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f2ece5;
    --ink-mid: #c4bab0;
    --ink-light: #8e857c;
    --paper: #1a1613;
    --parchment: #141110;
    --seam: #2e2823;
    --sage: #7da88f;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

header.site {
  border-bottom: 1px solid var(--seam);
  background: var(--paper);
}

header.site .wrap {
  padding: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}

nav.site {
  margin-left: auto;
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

h1 {
  font-size: 1.9rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.15rem;
  margin: 2.25rem 0 0.5rem;
  letter-spacing: -0.01em;
}

p,
li {
  color: var(--ink-mid);
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.35rem;
}

a {
  color: var(--sage);
  text-underline-offset: 2px;
}

.lede {
  font-size: 1.05rem;
  color: var(--ink-mid);
}

.meta {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-top: 0.25rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--seam);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0;
}

/* Marks a value that must be filled in before this page is published.
   Deliberately loud — an unnoticed placeholder on a privacy policy is worse
   than a missing page. */
.todo {
  background: #ffe9c7;
  color: #6b4a10;
  padding: 0.05em 0.35em;
  border-radius: 3px;
  font-weight: 600;
}

footer.site {
  border-top: 1px solid var(--seam);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--ink-light);
}

footer.site a {
  color: var(--ink-light);
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 1rem 0;
  font-size: 0.925rem;
}

th,
td {
  border: 1px solid var(--seam);
  padding: 0.5rem 0.7rem;
  text-align: left;
  vertical-align: top;
  color: var(--ink-mid);
}

th {
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
}

.table-scroll {
  overflow-x: auto;
}
