:root {
  color-scheme: dark;
  --bg: #1a1b26;
  --surface: #202230;
  --deep: #151620;
  --text: #c0caf5;
  --muted: #969fbe;
  --line: #383d54;
  --accent: #b2d984;
  --blue: #92b4ff;
  --orange: #e0af68;
  --purple: #bb9af7;
  --shadow: #10111a;
  --display: #68728f;
  --font:
    "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}
:root[data-theme="forest"] {
  --bg: #272e29;
  --surface: #303a32;
  --deep: #202722;
  --text: #e2dfca;
  --muted: #b1baaa;
  --line: #4a584a;
  --accent: #b5ce94;
  --blue: #a6c8ce;
  --orange: #e6bf89;
  --purple: #d3b5c9;
  --shadow: #19201c;
  --display: #82917a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 14px/1.75 var(--font);
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a,
button,
summary {
  touch-action: manipulation;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: var(--accent);
  color: var(--deep);
}
[hidden] {
  display: none !important;
}
svg {
  display: block;
}
figure,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.35;
  letter-spacing: -1.5px;
  margin: 0;
}
h3 {
  font-size: 16px;
  line-height: 1.5;
}
code {
  font-family: var(--font);
  overflow-wrap: anywhere;
}
.container {
  max-width: 1240px;
  padding: 0 40px;
  margin: auto;
}
.accent,
.green {
  color: var(--accent);
}
.blue {
  color: var(--blue);
}
.purple {
  color: var(--purple);
}
.orange {
  color: var(--orange);
}
.small {
  font-size: 11px;
  color: var(--muted);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  z-index: 10;
  background: var(--accent);
  color: var(--deep);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  border-bottom: 1px solid var(--line);
}
.header-inner,
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.header-inner {
  min-height: 88px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -1px;
  text-decoration: none;
}
.brand svg {
  width: 29px;
  height: 29px;
  color: var(--accent);
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  text-decoration: none;
  font-size: 12px;
  color: var(--muted);
}
.site-nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}
.theme-button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  border: 0;
  padding: 8px 0 8px 12px;
  background: none;
  color: var(--muted);
  font-size: 11px;
}
.theme-swatch {
  width: 10px;
  height: 10px;
  background: var(--accent);
  box-shadow: 4px 4px 0 var(--line);
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 76px 0 68px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  line-height: 1.8;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 10%, transparent);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(38px, 4.1vw, 56px);
  line-height: 1.18;
  letter-spacing: -3px;
  margin: 26px 0 24px;
  font-weight: 600;
}
.lede {
  max-width: 470px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.95;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 30px 0 24px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 20px;
  min-height: 48px;
  color: var(--deep);
  background: var(--accent);
  border: 1px solid var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--shadow);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--shadow);
}
.text-link {
  display: inline-block;
  font-size: 12px;
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}
.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.release {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  flex-wrap: wrap;
}
.release span:first-child {
  border: 1px solid var(--line);
  padding: 1px 6px;
  color: var(--blue);
}
.preview {
  min-width: 0;
}
.desktop {
  position: relative;
  border: 1px solid var(--line);
  background: var(--deep);
  box-shadow: 10px 10px 0 var(--shadow);
  overflow: hidden;
}
.desktop-bar {
  position: relative;
  z-index: 1;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  color: var(--muted);
}
.desktop-bar span {
  display: flex;
  align-items: center;
}
.desktop-bar svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}
.desktop-bar b {
  padding: 4px;
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 400;
}
.wallpaper {
  position: absolute;
  inset: 30px 0 0;
  background-image:
    linear-gradient(
      color-mix(in srgb, var(--accent) 7%, transparent) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--accent) 7%, transparent) 1px,
      transparent 1px
    );
  background-size: 24px 24px;
  display: grid;
  place-items: center;
}
.wallpaper span {
  color: var(--accent);
  opacity: 0.08;
  font-size: 380px;
  transform: rotate(-15deg);
  line-height: 1;
}
.app-window {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--blue);
  box-shadow: 6px 6px 0 var(--shadow);
  margin: 25px 25px 27px;
  padding: 18px;
}
.app-title,
.app-title strong {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-title {
  justify-content: space-between;
}
.app-title strong {
  font-size: 15px;
  font-weight: 600;
}
.app-title svg {
  width: 21px;
  height: 21px;
  color: var(--accent);
}
.demo-badge {
  font-size: 8px;
  letter-spacing: 1px;
  border: 1px solid var(--line);
  padding: 1px 5px;
  color: var(--muted);
}
.app-subtitle {
  color: var(--muted);
  font-size: 9px;
  margin-top: 3px;
}
.demo-summary {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  margin: 20px 0 14px;
  color: var(--muted);
}
.demo-summary span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
}
.demo-summary b {
  font-weight: 400;
}
.demo-summary i {
  width: 5px;
  height: 5px;
  background: var(--accent);
}
.demo-filters {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}
.demo-filters button {
  flex: 1;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  min-height: 40px;
  padding: 7px 4px;
  color: var(--muted);
  font-size: 10px;
}
.demo-filters button[aria-pressed="true"] {
  color: var(--blue);
  background: var(--surface);
  border-color: var(--blue);
}
.demo-list {
  min-height: 248px;
}
.demo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
}
.demo-row:last-of-type {
  border-bottom: 0;
}
.app-icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  background: var(--surface);
  font-size: 13px;
}
.app-info {
  min-width: 0;
  flex: 1;
}
.app-info strong {
  display: block;
  font-size: 11px;
  font-weight: 500;
}
.app-info > span {
  display: block;
  font-size: 9px;
  color: var(--muted);
}
.switch {
  display: grid;
  place-items: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
}
.switch > span {
  display: block;
  width: 30px;
  height: 17px;
  border-radius: 12px;
  border: 1px solid var(--muted);
  background: var(--surface);
  position: relative;
}
.switch > span:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  background: var(--muted);
  transition: transform 0.15s;
}
.switch[aria-checked="true"] > span {
  background: var(--accent);
  border-color: var(--accent);
}
.switch[aria-checked="true"] > span:after {
  background: var(--deep);
  transform: translateX(13px);
}
.demo-feedback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  min-height: 33px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}
.demo-feedback button {
  padding: 8px 4px;
  color: var(--accent);
  border: 0;
  background: none;
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.demo-empty {
  padding: 26px 5px;
  font-size: 11px;
  color: var(--muted);
}
figcaption {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 19px;
  font-size: 9px;
  color: var(--muted);
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.principles > div {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 23px 24px;
}
.principles > div:first-child {
  padding-left: 0;
}
.principles > div + div {
  border-left: 1px solid var(--line);
}
.principle-mark {
  font-size: 24px;
  color: var(--accent);
}
.principles p {
  font-size: 11px;
}
.principles small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-top: 3px;
}
.section {
  padding: 76px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}
.section-heading .eyebrow,
.privacy-band .eyebrow,
.install .eyebrow,
.faq-section .eyebrow {
  margin-bottom: 15px;
}
.section-heading > p {
  font-size: 11px;
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
.steps article {
  border-top: 1px solid var(--line);
  padding-top: 23px;
}
.step-index {
  font-size: 11px;
  color: var(--blue);
}
.steps h3 {
  margin: 15px 0 10px;
}
.steps p {
  font-size: 12px;
  line-height: 1.95;
  color: var(--muted);
}
.sources-section {
  padding-bottom: 70px;
}
.source-list {
  border-top: 1px solid var(--line);
}
.source-list article {
  display: grid;
  grid-template-columns: 120px 1fr 145px;
  gap: 28px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.source-tag {
  font-size: 10px;
  letter-spacing: 0.5px;
}
.source-list h3 {
  margin: 0 0 5px;
  font-size: 14px;
}
.source-list p {
  font-size: 11px;
  color: var(--muted);
  max-width: 620px;
}
.source-list code {
  text-align: right;
  font-size: 11px;
  color: var(--muted);
}
.note {
  font-size: 11px;
  color: var(--muted);
  border-left: 2px solid var(--orange);
  padding-left: 14px;
  margin-top: 25px;
}
.privacy-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 40px;
}
.privacy-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 12px;
  margin: 18px 0 15px;
  max-width: 440px;
}
.local-diagram {
  align-self: center;
  border: 1px dashed var(--line);
  padding: 18px 22px 22px;
  text-align: center;
}
.diagram-label {
  color: var(--muted);
  font-size: 9px;
  text-align: left;
  margin-bottom: 24px;
}
.diagram-sources {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
}
.diagram-sources span {
  border: 1px solid var(--line);
  padding: 4px 8px;
}
.diagram-line {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 4px 0;
}
.diagram-app {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--accent);
  font-size: 14px;
}
.diagram-app svg {
  width: 22px;
  height: 22px;
}
.diagram-app strong {
  font-weight: 500;
}
.diagram-backup {
  font-size: 10px;
}
.install {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 65px;
}
.install-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 12px;
  margin: 18px 0 24px;
}
.install-copy > p.small {
  font-size: 9px;
  margin: 16px 0 0;
}
.terminal {
  border: 1px solid var(--line);
  background: var(--deep);
  margin-top: 4px;
}
.terminal-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 7px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
.copy-button {
  padding: 6px 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 10px;
  min-width: 50px;
  min-height: 32px;
}
.terminal-body {
  padding: 20px;
}
.terminal-comment {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.9;
}
.terminal pre {
  font: 12px/1.8 var(--font);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--accent);
  margin: 22px 0;
}
.install-note {
  color: var(--muted);
  font-size: 10px;
  margin-top: 16px;
}
.copy-status {
  min-height: 20px;
  margin-top: 8px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 65px;
  padding: 0 0 76px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  font-size: 12px;
  padding: 18px 25px 18px 0;
  list-style: none;
  position: relative;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  color: var(--accent);
  position: absolute;
  right: 2px;
  top: 17px;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  font-size: 12px;
  color: var(--muted);
  padding: 0 15px 22px 0;
  line-height: 1.9;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  overflow: hidden;
}
.footer-top,
.footer-bottom,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-links {
  flex-wrap: wrap;
  font-size: 10px;
}
.footer-links a {
  text-decoration: none;
  padding: 10px 0;
}
.footer-links [aria-current="page"] {
  color: var(--accent);
}
.footer-bottom {
  margin-top: 20px;
  font-size: 9px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-wordmark {
  margin: 25px 0 -20px;
  font-size: clamp(65px, 15.1vw, 182px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.06em;
  color: var(--display);
}
.legal-hero {
  padding: 48px 0 37px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 30px;
}
.breadcrumb a {
  text-decoration: none;
}
.legal-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -2.5px;
  line-height: 1.2;
  margin: 20px 0;
}
.legal-hero .lede {
  max-width: 700px;
}
.legal-hero .small {
  margin-top: 20px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 65px;
  padding: 40px 0 70px;
}
.legal-nav {
  position: sticky;
  top: 28px;
  align-self: start;
}
.legal-nav p {
  margin-bottom: 12px;
}
.legal-nav a {
  display: block;
  font-size: 10px;
  text-decoration: none;
  padding: 8px 0;
  color: var(--muted);
}
.legal-nav a:hover {
  color: var(--accent);
}
.legal-body {
  max-width: 760px;
  min-width: 0;
}
.legal-body section {
  margin-bottom: 36px;
}
.legal-body h2 {
  font-size: 19px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-bottom: 14px;
}
.legal-body h2 > span {
  font-size: 11px;
  color: var(--accent);
}
.legal-body p,
.legal-body li {
  font-size: 13px;
  line-height: 1.95;
  color: var(--muted);
}
.legal-body p + p {
  margin-top: 15px;
}
.legal-body strong {
  color: var(--text);
  font-weight: 500;
}
.legal-body a {
  color: var(--text);
}
.legal-body ul {
  padding-left: 19px;
}
.legal-body li {
  margin: 10px 0;
}
.legal-body code {
  font-size: 11px;
  color: var(--text);
}
.legal-callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  padding: 21px 24px;
  margin-bottom: 35px;
}
.legal-end {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  flex-wrap: wrap;
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 90px;
  }
}
@media (max-width: 1050px) {
  .container {
    padding-inline: 30px;
  }
  .hero {
    gap: 28px;
  }
  .hero h1 {
    font-size: 43px;
    letter-spacing: -2.6px;
  }
  .app-window {
    margin-inline: 15px;
    padding: 15px;
  }
  .principles > div {
    padding-inline: 16px;
    gap: 12px;
  }
  .principles p {
    font-size: 10px;
  }
  .principles small {
    font-size: 8px;
  }
  .privacy-band {
    gap: 30px;
    padding: 30px;
  }
  .install,
  .faq-section {
    gap: 38px;
  }
  .legal-layout {
    gap: 35px;
    grid-template-columns: 185px minmax(0, 1fr);
  }
}
@media (max-width: 780px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 45px 0;
  }
  .hero h1 {
    font-size: clamp(38px, 7.2vw, 56px);
    letter-spacing: -2px;
  }
  .hero-copy .lede {
    max-width: 580px;
  }
  .preview {
    width: 100%;
    max-width: 560px;
    margin: auto;
  }
  .app-window {
    margin: 25px;
    padding: 20px;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .principles > div,
  .principles > div:first-child {
    padding: 17px 0;
    gap: 18px;
  }
  .principles > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .principles p {
    font-size: 12px;
  }
  .principles small {
    font-size: 10px;
  }
  .principle-mark {
    width: 25px;
    text-align: center;
  }
  .section {
    padding: 50px 0;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p,
  .section-heading > a {
    margin-top: 18px;
  }
  .steps {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .steps article {
    display: grid;
    grid-template-columns: 37px 1fr;
    gap: 6px 10px;
    padding-top: 20px;
  }
  .step-index {
    grid-row: 1 / 3;
    padding-top: 4px;
  }
  .steps h3 {
    margin: 0;
  }
  .steps p {
    grid-column: 2;
  }
  .source-list article {
    grid-template-columns: 86px 1fr;
    gap: 8px 16px;
  }
  .source-list code {
    grid-column: 2;
    text-align: left;
    font-size: 10px;
  }
  .sources-section {
    padding-bottom: 45px;
  }
  .privacy-band {
    grid-template-columns: 1fr;
    padding: 26px;
    gap: 25px;
  }
  .local-diagram {
    max-width: 460px;
    width: 100%;
    justify-self: center;
  }
  .install,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-section {
    padding-bottom: 50px;
  }
  .footer-top {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }
  .footer-links {
    gap: 24px;
  }
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
  .footer-wordmark {
    margin-bottom: -8px;
  }
  .legal-layout {
    display: block;
    padding-top: 25px;
  }
  .legal-nav {
    position: static;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 22px;
  }
  .legal-nav p {
    width: 100%;
    margin-bottom: 5px;
  }
  .legal-hero {
    padding-top: 32px;
  }
}
@media (max-width: 520px) {
  .container {
    padding-inline: 22px;
  }
  .header-inner {
    min-height: 74px;
    gap: 15px;
  }
  .brand {
    font-size: 20px;
    gap: 7px;
  }
  .brand svg {
    width: 25px;
    height: 25px;
  }
  .site-nav {
    gap: 17px;
  }
  .site-nav a {
    font-size: 11px;
  }
  .site-nav .wide-link {
    display: none;
  }
  .theme-button {
    padding: 10px 5px;
    min-width: 30px;
    justify-content: center;
  }
  .theme-button [data-theme-name] {
    display: none;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.9px;
  }
  .hero h1 {
    font-size: clamp(32px, 8.1vw, 42px);
    letter-spacing: -1.9px;
  }
  .lede {
    font-size: 13px;
  }
  .hero-actions {
    gap: 24px;
  }
  .app-window {
    margin: 19px 13px;
    padding: 14px;
  }
  .desktop {
    box-shadow: 6px 6px 0 var(--shadow);
  }
  .demo-row {
    gap: 9px;
  }
  figcaption {
    font-size: 8px;
  }
  .release {
    font-size: 9px;
    gap: 9px;
  }
  .source-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .source-list code {
    grid-column: 1;
  }
  .privacy-band {
    padding: 22px;
  }
  .diagram-sources {
    gap: 5px;
    font-size: 9px;
  }
  .diagram-sources span {
    padding: 4px 6px;
  }
  .local-diagram {
    padding-inline: 10px;
  }
  .terminal-title {
    padding-inline: 12px;
    font-size: 9px;
    gap: 7px;
  }
  .terminal-body {
    padding: 17px 13px;
  }
  .terminal-comment {
    font-size: 9px;
  }
  .terminal pre {
    font-size: 11px;
  }
  .footer-links {
    gap: 15px;
    font-size: 9px;
  }
  .legal-hero h1 {
    font-size: 35px;
    letter-spacing: -1.8px;
  }
  .legal-body h2 {
    font-size: 18px;
  }
  .legal-callout {
    padding: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  :root {
    color-scheme: light;
    --bg: white;
    --surface: #f3f3f3;
    --deep: white;
    --text: black;
    --muted: #333;
    --line: #aaa;
    --accent: #234c23;
  }
  .site-header,
  .site-footer,
  .skip-link,
  .legal-nav {
    display: none;
  }
  .container {
    padding: 0;
  }
  .legal-hero {
    padding-top: 0;
  }
  .legal-layout {
    display: block;
    padding: 20px 0;
  }
  .legal-body {
    max-width: none;
  }
  .legal-body section {
    break-inside: avoid;
  }
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 9px;
    overflow-wrap: anywhere;
  }
}
