:root {
  color-scheme: dark;
  --bg: #11131a;
  --panel: #191d26;
  --text: #f2efe4;
  --muted: #c8c1ad;
  --accent: #d7a84f;
  --line: #3a3440;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    linear-gradient(rgba(17, 19, 26, 0.82), rgba(17, 19, 26, 0.94)),
    radial-gradient(circle at 50% 12%, rgba(215, 168, 79, 0.18), transparent 36%),
    var(--bg);
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.splash {
  width: min(760px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo {
  width: min(420px, 82vw);
  height: auto;
  margin-bottom: 24px;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
}

.lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.55;
}

p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

nav {
  margin-top: 28px;
}

nav a,
.back {
  display: inline-block;
  padding: 10px 0;
  font-weight: 700;
}

.policy {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.policy h1 {
  margin-top: 24px;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.updated {
  margin-top: 12px;
  color: var(--accent);
}

section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

section p {
  margin: 0;
}

code {
  overflow-wrap: anywhere;
  color: var(--text);
}
