/* Vitrine — the public site.
 *
 * One stylesheet, no build step, no external requests: the marketing page and
 * the legal pages are plain files served by the API, and a font or script from
 * a CDN would be one more thing that can be slow, blocked, or gone.
 *
 * Type is Georgia for display and the system UI stack for text. A licensed
 * webfont is the obvious upgrade; a self-hosted pair is worth more than a
 * third-party request, so this waits for the real brand rather than borrowing
 * whatever is fashionable.
 */

/* --- Tokens ---------------------------------------------------------------
 *
 * Light is defined on bare :root so a page with no colour-scheme preference
 * still gets a complete palette; dark redefines only what changes.
 */

:root {
  color-scheme: light dark;

  --paper: #fbf9f5;
  --paper-raised: #f4f0e8;
  --paper-sunk: #ede8de;
  --ink: #191712;
  --ink-soft: #5d564a;
  --ink-faint: #8a8271;
  --rule: #e2dbcd;
  --rule-strong: #cdc4b2;
  --accent: #a3402a;
  --accent-ink: #fbf9f5;
  --accent-wash: #f6e9e3;

  /* The mock storefront in the hero. Muted on purpose: a preview full of
   * saturated placeholder colour reads as a placeholder. */
  --swatch-clay: #b98a72;
  --swatch-sand: #d8c9ae;
  --swatch-sage: #98a48c;
  --swatch-slate: #8d95a1;
  --swatch-plum: #9c8494;

  --display: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --text: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --gutter: 1.5rem;
  --measure: 66ch;
  --radius: 4px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #14120f;
    --paper-raised: #1c1a15;
    --paper-sunk: #100f0c;
    --ink: #f3efe6;
    --ink-soft: #aaa294;
    --ink-faint: #7d7667;
    --rule: #2c2924;
    --rule-strong: #423e37;
    --accent: #e08260;
    --accent-ink: #14120f;
    --accent-wash: #2a201c;

    --swatch-clay: #7d5b4a;
    --swatch-sand: #8a7c62;
    --swatch-sage: #64705a;
    --swatch-slate: #5c626b;
    --swatch-plum: #6a5761;
  }
}

/* --- Reset and base ------------------------------------------------------ */

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

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-color: var(--rule-strong);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentColor;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

/* --- Primitives ---------------------------------------------------------- */

.wrap {
  width: min(100% - (var(--gutter) * 2), 1140px);
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0;
}

.lede {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
}

/* --- Header -------------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.masthead__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 64px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  margin-right: auto;
}

.wordmark svg {
  color: var(--accent);
}

.masthead nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.masthead nav a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
}

.masthead nav a:hover {
  color: var(--ink);
}

@media (max-width: 47.99em) {
  .masthead nav a:not(.btn) {
    display: none;
  }
}

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

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

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

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

.btn--block {
  width: 100%;
}

/* --- Hero ---------------------------------------------------------------- */

.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero__grid {
  display: grid;
  /* minmax(0, …), not 1fr: a grid item's automatic minimum size is its
   * content, so the install form's max-width would widen the track past the
   * viewport rather than the form shrinking inside it. */
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

@media (min-width: 62em) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 3.9rem);
  line-height: 1.04;
  margin: 1.25rem 0 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

/* --- The install form ---------------------------------------------------- */

.install {
  scroll-margin-top: 80px;
  margin-top: 2.25rem;
  padding: 1.5rem;
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  border-radius: 6px;
  max-width: 30rem;
}

.install--band {
  margin: 0;
  background: var(--paper);
}

.install__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* The domain field is one control made of three parts, so the border lives on
 * the wrapper and the input keeps the focus ring. */
.install__field {
  display: flex;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.install__field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-wash);
}

.install__field input {
  flex: 1 1 auto;
  min-width: 0;
  font: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.install__field input:focus {
  outline: none;
}

.install__field input::placeholder {
  color: var(--ink-faint);
}

.install__suffix {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--ink-faint);
  background: var(--paper-sunk);
  border-left: 1px solid var(--rule);
  white-space: nowrap;
}

@media (max-width: 26em) {
  .install__suffix {
    padding: 0 0.5rem;
    font-size: 0.75rem;
  }
}

.install__hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0.65rem 0 1rem;
}

.install__error {
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0.65rem 0 0;
  min-height: 1.2em;
}

.install__error:empty {
  display: none;
}

.install__after {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.install__after li {
  display: flex;
  gap: 0.5rem;
}

.install__after svg {
  flex: none;
  margin-top: 0.3em;
  color: var(--ink-faint);
}

/* --- The phone mock ------------------------------------------------------ */

.showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  border-radius: 6px;
}

.showcase__caption {
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--ink-faint);
  margin-top: 1.5rem;
  text-align: center;
  max-width: 34ch;
}

.showcase__chip {
  justify-self: end;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  padding: 0.3rem 0.55rem;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.showcase__chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.phone {
  width: 292px;
  max-width: 100%;
  border: 9px solid var(--ink);
  border-radius: 40px;
  background: var(--ink);
  box-shadow: 0 24px 48px -28px rgb(0 0 0 / 0.45);
}

.phone__screen {
  position: relative;
  border-radius: 31px;
  overflow: hidden;
  background: var(--paper);
  /* A real device aspect, so the mock cannot flatter the layout. */
  aspect-ratio: 292 / 600;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  line-height: 1.4;
}

.phone__notch {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 5px;
  border-radius: 999px;
  background: var(--rule-strong);
  z-index: 2;
}

.phone__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 20px 12px 8px;
  border-bottom: 1px solid var(--rule);
}

.phone__logo {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-inline: auto;
}

.phone__bar svg {
  color: var(--ink-soft);
}

.phone__body {
  flex: 1 1 auto;
  overflow: hidden;
}

.phone__hero {
  position: relative;
  height: 148px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  color: #fdfaf6;
  background:
    linear-gradient(200deg, rgb(0 0 0 / 0.02), rgb(0 0 0 / 0.34)),
    linear-gradient(140deg, var(--swatch-clay), var(--swatch-plum));
}

.phone__hero h4 {
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.phone__pill {
  align-self: flex-start;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: #fdfaf6;
  color: #191712;
  border-radius: 999px;
}

.phone__circles {
  display: flex;
  gap: 10px;
  padding: 14px 12px 4px;
}

.phone__circle {
  flex: 1;
  display: grid;
  justify-items: center;
  gap: 5px;
  font-size: 7px;
  color: var(--ink-soft);
  text-align: center;
}

.phone__circle span:first-child {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  /* Set per circle in the markup, so the row reads as four collection images
   * rather than four empty holes. */
  background: var(--paper-sunk);
}

.phone__sechead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 12px 8px;
}

.phone__sechead strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 12px;
}

.phone__sechead em {
  font-style: normal;
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.phone__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 12px;
}

.phone__card b {
  display: block;
  aspect-ratio: 1;
  border-radius: 3px;
  margin-bottom: 6px;
}

.phone__card p {
  font-size: 8px;
  color: var(--ink);
}

.phone__card small {
  font-size: 8px;
  color: var(--ink-faint);
}

.phone__tabs {
  display: flex;
  border-top: 1px solid var(--rule);
  padding: 7px 4px 10px;
  background: var(--paper);
}

.phone__tab {
  flex: 1;
  display: grid;
  justify-items: center;
  gap: 3px;
  font-size: 7px;
  color: var(--ink-faint);
}

.phone__tab[data-active] {
  color: var(--accent);
}

/* --- Sections ------------------------------------------------------------ */

.section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--rule);
  /* Clears the sticky masthead when an in-page link jumps here. */
  scroll-margin-top: 64px;
}

.section__head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.12;
  margin: 0.75rem 0 0.9rem;
}

/* Numbered steps, separated by rules rather than boxes. */
.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  counter-reset: step;
}

@media (min-width: 48em) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.step {
  counter-increment: step;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--rule-strong);
}

.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* A two-column split for a section with a list of specifics. */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 56em) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips li {
  font-family: var(--mono);
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  color: var(--ink-soft);
}

.aside {
  max-width: 72ch;
  margin-top: 1.75rem;
  padding: 1.25rem 1.4rem;
  background: var(--accent-wash);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.aside p {
  font-size: 0.95rem;
}

.aside p + p {
  margin-top: 0.6rem;
  color: var(--ink-soft);
}

/* Feature rows: a definition list is the honest markup for term + description. */
.features {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: 0;
}

@media (min-width: 48em) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3rem;
  }
}

/* Inside a two-column split there is no room to split again: the breakpoint
 * above measures the viewport, not the container it landed in. */
.split .features {
  grid-template-columns: minmax(0, 1fr);
}

.features > div {
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
}

.features dt {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.features dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* The honest status list. */
.status {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: var(--measure);
}

.status li {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.status b {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 0.35em;
  color: var(--ink-faint);
  font-weight: 400;
}

/* The closing call to action. */
.band {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--rule);
  background: var(--paper-raised);
}

.band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

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

.band h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  line-height: 1.12;
  margin-bottom: 0.9rem;
}

/* --- Footer -------------------------------------------------------------- */

.footer {
  padding: clamp(2.5rem, 5vw, 4rem) 0 2.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 48em) {
  .footer__grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  }
}

.footer h2 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.6rem;
}

.footer ul a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer ul a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer__blurb {
  color: var(--ink-soft);
  max-width: 32ch;
  margin-top: 1rem;
  font-size: 0.88rem;
}

.footer__fine {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* --- Legal / document pages ---------------------------------------------- */

.doc {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.doc__head {
  max-width: var(--measure);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
}

.doc__head h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.1;
  margin: 0.75rem 0 1rem;
}

.doc__meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}

.doc__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

@media (min-width: 62em) {
  .doc__layout {
    grid-template-columns: minmax(0, var(--measure)) 15rem;
  }
}

.toc {
  font-size: 0.85rem;
}

@media (min-width: 62em) {
  .toc {
    position: sticky;
    top: 88px;
    order: 2;
  }
}

.toc h2 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.9rem;
}

.toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem;
  counter-reset: toc;
}

.toc li {
  counter-increment: toc;
}

.toc a {
  color: var(--ink-soft);
  text-decoration: none;
  display: flex;
  gap: 0.6rem;
}

.toc a::before {
  content: counter(toc) ".";
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-faint);
  flex: none;
}

.toc a:hover {
  color: var(--ink);
}

.prose {
  max-width: var(--measure);
}

.prose > * + * {
  margin-top: 1.1rem;
}

.prose h2 {
  font-size: 1.5rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 88px;
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.prose h3 {
  font-size: 1.15rem;
  margin-top: 1.9rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.prose ul,
.prose ol {
  margin-top: 0.9rem;
  padding-left: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem;
}

.prose a {
  color: var(--ink);
  text-decoration-color: var(--accent);
}

.prose code {
  font-family: var(--mono);
  font-size: 0.85em;
  padding: 0.1em 0.35em;
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  border-radius: 3px;
  color: var(--ink);
}

/* Wide content scrolls inside itself; the page never scrolls sideways. */
.scroller {
  overflow-x: auto;
  margin-top: 1.25rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}

.prose table {
  border-collapse: collapse;
  width: 100%;
  min-width: 34rem;
  font-size: 0.9rem;
}

.prose th,
.prose td {
  text-align: left;
  vertical-align: top;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
}

.prose th {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-faint);
  background: var(--paper-raised);
  white-space: nowrap;
}

.prose tbody tr:last-child td {
  border-bottom: 0;
}

/* Anything a reader must fill in before publishing, marked so it cannot be
 * missed in a proof-read. */
.fill {
  font-family: var(--mono);
  font-size: 0.85em;
  padding: 0.05em 0.2em;
  background: var(--accent-wash);
  border-bottom: 1px solid var(--accent);
  color: var(--ink);
}

.callout {
  padding: 1.25rem 1.4rem;
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.callout strong {
  display: block;
  margin-bottom: 0.35rem;
}
