/* DeadlineScan site v2 — "Acid Console"
   One surface: ink. One accent: chartreuse. Hierarchy comes from size and weight, never from a
   second colour. Display caps are Archivo Black, prose is Archivo, and anything a machine said or
   must be told is monospace. The acid command bar is the signature: chartreuse ground, ink type.
   Single-look by design — there is no light theme to fall back to, so body carries its own
   background and colour explicitly. */

/* ---------- fonts, self-hosted ----------
   Archivo and Archivo Black, both SIL Open Font License 1.1 — see fonts/LICENSE, with the full
   licence text in fonts/OFL-Archivo.txt and fonts/OFL-ArchivoBlack.txt. Latin subset only, which
   covers everything this site sets (including — “ ” · → and the currency and arrow glyphs).
   Self-hosted deliberately: the site makes no third-party request of any kind, which is what the
   privacy page claims and what the Content-Security-Policy enforces.

   Archivo ships as a variable font, so weights 500 and 700 are two instances of one file — the
   same arrangement Google Fonts serves. URLs here resolve against this stylesheet, not the page,
   so the errors/ subdirectory needs no special case. */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(fonts/archivo-latin-var.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(fonts/archivo-latin-var.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/archivo-black-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #17131f;
  --surface: #1e1928;
  --line: #2c2638;
  --text: #ece8f2;
  --muted: #a9a1b8;
  /* #8b8399, not the mockups' #7b7488: that measured 4.09:1 on ink, under the 4.5:1 AA floor,
     and it carries the 12-13px captions, stat sublabels and footer. This measures 5.05:1. */
  --dim: #8b8399;
  --acid: #d8f22e;

  --display: "Archivo Black", Archivo, "Arial Black", Arial, sans-serif;
  --body: Archivo, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --gutter: clamp(20px, 5.5vw, 80px);
  --shell: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: break-word;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > * {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--text);
  text-decoration-color: var(--acid);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--acid);
}

a:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

strong {
  font-weight: 700;
}

code {
  font-family: var(--mono);
  font-size: 0.9em;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  position: static;
  display: inline-block;
  margin: 8px 0 0 var(--gutter);
  padding: 10px 16px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

/* ---------- masthead ---------- */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding: 22px var(--gutter);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
}

.topnav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.topnav a {
  text-decoration: none;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topnav a.here {
  color: var(--acid);
}

/* ---------- buttons ---------- */

.chip,
.btn-fill {
  display: inline-block;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 10px 18px;
}

.chip:hover,
.btn-fill:hover {
  background: var(--text);
  color: var(--ink);
}

/* A filled button lives inside flex columns (cards, the sidebar promo), where the default
   stretch would blow it out to the full column width. The nav chip is not affected. */
.btn-fill {
  align-self: flex-start;
}

.btn-line {
  display: inline-block;
  align-self: flex-start;
  border: 1px solid var(--acid);
  color: var(--acid);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 11px 18px;
}

.btn-line:hover {
  background: var(--acid);
  color: var(--ink);
}

.btn-fill.wide,
.btn-line.wide {
  font-size: 14px;
  padding: 13px 22px;
}

/* ---------- hero ---------- */

.hero {
  padding: clamp(48px, 8vw, 96px) var(--gutter) clamp(32px, 4.5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 8.4vw, 96px);
  line-height: 0.97;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero p {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.5;
}

/* The interior pages set the same hero one step down: still display caps, not a cover. */
.hero.mid {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(24px, 3vw, 40px);
  gap: 18px;
}

.hero.mid h1 {
  font-size: clamp(28px, 5.6vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.hero.mid p {
  font-size: 16px;
  max-width: 640px;
}

.acid {
  color: var(--acid);
}

/* ---------- the acid command bar: the signature element ---------- */

.cmd {
  margin: 0 var(--gutter);
  background: var(--acid);
  color: var(--ink);
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: clamp(12px, 1.35vw, 16px);
  font-weight: 700;
  overflow-wrap: anywhere;
}

/* Multi-line command block used inside a page column: it must never widen the page, so a long
   cmdlet scrolls inside its own box instead. */
.cmd-block {
  background: var(--acid);
  color: var(--ink);
  padding: 18px 22px;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  white-space: pre;
  overflow-x: auto;
  margin: 0;
}

/* Page-width holder for a command block that is not inside an article column. */
.cmd-hold {
  padding: 0 var(--gutter);
}

.cmd-block code {
  font-size: inherit;
  color: inherit;
}

.cmd-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- real scan output: the acid bar, then what the tool actually printed ----------
   The command line keeps the signature acid ground. The output body drops to ink so nine dense
   monospace rows do not turn the fold into a chartreuse slab — one accent, spent where it counts.
   The block is verbatim console text, so it is `white-space: pre` and scrolls inside itself. */

.scan {
  padding: 0 var(--gutter);
}

.scan-head {
  background: var(--acid);
  color: var(--ink);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: clamp(12px, 1.35vw, 16px);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.scan-out {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 0;
  padding: 20px 24px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 21px;
  color: var(--muted);
  /* pre-wrap, not pre: a real terminal wraps a long line rather than hiding it, and the line
     this block exists for is the longest one. Clipping it behind a scrollbar would bury the
     point. Findings get the terminal's hanging indent so wrapped text lands under the title
     column instead of under the line number. */
  white-space: pre-wrap;
}

.scan-out .ln {
  display: block;
  padding-left: 39ch;
  text-indent: -39ch;
}

.scan-out b {
  font-weight: 700;
  color: var(--text);
}

/* The single best line on the page gets the accent it earns. */
.scan-out .gap {
  color: var(--acid);
  font-weight: 700;
}

.scan-out .cut {
  color: var(--dim);
}

.scan .caption {
  margin: 12px 0 0;
}

/* ---------- language chips: breadth as names, not as a count ---------- */

.langs {
  list-style: none;
  margin: 0;
  padding: 20px var(--gutter) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.langs li {
  border: 1px solid var(--line);
  padding: 7px 13px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.langs li.more {
  border-style: dashed;
  font-weight: 500;
  color: var(--dim);
}

/* ---------- the repeated dual CTA ---------- */

.ctas {
  padding: clamp(28px, 3.5vw, 44px) var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 16px;
}

.ctas .btn-fill,
.ctas .btn-line {
  align-self: auto;
}

/* On an article page the pair closes the column: full grid width, gutter already spent by .split. */
.split > .ctas {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px) 0 0;
}

.gone > .ctas {
  padding: 8px 0 0;
}

.steps + .block,
.steps + .rule {
  padding-top: clamp(32px, 4.5vw, 56px);
}

/* ---------- closing band: the headline said back, with both asks ---------- */

.band {
  border-top: 1px solid var(--line);
  padding: clamp(52px, 8vw, 104px) var(--gutter) clamp(44px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 32px);
}

.band h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 6.4vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.band .ctas {
  padding: 0;
}

/* ---------- attributed source blocks: the vendor's own announcement ---------- */

.quotes {
  padding: clamp(32px, 4.5vw, 56px) var(--gutter) 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
}

.pull {
  margin: 0;
  border-left: 2px solid var(--acid);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.pull p {
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
}

.pull figcaption {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  line-height: 1.5;
}

.pull figcaption a {
  color: var(--dim);
}

.pull figcaption a:hover {
  color: var(--acid);
}

/* A page-width caption that is not already inside a padded block. */
.caption.note {
  padding: 12px var(--gutter) 0;
}

/* ---------- the honesty rule, headlined ---------- */

.rule {
  padding: clamp(28px, 3.5vw, 44px) var(--gutter) 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rule > .honesty {
  margin: 0;
}

/* A .block already ends on its own bottom padding; stacking a full rule pad on top opens a gap
   that reads as a missing section. */
.block + .rule {
  padding-top: clamp(4px, 1vw, 12px);
}

/* ---------- get-the-scanner callout with the future one-liner ---------- */

.get {
  margin: 28px var(--gutter);
  border: 1px solid var(--line);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.get p {
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.get a {
  color: var(--acid);
}

/* Greyed, dashed, clearly not-yet: a roadmap, not an offer. */
.ghost {
  margin: 0;
  border: 1px dashed var(--line);
  padding: 14px 18px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 21px;
  color: var(--dim);
  white-space: pre;
  overflow-x: auto;
}

/* ---------- FAQ strip: the objections, answered before the ask ---------- */

.faq {
  padding: clamp(32px, 4.5vw, 56px) var(--gutter) 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  text-transform: uppercase;
}

.qa {
  border-bottom: 1px solid var(--line);
}

.qa:first-of-type {
  border-top: 1px solid var(--line);
}

.qa summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 16px 34px 16px 0;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}

.qa summary::-webkit-details-marker {
  display: none;
}

.qa summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 16px;
  color: var(--acid);
  font-weight: 700;
}

.qa[open] summary::after {
  content: "\2212";
}

.qa summary:hover {
  color: var(--acid);
}

.qa summary:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

.qa p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}

/* ---------- services: three steps, and the full description on demand ---------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps li {
  background: var(--ink);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.steps b {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--acid);
}

.steps span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.55;
}

.more-desc {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* Vertical padding is the tap target, not decoration: bare 12px mono is an 18px-tall hit area. */
.more-desc summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 8px 24px 8px 0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

.more-desc summary::-webkit-details-marker {
  display: none;
}

.more-desc summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 8px;
  color: var(--acid);
}

.more-desc[open] summary::after {
  content: "\2212";
}

.more-desc summary:hover {
  color: var(--acid);
}

.more-desc summary:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

/* The verbatim description keeps its own type once it is inside the disclosure; the border and
   padding now live on the <details>, so the paragraph drops them. */
.more-desc .verbatim {
  margin: 14px 0 0;
  border-top: 0;
  padding-top: 0;
}

.label {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.label.on {
  color: var(--acid);
}

.caption {
  margin: 0;
  font-size: 13px;
  color: var(--dim);
}

/* ---------- stat row ---------- */

.stats {
  padding: clamp(32px, 4.5vw, 56px) var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 28px 72px;
  font-family: var(--mono);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 220px;
}

.stat b {
  font-size: 30px;
  font-weight: 700;
}

.stat span {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.5;
}

/* ---------- the three dates ---------- */

.dates {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.dates li {
  background: var(--ink);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dates li:first-child {
  padding-left: var(--gutter);
}

.dates li:last-child {
  padding-right: var(--gutter);
}

.dates time {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  text-transform: uppercase;
}

.dates .mid time {
  color: var(--muted);
}

.dates .final time {
  color: var(--acid);
}

.dates p {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
  line-height: 1.5;
}

/* ---------- verbatim product law: the constants, printed as the tool prints them ---------- */

.law {
  padding: 28px var(--gutter) 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.law p {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.honesty {
  margin: 28px var(--gutter) 0;
  border-left: 2px solid var(--acid);
  padding-left: 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.callout {
  margin: 28px var(--gutter);
  border: 1px solid var(--line);
  padding: 18px 24px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.callout a {
  color: var(--acid);
}

/* Inside an article column the gutter is already spent, and the column's own gap sets the rhythm. */
.col > .honesty,
.col > .callout {
  margin: 0;
}

/* ---------- offer cards ---------- */

.cards {
  padding: clamp(32px, 4.5vw, 56px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.card {
  border: 1px solid var(--line);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.roomy {
  gap: 20px;
}

.card h2,
.card h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.card.roomy h2 {
  font-size: 22px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.price {
  font-family: var(--mono);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--acid);
  white-space: nowrap;
}

.card > p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.card .fine {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.6;
}

/* Verbatim product description: the small print that mirrors the storefront byte-for-byte. */
.card .verbatim {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.ticks li {
  display: flex;
  gap: 12px;
}

.ticks li::before {
  content: "\2192";
  color: var(--acid);
  flex: 0 0 auto;
}

/* ---------- article layout: main column + sidebar ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(40px, 5.5vw, 72px) var(--gutter);
  align-items: start;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

.aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.head h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 4.4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}

.head p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 620px;
}

/* The date/why rows: the whole argument of an error page in four lines. */
.rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--mono);
  list-style: none;
  margin: 0;
  padding: 0;
}

.rows li {
  display: flex;
  gap: 18px;
  align-items: baseline;
}

.rows b {
  font-weight: 700;
  font-size: 16px;
  color: var(--dim);
  flex: 0 0 148px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.rows li.on b {
  color: var(--acid);
}

.rows span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- compact link rows: sources, related, the error index ---------- */

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-family: var(--mono);
  font-size: 13px;
  align-items: baseline;
}

.row > span {
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.row a {
  color: var(--muted);
}

.block {
  padding: 0 var(--gutter) clamp(32px, 4.5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.block h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  text-transform: uppercase;
}

.links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 32px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
}

.links a {
  color: var(--muted);
}

/* ---------- sidebar cards ---------- */

.promo {
  border: 1px solid var(--acid);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  text-transform: uppercase;
}

.promo p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.promo .fine {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.6;
}

.fact {
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fact .list {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  overflow-wrap: anywhere;
}

.fact a {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--acid);
}

/* ---------- tables ---------- */

.scroller {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 560px;
  font-family: var(--mono);
  font-size: 13px;
}

th,
td {
  text-align: left;
  vertical-align: top;
  padding: 10px 16px 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

thead th {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid var(--acid);
}

tbody th {
  color: var(--text);
  font-weight: 700;
}

td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  padding-right: 0;
}

th.num {
  text-align: right;
  padding-right: 0;
}

/* ---------- long-form prose: the legal pages, reskinned only ---------- */

.prose {
  padding: clamp(40px, 5.5vw, 72px) var(--gutter) clamp(32px, 4.5vw, 56px);
  max-width: 820px;
}

.prose h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}

.prose h2 {
  margin: 44px 0 12px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  text-transform: uppercase;
}

.prose h3 {
  margin: 32px 0 10px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  text-transform: uppercase;
}

.prose p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
}

.prose .lede {
  font-size: 18px;
  color: var(--text);
  line-height: 1.55;
}

.prose .stamp {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.prose li {
  margin-bottom: 8px;
}

.prose .quote {
  margin: 0 0 16px;
  border-left: 2px solid var(--acid);
  padding-left: 14px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.prose code {
  color: var(--text);
}

.prose .cmd-block {
  margin-bottom: 16px;
}

/* ---------- verdicts (tenant check) ---------- */

.verdicts {
  padding: 0 var(--gutter) clamp(32px, 4.5vw, 56px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.verdict {
  border: 1px solid var(--line);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.verdict.wide {
  grid-column: 1 / -1;
}

.verdict h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  text-transform: uppercase;
}

.verdict .state {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.06em;
}

/* The five verdict strings are byte-exact tool output; they get the machine treatment. */
.verdict .said {
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  border-left: 2px solid var(--acid);
  padding-left: 14px;
  overflow-wrap: anywhere;
}

.verdict p:not(.said) {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- 404 ---------- */

.gone {
  padding: clamp(64px, 12vw, 160px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gone h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 8vw, 88px);
  line-height: 1;
  text-transform: uppercase;
}

.gone p {
  margin: 0;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
}

.gone a {
  color: var(--acid);
}

/* ---------- footer ---------- */

.foot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 26px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot p {
  margin: 0;
  font-size: 12px;
  color: var(--dim);
  line-height: 1.6;
}

.foot a {
  color: var(--dim);
}

.foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .head p {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .dates {
    grid-template-columns: minmax(0, 1fr);
  }

  .dates li,
  .dates li:first-child,
  .dates li:last-child {
    padding: 28px var(--gutter);
  }

  .cards,
  .verdicts,
  .quotes {
    grid-template-columns: minmax(0, 1fr);
  }

  .links {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps li {
    padding: 22px var(--gutter);
  }
}

@media (max-width: 640px) {
  .cmd {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 18px;
  }

  .cmd-block {
    padding: 14px 16px;
    font-size: 13px;
    line-height: 20px;
  }

  .rows li {
    flex-direction: column;
    gap: 4px;
  }

  .rows b {
    flex: 0 0 auto;
  }

  .stat b {
    font-size: 26px;
  }

  .promo,
  .fact,
  .verdict {
    padding: 22px;
  }

  .scan-head {
    padding: 15px 18px;
  }

  .scan-out,
  .ghost {
    padding: 14px 16px;
    font-size: 12px;
    line-height: 19px;
  }

  /* A 39-character hanging indent is most of a phone screen. Drop it and let findings wrap flush. */
  .scan-out .ln {
    padding-left: 0;
    text-indent: 0;
  }

  .get {
    padding: 18px;
  }

  /* Two full-width taps beat two half-width ones on a phone. */
  .ctas .btn-fill,
  .ctas .btn-line {
    flex: 1 1 100%;
    text-align: center;
  }
}
