/* ══════════════════════════════════════════════════════════════════════
   PullUp21 — one stylesheet, no build step, no CDN.

   Direction: "permit placard". Street-food warmth (paper stock, ember
   orange, hazard-tape rules, hand-cut hard shadows) crossed with the
   bureaucratic objects a property manager already trusts — the health
   grade taped in a window, the stamped certificate, the ruled ledger.
   Nothing floats; everything is printed on something.

   No gradients as decoration. No purple. Type does the heavy lifting.
   ══════════════════════════════════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────────────────────────────────── */

:root {
  color-scheme: light dark;

  /* Paper + ink */
  --paper:      #f4f1ea;   /* warm newsprint canvas */
  --paper-2:    #eae5da;   /* recessed wells */
  --surface:    #fffdf8;   /* card stock */
  --ink:        #17150f;
  --ink-2:      #5f5849;
  --ink-3:      #8b8272;
  --line:       #ded6c8;
  --line-hard:  #17150f;
  --shadow:     rgba(23, 21, 15, 0.9);

  /* Ember — the one loud colour. Used for action, never for decoration. */
  --ember:      #cf4b12;
  --ember-hot:  #e35a1c;
  --ember-ink:  #ffffff;
  --ember-wash: #fbe9df;

  /* Status — CleanPlate reads these and only these */
  --green:      #14764a;
  --green-wash: #ddf0e5;
  --amber:      #a35a05;
  --amber-wash: #fbeed6;
  --red:        #a92417;
  --red-wash:   #fadedb;
  --info:       #1e5b8c;
  --info-wash:  #dbeaf6;

  --radius:     10px;
  --radius-sm:  6px;
  --hard:       3px 3px 0 var(--shadow);
  --hard-sm:    2px 2px 0 var(--shadow);

  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas,
          "Liberation Mono", monospace;

  --wrap: 1080px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper:      #14120e;
    --paper-2:    #0d0c09;
    --surface:    #1e1b16;
    --ink:        #f6f2e9;
    --ink-2:      #b3aa99;
    --ink-3:      #837b6c;
    --line:       #35301f;
    --line-hard:  #4a422e;
    --shadow:     rgba(0, 0, 0, 0.75);

    --ember:      #f4762f;
    --ember-hot:  #ff8a45;
    --ember-ink:  #1a0d05;
    --ember-wash: #38200f;

    --green:      #3fc286;
    --green-wash: #10301f;
    --amber:      #f0b44a;
    --amber-wash: #35260c;
    --red:        #f47a6b;
    --red-wash:   #38160f;
    --info:       #79b6e6;
    --info-wash:  #12283a;
  }
}

/* ─── Reset ──────────────────────────────────────────────────────────── */

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

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

body {
  min-height: 100vh;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background-color: var(--paper);
  /* faint ruled-ledger tint; invisible until you look for it */
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0 39px,
      color-mix(in srgb, var(--ink) 3%, transparent) 39px 40px
    );
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--ember); text-underline-offset: 3px; }
a:hover { color: var(--ember-hot); }

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

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

/* Honeypot. Never visible, never focusable, never announced. */
.hp {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

/* ─── Type scale ─────────────────────────────────────────────────────── */

h1, h2, h3, h4 { line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }

.display {
  font-size: clamp(2.1rem, 7vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}
.h1 { font-size: clamp(1.6rem, 4.5vw, 2.25rem); }
.h2 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
.h3 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.01em; }

.lede { font-size: 1.0625rem; color: var(--ink-2); max-width: 62ch; }
.muted { color: var(--ink-2); }
.tiny { font-size: 0.8125rem; color: var(--ink-2); line-height: 1.5; }

/* The stencilled label that runs through the whole product. */
.stencil {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.num {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* ─── Hazard tape — the signature rule ───────────────────────────────── */

.tape {
  height: 7px;
  border-bottom: 1px solid var(--line-hard);
  background-image: repeating-linear-gradient(
    -45deg,
    var(--ember) 0 10px,
    var(--ink) 10px 20px
  );
}
.tape--green {
  background-image: repeating-linear-gradient(
    -45deg, var(--green) 0 10px, var(--ink) 10px 20px);
}
.tape--amber {
  background-image: repeating-linear-gradient(
    -45deg, var(--amber) 0 10px, var(--ink) 10px 20px);
}
.tape--red {
  background-image: repeating-linear-gradient(
    -45deg, var(--red) 0 10px, var(--ink) 10px 20px);
}

/* ─── Shell ──────────────────────────────────────────────────────────── */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 18px; }
.wrap--narrow { max-width: 720px; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar__in {
  display: flex; align-items: center; gap: 14px;
  min-height: 58px; flex-wrap: wrap;
}

.logo {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-weight: 800; font-size: 1.15rem; letter-spacing: -0.04em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
}
.logo:hover { color: var(--ink); }
.logo b { color: var(--ember); font-weight: 800; }

.nav { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; align-items: center; }
.nav a {
  padding: 6px 10px; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; color: var(--ink-2); text-decoration: none;
}
.nav a:hover { background: var(--paper-2); color: var(--ink); }
.nav a[aria-current="page"] {
  color: var(--ink); background: var(--paper-2);
  box-shadow: inset 0 -2px 0 var(--ember);
}

.whoami {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px; border: 1px solid var(--line);
  border-radius: 999px; background: var(--surface);
  font-size: 0.8125rem; font-weight: 600;
}
.whoami__dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--green);
  flex: none;
}
.whoami__dot--off { background: var(--ink-3); }

main { padding-block: 26px 72px; }

.pagehead { margin-bottom: 22px; }
.pagehead .stencil { display: block; margin-bottom: 6px; }
.pagehead p { color: var(--ink-2); margin-top: 8px; max-width: 66ch; }

/* ─── Cards, grids, rows ─────────────────────────────────────────────── */

.card {
  background: var(--surface);
  border: 1px solid var(--line-hard);
  border-radius: var(--radius);
  box-shadow: var(--hard);
  padding: 18px;
}
.card--flat { box-shadow: none; border-color: var(--line); }
.card--pad { padding: 22px; }
.card + .card { margin-top: 16px; }

.card__head {
  display: flex; align-items: flex-start; gap: 12px;
  justify-content: space-between; flex-wrap: wrap;
  margin-bottom: 12px;
}

.grid { display: grid; gap: 16px; }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--side { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; }
}

.stack { display: grid; gap: 14px; }
.row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.row--between { justify-content: space-between; }
.spacer { flex: 1 1 auto; }

/* Definition rows — the ledger look */
.dl { display: grid; gap: 0; margin-top: 4px; }
.dl > div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 7px 0; border-bottom: 1px dashed var(--line);
  font-size: 0.9375rem;
}
.dl > div:last-child { border-bottom: 0; }
.dl dt { color: var(--ink-2); }
.dl dd { font-weight: 650; text-align: right; }

/* ─── Buttons ────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; min-height: 44px;
  border: 1px solid var(--line-hard); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink);
  font-weight: 700; font-size: 0.9375rem; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--hard-sm);
  transition: transform 90ms ease, box-shadow 90ms ease, background 120ms ease;
}
.btn:hover { color: var(--ink); background: var(--paper-2); }
.btn:active { transform: translate(2px, 2px); box-shadow: none; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: var(--hard-sm); }

.btn--primary {
  background: var(--ember); color: var(--ember-ink); border-color: var(--line-hard);
}
.btn--primary:hover { background: var(--ember-hot); color: var(--ember-ink); }
.btn--go { background: var(--green); color: #fff; }
@media (prefers-color-scheme: dark) { .btn--go { color: #06170e; } }
.btn--go:hover { background: var(--green); filter: brightness(1.08); color: inherit; }
.btn--ghost { box-shadow: none; border-color: var(--line); background: transparent; }
.btn--sm { padding: 7px 12px; min-height: 36px; font-size: 0.8125rem; }
.btn--block { width: 100%; }
.btn--danger { background: var(--red); color: #fff; }
@media (prefers-color-scheme: dark) { .btn--danger { color: #1a0806; } }

/* ─── Forms ──────────────────────────────────────────────────────────── */

.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field > label, .fieldset__legend {
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.01em;
}
.field .hint { font-size: 0.8125rem; color: var(--ink-2); line-height: 1.45; }

input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="date"], input[type="time"], input[type="number"], input[type="password"],
select, textarea {
  width: 100%;
  padding: 11px 12px; min-height: 44px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 1rem; /* 16px — stops iOS zoom-on-focus in a parking lot */
}
textarea { min-height: 84px; resize: vertical; line-height: 1.5; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--ember);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ember) 25%, transparent);
}
input::placeholder, textarea::placeholder { color: var(--ink-3); }

.field--inline { display: flex; align-items: flex-start; gap: 10px; }
.field--inline input[type="checkbox"] {
  width: 20px; height: 20px; min-height: 0; flex: none; margin-top: 2px;
  accent-color: var(--ember);
}
.field--inline label { font-weight: 600; font-size: 0.9375rem; }

.fieldset { border: 0; padding: 0; margin: 0 0 14px; }
.fieldset__legend { display: block; margin-bottom: 8px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 12px; border: 1px solid var(--line);
  border-radius: 999px; background: var(--paper-2);
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
}
.chip input { width: 16px; height: 16px; min-height: 0; accent-color: var(--ember); }
.chip:has(input:checked) {
  border-color: var(--ember); background: var(--ember-wash); color: var(--ember);
}

.form-grid { display: grid; gap: 0 14px; }
@media (min-width: 620px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }

/* Inline status line — mirrors the Simply house pattern */
.status {
  font-size: 0.875rem; font-weight: 600; margin-top: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  border: 1px solid transparent;
}
.status--error { color: var(--red); background: var(--red-wash); border-color: var(--red); }
.status--success { color: var(--green); background: var(--green-wash); border-color: var(--green); }
.status--info { color: var(--info); background: var(--info-wash); border-color: var(--info); }

/* ─── CleanPlate placard — the object the whole product sells ────────── */

.placard {
  position: relative;
  border: 2px solid var(--line-hard);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--hard);
  overflow: hidden;
}
.placard__tape { height: 7px; }
.placard__body { padding: 16px 18px 18px; }
.placard__label {
  font-family: var(--mono); font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3);
}
.placard__status {
  display: flex; align-items: center; gap: 10px;
  margin-top: 6px;
  font-size: clamp(1.5rem, 5vw, 2rem); font-weight: 800;
  letter-spacing: -0.03em; text-transform: uppercase; line-height: 1;
}
.placard__note { margin-top: 10px; font-size: 0.9375rem; color: var(--ink-2); }
.placard--green .placard__status { color: var(--green); }
.placard--amber .placard__status { color: var(--amber); }
.placard--red   .placard__status { color: var(--red); }

.seal {
  width: 40px; height: 40px; flex: none;
  border: 2px solid currentColor; border-radius: 999px;
  display: grid; place-items: center;
  font-size: 1.25rem; line-height: 1;
}

/* Compact badge — used in lists, tables, applicant rows */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px 4px 8px;
  border: 1px solid currentColor; border-radius: 999px;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap;
}
.badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px;
  background: currentColor; flex: none;
}
.badge--green { color: var(--green); background: var(--green-wash); }
.badge--amber { color: var(--amber); background: var(--amber-wash); }
.badge--red   { color: var(--red);   background: var(--red-wash); }
.badge--lg { font-size: 0.875rem; padding: 7px 14px 7px 11px; }

.badge--plain {
  color: var(--ink-2); background: var(--paper-2); border-color: var(--line);
}
.badge--plain::before { display: none; }

/* Small non-status pills for facts (power, water, units …) */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper-2);
  font-size: 0.75rem; font-weight: 650; color: var(--ink-2);
  white-space: nowrap;
}
.pill--on { color: var(--green); border-color: var(--green); background: var(--green-wash); }
.pill--off { color: var(--ink-3); }

/* ─── Progress meter (doc vault) ─────────────────────────────────────── */

.meter { margin-top: 12px; }
.meter__track {
  display: flex; gap: 4px; height: 12px; margin-bottom: 8px;
}
.meter__seg {
  flex: 1; border: 1px solid var(--line-hard); border-radius: 3px;
  background: var(--paper-2);
}
.meter__seg--on { background: var(--green); }
.meter__seg--warn { background: var(--amber); }
.meter__caption { font-size: 0.9375rem; font-weight: 650; }

/* ─── Doc vault ──────────────────────────────────────────────────────── */

.doc {
  border: 1px solid var(--line-hard); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--hard-sm);
  overflow: hidden;
}
.doc--required { border-left: 5px solid var(--line-hard); }
.doc--green { border-left-color: var(--green); }
.doc--amber { border-left-color: var(--amber); }
.doc--red   { border-left-color: var(--red); }
.doc--optional { border-left: 5px dotted var(--line); }

.doc__head {
  display: flex; gap: 12px; align-items: center;
  width: 100%; padding: 14px 16px; text-align: left;
  background: none; border: 0; cursor: pointer; box-shadow: none;
}
.doc__head:hover { background: var(--paper-2); }
.doc__title { font-weight: 750; font-size: 1rem; letter-spacing: -0.01em; }
.doc__sub { font-size: 0.8125rem; color: var(--ink-2); margin-top: 2px; }
.doc__chev {
  margin-left: auto; flex: none; color: var(--ink-3);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.doc__panel { padding: 0 16px 18px; border-top: 1px dashed var(--line); }
.doc__panel[hidden] { display: none; }
.doc__panel > .stencil { display: block; padding-top: 14px; margin-bottom: 10px; }

/* The COI explainer — deliberately loud, it is the #1 rejection reason */
.callout {
  border: 1px solid var(--info); background: var(--info-wash);
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 0.875rem; line-height: 1.5; color: var(--ink);
  margin-bottom: 14px;
}
.callout strong { color: var(--info); }
.callout--warn { border-color: var(--amber); background: var(--amber-wash); }
.callout--warn strong { color: var(--amber); }
.callout--danger { border-color: var(--red); background: var(--red-wash); }
.callout--danger strong { color: var(--red); }

/* ─── Slot cards ─────────────────────────────────────────────────────── */

.slot { display: grid; gap: 14px; }
@media (min-width: 760px) { .slot { grid-template-columns: minmax(0,1fr) 220px; } }

.slot__when {
  font-size: 1.0625rem; font-weight: 750; letter-spacing: -0.01em;
}

/* The money block — the fee is never hidden, so it gets its own frame */
.money {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper-2); padding: 12px 14px;
}
.money__row {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 0.875rem; padding: 3px 0;
}
.money__row--fee { color: var(--ink-2); }
.money__row--net {
  border-top: 1px solid var(--line-hard); margin-top: 6px; padding-top: 8px;
  font-weight: 800; font-size: 1.0625rem;
}
.money__net { color: var(--green); }

/* ─── Split door (landing) ───────────────────────────────────────────── */

.hero { padding: 40px 0 30px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border: 1px solid var(--line-hard);
  border-radius: 999px; background: var(--surface);
  font-family: var(--mono); font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  box-shadow: var(--hard-sm); margin-bottom: 18px;
}

.doors { display: grid; gap: 18px; }
@media (min-width: 800px) { .doors { grid-template-columns: 1fr 1fr; } }

.door {
  display: flex; flex-direction: column;
  border: 2px solid var(--line-hard); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--hard);
  overflow: hidden;
}
.door__tape { height: 7px; }
.door__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.door__eyebrow { margin-bottom: 8px; }
.door h2 { font-size: 1.5rem; letter-spacing: -0.03em; }
.door p { color: var(--ink-2); margin-top: 10px; font-size: 0.9375rem; }
.door__list { list-style: none; padding: 0; margin: 16px 0 20px; display: grid; gap: 8px; }
.door__list li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 0.875rem; color: var(--ink-2);
}
.door__list li::before {
  content: "▸"; color: var(--ember); font-weight: 800; flex: none; line-height: 1.5;
}
.door__actions { margin-top: auto; display: grid; gap: 10px; }

/* Tabs inside a door panel (create account / demo sign-in) */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.tabs button {
  padding: 9px 12px; background: none; border: 0; cursor: pointer;
  font-size: 0.875rem; font-weight: 700; color: var(--ink-2);
  border-bottom: 3px solid transparent; margin-bottom: -1px;
}
.tabs button[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--ember); }

dialog.sheet {
  width: min(560px, calc(100vw - 24px));
  border: 2px solid var(--line-hard); border-radius: var(--radius);
  background: var(--surface); color: var(--ink);
  padding: 0; box-shadow: var(--hard);
}
dialog.sheet::backdrop { background: rgba(10, 9, 6, 0.55); }
.sheet__body { padding: 20px; }
.sheet__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

/* ─── Tables (compliance, admin) ─────────────────────────────────────── */

.tablewrap {
  overflow-x: auto; border: 1px solid var(--line-hard);
  border-radius: var(--radius); background: var(--surface); box-shadow: var(--hard);
}
table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
thead th {
  position: sticky; top: 0;
  background: var(--paper-2); text-align: left; white-space: nowrap;
  padding: 10px 14px; border-bottom: 1px solid var(--line-hard);
  font-family: var(--mono); font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2);
}
tbody td { padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr.is-flagged { background: var(--red-wash); }
tbody tr.is-flagged td { border-bottom-color: color-mix(in srgb, var(--red) 35%, transparent); }

/* ─── Applicants ─────────────────────────────────────────────────────── */

.applicant {
  display: grid; gap: 14px; align-items: start;
  border: 1px solid var(--line-hard); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--hard-sm); padding: 16px;
}
@media (min-width: 760px) { .applicant { grid-template-columns: 64px minmax(0,1fr) 200px; } }
.applicant__rank {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-hard); background: var(--paper-2);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 1.125rem; font-weight: 700;
}
.applicant--top { border-width: 2px; }
.applicant--top .applicant__rank { background: var(--green-wash); color: var(--green); border-color: var(--green); }
.applicant__side { display: grid; gap: 8px; }

/* ─── Empty + loading states ─────────────────────────────────────────── */

.empty {
  border: 2px dashed var(--line); border-radius: var(--radius);
  padding: 34px 22px; text-align: center; color: var(--ink-2);
  background: color-mix(in srgb, var(--surface) 55%, transparent);
}
.empty__mark { font-size: 1.75rem; margin-bottom: 8px; }
.empty strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: 6px; }

.skel {
  border-radius: var(--radius-sm);
  background: var(--paper-2);
  animation: pulse 1.4s ease-in-out infinite;
  height: 74px;
}
.skel + .skel { margin-top: 12px; }
@keyframes pulse { 50% { opacity: 0.45; } }
@media (prefers-reduced-motion: reduce) {
  .skel { animation: none; }
  .btn { transition: none; }
}

/* ─── Footer ─────────────────────────────────────────────────────────── */

.foot {
  border-top: 1px solid var(--line); padding: 22px 0 40px;
  font-size: 0.8125rem; color: var(--ink-3);
}
.foot .row { gap: 14px; }
