/* Shared styling for the privacy policy and the terms.
   Same palette, type and squared-off edges as landing/index.html, so a legal
   page does not look like it was bolted on from a template. */
:root {
  --bg: #120b07;
  --bg-lift: #1a110a;
  --line: rgba(246, 239, 228, .16);
  --line-soft: rgba(246, 239, 228, .09);
  --cream: #f6efe4;
  --muted: #b19c88;
  --orange: #f5793b;
  --gold: #f2b63c;
  --display: 'Outfit', system-ui, sans-serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
*:where(:not(img)) { border-radius: 0 !important; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--orange); color: var(--bg); }

.wrap { max-width: 760px; margin: 0 auto; padding-inline: clamp(20px, 5vw, 40px); }
.mono { font-family: var(--body); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

nav { border-bottom: 1px solid var(--line-soft); background: rgba(18, 11, 7, .88); position: sticky; top: 0; z-index: 40; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; }
.wordmark { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--cream); }
.wordmark img { width: 34px; height: 31px; display: block; }
.wordmark b { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -.01em; }
.nav-inner .mono { color: var(--muted); text-decoration: none; }
.nav-inner .mono:hover { color: var(--cream); }

header.doc { padding-block: clamp(48px, 9vh, 88px) 30px; border-bottom: 1px solid var(--line-soft); }
header.doc h1 { font-family: var(--display); font-weight: 900; font-size: clamp(34px, 6vw, 52px); line-height: 1.05; letter-spacing: -.02em; }
header.doc .updated { color: var(--muted); margin-top: 14px; }

main { padding-block: 40px 90px; }
main h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(21px, 3.2vw, 27px); letter-spacing: -.01em;
  margin: 44px 0 14px; padding-top: 22px; border-top: 1px solid var(--line-soft);
}
main h2:first-of-type { border-top: none; padding-top: 0; margin-top: 8px; }
main h3 { font-family: var(--display); font-weight: 700; font-size: 18px; margin: 26px 0 8px; }
main p { margin-bottom: 16px; }
main ul { margin: 0 0 18px 22px; }
main li { margin-bottom: 9px; }
main a { color: var(--gold); }
strong { color: #fff; font-weight: 700; }

/* The claim the whole policy turns on gets to look like a claim. */
.pull {
  border-left: 3px solid var(--orange);
  padding: 16px 0 16px 20px;
  margin: 26px 0;
  background: var(--bg-lift);
  padding-right: 20px;
}
.pull p:last-child { margin-bottom: 0; }

table { width: 100%; border-collapse: collapse; margin: 18px 0 26px; font-size: 15.5px; }
th, td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
th { font-family: var(--body); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

footer { border-top: 1px solid var(--line-soft); padding-block: 30px 60px; color: var(--muted); font-size: 14px; }
footer a { color: var(--muted); }
footer a:hover { color: var(--cream); }
