@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("/fonts/baloo2-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --denim: #3d5bae;
  --butter: #f4cb52;
  --cream: #faf4e6;
  --paper: #fffdf6;
  --ink: #1a1a20;
  --ink-soft: #2e2e36;
  --mute: #6d6657;
  --line: #e5dcc6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

header.legal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  text-decoration: none;
  color: inherit;
}

.sunny-mark {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 48px;
  flex: 0 0 auto;
}

.sunny-body,
.sunny-head {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.sunny-body {
  left: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  background: var(--denim);
}

.sunny-head {
  left: 6px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--butter);
}

.wordmark {
  font-family: "Baloo 2", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 28px;
  color: var(--denim);
  line-height: 1;
}

h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.15;
}

.subtitle {
  color: var(--mute);
  font-size: 14px;
  margin: 0 0 40px;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
}

p, ul, ol {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

ul, ol {
  padding-left: 22px;
}

li {
  margin-bottom: 6px;
}

a {
  color: var(--denim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration: none;
}

strong {
  color: var(--ink);
  font-weight: 700;
}

.callout {
  border-left: 3px solid var(--denim);
  background: var(--paper);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0 24px;
  font-size: 15px;
}

footer.legal-footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 13px;
}

footer.legal-footer a {
  color: var(--mute);
}

@media (max-width: 600px) {
  .wrap { padding: 32px 20px 64px; }
  h1 { font-size: 28px; }
  h2 { font-size: 18px; }
  p, ul, ol { font-size: 15px; }
}
