/* Shared by all three pages. Trovee's palette, kept deliberately plain:
   these are documents people read when something has gone wrong or they are
   deciding whether to trust you. Legibility beats decoration. */
:root {
  --cream: #F4EFE6;
  --card: #FBF8F2;
  --ink: #262320;
  --ink60: rgba(38, 35, 32, 0.62);
  --green: #5F9140;
  --rule: rgba(38, 35, 32, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 20px 80px;
  background: var(--cream);
  color: var(--ink);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

.wrap { max-width: 720px; margin: 0 auto; }

header {
  padding: 44px 0 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}

.brand {
  display: inline-block;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

h1 { font-size: 30px; line-height: 1.2; margin: 18px 0 6px; letter-spacing: -0.02em; }
h2 { font-size: 19px; margin: 34px 0 8px; letter-spacing: -0.01em; }
h3 { font-size: 16px; margin: 22px 0 6px; }

.updated { color: var(--ink60); font-size: 14px; margin: 0; }

p, li { color: var(--ink); }
ul { padding-left: 22px; }
li { margin-bottom: 6px; }

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

.lead {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 24px 0;
}

.lead p:first-child { margin-top: 0; }
.lead p:last-child { margin-bottom: 0; }

table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { font-weight: 700; }

footer {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  color: var(--ink60);
  font-size: 14px;
}

footer a { color: var(--green); }
