/* Interview Signal — site stylesheet.
 *
 * One file, no build step, no framework, no third-party request of any kind:
 * the three typefaces are served from /assets/fonts so the content security
 * policy can keep font-src at 'self'.
 *
 * The identity comes from the product's own output. What a client receives is a
 * scorecard whose every quote was verified against the transcript, so the site
 * is set like a well-kept record rather than a software brochure: paper the
 * colour of index-card stock, ink for text and buttons, a serif for the things
 * that are read slowly, a monospace for the things that are checked — timestamps,
 * stored fields, checksums — and one accent only: the highlighter mark a
 * recruiter draws under the line that matters. Colour is spent on evidence,
 * nothing else.
 *
 * The page is read by an agency owner between calls on whatever device is
 * nearest. Mobile-first, one round trip after the HTML, and every page works
 * with JavaScript off except the two that genuinely need it.
 */

/* --- type ---------------------------------------------------------------- */

/* Variable files: one download covers both weights each face is used at. */
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("/assets/fonts/newsreader.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/newsreader-500-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
}

/* --- tokens -------------------------------------------------------------- */

:root {
  --paper: #f6f7f9;          /* index-card stock, cool rather than cream        */
  --sheet: #ffffff;          /* a page laid on the stock                         */
  --sunken: #eef0f4;         /* inputs, code, the ledger's header row            */
  --ink: #15181e;
  --ink-2: #4b5563;
  --ink-3: #666f7d;          /* 4.7:1 on paper, the floor for 14px text        */
  --rule: #d7dbe2;
  --rule-soft: #e6e9ee;

  --mark: #ffe566;           /* the highlighter. The only accent on the site.    */
  --mark-ink: #15181e;
  --verified: #1b7a4a;
  --warn: #b45309;
  --danger: #b42318;

  --shadow: 0 1px 2px rgba(21, 24, 30, .05), 0 12px 32px -12px rgba(21, 24, 30, .16);

  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --r: 6px;                  /* controls */
  --r-lg: 10px;              /* the few things that are genuinely cards          */
  --max: 1040px;
  --measure: 66ch;
  --gutter: 20px;

  color-scheme: light;
}

/* Dark is its own design, not an inversion: the app itself is dark, and this is
 * the same record read at night. The highlighter becomes a wash under the words
 * rather than a block of yellow, because a block of yellow on a dark ground is
 * the brightest thing on the screen and stops being a mark under text. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #111318;
    --sheet: #191c22;
    --sunken: #0d0f13;
    --ink: #e9e7e1;
    --ink-2: #a4a9b3;
    --ink-3: #858c97;
    --rule: #2b3039;
    --rule-soft: #21252d;
    --mark: rgba(255, 229, 102, .28);
    --mark-ink: #f4efd6;
    --verified: #55c58a;
    --warn: #f0a54a;
    --danger: #f0665a;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 12px 32px -12px rgba(0, 0, 0, .6);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --paper: #111318;
  --sheet: #191c22;
  --sunken: #0d0f13;
  --ink: #e9e7e1;
  --ink-2: #a4a9b3;
  --ink-3: #858c97;
  --rule: #2b3039;
  --rule-soft: #21252d;
  --mark: rgba(255, 229, 102, .28);
  --mark-ink: #f4efd6;
  --verified: #55c58a;
  --warn: #f0a54a;
  --danger: #f0665a;
  --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 12px 32px -12px rgba(0, 0, 0, .6);
  color-scheme: dark;
}

/* --- base ---------------------------------------------------------------- */

* { box-sizing: border-box; }

/* scroll-padding keeps an anchor target clear of the sticky header. */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* padding-inline, never the shorthand: the landing page puts .wrap on its
 * sections, and a shorthand here would zero the vertical padding section sets. */
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.prose { max-width: var(--measure); }

/* Prose pages are read top to bottom, so a heading needs air above it. The
 * record layout zeroes h2's top margin because there the rule does that job. */
.prose h2 { margin-top: 44px; }
.prose > h2:first-child { margin-top: 0; }

/* Keyboard users get a way past the header. Off-screen until focused. */
.skip {
  position: absolute; left: 16px; top: -100px; z-index: 30;
  padding: 10px 14px; border-radius: var(--r);
  background: var(--ink); color: var(--paper);
  font: 600 15px/1 var(--sans); text-decoration: none;
}
.skip:focus { top: 12px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 14px;
  text-wrap: balance;
}
h1 { font-size: clamp(34px, 5.4vw, 56px); }
h2 { font-size: clamp(26px, 3.6vw, 36px); margin-top: 0; }
h3 { font-size: 22px; margin-top: 30px; }
h4 { font-size: 18px; }
p { margin: 0 0 16px; max-width: var(--measure); }
ul, ol { margin: 0 0 16px; padding-left: 22px; max-width: var(--measure); }
li { margin-bottom: 7px; }
strong { font-weight: 600; }

a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--ink); }

.muted { color: var(--ink-2); }
.small { font-size: 15px; }
.tiny { font-size: 14px; color: var(--ink-3); }
.center { text-align: center; }
.hidden { display: none !important; }
.nowrap { white-space: nowrap; }

/* The browser's own [hidden] rule is a type selector, so any class with a display
 * rule beats it — which once left the founding-slot dot visible on every page
 * before the count arrived. Anything toggled with the hidden attribute has to win. */
[hidden] { display: none !important; }

/* The running head: how a record labels its sections. Monospace, small caps,
 * set in the margin where there is one and above the text where there is not. */
.eyebrow, .margin, .running {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow { display: block; margin-bottom: 18px; }

/* The highlighter. Drawn under words, not around blocks. */
.mark {
  background: linear-gradient(transparent 8%, var(--mark) 8%, var(--mark) 92%, transparent 92%);
  color: var(--mark-ink);
  padding: 0 .12em;
  margin: 0 -.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.verified {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em;
  color: var(--verified);
}
.verified::before {
  content: "";
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid currentColor;
  background:
    linear-gradient(currentColor, currentColor) no-repeat 4px 6.5px / 3px 1.5px,
    linear-gradient(currentColor, currentColor) no-repeat 5.5px 5px / 1.5px 5px;
  transform: rotate(45deg);
}

/* --- header / footer ----------------------------------------------------- */

header.site {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 14px; }

.logo {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-family: var(--serif); font-weight: 600; font-size: 21px; letter-spacing: -0.015em;
  color: var(--ink); text-decoration: none;
}
.logo span {
  background: linear-gradient(transparent 62%, var(--mark) 62%, var(--mark) 92%, transparent 92%);
  color: var(--mark-ink);
  padding: 0 .1em; margin-left: .18em;
}

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-size: 15.5px; font-weight: 600; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links .btn { font-size: 14.5px; padding: 9px 16px; color: var(--paper); }
.nav-links .btn:hover { color: var(--paper); }

footer.site { border-top: 1px solid var(--rule); margin-top: 40px; padding-block: 40px 56px; }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 28px; }
.foot-grid h4 { font: 500 12px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 12px; }
.foot-grid a { display: block; color: var(--ink-2); text-decoration: none; font-size: 15px; margin-bottom: 8px; }
.foot-grid a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule); }
.foot-note { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--rule-soft); font-size: 14px; color: var(--ink-3); max-width: none; }

/* --- buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  border-radius: var(--r);
  border: 1px solid var(--ink);
  background: var(--sheet);
  color: var(--ink);
  font: 600 15.5px/1.2 var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .12s ease, color .12s ease, transform .12s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--ink-2); border-color: var(--ink-2); color: var(--paper); }
.btn-ghost { background: transparent; border-color: var(--rule); }
.btn-ghost:hover { background: var(--sheet); border-color: var(--ink); color: var(--ink); }
.btn-danger { background: transparent; border-color: var(--danger); color: var(--danger); }
.btn-danger:hover { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn:disabled { opacity: .45; cursor: default; transform: none; }
.btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.btn-primary:focus-visible { outline-color: var(--ink); }

/* --- the record layout --------------------------------------------------- */

/* A section is a heading, a running head in the margin, and one column of
 * text. On a wide screen the running head sits to the left, the way a
 * transcript carries its timestamps; on a phone it sits above the heading. */
/* A record hangs from its rule: the heading sits just under it, and the air
 * goes below the content, before the next rule. */
section { padding-block: 14px 56px; }
section + section, main > section:not(.hero) { border-top: 1px solid var(--rule); }
main > section.hero { border-top: none; }

.record {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px 48px;
  align-items: start;
}
.record .margin { padding-top: 6px; }
.record .body { min-width: 0; }
.record .body > :first-child { margin-top: 0; }
@media (min-width: 900px) {
  .record { grid-template-columns: 168px minmax(0, 1fr); }
  .record .margin { padding-top: 14px; position: sticky; top: 92px; }
}

.hero { padding-block: 64px 40px; }
.hero h1 { max-width: 20ch; }
.hero .lede { font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-2); max-width: 56ch; margin: 0 0 28px; line-height: 1.5; }
.section-lede { color: var(--ink-2); font-size: 18px; max-width: 60ch; }

/* --- the evidence card: the hero's thesis -------------------------------- */

.evidence {
  background: var(--sheet);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 22px 26px 20px;
  max-width: 640px;
  margin: 30px 0 34px;
}
.evidence-head {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid var(--rule-soft);
}
.evidence-dim { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.evidence-dim strong { font: 600 16px/1.2 var(--sans); }
.evidence-score { font-family: var(--mono); font-size: 15px; font-variant-numeric: tabular-nums; color: var(--ink-2); }
.evidence-score b { font-weight: 500; color: var(--ink); font-size: 22px; }
.evidence q {
  quotes: "\201C" "\201D";
  display: block;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(19px, 2.3vw, 23px); line-height: 1.4;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: none;
}
.evidence q::before, .evidence q::after { color: var(--ink-3); font-style: normal; }
.evidence-foot { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; }
.evidence-foot .stamp { font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); letter-spacing: .04em; }

/* --- groups of things ---------------------------------------------------- */

.grid { display: grid; gap: 22px 32px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Cards are for the plans and the form. Everything else that used to be a
 * card is now a titled paragraph under a rule, which is what it always was. */
.card {
  padding: 22px 0 0;
  border-top: 1px solid var(--rule);
}
.card h3 { margin-top: 0; font-size: 20px; }
.card p:last-child { margin-bottom: 0; }
.card p { max-width: none; }

.step { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--rule-soft); }
.step:last-child { border-bottom: none; }
.step-num {
  flex: 0 0 auto; width: 34px; padding-top: 3px;
  font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.step h3 { margin: 0 0 6px; font-size: 21px; }
.step p { margin: 0; color: var(--ink-2); font-size: 16.5px; }

/* --- pricing ------------------------------------------------------------- */

/* Cards size to their own contents: the featured plan is the longest, and
 * stretching the others to match left them two-thirds empty. */
.price-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: start; }
.plan {
  background: var(--sheet);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex; flex-direction: column;
}
.plan-featured { border-color: var(--ink); box-shadow: var(--shadow); }
.plan-name { font: 500 12px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.plan-price { font-family: var(--serif); font-size: 44px; font-weight: 500; line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.plan-price span { font: 400 15px/1 var(--sans); color: var(--ink-2); letter-spacing: 0; }
.plan-note { color: var(--ink-2); font-size: 15px; margin: 12px 0 18px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.plan li { padding-left: 22px; position: relative; font-size: 15.5px; color: var(--ink-2); margin-bottom: 9px; }
.plan li::before { content: "—"; position: absolute; left: 0; color: var(--ink-3); }
.plan .btn { align-self: flex-start; }

.slots { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 13px; color: var(--warn); margin: 0 0 16px; }
.slots-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--warn); }

.guarantee {
  background: var(--sheet);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  position: relative;
}
.guarantee::before {
  content: "";
  position: absolute; left: -1px; top: 18px; bottom: 18px; width: 3px;
  background: var(--verified); border-radius: 2px;
}
.guarantee h3 { margin-top: 0; }

/* --- forms --------------------------------------------------------------- */

.form { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font: 500 12px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.field label .muted { text-transform: none; letter-spacing: 0; font-family: var(--sans); font-size: 13px; }
.field input, .field select, .field textarea {
  background: var(--sheet);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  color: var(--ink);
  padding: 11px 13px;
  font: 400 16px/1.4 var(--sans);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); outline: none; box-shadow: 0 0 0 3px var(--mark); }
.field textarea { resize: vertical; min-height: 110px; }
.field-hint { font-size: 14px; color: var(--ink-3); margin: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-msg { padding: 12px 14px; border-radius: var(--r); font-size: 15px; border: 1px solid var(--rule); background: var(--sheet); }
.form-ok { border-color: var(--verified); }
.form-err { border-color: var(--danger); }
.form-warn { border-color: var(--warn); }

/* --- the ledger: tables, lists, code ------------------------------------- */

table.data { border-collapse: collapse; width: 100%; margin: 18px 0; font-size: 15.5px; }
table.data th, table.data td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--rule-soft); vertical-align: top; }
table.data th { font: 500 12px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); background: var(--sunken); }
table.data td:first-child { font-family: var(--mono); font-size: 14px; color: var(--ink); }
.table-scroll { overflow-x: auto; }

details.faq { border-bottom: 1px solid var(--rule-soft); padding: 16px 0; }
details.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--serif); font-size: 20px; font-weight: 500;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-family: var(--mono); color: var(--ink-3); font-weight: 400; }
details.faq[open] summary::after { content: "−"; }
details.faq p { margin: 12px 0 0; color: var(--ink-2); }

.chip {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  border: 1px solid var(--rule); background: var(--sheet);
  font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--ink-2);
}
.chip-ok { color: var(--verified); border-color: var(--verified); }
.chip-warn { color: var(--warn); border-color: var(--warn); }

.callout {
  background: var(--sheet); border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 20px 22px; margin: 24px 0;
}
.callout p { max-width: none; }
.callout-warn { border-left: 3px solid var(--warn); }

code, .mono { font-family: var(--mono); font-size: .9em; }
code { background: var(--sunken); padding: 2px 6px; border-radius: 4px; }
.checksum { word-break: break-all; font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); }

hr { border: none; border-top: 1px solid var(--rule); margin: 40px 0; }

/* --- portal -------------------------------------------------------------- */

.tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--rule); margin-bottom: 28px; overflow-x: auto; }
.tab {
  appearance: none; background: none; border: none; border-bottom: 2px solid transparent;
  color: var(--ink-2); font: 600 15px/1 var(--sans);
  padding: 12px 15px; cursor: pointer; white-space: nowrap; margin-bottom: -1px;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--ink); }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin: 20px 0; }
.stat { background: var(--sheet); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 16px 18px; }
.stat-label { font: 500 11.5px/1.3 var(--mono); color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; }
.stat-value { font-family: var(--serif); font-size: 30px; font-weight: 500; margin-top: 6px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }

.member-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--rule-soft); }
.member-row:last-child { border-bottom: none; }

@media (max-width: 640px) {
  /* Logo, "Sign in" and the demo button have to share 375px on one line. */
  .logo { font-size: 19px; }
  .nav-links { gap: 12px; }
  .nav-links a { white-space: nowrap; }
  .nav-links .btn { padding: 8px 12px; }
  .nav-links a.nav-hide { display: none; }
  .hero { padding-block: 44px 32px; }
  section { padding-block: 12px 44px; }
  .evidence { padding: 18px 18px 16px; }
}

/* --- print --------------------------------------------------------------- */

/* The security page and the consent guide get printed and put on a desk, and
 * the consent PDF we email is this stylesheet applied to that page. */
@media print {
  :root, :root:not([data-theme="light"]), :root[data-theme="dark"] {
    --paper: #fff; --sheet: #fff; --sunken: #f2f2f2;
    --ink: #000; --ink-2: #222; --ink-3: #555;
    --rule: #999; --rule-soft: #ccc; --shadow: none;
    --mark: #ffe566; --mark-ink: #000;
    color-scheme: light;
  }
  header.site, footer.site, .skip, .btn, .btn-row, form, .print-hide { display: none !important; }
  body { font-size: 9.5pt; line-height: 1.38; }
  .wrap { max-width: none; padding-inline: 0; }
  .hero { padding-block: 0 8pt; }
  .hero .lede { font-size: 12pt; margin-bottom: 10pt; }
  h1 { font-size: 24pt; }
  h2 { font-size: 15pt; }
  .prose h2 { margin-top: 16pt; }
  h3 { font-size: 12.5pt; margin-top: 12pt; }
  p, ul, ol, .prose { max-width: none; }
  section { padding-block: 6pt 10pt; }
  .card, .callout, .guarantee, tr { break-inside: avoid; }
  thead { display: table-header-group; }
  h2, h3 { break-after: avoid; }
  .callout { margin: 10pt 0; padding: 10pt 12pt; }
  table.data { font-size: 9pt; margin: 6pt 0; }
  table.data th, table.data td { padding: 3.5pt 8pt; }
  p { margin-bottom: 8pt; }
  li { margin-bottom: 3pt; }
  main::after {
    content: "copilotinterviewer.com/consent-guide — Interview Signal. General information, not legal advice.";
    display: block; margin-top: 14pt; padding-top: 6pt; border-top: 1px solid #999;
    font-family: var(--mono); font-size: 8pt; color: #555;
  }
  a { color: inherit; text-decoration: none; }
  .record { grid-template-columns: 1fr; }
  .record .margin { position: static; }
}
