/* Catapultor — the product surface.
 *
 * The page has one job above the fold and it is the field. Everything else on
 * screen at that moment is there to make pasting a link feel obviously safe:
 * what it does, what it costs, and that nothing gets posted anywhere.
 *
 * No webfont. The product's whole claim is that type is set correctly, and a
 * headline that arrives 400ms late in a fallback face undercuts that on the
 * first impression. An editorial serif against a grotesk UI carries the same
 * register and is already on the machine.
 */

/* A WARM PAPER GROUND, NOT A BLACK ONE.
 *
 * The dark version read as a developer tool, which is the wrong register for a
 * page selling publishing craft — and it was tiring to read at length. This is
 * the same design on paper: editorial serif, the same rhythm, a light ground
 * with a slow warm gradient so it has depth without pattern.
 *
 * Every pair below is measured, not judged by eye — `npm run contrast` in this
 * app checks each one against WCAG AA and fails if any drops under. The
 * publisher-accent takeover is checked at runtime against this ground and
 * against white, so an adopted colour has to work as text AND as a button. */
:root {
  --ground: #FAF7F1;
  --ground-2: #FFFFFF;
  --ground-3: #F2EDE3;
  --line: #DED6C7;
  --type: #191510;
  --type-dim: #4E4941;
  --type-faint: #6B6459;
  --accent: #8A5D0F;
  --accent-soft: #A97613;
  --ok: #1F6B44;

  /* The gradient. Two warm stops and a barely-there cool one, so a long page
     does not read as one flat fill. */
  --wash:
    radial-gradient(1200px 620px at 12% -8%, #FFFDF9 0%, rgba(255, 253, 249, 0) 62%),
    radial-gradient(900px 520px at 96% 4%, #F6EFE1 0%, rgba(246, 239, 225, 0) 58%),
    linear-gradient(180deg, #FBF8F3 0%, #F7F2E9 46%, #F3ECE0 100%);

  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: ui-sans-serif, -apple-system, "Segoe UI", Inter, Roboto, system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --gap: clamp(20px, 4vw, 44px);
  --rule: 1px solid var(--line);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ground);
  background-image: var(--wash);
  background-attachment: fixed;
  color: var(--type);
  font: 400 17px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

main { max-width: 1180px; margin: 0 auto; padding: 0 var(--gap); }

.eyebrow {
  font: 600 11px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--type-faint);
  margin: 0 0 10px;
}

/* ————————————————————————————————————————————————————— masthead —— */

.masthead {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: 1180px; margin: 0 auto; padding: 18px var(--gap);
}
.wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--type); text-decoration: none;
  font: 600 17px/1 var(--sans); letter-spacing: -.01em;
}
.wordmark svg { width: 26px; height: 26px; }
.wordmark rect { fill: var(--type); }
.wordmark path { stroke: var(--accent); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.masthead-note { margin: 0; color: var(--type-faint); font-size: 14px; }
@media (max-width: 620px) { .masthead-note { display: none; } }

/* ————————————————————————————————————————————————————————— hero —— */

/* The fold is the whole brief: the field AND the two case studies (§4.1.1)
   have to be on screen at 1280×720 without scrolling, so this block is sized
   against that viewport rather than against how the type looks on its own. */
.hero { padding: clamp(22px, 4vw, 52px) 0 clamp(24px, 4vw, 44px); max-width: 880px; }

h1 {
  font: 400 clamp(36px, 5.6vw, 64px)/1.06 var(--serif);
  letter-spacing: -.022em;
  margin: 0 0 16px;
}
h1 em {
  font-style: italic;
  color: var(--accent-soft);
}

.standfirst {
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.5;
  color: var(--type-dim);
  max-width: 58ch;
  margin: 0 0 26px;
}

/* The field. Deliberately the largest interactive thing on the page. */
.paste {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 8px;
  background: var(--ground-2);
  border: var(--rule);
  border-radius: 14px;
  box-shadow: 0 18px 44px -28px rgba(60, 45, 15, .38);
  transition: border-color .2s, box-shadow .2s;
}
.paste:focus-within {
  border-color: var(--accent);
  box-shadow: 0 18px 44px -26px rgba(138, 93, 15, .45);
}
.paste input {
  flex: 1 1 340px; min-width: 0;
  background: transparent; border: 0; outline: none;
  color: var(--type);
  font: 400 17px/1.4 var(--sans);
  padding: 16px 14px;
}
.paste input::placeholder { color: var(--type-faint); }

button {
  font: 600 15px/1 var(--sans);
  border-radius: 9px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s, background .2s, color .2s, border-color .2s;
}
button:active { transform: translateY(1px); }

.paste button {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-width: 148px; padding: 17px 26px;
  background: var(--accent); color: #FFFDF8;
}
.paste button:hover { background: var(--accent-soft); }
.paste button[disabled] { cursor: default; opacity: .75; }
.go-spin { display: none; width: 14px; height: 14px; border-radius: 50%;
           border: 2px solid rgba(255,253,248,.4); border-top-color: #FFFDF8;
           animation: spin .7s linear infinite; }
.is-running .go-spin { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.reassure { margin: 13px 2px 0; color: var(--type-faint); font-size: 14px; }

.samples {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 20px; padding-top: 18px; border-top: var(--rule);
}
.samples-label { color: var(--type-faint); font-size: 14px; margin-right: 2px; }
.sample {
  display: flex; flex-direction: column; gap: 3px; text-align: left;
  padding: 9px 14px; background: transparent;
  border: var(--rule); color: var(--type-dim);
}
.sample:hover { border-color: var(--accent); color: var(--type); }
.sample b { font: 600 14px/1 var(--sans); color: var(--type); }
.sample span { font: 400 12.5px/1 var(--sans); color: var(--type-faint); }

/* —————————————————————————————————————————————————————— the stage —— */

.stage { padding: 8px 0 clamp(40px, 7vw, 80px); }

/* The ticker is the anti-spinner: it names what is happening, in order, with
   the elapsed time. A spinner says "wait"; this says "here is the machine". */
.ticker { margin: 0 0 34px; }
.ticker-bar {
  height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; margin-bottom: 16px;
}
.ticker-bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width .45s cubic-bezier(.2,.7,.3,1);
}
.ticker-steps { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.ticker-steps li {
  display: inline-flex; align-items: baseline; gap: 8px;
  font: 500 12.5px/1 var(--mono); letter-spacing: .02em;
  color: var(--type-faint);
  padding: 8px 12px; border: var(--rule); border-radius: 999px;
  animation: pop .3s ease-out both;
}
.ticker-steps li b { color: var(--type); font-weight: 600; }
.ticker-steps li .ms { color: var(--type-faint); font-size: 11.5px; }
.ticker-steps li.done { border-color: rgba(111,207,151,.4); }
.ticker-steps li.done b { color: var(--ok); }
@keyframes pop { from { opacity: 0; transform: translateY(6px); } }

.source {
  display: flex; gap: var(--gap); flex-wrap: wrap; justify-content: space-between;
  padding: 26px 0 30px; border-top: var(--rule); border-bottom: var(--rule);
  margin-bottom: 34px;
  animation: rise .5s cubic-bezier(.2,.7,.3,1) both;
}
.source-meta { flex: 1 1 420px; }
.source h2 { font: 400 clamp(24px, 3.4vw, 34px)/1.18 var(--serif); margin: 0 0 8px; letter-spacing: -.015em; }
.source-sub { margin: 0; color: var(--type-faint); font-size: 14.5px; }
.palette { flex: 0 0 auto; }
.swatches { display: flex; gap: 8px; }
.swatch { width: 46px; height: 46px; border-radius: 9px; border: 1px solid rgba(255,255,255,.12); }

@keyframes rise { from { opacity: 0; transform: translateY(14px); } }

/* ———————————————————————————————————————————————————————— the grid —— */

.gridhead { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.gridhead h3 { font: 400 26px/1 var(--serif); margin: 0; }
.gridhead p { margin: 0; color: var(--type-faint); font-size: 14px; }
.gridhead b { color: var(--type); }

.gridscroll {
  overflow-x: auto;
  border: var(--rule);
  border-radius: 14px;
  background: var(--ground-2);
  scrollbar-color: var(--line) transparent;
}
.grid { border-collapse: separate; border-spacing: 0; }

.grid th, .grid td { border-bottom: var(--rule); border-right: var(--rule); }
.grid tr:last-child th, .grid tr:last-child td { border-bottom: 0; }
.grid th:last-child, .grid td:last-child { border-right: 0; }

/* Channel header row */
.grid thead th {
  position: sticky; top: 0; z-index: 3;
  background: var(--ground-3);
  padding: 14px 16px; min-width: 190px;
  text-align: left; vertical-align: bottom;
  font: 600 12px/1.3 var(--mono); letter-spacing: .1em; text-transform: uppercase;
  color: var(--type-dim);
  white-space: nowrap;
}
.grid thead th.free { color: var(--accent-soft); }
.grid thead th small {
  display: block; margin-top: 5px;
  font: 400 10.5px/1 var(--mono); letter-spacing: .06em; text-transform: none; color: var(--type-faint);
}

/* Week label column */
.grid th.week {
  position: sticky; left: 0; z-index: 4;
  background: var(--ground-3);
  padding: 16px; min-width: 140px; width: 140px;
  text-align: left; vertical-align: top;
}
.grid thead th.corner { position: sticky; left: 0; z-index: 5; min-width: 140px; width: 140px; }
.grid th.week .wk { display: block; font: 600 14px/1.2 var(--sans); color: var(--type); letter-spacing: -.01em; }
.grid th.week .when { display: block; margin-top: 4px; font: 500 11px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.grid th.week .blurb { display: block; margin-top: 8px; font: 400 12px/1.45 var(--sans); color: var(--type-faint); }

.grid td { padding: 14px 16px; vertical-align: top; width: 190px; }
.grid td.free-col { background: rgba(138, 93, 15, .045); }

/* A cell before its asset exists. Not a spinner — a shape, so the grid has its
   full geometry from the first frame and nothing below it jumps as cells land. */
.cell-pending {
  border-radius: 8px;
  background: linear-gradient(100deg, var(--ground-3) 30%, #FFFCF6 50%, var(--ground-3) 70%);
  background-size: 240% 100%;
  animation: sweep 1.5s ease-in-out infinite;
}
@keyframes sweep { to { background-position: -140% 0; } }

.shot { position: relative; display: block; width: 100%; border: 0; padding: 0; background: none; border-radius: 8px; overflow: hidden; }
.shot img { display: block; width: 100%; height: auto; border-radius: 8px; background: var(--ground-3); }
button.shot { cursor: zoom-in; }
button.shot:hover img { outline: 2px solid var(--accent); outline-offset: -2px; }

.cell-in { animation: land .55s cubic-bezier(.2,.8,.25,1) both; }
@keyframes land { from { opacity: 0; transform: translateY(10px) scale(.985); } }

.cap {
  margin: 10px 0 0;
  font: 400 12.5px/1.5 var(--sans);
  color: var(--type-dim);
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.cap.upgraded { animation: flash 1.1s ease-out; }
@keyframes flash { 0% { color: var(--accent-soft); } 100% { color: var(--type-dim); } }

.tagline { margin: 8px 0 0; font: 500 11px/1 var(--mono); letter-spacing: .06em; color: var(--type-faint); }

.guidance { font: 400 13px/1.55 var(--sans); color: var(--type-dim); }
.guidance .eyebrow { margin-bottom: 6px; }

/* The fog. A real render blurred would be a lie about what free gives you, so
   these cells were never rendered at all — the fog is the absence, drawn. */
.fog {
  position: relative;
  border-radius: 8px;
  min-height: 132px;
  background:
    repeating-linear-gradient(115deg, rgba(120, 100, 60, .07) 0 10px, transparent 10px 20px),
    var(--ground-3);
  display: grid; place-items: center;
}
.fog::after {
  content: "";
  width: 15px; height: 13px; border-radius: 2px;
  background: var(--type-faint);
  box-shadow: 0 -6px 0 -3px transparent, inset 0 0 0 99px var(--type-faint);
  opacity: .3;
  clip-path: polygon(0 38%, 100% 38%, 100% 100%, 0 100%);
}
.fog span {
  position: absolute; bottom: 10px; left: 0; right: 0; text-align: center;
  font: 500 10px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--type-faint);
  opacity: .55;
}

.fognote { margin: 16px 2px 0; color: var(--type-faint); font-size: 14px; }
.fognote b { color: var(--type-dim); font-weight: 600; }

.failure {
  margin: 24px 0 0; padding: 16px 18px;
  border: 1px solid rgba(150, 42, 42, .35); border-radius: 10px;
  background: rgba(180, 60, 60, .07); color: #8E2C2C; font-size: 15px;
}

/* ————————————————————————————————————————————————————— the pitch —— */

.pitch { padding: clamp(48px, 8vw, 92px) 0; border-top: var(--rule); }
.pitch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--gap); }
.pitch h3 { font: 400 21px/1.25 var(--serif); margin: 0 0 10px; letter-spacing: -.01em; }
.pitch p { margin: 0; color: var(--type-dim); font-size: 15.5px; line-height: 1.62; }

.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; padding-bottom: clamp(48px, 8vw, 92px); }
.tier { padding: 24px; border: var(--rule); border-radius: 12px; background: var(--ground-2); }
.tier-paid { border-color: rgba(201,162,39,.35); }
.tier-line { margin: 0 0 10px; font-size: 16px; }
.tier-cost { margin: 0; color: var(--type-faint); font-size: 14px; }

footer { border-top: var(--rule); padding: 26px var(--gap) 44px; }
footer p { max-width: 1180px; margin: 0 auto; color: var(--type-faint); font-size: 13.5px; }

/* ———————————————————————————————————————————————————————— detail —— */

.detail {
  border: var(--rule); border-radius: 14px; background: var(--ground-2); color: var(--type);
  max-width: min(1000px, 92vw); width: 100%; padding: 0;
}
.detail::backdrop { background: rgba(40, 32, 18, .55); backdrop-filter: blur(3px); }
.detail-body { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 0; }
@media (max-width: 760px) { .detail-body { grid-template-columns: 1fr; } }
.detail figure { margin: 0; padding: 22px; background: var(--ground-3); display: grid; place-items: center; }
.detail img { max-width: 100%; max-height: 68vh; height: auto; border-radius: 8px; }
.detail-side { padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.detail-dim { margin: 0; color: var(--type-faint); font: 500 12px/1 var(--mono); letter-spacing: .05em; }
.detail-caption {
  margin: 0; flex: 1; overflow: auto; max-height: 46vh;
  white-space: pre-wrap; word-break: break-word;
  font: 400 14px/1.6 var(--sans); color: var(--type-dim);
  padding: 14px; border: var(--rule); border-radius: 9px; background: var(--ground-3);
}
.copy { align-self: flex-start; padding: 12px 20px; background: var(--accent); color: #FFFDF8; }
.copy:hover { background: var(--accent-soft); }
.detail-close {
  position: absolute; top: 10px; right: 12px; z-index: 2;
  background: transparent; color: var(--type-dim); border: 0;
  font-size: 26px; line-height: 1; padding: 6px 10px;
}
.detail-close:hover { color: var(--type); }

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

/* Dimensions under every card. The reformatting is the value and it was left
   to be inferred from aspect ratios; this states it. */
.dims {
  margin: 7px 0 0;
  font: 500 10.5px/1.3 var(--mono);
  letter-spacing: .04em;
  color: var(--accent-soft);
}

/* Which layer wrote this caption. A caption that reads like Layer 0 because
   Layer 4 fell back should say Layer 0 rather than leave you guessing. */
.prov { margin: 8px 0 0; min-height: 1px; }
.lb {
  display: inline-block;
  font: 500 9.5px/1.5 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--type-faint);
}
.lb-2, .lb-3 { border-color: rgba(111,207,151,.35); color: var(--ok); }
.lb-4 { border-color: var(--accent); color: var(--accent-soft); }

.failure .why { color: var(--type-faint); font-family: var(--mono); font-size: 12.5px; }

/* ————————————————————————————————————————————————————— the sift ——
 *
 * The engine reads a couple of hundred sentences out of an article and keeps
 * five. That is the moment a reader understands there is judgement here rather
 * than templating — so it is shown, briefly, with the publisher's OWN sentences.
 *
 * Every line on this stage is real: `sample` is drawn from the engine's actual
 * candidate pool and `survivors` are the beats it actually chose. If Layer 3
 * falls back there is no sift event and this never appears. Nothing here is
 * generated to fill time, and the counts are the engine's own.
 */
.sift {
  position: relative;
  margin: 0 0 30px;
  padding: 22px 0 18px;
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.sift-stage {
  position: relative;
  height: 190px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.sift-cand {
  position: absolute;
  left: 0;
  white-space: nowrap;
  font: 400 14px/1.5 var(--serif);
  color: var(--type-faint);
  opacity: 0;
  will-change: transform, opacity;
}
/* Rejected: drifts across and falls away. */
.sift-cand.drop { animation: siftDrop var(--dur, 1100ms) cubic-bezier(.3,.1,.5,1) forwards; }
@keyframes siftDrop {
  0%   { opacity: 0; transform: translate3d(0, 0, 0); }
  18%  { opacity: .85; }
  70%  { opacity: .32; }
  100% { opacity: 0; transform: translate3d(52px, 26px, 0); }
}
/* Kept: pulled forward, set in the reading face, and stays. */
.sift-cand.keep {
  color: var(--type);
  font-size: 16px;
  font-weight: 600;
  white-space: normal;
  max-width: min(760px, 92%);
  animation: siftKeep 620ms cubic-bezier(.2,.8,.25,1) forwards;
}
@keyframes siftKeep {
  0%   { opacity: 0; transform: translate3d(-14px, 10px, 0) scale(.985); }
  100% { opacity: 1; transform: none; }
}
.sift-cand.keep::before {
  content: "";
  position: absolute;
  left: -14px; top: .55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.sift-line {
  margin: 14px 0 0;
  font: 500 12.5px/1 var(--mono);
  letter-spacing: .04em;
  color: var(--type-faint);
}
.sift-line b { color: var(--type); font-weight: 700; }

/* ———————————————————————————————————————— the brand takeover ——
 *
 * The palette already landed at ~300ms and the page just changed colour with
 * nobody watching. Now the swatches arrive one at a time, hold for a beat, and
 * only then does the page adopt them — so the moment it stops being our
 * template and becomes theirs is something you can actually see happen.
 */
.swatch {
  opacity: 0;
  transform: translateY(6px) scale(.9);
  animation: swatchIn 380ms cubic-bezier(.2,.8,.25,1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes swatchIn { to { opacity: 1; transform: none; } }
.palette.adopting .swatch { box-shadow: 0 0 0 3px rgba(138, 93, 15, .18); }

/* The page-wide colour change, made visible for one beat. */
html.taking-over body::after {
  content: "";
  position: fixed; inset: 0; z-index: 40; pointer-events: none;
  background: radial-gradient(60vw 60vh at 50% 32%, var(--accent), transparent 70%);
  opacity: 0;
  animation: takeover 900ms ease-out forwards;
}
@keyframes takeover { 22% { opacity: .10; } 100% { opacity: 0; } }

/* ————————————————————————————————————————————— the assembly ——
 *
 * A card currently appears finished, which hides the one thing the product
 * actually does. The frame starts at the PHOTOGRAPH's real aspect ratio and
 * settles into the CHANNEL's — both numbers real — so the reformat is watched
 * rather than asserted.
 */
.shot { transition: aspect-ratio 620ms cubic-bezier(.2,.8,.25,1); }
.shot.settling { aspect-ratio: var(--from); }
.shot.settled { aspect-ratio: var(--to); }
.shot img { transition: transform 620ms cubic-bezier(.2,.8,.25,1); }
.shot.settling img { transform: scale(1.06); }

@media (prefers-reduced-motion: reduce) {
  .sift-cand, .swatch, .shot, .shot img { animation: none !important; transition: none !important; opacity: 1; transform: none; }
  html.taking-over body::after { display: none; }
}

/* A REDIRECT, NOT AN ERROR.
 *
 * `not_an_article` means they pasted a homepage. They did nothing wrong and one
 * click fixes it, so it gets the accent and a calm register rather than the red
 * that means the network fell over. Same box, different verdict. */
.failure.redirect {
  border-color: rgba(138, 93, 15, .35);
  background: rgba(138, 93, 15, .06);
  color: var(--type);
}
.failure.redirect b { color: var(--accent); }

/* ————————————————————————————————————————— the standing pages ——
 *
 * /about, /contact, /privacy, /terms, /data-deletion. Three of them are Meta
 * App Review gates (SPEC §10.1), so they are plain, readable documents rather
 * than anything clever — and they use the same ground and type as the rest of
 * the site so they do not read as a different company's pages. */
body.doc { background-attachment: fixed; }

.prose {
  max-width: 74ch;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) var(--gap) clamp(48px, 7vw, 84px);
}
.prose h1 { font: 400 clamp(30px, 4.6vw, 46px)/1.12 var(--serif); letter-spacing: -.02em; margin: 0 0 22px; }
.prose h2 { font: 400 clamp(21px, 2.6vw, 27px)/1.25 var(--serif); margin: 40px 0 12px; letter-spacing: -.012em; }
.prose h3 { font: 600 16px/1.35 var(--sans); margin: 28px 0 8px; }
.prose h4 { font: 600 14px/1.35 var(--sans); margin: 22px 0 6px; color: var(--type-dim); }
.prose p { margin: 0 0 15px; color: var(--type-dim); font-size: 16.5px; line-height: 1.7; }
.prose strong { color: var(--type); font-weight: 600; }
.prose ul { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin: 0 0 8px; color: var(--type-dim); font-size: 16px; line-height: 1.65; }
.prose a { color: var(--accent); text-underline-offset: 2px; }
.prose hr { border: 0; border-top: var(--rule); margin: 34px 0; }
.prose code {
  font: 400 13.5px var(--mono); background: var(--ground-3);
  border: var(--rule); border-radius: 4px; padding: 1px 5px;
}
.prose table { border-collapse: collapse; width: 100%; margin: 0 0 20px; }
.prose th, .prose td {
  border-bottom: var(--rule); padding: 9px 12px 9px 0;
  text-align: left; vertical-align: top; font-size: 15px; line-height: 1.55;
}
.prose th { font: 600 12px/1.3 var(--mono); letter-spacing: .07em; text-transform: uppercase; color: var(--type-faint); }
.prose td { color: var(--type-dim); }

.sitefoot { border-top: var(--rule); padding: 26px var(--gap) 46px; }
.sitefoot p { max-width: 1180px; margin: 0 auto 8px; color: var(--type-faint); font-size: 13.5px; }
.foot-entity { color: var(--type-faint); }
.foot-links {
  max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 10px;
  font-size: 13.5px;
}
.foot-links a { color: var(--type-dim); text-decoration: none; }
.foot-links a:hover { color: var(--accent); text-decoration: underline; }
.foot-links span { color: var(--line); }
