:root {
  --paper: #f6f8fa;
  --white: #fff;
  --ink: #17191d;
  --muted: #68717f;
  --line: rgba(23, 25, 29, 0.12);
  --warm: #d9822b;
  --cool: #dfe8ee;
  --blue: #477da9;
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 22px 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 560;
  text-decoration: none;
}

.brand-link img {
  width: 30px;
  height: 30px;
}

.small-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.kicker {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  gap: 11px;
  justify-items: center;
  min-width: 0;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 34px 0;
  color: var(--footer-color, var(--muted));
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.site-footer p {
  max-width: 100%;
  margin: 0;
  overflow-wrap: anywhere;
}

.site-footer a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  max-width: 100%;
}

.footer-nav a {
  font-weight: 560;
}
