/* OwnTunnel — owntunnel.app
   One stylesheet, no framework, no JavaScript.
   Direction: quiet technical document. Hairlines, wide margins, one accent. */

/* ----------------------------------------------------------------- fonts */

/* Manrope is self-hosted, not pulled from Google Fonts: a page that promises
   "your traffic never touches infrastructure we do not control" cannot hand
   every visitor's IP address to a third party just to draw its own headline.
   One variable file (wght 200–800) covers the 400/500/800 the site uses.
   Source, licence and subsetting recipe: site/assets/fonts/, site/README.md. */
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-var-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------- tokens */

:root {
  color-scheme: light dark;

  /* Brand ink / paper (brand/README.md) */
  --paper: #f5f7f8;
  --surface: #ffffff;
  --ink: #212a30;
  --ink-2: #3c464c;
  --ink-3: #5d6970;
  --rule: #dce3e6;
  --rule-strong: #bcc7cd;
  --accent: #166b57;
  --accent-quiet: #e6efec;

  /* Second semantic colour, used only where getting it wrong costs money
     (the wrong-network warning on /donate). Not decorative — do not spread it. */
  --warn: #7d4f0c;
  --warn-quiet: #fbf0dc;
  --warn-rule: #e3c890;

  --font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --text-micro: 0.75rem;
  --text-small: 0.9375rem;
  --text-base: clamp(1.0625rem, 1.02rem + 0.22vw, 1.1875rem);
  --text-lede: clamp(1.1875rem, 1.06rem + 0.6vw, 1.5rem);
  --text-h2: clamp(1.375rem, 1.2rem + 0.8vw, 1.875rem);
  --text-hero: clamp(2.75rem, 1.7rem + 4.6vw, 5rem);
  --text-numeral: clamp(2rem, 1.5rem + 2vw, 3rem);

  --page: min(100% - 2.5rem, 66rem);
  --measure: 34rem;
  --space-section: clamp(3.5rem, 2.4rem + 4.6vw, 7rem);

  --duration: 180ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #12171b;
    --surface: #1a2126;
    --ink: #edf1f2;
    --ink-2: #c3ccd1;
    --ink-3: #98a4ab;
    --rule: #28323a;
    --rule-strong: #3c4952;
    --accent: #63c9ac;
    --accent-quiet: #1c2b28;
    --warn: #e8b96e;
    --warn-quiet: #2b2317;
    --warn-rule: #5a4620;
  }
}

:root[data-theme="dark"] {
  --paper: #12171b;
  --surface: #1a2126;
  --ink: #edf1f2;
  --ink-2: #c3ccd1;
  --ink-3: #98a4ab;
  --rule: #28323a;
  --rule-strong: #3c4952;
  --accent: #63c9ac;
  --accent-quiet: #1c2b28;
  --warn: #e8b96e;
  --warn-quiet: #2b2317;
  --warn-rule: #5a4620;
}

/* ---------------------------------------------------------------- base */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.025em; margin: 0; }
p, ul, ol, table, figure, blockquote { margin: 0; }

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--accent-quiet);
  padding: 0.1em 0.35em;
  border-radius: 3px;
  overflow-wrap: anywhere;
}

strong { font-weight: 800; letter-spacing: -0.01em; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface);
  color: var(--ink);
  padding: 0.75rem 1rem;
  z-index: 10;
}
.skip:focus { left: 1rem; top: 1rem; }

.wrap { width: var(--page); margin-inline: auto; }

/* ---------------------------------------------------------------- head */

.site-head {
  width: var(--page);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.75rem 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.wordmark b { font-weight: 800; }
.wordmark:hover { color: var(--accent); }
.wordmark .mark { width: 1.5rem; height: 1.5rem; flex: none; }

.lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* The language switch and the footer nav are standalone controls, not links
   inside a sentence, so WCAG 2.2's 24 px target minimum applies to them. The
   padding buys the target without moving the text: negative margin on the
   inline axis keeps the row's optical spacing exactly where it was. */
.lang a,
.lang-current {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 0.4rem;
  margin-inline: -0.4rem;
  text-decoration: none;
}
.lang a { color: var(--ink-3); }
.lang a:hover { color: var(--accent); text-decoration: underline; }
.lang-current { color: var(--ink); }
.lang .sep { color: var(--rule-strong); }

/* ---------------------------------------------------------------- hero */

/* The hero has to put the product on screen and still leave the call to
   action inside the first viewport on a 390 x 844 phone, so the vertical
   padding here is deliberately tighter than --space-section. */
.hero {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(2rem, 1.3rem + 3vw, 4.5rem) clamp(2.75rem, 1.8rem + 4vw, 5.5rem);
  display: grid;
  gap: clamp(2.25rem, 1rem + 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 56rem) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(0, 18.5rem); }
}

.eyebrow {
  font-size: var(--text-micro);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.lede {
  font-size: var(--text-lede);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 34rem;
  margin-top: 1.25rem;
  font-weight: 400;
}
.lede em { font-style: normal; color: var(--ink); font-weight: 800; }

/* ---------------------------------------------------------------- actions */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;          /* 44px: the smallest touch target worth having */
  padding: 0.6rem 1.35rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: var(--text-small);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background-color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              color var(--duration) var(--ease);
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.btn:active { transform: translateY(1px); }

.btn-quiet {
  background: transparent;
  border-color: var(--rule-strong);
  color: var(--ink);
}
.btn-quiet:hover { background: transparent; border-color: var(--accent); color: var(--accent); }

/* Store status. Deliberately a sentence rather than a badge: there is no
   store link to give yet, and a greyed-out badge would imply otherwise. */
.status {
  max-width: 32rem;
  margin-top: 1.75rem;
  padding-left: 0.95rem;
  border-left: 2px solid var(--accent);
  font-size: var(--text-small);
  line-height: 1.55;
  color: var(--ink-2);
}
.status b { color: var(--ink); font-weight: 800; }

.hero-meta {
  margin-top: 1rem;
  max-width: 32rem;
  font-size: var(--text-small);
  color: var(--ink-3);
}

/* ---------------------------------------------------------------- screens */

/* A restrained frame, not a photorealistic phone: enough edge to read the
   picture as a device, not enough to become decoration. */
.device-frame {
  padding: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: 1.9rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05), 0 22px 45px -30px rgb(0 0 0 / 0.35);
}
.device-frame img { display: block; width: 100%; height: auto; border-radius: 1.55rem; }

.device {
  justify-self: center;
  width: 100%;
  max-width: 11.5rem;
}
@media (min-width: 30rem) { .device { max-width: 14rem; } }
@media (min-width: 56rem) { .device { max-width: 100%; } }

.device figcaption,
.shot figcaption {
  margin-top: 1rem;
  font-size: var(--text-micro);
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 22rem;
}
.device figcaption { text-align: center; margin-inline: auto; }
.shot figcaption b { color: var(--ink-2); font-weight: 800; }

.shot { width: 100%; max-width: 13rem; justify-self: center; }
.shot--android { max-width: 15rem; }

/* Fact list beside a screenshot. The list leads; the picture supports it. */
.split { display: grid; gap: 2.5rem; }
@media (min-width: 44rem) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 15rem);
    gap: clamp(2rem, 1rem + 3vw, 3.5rem);
    align-items: start;
  }
  .shot { justify-self: end; }
  .shot figcaption { text-align: left; }
}

.claim {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(1.75rem, 1rem + 2vw, 2.75rem);
}
.claim p {
  font-size: var(--text-h2);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
  max-width: 30ch;
}
.claim p span { color: var(--ink-3); }

/* ---------------------------------------------------------------- sections */

.section {
  width: var(--page);
  margin-inline: auto;
  padding-block: var(--space-section);
  border-bottom: 1px solid var(--rule);
}
.section:last-of-type { border-bottom: 0; }

@media (min-width: 60rem) {
  .section {
    display: grid;
    grid-template-columns: 11rem minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
  }
}

.section-label {
  font-size: var(--text-micro);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.5rem;
}
@media (min-width: 60rem) {
  .section-label { margin-bottom: 0; padding-top: 0.4rem; }
}

.section h2 {
  font-size: var(--text-h2);
  font-weight: 500;
  max-width: 22ch;
}

.section > div > * + * { margin-top: 1.25rem; }
.section p { max-width: var(--measure); color: var(--ink-2); }

/* steps */

.steps {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: step;
  margin-top: 2rem !important;
}
@media (min-width: 46rem) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 0 2rem; }
}

.steps li {
  border-top: 1px solid var(--rule-strong);
  padding-top: 1rem;
  padding-bottom: 1.75rem;
}
@media (min-width: 46rem) {
  .steps li { padding-bottom: 0; }
}

.steps .n {
  display: block;
  font-size: var(--text-numeral);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--rule-strong);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.75rem;
}
.steps h3 { font-size: 1.0625rem; font-weight: 800; margin-bottom: 0.5rem; }
.steps p { font-size: var(--text-small); color: var(--ink-3); max-width: 26rem; }

/* plain fact list */

.facts { list-style: none; padding: 0; }
.facts li {
  border-top: 1px solid var(--rule);
  padding-block: 0.9rem;
  display: flex;
  gap: 1rem;
  align-items: baseline;
  color: var(--ink-2);
  font-size: var(--text-small);
}
.facts li b { color: var(--ink); font-weight: 800; flex: none; min-width: 8.5rem; }
.facts li:last-child { border-bottom: 1px solid var(--rule); }
.facts .num { font-variant-numeric: tabular-nums; }
.facts li span strong { color: var(--ink); }
.facts li span { line-height: 1.6; }

/* Narrow screens: the label sits above its line rather than squeezing it. */
@media (max-width: 30rem) {
  .facts li { display: block; }
  .facts li b { display: block; min-width: 0; margin-bottom: 0.2rem; }
}

/* ------------------------------------------------- who sees what: flows */

.flows {
  list-style: none;
  padding: 0;
  margin-top: 2rem !important;
  display: grid;
  gap: 1px;                       /* the hairlines between rows are the gap */
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}

.flow {
  background: var(--paper);
  padding: 1.25rem clamp(1rem, 0.8rem + 1vw, 1.5rem);
  border-left: 3px solid var(--rule-strong);
}
.flow--live { border-left-color: var(--accent); }
.flow--never { border-left-color: var(--rule); }

.flow h3 {
  font-size: var(--text-micro);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.flow--live h3 { color: var(--accent); }
.never-tag { text-decoration: line-through; text-decoration-thickness: 1px; }

.flow-line {
  list-style: none;
  padding: 0;
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.node {
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  background: var(--surface);
  color: var(--ink);
  font-size: var(--text-small);
  font-weight: 500;
  line-height: 1.35;
}
.flow--live .node { border-color: var(--accent); }
.flow--never .node { border-style: dashed; border-color: var(--rule-strong); color: var(--ink-3); background: transparent; }

.arrow { flex: none; color: var(--ink-3); }
.arrow svg { display: block; width: 2.5rem; height: 1rem; }
.flow--live .arrow { color: var(--accent); }

/* Stacked on narrow screens, so the arrow turns to point down. */
.flow-line > .arrow { transform: rotate(90deg); margin-left: 1.1rem; }

@media (min-width: 36rem) {
  .flow-line { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.6rem; }
  .flow-line > .arrow { transform: none; margin-left: 0; }
}

.flow-note {
  margin-top: 0.85rem;
  font-size: var(--text-small);
  color: var(--ink-3);
  max-width: 36rem;
}
.section .flow-note { color: var(--ink-3); }

/* ---------------------------------------------------------------- panels */

.panel {
  margin-top: 2rem !important;
  padding: clamp(1.25rem, 0.9rem + 1.6vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.panel .facts li:first-child { border-top: 0; padding-top: 0; }
.panel .facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.panel-note {
  margin-top: 1.25rem;
  font-size: var(--text-small);
  color: var(--ink-3);
  max-width: 40rem;
}

/* A tinted full-width band. Sections need something other than one more
   hairline to separate them. */
.band {
  background: var(--surface);
  border-block: 1px solid var(--rule);
}
/* The last section already ends on its own padding, and the footer supplies
   the closing rule, so this band needs neither a top gap nor a bottom line. */
.band--end {
  border-bottom: 0;
  padding-block: clamp(2.5rem, 1.8rem + 3vw, 4rem);
}
main:has(> .band--end) + .site-foot { margin-top: 0; border-top: 0; }
.band .flow { background: var(--surface); }
.band .node { background: var(--paper); }
.section--flush { border-bottom: 0; }

.panel--cta {
  margin-block: 0 !important;   /* the band supplies the breathing room */
  padding: clamp(1.75rem, 1.2rem + 2.4vw, 3rem);
  background: var(--accent-quiet);
  border-color: var(--accent);
}
.panel--cta h2 {
  font-size: var(--text-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.panel--cta p { margin-top: 1rem; max-width: var(--measure); color: var(--ink-2); }
.panel--cta .hero-actions { margin-top: 1.75rem; }

/* ------------------------------------------------------------- platforms */

.platforms { list-style: none; padding: 0; }
.platforms li {
  border-top: 1px solid var(--rule);
  padding-block: 1.1rem;
}
.platforms li:last-child { border-bottom: 1px solid var(--rule); }
.platforms b {
  display: inline;
  color: var(--ink);
  font-weight: 800;
  margin-right: 0.65rem;
}
.platforms p {
  margin-top: 0.5rem;
  font-size: var(--text-small);
  color: var(--ink-3);
  max-width: 34rem;
}

/* Status word, not a badge: no store link exists to sit behind it. */
.state {
  display: inline-block;
  font-size: var(--text-micro);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-3);
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  padding: 0.1rem 0.45rem;
  vertical-align: 0.1em;
}
.state--review { color: var(--accent); border-color: var(--accent); }

/* ---------------------------------------------------------------- documents */

.doc {
  width: var(--page);
  max-width: 42rem;
  margin-inline: auto;
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem) var(--space-section);
}
.doc > * + * { margin-top: 1.25rem; }
.doc h1 {
  font-size: clamp(1.875rem, 1.4rem + 2vw, 2.75rem);
  font-weight: 800;
  max-width: 20ch;
  letter-spacing: -0.03em;
}
.doc h2 {
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 2.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.doc h3 { font-size: 1.0625rem; font-weight: 800; margin-top: 1.75rem; }
.doc p, .doc li { color: var(--ink-2); }
.doc ul { padding-left: 1.15rem; }
.doc li + li { margin-top: 0.5rem; }
.doc li::marker { color: var(--ink-3); }
.doc hr { border: 0; border-top: 1px solid var(--rule); margin-block: 2rem; }
.doc .meta {
  font-size: var(--text-small);
  color: var(--ink-3);
  border-left: 2px solid var(--rule-strong);
  padding-left: 1rem;
}
.doc .meta strong { color: var(--ink-2); }
.doc blockquote {
  font-size: var(--text-small);
  color: var(--ink-3);
  border-left: 2px solid var(--rule-strong);
  padding-left: 1rem;
  font-style: italic;
}
.doc .table-scroll { overflow-x: auto; margin-top: 1.5rem; }
.doc table {
  border-collapse: collapse;
  width: 100%;
  min-width: 30rem;
  font-size: var(--text-small);
}
.doc th, .doc td {
  text-align: left;
  vertical-align: top;
  padding: 0.7rem 1rem 0.7rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-2);
}
.doc th { color: var(--ink); font-weight: 800; border-bottom-color: var(--rule-strong); }

/* FAQ */

.faq { margin-top: 2rem !important; }
.faq h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.faq h3:first-child { margin-top: 0; }
.faq p { margin-top: 0.6rem; font-size: var(--text-small); }

.contact {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.contact p { font-size: var(--text-small); }
.contact p + p { margin-top: 0.75rem; }

/* ---------------------------------------------------------------- donate */

/* Opening paragraph of a document page — the .doc counterpart of .lede. */
.lede-doc {
  font-size: var(--text-lede);
  line-height: 1.45;
  color: var(--ink-2);
  margin-top: 1.5rem !important;
}

/* One address card. Comes after the .doc rules on purpose: the h2 reset below
   has to beat `.doc h2`, which they tie with on specificity. */
.give {
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--surface);
}
.doc > .give { margin-top: 1.75rem; }

.give-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 1rem clamp(1.1rem, 0.8rem + 1.2vw, 1.6rem);
  border-bottom: 1px solid var(--rule);
}

.give h2 {
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  padding: 0;
  border: 0;
}
.give h2 .ticker {
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0;
}

/* The network label is the thing people get wrong, so it is loud. */
.net {
  font-size: var(--text-micro);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--accent);
  background: var(--accent-quiet);
  border: 1px solid currentColor;
  border-radius: 3px;
  padding: 0.3rem 0.55rem;
}

.give-body {
  display: grid;
  gap: clamp(1.1rem, 0.8rem + 1.4vw, 1.75rem);
  padding: clamp(1.1rem, 0.8rem + 1.2vw, 1.6rem);
}
@media (min-width: 36rem) {
  .give-body { grid-template-columns: auto minmax(0, 1fr); align-items: start; }
}

/* The QR stays black-on-white in both themes — a dark QR box does not scan. */
.qr { width: 9.25rem; max-width: 100%; }
.qr-frame {
  background: #ffffff;
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  padding: 0.55rem;
}
.qr svg { display: block; width: 100%; height: auto; }
.qr figcaption {
  margin-top: 0.5rem;
  font-size: var(--text-micro);
  color: var(--ink-3);
  text-align: center;
}

.addr-label {
  font-size: var(--text-micro);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.5rem;
}

/* One click selects the whole address — this is the copy button, without JS. */
.addr {
  max-width: none;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  padding: 0.7rem 0.8rem;
  user-select: all;
  -webkit-user-select: all;
}
.addr code {
  background: none;
  padding: 0;
  border-radius: 0;
  color: var(--ink);
  font-size: clamp(0.8125rem, 0.72rem + 0.4vw, 0.9375rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.give-warn {
  margin-top: 1rem;
  max-width: none;
  font-size: var(--text-small);
  line-height: 1.55;
  color: var(--warn);
  background: var(--warn-quiet);
  border: 1px solid var(--warn-rule);
  border-left-width: 3px;
  border-radius: 0 3px 3px 0;
  padding: 0.8rem 0.95rem;
}
.give-warn b { font-weight: 800; }

/* ---------------------------------------------------------------- foot */

.site-foot {
  border-top: 1px solid var(--rule);
  padding-block: 2.5rem 3.5rem;
  margin-top: var(--space-section);
}
.site-foot .wrap > * + * { margin-top: 1.25rem; }
.site-foot nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; }
.site-foot nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.site-foot nav a:hover { color: var(--accent); text-decoration: underline; }
.site-foot p { font-size: var(--text-micro); color: var(--ink-3); line-height: 1.7; max-width: 44rem; }
.site-foot p a { color: var(--ink-3); }
.site-foot p a:hover { color: var(--accent); }

/* ---------------------------------------------------------------- motion */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
