/* ═══════════════════════════════════════════════════════════════
   Reality Registry — shared stylesheet
   ---------------------------------------------------------------
   One copy for every page. Extracted from the homepage when the
   site moved onto a single design: keeping it inline would have
   meant five diverging copies, and a fix like the .nav a / .btn
   specificity collision below would have to be found and applied
   in each of them.

   Single light theme, painted explicitly. Every text/background
   pair here is >= 5.4:1 (AA needs 4.5:1 body, 3:1 large). If you
   add a colour, measure it before you ship it.
   ═══════════════════════════════════════════════════════════════ */
:root {
    color-scheme: light;

    --paper:      #FFF8F4;  /* warm blush white — page ground     */
    --sand:       #F7EAE0;  /* warm band surface                   */
    --card:       #FFFFFF;
    --ink:        #24140F;  /* 16.9:1 on paper                     */
    --ink-soft:   #5A443C;  /*  8.6:1 on paper, 7.7:1 on sand      */
    --navy:       #123072;  /* 11.8:1 on paper — actions, links    */
    --navy-deep:  #0C2153;
    --navy-tint:  #E8EEFB;
    --ember:      #B22A1F;  /*  6.2:1 on paper — the seal          */
    --ember-tint: #FBE7E2;
    --green:      #1D6B3F;  /*  6.2:1 on paper — verified state    */
    --green-tint: #E3F2E7;
    --line:       #EBD9CB;
    --line-soft:  #F2E4D8;

    --shadow-sm: 0 1px 2px rgba(36, 20, 15, .05), 0 6px 18px -10px rgba(36, 20, 15, .18);
    --shadow-md: 0 2px 4px rgba(36, 20, 15, .05), 0 22px 44px -26px rgba(36, 20, 15, .35);

    --display: 'Bricolage Grotesque', 'Trebuchet MS', system-ui, sans-serif;
    --prose:   'Newsreader', Georgia, 'Times New Roman', serif;
    --mono:    'IBM Plex Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;

    --wrap: 1120px;
  }

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

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

  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--prose);
    font-size: clamp(1.0625rem, 0.99rem + 0.35vw, 1.1875rem);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* clip, not hidden: `hidden` would make body a scroll container and
       silently break the sticky masthead. */
    overflow-x: clip;
  }

  h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin: 0;
  }

  p { margin: 0; }

  a { color: var(--navy); }

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

  .skip {
    position: absolute; left: -999px; top: 0;
    background: var(--navy); color: var(--paper);
    padding: .75rem 1.25rem; z-index: 100;
    font-family: var(--display); font-weight: 600; text-decoration: none;
  }
  .skip:focus { left: 0; }

  .wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  }

  .band { padding-block: clamp(3.5rem, 9vw, 7rem); }
  .band--sand { background: var(--sand); border-block: 1px solid var(--line); }

  .eyebrow {
    font-family: var(--display);
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ember);
    margin: 0;
  }

  .lede {
    font-size: clamp(1.125rem, 1.02rem + 0.5vw, 1.3125rem);
    color: var(--ink-soft);
    max-width: 34em;
  }

  /* ── header ───────────────────────────────────────────────── */
  .masthead {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 248, 244, .88);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .masthead__bar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; min-height: 4.25rem;
  }
  .brand {
    display: inline-flex; align-items: center; gap: .625rem;
    font-family: var(--display); font-weight: 700; font-size: 1.0625rem;
    letter-spacing: -0.015em; color: var(--ink); text-decoration: none;
  }
  .brand img { width: 30px; height: 30px; display: block; border-radius: 7px; }

  .nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 1.9rem); }
  .nav a {
    font-family: var(--display); font-size: .9375rem; font-weight: 500;
    color: var(--ink-soft); text-decoration: none;
  }
  .nav a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 5px; }
  /* `.nav a` and `.drawer a` are (0,1,1); `.btn--primary` is only (0,1,0), so
     the nav link colour was repainting the CTA's label in ink-soft on navy —
     1.4:1, effectively invisible. Restate the button colours at the same
     specificity. Keep these next to the rules that broke them. */
  .nav a.btn--primary, .drawer a.btn--primary { color: #FFFFFF; }   /* 12.4:1 on navy */
  .nav a.btn--ghost,   .drawer a.btn--ghost   { color: var(--ink); }
  .nav a.btn:hover, .drawer a.btn:hover { text-decoration: none; }

  .menu-btn {
    display: none;
    font-family: var(--display); font-size: .9375rem; font-weight: 600;
    background: var(--card); color: var(--ink);
    border: 1px solid var(--line); border-radius: 9px;
    padding: .5rem .8rem; cursor: pointer;
  }
  .drawer { display: none; border-top: 1px solid var(--line); background: var(--paper); }
  .drawer.open { display: block; }
  .drawer ul { list-style: none; margin: 0; padding: .75rem 0 1.25rem; display: grid; gap: .25rem; }
  .drawer a {
    display: block; padding: .6rem .25rem;
    font-family: var(--display); font-weight: 500; color: var(--ink); text-decoration: none;
  }

  /* ── buttons ──────────────────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    font-family: var(--display); font-size: 1rem; font-weight: 600;
    padding: .8rem 1.35rem; border-radius: 11px;
    text-decoration: none; border: 1px solid transparent; cursor: pointer;
    transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease;
  }
  .btn svg { flex: none; }
  .btn--primary { background: var(--navy); color: #FFFFFF; box-shadow: var(--shadow-sm); }
  .btn--primary:hover { background: var(--navy-deep); transform: translateY(-1px); }
  .btn--ghost { background: var(--card); color: var(--ink); border-color: var(--line); }
  .btn--ghost:hover { border-color: var(--ink-soft); transform: translateY(-1px); }
  .btn--sm { padding: .55rem 1rem; font-size: .9375rem; border-radius: 9px; }

  /* ── hero ─────────────────────────────────────────────────── */
  .hero { padding-block: clamp(3rem, 8vw, 6rem) clamp(3.5rem, 9vw, 6.5rem); }
  .hero__grid {
    display: grid; gap: clamp(2.5rem, 6vw, 4.5rem);
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 1.6rem + 4.4vw, 4.25rem);
    font-weight: 800;
    margin-top: 1.1rem;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--ember);
  }
  .hero__sub { margin-top: 1.4rem; font-size: clamp(1.125rem, 1.03rem + 0.5vw, 1.375rem); color: var(--ink-soft); max-width: 30em; }
    /* The claim, given its own line under the headline. The h1 supplies the
       reason to care; this supplies the reason to believe, before the
       mechanism explains itself. --ink is 16.9:1 on paper. */
    .hero__claim { display: block; margin-bottom: .55em; font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 1.06em; letter-spacing: -.01em; }
    .hero__claim em { font-style: normal; color: var(--ember); }
  .hero__cta { display: flex; flex-wrap: wrap; gap: .875rem; margin-top: 2rem; }
  .hero__fine {
    margin-top: 1.35rem; font-size: .9375rem; color: var(--ink-soft); max-width: 32em;
  }

  /* the seal card — the page's one bold object */
  .seal-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(1.5rem, 3.5vw, 2.15rem);
    box-shadow: var(--shadow-md);
  }
  .seal-card::before {
    content: "";
    position: absolute; inset: -10px -10px auto -10px; height: 70%;
    background: radial-gradient(120% 90% at 30% 0%, rgba(178, 42, 31, .09), transparent 70%);
    border-radius: 26px; z-index: -1;
  }
  .seal-card__title {
    font-family: var(--display); font-size: .8125rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
  }

  .clockrow {
    display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
    padding: .9rem 0;
  }
  .clockrow__label { font-family: var(--display); font-weight: 600; font-size: .9375rem; color: var(--ink); }
  .clockrow__note { display: block; font-family: var(--prose); font-weight: 400; font-size: .875rem; color: var(--ink-soft); margin-top: .15rem; }
  .clockrow__val {
    font-family: var(--mono); font-size: .9375rem; color: var(--navy);
    font-variant-numeric: tabular-nums; text-align: right;
    display: grid; gap: .2rem; justify-items: end; overflow-wrap: anywhere;
  }
  /* The beacon's random output, not its index. Monospace + nowrap so the
     hex never breaks across lines the way a formatted integer did. */
  .beaconval { font-family: var(--mono); font-size: .9375rem; white-space: nowrap; letter-spacing: -.01em; }
  .clockrow__sub {
    font-family: var(--prose); font-size: .8125rem; color: var(--ink-soft);
  }

  .bracket {
    display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 0 1rem; align-items: center;
    margin: .25rem 0;
  }
  .bracket__rule {
    grid-column: 1; justify-self: center;
    width: 2px; height: 100%; min-height: 78px;
    background: linear-gradient(var(--ember), rgba(178, 42, 31, .22));
    border-radius: 2px;
  }
  .bracket__body { grid-column: 2; }

  .seal-mark {
    display: inline-flex; align-items: center; gap: .7rem;
    background: var(--ember-tint); color: var(--ember);
    border-radius: 999px; padding: .45rem .95rem .45rem .5rem;
    font-family: var(--display); font-weight: 700; font-size: .9375rem;
  }
  .seal-mark__disc {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--ember); color: #FFFFFF;
    display: inline-flex; align-items: center; justify-content: center;
  }

  .livedot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green); display: inline-block; margin-right: .45rem;
    box-shadow: 0 0 0 0 rgba(29, 107, 63, .45);
    animation: pulse 2.4s ease-out infinite;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(29, 107, 63, .45); }
    70%  { box-shadow: 0 0 0 7px rgba(29, 107, 63, 0); }
    100% { box-shadow: 0 0 0 0 rgba(29, 107, 63, 0); }
  }
  .livetag {
    display: inline-flex; align-items: center;
    font-family: var(--display); font-size: .78125rem; font-weight: 600;
    letter-spacing: .07em; text-transform: uppercase;
    color: var(--green); background: var(--green-tint);
    border-radius: 999px; padding: .3rem .7rem .3rem .6rem;
  }

  /* ── section headers ──────────────────────────────────────── */
  .head { max-width: 40rem; }
  .head h2 { font-size: clamp(1.875rem, 1.35rem + 2.2vw, 2.875rem); margin-top: .85rem; }
  .head p { margin-top: 1.1rem; }

  /* ── cards ────────────────────────────────────────────────── */
  .cards {
    display: grid; gap: clamp(1rem, 2.2vw, 1.5rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(2.25rem, 5vw, 3.25rem);
  }
  .card {
    background: var(--card); border: 1px solid var(--line);
    border-radius: 18px; padding: clamp(1.35rem, 2.6vw, 1.75rem);
    box-shadow: var(--shadow-sm);
  }
  .card h3 { font-size: 1.25rem; margin-top: 1.1rem; }
  .card p { margin-top: .6rem; color: var(--ink-soft); font-size: 1rem; }
  .card__icon {
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--ember-tint); color: var(--ember);
    display: inline-flex; align-items: center; justify-content: center;
  }

  /* ── steps ────────────────────────────────────────────────── */
  .steps { display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: clamp(2.25rem, 5vw, 3.25rem); }
  .step {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 18px; padding: clamp(1.35rem, 2.6vw, 1.75rem);
  }
  .step__n {
    font-family: var(--mono); font-size: .875rem; font-weight: 500;
    color: var(--navy); background: var(--navy-tint);
    width: 30px; height: 30px; border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    font-variant-numeric: tabular-nums;
  }
  .step h3 { font-size: 1.1875rem; margin-top: 1rem; }
  .step p { margin-top: .55rem; color: var(--ink-soft); font-size: 1rem; }

  /* ── live proof ───────────────────────────────────────────── */
  .proof {
    display: grid; gap: clamp(1rem, 2.4vw, 1.75rem);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    margin-top: clamp(2.25rem, 5vw, 3.25rem);
    align-items: start;
  }
  .panel {
    background: var(--card); border: 1px solid var(--line);
    border-radius: 20px; padding: clamp(1.35rem, 2.8vw, 1.9rem);
    box-shadow: var(--shadow-sm);
  }
  .panel__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
  .panel h3 { font-size: 1.1875rem; }
  .panel__note { margin-top: .75rem; color: var(--ink-soft); font-size: .9375rem; }

  /* ── developers ───────────────────────────────────────────── */
  .dev__grid {
    display: grid; gap: clamp(2rem, 5vw, 3.5rem);
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: start;
  }
  .dev__list { margin: 1.5rem 0 0; padding: 0; list-style: none; display: grid; gap: .8rem; }
  .dev__list li {
    position: relative; padding-left: 1.75rem;
    color: var(--ink-soft); font-size: .9375rem; line-height: 1.55;
  }
  .dev__list li::before {
    content: "✓"; position: absolute; left: 0; top: -.05em;
    font-family: var(--display); font-weight: 700; color: var(--green);
  }
  /* Dark code panel. Painted explicitly rather than inherited so the
     surrounding warm palette can't leak in and drop the contrast. */
  .codeblock {
    background: #12222E; border-radius: 18px;
    padding: clamp(1.25rem, 2.6vw, 1.75rem);
    box-shadow: var(--shadow-md); overflow-x: auto;
  }
  .codeblock__label {
    font-family: var(--display); font-size: .75rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: #9FB4C4;                      /* 7.6:1 on #12222E */
    margin: 0 0 .75rem;
  }
  .codeblock pre { margin: 0; overflow-x: auto; }
  .codeblock code {
    font-family: var(--mono); font-size: .875rem; line-height: 1.7;
    color: #E6EDF3;                      /* 13.7:1 on #12222E */
    white-space: pre;
  }
  .c-fn  { color: #93C5FD; }             /*  9.0:1 */
  .c-str { color: #A7F3D0; }             /* 12.7:1 */
  .c-key { color: #FCD9A8; }             /* 12.1:1 */

  .stat {
    font-family: var(--mono); font-weight: 500;
    font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.125rem);
    color: var(--navy); font-variant-numeric: tabular-nums;
    margin-top: 1.15rem; line-height: 1.1; word-break: break-word;
  }
  .stat__cap { font-family: var(--prose); font-size: .9375rem; color: var(--ink-soft); margin-top: .4rem; }

  .rows { list-style: none; margin: 1.15rem 0 0; padding: 0; display: grid; gap: .1rem; }
  .rows li {
    display: grid; grid-template-columns: minmax(9.5rem, auto) minmax(0, 1fr);
    gap: .35rem 1.25rem; padding: .7rem 0; border-top: 1px solid var(--line-soft);
    align-items: baseline;
  }
  .rows li:first-child { border-top: 0; }
  .rows dt, .rows .k {
    font-family: var(--display); font-weight: 600; font-size: .9375rem; color: var(--ink);
  }
  .rows .v {
    font-family: var(--mono); font-size: .875rem; color: var(--ink-soft);
    overflow-wrap: anywhere; font-variant-numeric: tabular-nums;
  }
  .rows .v a { color: var(--navy); }

  .leaves { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
  .leaves li {
    display: inline-flex; align-items: center; gap: .45rem;
    background: var(--green-tint); color: var(--green);
    border-radius: 999px; padding: .35rem .8rem;
    font-family: var(--display); font-weight: 600; font-size: .875rem;
  }

  /* ── honest limits ────────────────────────────────────────── */

  /* ── pricing ──────────────────────────────────────────────── */
  .plans { display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: clamp(2.25rem, 5vw, 3.25rem); }
  .plan {
    background: var(--card); border: 1px solid var(--line);
    border-radius: 18px; padding: clamp(1.35rem, 2.6vw, 1.75rem);
    display: flex; flex-direction: column; gap: .55rem;
  }
  .plan--feature { border-color: var(--navy); box-shadow: var(--shadow-md); }
  .plan__name { font-family: var(--display); font-weight: 700; font-size: 1.125rem; }
  .plan__price {
    font-family: var(--display); font-weight: 700; font-size: 2.125rem;
    letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
  }
  .plan__price span { font-family: var(--prose); font-weight: 400; font-size: 1rem; color: var(--ink-soft); letter-spacing: 0; }
  .plan__what { color: var(--ink-soft); font-size: 1rem; }
  .plan__tag {
    align-self: flex-start; font-family: var(--display); font-weight: 600; font-size: .78125rem;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--navy); background: var(--navy-tint); border-radius: 999px; padding: .3rem .7rem;
  }
  .plans__note { margin-top: 1.5rem; color: var(--ink-soft); font-size: 1rem; }

  /* ── closing ──────────────────────────────────────────────── */
  .closing {
    background: var(--navy); color: #FFFFFF;
    border-radius: 24px; padding: clamp(2.25rem, 6vw, 3.75rem);
    text-align: center;
  }
  .closing h2 { font-size: clamp(1.875rem, 1.35rem + 2.2vw, 2.75rem); color: #FFFFFF; }
  .closing p { margin: 1.15rem auto 0; max-width: 34em; color: #EEF2FB; }
  .closing .btn--primary { background: #FFFFFF; color: var(--navy-deep); }
  .closing .btn--primary:hover { background: #EEF2FB; }
  .closing .btn--ghost { background: transparent; color: #FFFFFF; border-color: rgba(255, 255, 255, .55); }
  .closing .btn--ghost:hover { border-color: #FFFFFF; background: rgba(255, 255, 255, .1); }
  .closing__cta { display: flex; flex-wrap: wrap; gap: .875rem; justify-content: center; margin-top: 2rem; }

  /* ── footer ───────────────────────────────────────────────── */
  .foot { border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
  .foot__grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
  .foot nav { display: flex; flex-wrap: wrap; gap: 1rem 1.75rem; }
  .foot a { font-family: var(--display); font-size: .9375rem; font-weight: 500; color: var(--ink-soft); text-decoration: none; }
  .foot a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 5px; }
  .foot__legal { margin-top: 2rem; font-size: .875rem; color: var(--ink-soft); max-width: 44em; }

  /* ── reveal (JS-gated so no-JS still shows everything) ────── */
  .reveal-ready .reveal { opacity: 0; transform: translateY(14px); }
  .reveal-ready .reveal.in {
    opacity: 1; transform: none;
    transition: opacity .6s ease, transform .6s cubic-bezier(.22, .8, .3, 1);
  }

  /* ── responsive ───────────────────────────────────────────── */
  @media (max-width: 960px) {
    .hero__grid { grid-template-columns: minmax(0, 1fr); }
    .dev__grid  { grid-template-columns: minmax(0, 1fr); }
    .proof { grid-template-columns: minmax(0, 1fr); }
  }
  @media (max-width: 860px) {
    .nav { display: none; }
    .menu-btn { display: inline-flex; }
    .cards, .steps, .plans { grid-template-columns: minmax(0, 1fr); }
  }
  @media (max-width: 560px) {
    .rows li { grid-template-columns: minmax(0, 1fr); }
    .clockrow { flex-direction: column; align-items: flex-start; gap: .4rem; }
    .clockrow__val { text-align: left; justify-items: start; }
    .btn { width: 100%; }
    .plan__tag, .seal-mark { width: auto; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .reveal-ready .reveal { opacity: 1; transform: none; }
  }

  /* Safety net for the specificity trap above. Any container rule of the form
     `.x a { color: … }` is (0,1,1) and outranks `.btn--primary` (0,1,0). These
     restatements are (0,1,1) too, and live at the end of the sheet, so they win
     ties on source order no matter which container a button is dropped into.
     .foot and .v paint links today and hold no buttons — this is what keeps it
     that way if one is ever added. */
  a.btn--primary { color: #FFFFFF; }
  a.btn--ghost   { color: var(--ink); }

/* ── prose pages ──────────────────────────────────────────────
   Long-form documents: privacy, account deletion, about. Narrow
   measure, serif body, generous heading rhythm. Nothing here is
   used by the homepage. */
.doc { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5rem); }
.doc__wrap { max-width: 46rem; }
.doc h1 {
  font-size: clamp(2.125rem, 1.6rem + 2.4vw, 3.125rem);
  font-weight: 800; margin-top: 1rem;
}
.doc h2 {
  font-size: clamp(1.375rem, 1.2rem + 0.7vw, 1.625rem);
  margin-top: 2.75rem;
}
.doc h3 { font-size: 1.125rem; margin-top: 1.75rem; }
.doc p, .doc li { color: var(--ink-soft); line-height: 1.7; }
.doc p { margin-top: 1rem; }
.doc > .doc__wrap > p:first-of-type { font-size: 1.125rem; }
.doc ul, .doc ol { margin: 1rem 0 0; padding-left: 1.25rem; display: grid; gap: .6rem; }
.doc li::marker { color: var(--ember); }
.doc a { text-decoration: underline; text-underline-offset: 3px; }
.doc__updated {
  font-family: var(--mono); font-size: .8125rem; color: var(--ink-soft);
  margin-top: .75rem;
}
.doc__back { display: inline-block; margin-top: 3rem; font-family: var(--display); font-weight: 600; }
/* Callout for the one thing on a page a reader must not miss. */
.doc__note {
  margin-top: 1.75rem; padding: 1.15rem 1.35rem;
  background: var(--ember-tint); border-left: 3px solid var(--ember);
  border-radius: 0 12px 12px 0;
}
.doc__note p { margin-top: 0; color: var(--ink); }

/* Two-up card grid, for pages that pair a claim with its detail. */
.cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
/* Diagrams: let a wide SVG scroll on its own rather than forcing the page
   to scroll sideways. */
.figure {
  margin: clamp(2rem, 4vw, 3rem) 0 0; padding: clamp(1rem, 2.5vw, 1.75rem);
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow-sm); overflow-x: auto;
}
.figure svg { display: block; max-width: 100%; height: auto; margin-inline: auto; }
.figure figcaption {
  margin-top: .9rem; font-size: .8125rem; color: var(--ink-soft);
  font-style: italic; text-align: center;
}
.defends {
  margin-top: 1rem; font-family: var(--mono); font-size: .75rem;
  color: var(--ink-soft); line-height: 1.55;
}
.card__n {
  width: 2.25rem; height: 2.25rem; border-radius: 10px; flex: none;
  background: var(--navy-tint); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700;
}
.card__head { display: flex; align-items: center; gap: .8rem; }
@media (max-width: 720px) { .cards--2 { grid-template-columns: minmax(0, 1fr); } }
