/* Shared by /privacy and /terms. The landing page keeps its styles inline
   because it is the file EAS Hosting serves for every unmatched path. */
:root {
  --bg: #0a0a0b;
  --panel: hsl(255, 2%, 15%);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
  --blue: #1261f9;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 48px 24px 80px;
  line-height: 1.6;
}
header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
header img {
  display: block;
  width: 180px;
  max-width: 60vw;
  height: auto;
}
h1 {
  font-size: 28px;
  margin: 0 0 4px;
}
h2 {
  font-size: 18px;
  margin: 32px 0 8px;
}
p,
li {
  color: var(--muted);
}
.updated {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 24px;
}
a {
  color: var(--blue);
}
footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
}
footer a {
  margin-right: 16px;
}
