/* The legal pages: the same language as the website – white, hairlines, one accent, no gradients. */
@font-face {
  font-family: Satoshi;
  src: url("/static/fonts/satoshi/satoshi-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Source;
  src: url("/static/fonts/source-sans-pro/SourceSansPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
/* the logo comes as WebP with a GIF behind it: the picture element takes no part in the layout */
picture {
  display: contents;
}
:root {
  --ink: #1b3263;
  --muted: rgba(27, 50, 99, 0.7);
  --text: rgba(27, 50, 99, 0.72);
  --line: rgba(27, 50, 99, 0.1);
  --blue: #1f66dc;
}
body {
  margin: 0;
  font-family: Source, system-ui, sans-serif;
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.legal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px max(20px, 5%);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.legal-header img {
  display: block;
  height: 26px;
  width: auto;
  mix-blend-mode: multiply;
}
.legal-header a {
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
}
.legal-header a:hover {
  color: var(--ink);
}
.legal-header-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 20px;
}
.legal-container {
  max-width: 720px;
  margin: 72px auto 96px;
  padding: 0 24px;
}
.legal-container h1 {
  margin: 0 0 12px;
  font: 700 48px/1.04 Satoshi, system-ui, sans-serif;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.legal-container .updated {
  margin: 0 0 48px;
  color: var(--muted);
  font-size: 15px;
}
.legal-container h2 {
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font: 700 20px/1.2 Satoshi, system-ui, sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.legal-container h2 ~ h2 {
  margin-top: 40px;
}
.legal-container p,
.legal-container li {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}
.legal-container ul {
  padding-left: 20px;
}
.legal-container strong {
  color: var(--ink);
}
.legal-container a {
  color: var(--blue);
}
.info-box {
  margin-top: 12px;
}
.legal-footer {
  margin: 0 5%;
  padding: 30px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.legal-footer a {
  display: inline-block;
  margin: 0 10px;
  padding: 8px 0;
  color: var(--muted);
  text-decoration: none;
}
.legal-footer a:hover {
  color: var(--ink);
}
a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
@media (max-width: 600px) {
  .legal-container {
    margin-top: 40px;
  }
  .legal-container h1 {
    font-size: 36px;
  }
  .legal-header img {
    height: 22px;
  }
  .legal-header-links {
    column-gap: 16px;
  }
}
