/* Levain — one stylesheet for the public site and the Proof Box.
 *
 * Hand-written translation of the locked mockups in .mockups/levain-ui/
 * (index.html, combined-entry.html, combined-ledger.html, combined-proofbox.html).
 * No Tailwind CDN, no framework, no runtime JS: these pages are regenerated by a
 * cron-driven agent on a $12 droplet and have to render with the network down.
 *
 * The Proof Box is the same sheet with the palette swapped on body.proofbox:
 * a night-kitchen variant of the same paper. Every rule below reads its colors
 * from the tokens, so nothing needs a second definition.
 */

:root {
  --paper: #F6F1E6;
  --card: #FCFAF3;
  --ink: #191510;
  --muted: #554C40;
  --faint: #6F6455;
  --rule: #DED5C3;
  --rule2: #C6BAA3;
  --accent: #9A3B1F;
  --measure: 46rem;
  --serif: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

body.proofbox {
  --paper: #16120D;
  --card: #201A13;
  --ink: #F2EADB;
  --muted: #B5A791;
  --faint: #94866F;
  --rule: #362E24;
  --rule2: #453B2E;
  --accent: #D2683C;
  --measure: 62rem;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-variation-settings: 'SOFT' 22, 'WONK' 0;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--ink); color: var(--paper); }

a { color: inherit; text-underline-offset: 3px; }

/* Flour on the paper: present, not noticed. Public pages only. */
body:not(.proofbox)::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .16;
  background-image:
    radial-gradient(circle at 17% 23%, rgba(25, 21, 16, .55) .6px, transparent .8px),
    radial-gradient(circle at 63% 69%, rgba(25, 21, 16, .42) .5px, transparent .7px),
    radial-gradient(circle at 87% 38%, rgba(25, 21, 16, .30) .7px, transparent .9px);
  background-size: 37px 41px, 53px 59px, 73px 67px;
}

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

/* ── shared vocabulary ─────────────────────────────────────────────────── */

.wrap { max-width: var(--measure); margin: 0 auto; padding: 0 1.5rem; }

/* The wordmark and the display figures get the softer, wonkier cut of Fraunces. */
.wonk { font-variation-settings: 'SOFT' 46, 'WONK' 1; }

.label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--faint);
  margin: 0;
}

.meta {
  font-family: var(--mono);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: var(--faint);
  margin: 0;
}

.fig {
  font-variation-settings: 'SOFT' 46, 'WONK' 1;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  line-height: 1;
}

/* The single accent, spent only where a human is needed or something failed. */
.accent { color: var(--accent); }
.quiet-text { color: var(--muted); }
.faint-text { color: var(--faint); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.rule-link { color: var(--muted); text-decoration: none; }
.rule-link:hover { color: var(--ink); text-decoration: underline; }

.body-link { color: var(--ink); text-decoration: underline; text-decoration-color: color-mix(in srgb, currentColor 30%, transparent); }
.body-link:hover { text-decoration-color: currentColor; }

/* ── masthead ──────────────────────────────────────────────────────────── */

.masthead { border-bottom: 1px solid var(--rule); }

.masthead-inner {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.5rem 0;
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: .625rem;
  width: fit-content;
  text-decoration: none;
  color: var(--ink);
}
.wordmark svg { width: 19px; height: 19px; flex: 0 0 auto; transform: translateY(2px); }
.wordmark-text { font-size: 27px; font-weight: 600; letter-spacing: -.03em; line-height: 1; }

.nav {
  display: flex;
  gap: 1.25rem;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover { color: var(--ink); text-decoration: underline; }
.nav a[aria-current='page'] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 30%, transparent);
}

/* ── sections and headings ─────────────────────────────────────────────── */

.section { padding: 2.5rem 0; }
.section-tight { padding: 2rem 0; }
.topline { border-top: 1px solid var(--ink); }
.underline { border-bottom: 1px solid var(--rule); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--ink);
}
.section-head .label { color: var(--ink); }
.section-head.quiet { border-bottom-color: var(--rule2); }
.section-head.quiet .label { color: var(--faint); }
.section-head.bare { border-bottom: 0; }

.page-title {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}

.lede {
  font-size: 17px;
  line-height: 1.7;
  max-width: 36rem;
  margin: 0;
}
.lede + .lede { margin-top: 1.25rem; }
.lede.small { font-size: 16px; }
.lede.dim { color: var(--muted); }

.mono-inline { font-family: var(--mono); font-size: .9em; font-variant-numeric: tabular-nums; }

.note {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  font-variant-numeric: tabular-nums;
  color: var(--faint);
  max-width: 34rem;
}

/* ── a torn data file, said out loud ───────────────────────────────────── */

.data-error {
  border: 1.5px solid var(--accent);
  border-left-width: 6px;
  color: var(--accent);
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
}
.data-error p { margin: 0; }
.data-error p + p { margin-top: .5rem; }

/* ── status strip (home) ───────────────────────────────────────────────── */

.stat-strip {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat { padding: 1.25rem 0; border-top: 1px solid var(--rule); }
.stat:first-child { border-top: 0; }
.stat-value { margin-top: .375rem; font-size: 26px; }
.stat-sub { margin-top: .5rem; }

/* ── journal list ──────────────────────────────────────────────────────── */

.entry {
  display: grid;
  grid-template-columns: 2.25rem 1fr 1rem;
  gap: 0 .75rem;
  align-items: start;
  margin: 0 -.75rem;
  padding: 1.25rem .75rem;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  text-decoration: none;
  transition: background-color .15s;
}
.entry:hover { background: color-mix(in srgb, var(--ink) 4%, transparent); }
.entry-n { font-family: var(--mono); font-size: 12px; font-variant-numeric: tabular-nums; color: var(--faint); padding-top: 4px; }
.entry-body { min-width: 0; }
.entry-title { display: block; font-size: 16px; line-height: 1.5; }
.entry-meta { display: block; margin-top: .375rem; }
.entry-arrow { justify-self: end; padding-top: 3px; color: var(--rule2); transition: color .15s; }
.entry:hover .entry-arrow { color: var(--ink); }

/* ── progress bar and fact lists ───────────────────────────────────────── */

.bar-ends {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-variant-numeric: tabular-nums;
  color: var(--faint);
}
.bar { display: flex; height: 8px; width: 100%; background: var(--rule); margin-top: .5rem; }
.bar-fill { height: 100%; background: var(--ink); }
.bar-fill.second { background: var(--rule2); }
.bar-fill.short { background: color-mix(in srgb, var(--accent) 40%, transparent); }

.facts { margin: 2rem 0 0; border-top: 1px solid var(--rule); }
.fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--rule);
}
.fact dt { font-size: 15px; color: var(--muted); }
.fact dd { margin: 0; font-family: var(--mono); font-size: 14px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.fact.total { border-bottom: 2px solid var(--ink); padding: 1rem 0; }
.fact.total dt { color: inherit; font-weight: 500; }
.fact.total dd { font-family: var(--serif); font-size: 20px; }
.fact-sub { display: block; margin-top: .125rem; font-family: var(--mono); font-size: 11px; line-height: 1.5; color: var(--faint); }

/* ── journal entry page ────────────────────────────────────────────────── */

.crumb {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--faint);
  margin: 0;
}
.crumb .sep { padding: 0 .5rem; color: var(--rule2); }

.entry-head { padding-top: 2rem; }
.entry-head .page-title { margin-top: 1.25rem; }

.entry-stamp {
  margin: 1.25rem 0 0;
  font-family: var(--mono);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  line-height: 1.9;
  color: var(--muted);
}
.entry-stamp .sep { padding: 0 .5rem; color: var(--rule2); }

.append-note {
  margin: 1.25rem 0 0;
  border-left: 2px solid var(--rule2);
  padding-left: 1rem;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  color: var(--faint);
}

.fields { margin: 2.5rem 0 0; border-top: 1px solid var(--ink); }
.field { padding: 1.25rem 0; border-bottom: 1px solid var(--rule); }
.field dt { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--faint); }
.field dd { margin: .375rem 0 0; font-size: 17px; line-height: 1.6; }
.field dd.dim { color: var(--muted); }

.prose { max-width: 34rem; font-size: 17px; line-height: 1.75; }
.prose > :first-child { margin-top: 0; }
.prose p, .prose ul, .prose ol, .prose blockquote, .prose pre { margin: 0 0 1.25rem; }
.prose h1, .prose h2, .prose h3 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--faint);
  margin: 2rem 0 .75rem;
}
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: .375rem; }
.prose a { color: var(--ink); text-decoration: underline; text-decoration-color: color-mix(in srgb, currentColor 30%, transparent); }
.prose code { font-family: var(--mono); font-size: .82em; }
.prose pre {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  background: var(--card);
  border: 1px solid var(--rule);
  padding: .875rem 1rem;
  overflow-x: auto;
}
body.proofbox .prose pre { background: var(--card); border-color: var(--rule); }
.prose blockquote { border-left: 2px solid var(--rule2); padding-left: 1rem; color: var(--muted); }
.prose hr { border: 0; border-top: 1px solid var(--rule); margin: 2rem 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: .5rem .75rem .5rem 0; border-bottom: 1px solid var(--rule); }

.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2rem 0; border-top: 1px solid var(--rule); }
.pager-next { text-align: right; }
.pager-link { display: block; margin-top: .5rem; font-size: 16px; line-height: 1.5; color: var(--ink); text-decoration: none; }
.pager-link:hover { text-decoration: underline; }
.pager-none { margin-top: .5rem; font-size: 16px; line-height: 1.5; color: var(--rule2); }

/* ── ledger ────────────────────────────────────────────────────────────── */

.totals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.totals > div { padding: 1.25rem .75rem; border-left: 1px solid var(--rule); }
.totals > div:first-child { border-left: 0; padding-left: 0; }
.totals > div:last-child { padding-right: 0; }
.totals .fig { margin-top: .375rem; font-size: 22px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 30rem; margin-top: 1.25rem; }
.split .fig { margin-top: .375rem; font-size: 26px; }
.split-label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); }
.split-bar { max-width: 30rem; margin-top: 1.25rem; }

.table { width: 100%; border-collapse: collapse; text-align: left; }
.table thead tr { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.table th {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--faint);
  padding: .625rem .75rem .625rem 0;
}
.table td { padding: 1rem .75rem 1rem 0; vertical-align: top; }
.table tbody tr { border-bottom: 1px solid var(--rule); }
.table tbody tr:hover { background: color-mix(in srgb, var(--ink) 3%, transparent); }
.table .right { text-align: right; }
.table .left { text-align: left; }
.table td:last-child, .table th:last-child { padding-right: 0; }
.table tbody tr.bad td { color: var(--accent); }

.cell-date { font-family: var(--mono); font-size: 11px; font-variant-numeric: tabular-nums; color: var(--muted); white-space: nowrap; }
.cell-amount { font-family: var(--mono); font-size: 13px; font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
.cell-balance { color: var(--faint); }
.line-note { display: block; font-size: 16px; line-height: 1.5; }
.line-tag { display: block; margin-top: .25rem; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--faint); }
.line-tag.revenue { color: var(--ink); }
.line-tag.assisted { color: var(--muted); }

/* The one flourish that survives: the pressed NET stamp on the closing line. */
.stamp {
  display: inline-block;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  padding: .22rem .62rem;
  transform: rotate(-2.5deg);
  box-shadow: 1.5px 1.5px 0 color-mix(in srgb, var(--accent) 15%, transparent);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.table tfoot tr { border-bottom: 2px solid var(--ink); }
.table tfoot td { padding: 1.25rem .75rem; }
.table tfoot .net { font-size: 20px; text-align: right; white-space: nowrap; }

/* ── footer ────────────────────────────────────────────────────────────── */

.site-footer { border-top: 1px solid var(--rule); margin-top: 2.5rem; }
.site-footer .wrap { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.footer-line { margin: 0; font-size: 14px; line-height: 1.7; color: var(--muted); max-width: 34rem; }
.footer-note { margin: 1rem 0 0; font-family: var(--mono); font-size: 11px; line-height: 1.6; color: var(--faint); max-width: 34rem; }

/* ══ Proof Box ═════════════════════════════════════════════════════════ */

.pb-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 95%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule2);
}
.pb-line1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 2.25rem;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.pb-line1 svg { width: 14px; height: 14px; flex: 0 0 auto; color: var(--muted); }
.pb-line1 .left { display: flex; align-items: center; gap: .5rem; min-width: 0; }
.pb-line1 .right { display: flex; align-items: center; gap: .5rem; flex: 0 0 auto; }
.pb-line2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0 .75rem;
  padding: .5rem 0;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
/* Wrap between the three groups on a narrow phone, never inside one of them. */
.pb-line2 > span { white-space: nowrap; }
.pb-line2 .sep { color: var(--faint); }
.pb-line2 .dim { color: var(--muted); flex: 0 0 auto; }

@keyframes blip { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.blip { display: inline-block; width: 6px; height: 6px; background: var(--ink); animation: blip 2.4s ease-in-out infinite; }
.blip.stopped { background: var(--accent); animation: none; }

.lanes { display: grid; gap: 2.5rem; padding-top: 2rem; }
.lane > section + section { margin-top: 2.5rem; }

.approval { margin-top: 1.25rem; border-left: 2px solid var(--accent); padding-left: 1rem; }
.approval + .approval { margin-top: 2rem; }
.approval-top { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; }
.approval-id { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.approval-amount { font-size: 24px; white-space: nowrap; }
.approval-summary { margin: .75rem 0 0; font-size: 17px; line-height: 1.5; }
.approval-meta { margin: .625rem 0 0; font-family: var(--mono); font-size: 11px; line-height: 1.7; font-variant-numeric: tabular-nums; color: var(--faint); }

.cmds { display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; margin-top: 1.25rem; }
.cmd {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 .75rem;
  font-family: var(--mono);
  font-size: 12px;
  text-align: center;
  overflow-wrap: anywhere;
}
.cmd-approve { background: var(--ink); color: var(--paper); }
.cmd-deny { border: 1px solid var(--muted); color: var(--ink); }
.cmd-hint { margin: .75rem 0 0; font-family: var(--mono); font-size: 11px; line-height: 1.6; color: var(--faint); }

.none { margin: 1.25rem 0 0; font-size: 16px; color: var(--muted); }

.pb-table { width: 100%; border-collapse: collapse; text-align: left; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.pb-table th {
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--faint);
  padding: .5rem .5rem .5rem 0;
  border-bottom: 1px solid var(--rule);
}
.pb-table td { font-size: 12px; padding: .625rem .5rem; border-bottom: 1px solid var(--rule); }
.pb-table td:first-child, .pb-table th:first-child { padding-left: 0; }
.pb-table td:last-child, .pb-table th:last-child { padding-right: 0; }
.pb-table .right { text-align: right; }
.pb-table .dim { color: var(--muted); }
.pb-table tr.bad { color: var(--accent); }

.pb-entry-title { margin: 1.25rem 0 0; font-size: 24px; font-weight: 600; letter-spacing: -.02em; line-height: 1; }

.mem-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.mem-list li { border-left: 1px solid var(--rule2); padding-left: .875rem; }
.mem-list li + li { margin-top: .75rem; }
.mem-list li.bad { border-left: 2px solid var(--accent); }
.mem-kind { display: block; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--faint); }
.mem-list li.bad .mem-kind { color: var(--accent); }
.mem-text { display: block; margin-top: .25rem; font-size: 15px; line-height: 1.55; color: var(--muted); }

.pb-links { margin-top: 3rem; border-top: 1px solid var(--rule2); padding-top: 1.25rem; }
.pb-links .row { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; margin-top: .5rem; font-family: var(--mono); font-size: 12px; }
.pb-links a { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink); text-decoration: none; }
.pb-links a:hover { text-decoration: underline; }

body.proofbox .facts { margin-top: 1.5rem; border-top-color: var(--rule); }
body.proofbox .fact { padding: .625rem 0; border-bottom-color: var(--rule); }
body.proofbox .fact dt { font-size: 15px; }
body.proofbox .fact dd { font-size: 14px; }
body.proofbox .field { padding: .5rem 0; border-bottom: 0; }
body.proofbox .fields { margin-top: 1rem; border-top: 0; }
body.proofbox .field dd { font-size: 15px; }
body.proofbox .site-footer { border-top-color: var(--rule); }

/* ── spacing utilities ─────────────────────────────────────────────────────
 * Last, deliberately: most components above reset their own margin, and these
 * carry the same specificity, so they only win from here.
 */

.mt-s { margin-top: .5rem; }
.mt-m { margin-top: 1.25rem; }
.mt-l { margin-top: 1.75rem; }

/* ── breakpoints ───────────────────────────────────────────────────────── */

@media (min-width: 460px) {
  .hide-xs { display: table-cell; }
}
@media (max-width: 459px) {
  .hide-xs { display: none; }
}

@media (min-width: 640px) {
  .wrap { padding: 0 2rem; }
  .masthead-inner { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 1.5rem; padding: 1.75rem 0; }
  .wordmark-text { font-size: 31px; }
  .nav { gap: 1.5rem; }
  .section { padding: 3.5rem 0; }
  .section-tight { padding: 2.5rem 0; }
  .page-title { font-size: 52px; }
  .lede { font-size: 19px; }
  .entry-head { padding-top: 3rem; }
  .entry { grid-template-columns: 3rem 1fr 1rem; gap: 0 1.25rem; }
  .entry-title { font-size: 17px; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 1.5rem; border-top: 0; border-left: 1px solid var(--rule); }
  .stat:first-child { border-left: 0; padding-left: 0; }
  .stat:last-child { padding-right: 0; }
  .stat-value { font-size: 30px; }
  .totals > div { padding: 1.5rem; }
  .totals > div:first-child { padding-left: 0; }
  .totals > div:last-child { padding-right: 0; }
  .totals .fig { font-size: 30px; }
  .split { gap: 2.5rem; }
  .field { display: grid; grid-template-columns: 6.5rem 1fr; gap: 0 1.5rem; }
  .field dt { padding-top: 7px; }
  .field dd { margin-top: 0; font-size: 18px; }
  .prose { font-size: 18px; }
  .cell-date { font-size: 12px; }
  .cell-amount { font-size: 14px; }
  .fact dt, .fact.total dt { font-size: 16px; }
  .fact dd { font-size: 15px; }
  .fact.total dd { font-size: 24px; }
  .table tfoot .net { font-size: 22px; }
  .pb-line2 { font-size: 12px; }
  .pb-table td { font-size: 13px; }
}

@media (min-width: 768px) {
  .lanes { grid-template-columns: 1fr 1fr; gap: 0 3rem; align-items: start; }
  body.proofbox .field { grid-template-columns: 4.25rem 1fr; }
}
