/* Shared by the offer and the privacy policy. Same CS2 palette as the landing:
   a legal page on a different colour scheme reads as a different company. */
:root {
  --ground: #12171B;
  --panel: #1B2229;
  --hairline: #2E3941;
  --text: #D7DEE4;
  --muted: #8A959E;
  --accent: #5E98D9;
  --amber: #E4AE39;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font: 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 820px; margin: 0 auto; padding: 0 20px; }
header { border-bottom: 1px solid var(--hairline); padding: 22px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand img { width: 28px; height: 28px; }
/* The name in the emblem's blue-to-violet, as in the landing's header. */
.brand b {
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 14px;
  background: linear-gradient(100deg, #5E98D9 0%, #8847FF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
main { padding: 40px 0 80px; }
h1 { font-size: 30px; line-height: 1.25; margin: 0 0 6px; }
.updated { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
h2 { font-size: 19px; margin: 34px 0 10px; }
p, li { color: var(--text); }
ul { padding-left: 22px; }
li { margin: 6px 0; }
a { color: var(--accent); }
.note {
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--amber);
  background: var(--panel);
  padding: 14px 16px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 14.5px;
}
.fill { color: var(--amber); font-weight: 600; }
footer { border-top: 1px solid var(--hairline); padding: 22px 0; color: var(--muted); font-size: 14px; }
footer a { color: var(--muted); }
@media (max-width: 560px) { h1 { font-size: 24px; } }
