/* Same token language as the product mockup (instrument-panel palette,
   serif/sans/mono type roles) for visual continuity between this page
   and the eventual funnel. System font stacks only -- zero font
   requests, part of why this page should come in Lighthouse-fast. */

:root {
  --bg: #edece6;
  --surface: #f7f6f2;
  --text: #15181c;
  --text-soft: #4a5058;
  --text-faint: #7c8187;
  --rule: #cbc9c0;
  --accent: #a87a2e;
  --accent-tint: #efe3c8;
  --steel: #3e6272;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14171b;
    --surface: #1a1e23;
    --text: #ecebe5;
    --text-soft: #b2b7bc;
    --text-faint: #7f858b;
    --rule: #343a40;
    --accent: #d9a852;
    --accent-tint: #2f2717;
    --steel: #7fabbd;
  }
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-serif, Charter, "Iowan Old Style", Georgia, serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 96px;
}

h1, h2, h3 {
  font-family: ui-sans-serif, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  text-wrap: balance;
  line-height: 1.25;
}
h1 { font-size: 30px; margin: 0 0 8px; }
h2 { font-size: 21px; margin: 44px 0 14px; padding-top: 18px; border-top: 1px solid var(--rule); }
h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
h3 { font-size: 16.5px; margin: 26px 0 10px; color: var(--text); }

p, li { font-size: 16px; }
p { margin: 0 0 14px; max-width: 68ch; }
ul, ol { max-width: 68ch; padding-left: 22px; }
li { margin-bottom: 6px; }

a { color: var(--steel); text-decoration-color: color-mix(in srgb, var(--steel) 45%, transparent); }
a:hover { text-decoration-thickness: 2px; }

strong { font-weight: 700; }

code {
  font-family: ui-monospace, "SF Mono", "Cascadia Code", Consolas, monospace;
  font-size: 0.88em;
  background: var(--accent-tint);
  padding: 0.1em 0.35em;
  border-radius: 3px;
  font-variant-numeric: tabular-nums;
}

hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 40px 0;
}

blockquote {
  margin: 0 0 14px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  color: var(--text-soft);
}

.table-wrap { overflow-x: auto; margin: 0 0 20px; }
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  font-family: ui-sans-serif, "Helvetica Neue", Arial, sans-serif;
}
th, td {
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
th {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 700;
}
td:has(code), td code { font-variant-numeric: tabular-nums; }

@media (max-width: 480px) {
  .page { padding: 32px 16px 72px; }
  h1 { font-size: 25px; }
  h2 { font-size: 19px; }
}
