/* factorysemantics.com — shared stylesheet. Tokens and components; every page uses this file. */
  :root {
    --ground: #f4f6f8;
    --panel: #ffffff;
    --panel-2: #eaeef3;
    --ink: #161b22;
    --muted: #5b6675;
    --line: #d6dce4;
    --line-strong: #aeb8c4;
    --accent: #d97a12;
    --accent-ink: #ffffff;
    --link: #0b5fbe;
    --run: #1f8a4c;
    --down: #c2372f;
    --wait: #9a7a1c;
    --code-bg: #eef1f5;
    --shadow: 0 1px 0 rgba(22, 27, 34, 0.06), 0 12px 32px -20px rgba(22, 27, 34, 0.35);
    color-scheme: light dark;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --ground: #0e1116;
      --panel: #161b24;
      --panel-2: #1d2330;
      --ink: #e6eaf0;
      --muted: #98a3b3;
      --line: #2a3240;
      --line-strong: #3d4757;
      --accent: #ffab4c;
      --accent-ink: #1a1207;
      --link: #6fb3ff;
      --run: #4cc27a;
      --down: #f0655b;
      --wait: #e0b74a;
      --code-bg: #0b0e13;
      --shadow: 0 1px 0 rgba(0, 0, 0, 0.4), 0 12px 32px -20px rgba(0, 0, 0, 0.8);
    }
  }
  :root[data-theme="dark"] {
    --ground: #0e1116;
    --panel: #161b24;
    --panel-2: #1d2330;
    --ink: #e6eaf0;
    --muted: #98a3b3;
    --line: #2a3240;
    --line-strong: #3d4757;
    --accent: #ffab4c;
    --accent-ink: #1a1207;
    --link: #6fb3ff;
    --run: #4cc27a;
    --down: #f0655b;
    --wait: #e0b74a;
    --code-bg: #0b0e13;
    --shadow: 0 1px 0 rgba(0, 0, 0, 0.4), 0 12px 32px -20px rgba(0, 0, 0, 0.8);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--ground);
    color: var(--ink);
    font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 3px; }
  a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
  h1, h2, h3 {
    font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
    font-variation-settings: "wdth" 90;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0;
    text-wrap: balance;
  }
  h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 850; }
  h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 800; }
  h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; }
  p { margin: 0; }
  .mono, code, kbd, pre { font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace; }
  code { font-size: 0.88em; background: var(--code-bg); padding: 0.1em 0.35em; border-radius: 3px; }
  pre {
    margin: 0;
    background: var(--code-bg);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0.9rem 1.1rem;
    font-size: 0.86rem;
    line-height: 1.55;
    overflow-x: auto;
  }
  pre code { background: none; padding: 0; font-size: inherit; }
  .eyebrow {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .eyebrow::before { content: "// "; color: var(--accent); }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.4rem; }
  .prose { max-width: 62ch; }
  .muted { color: var(--muted); }
  .num { font-variant-numeric: tabular-nums; }

  /* ---------- header ---------- */
  header.top {
    position: sticky; top: 0; z-index: 5;
    background: color-mix(in srgb, var(--ground) 88%, transparent);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  header.top .wrap { display: flex; align-items: center; gap: 1.5rem; height: 60px; }
  .brand { display: flex; align-items: center; gap: 0.6rem; font-family: "Archivo", sans-serif; font-weight: 800; font-variation-settings: "wdth" 92; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; }
  .brand svg { width: 26px; height: 26px; }
  nav.primary { margin-left: auto; display: flex; gap: 1.3rem; }
  nav.primary a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
  nav.primary a:hover { color: var(--ink); }
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: "Archivo", sans-serif; font-weight: 700; font-variation-settings: "wdth" 92;
    font-size: 0.98rem; text-decoration: none; padding: 0.7rem 1.1rem; border-radius: 6px;
    border: 1px solid var(--line-strong); color: var(--ink); background: var(--panel);
  }
  .btn:hover { border-color: var(--ink); }
  .btn.primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
  .btn.primary:hover { filter: brightness(0.95); border-color: var(--accent); }
  @media (max-width: 720px) { nav.primary { display: none; } }

  /* ---------- hero ---------- */
  .hero { padding: 4.5rem 0 3.5rem; border-bottom: 1px solid var(--line); }
  .hero .wrap { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 3rem; align-items: center; }
  .hero-copy { display: grid; gap: 1.4rem; }
  .hero-copy .lede { font-size: 1.25rem; max-width: 52ch; color: var(--muted); }
  .hero-copy .lede strong { color: var(--ink); font-weight: 600; }
  .cta { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; }
  .status-line { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--muted); }
  .status-line .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--run); box-shadow: 0 0 0 3px color-mix(in srgb, var(--run) 25%, transparent); }
  @media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } }

  /* the line panel: hand-drawn, themed */
  .line-panel {
    background: var(--panel); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow);
    padding: 1rem 1.1rem 1.1rem; display: grid; gap: 0.8rem;
  }
  .line-panel .head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
  .line-panel .head .title { font-family: "Archivo", sans-serif; font-weight: 700; font-variation-settings: "wdth" 92; }
  .line-panel svg { width: 100%; height: auto; display: block; }
  .stations { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.4rem; }
  .st { border: 1px solid var(--line); border-radius: 6px; padding: 0.45rem 0.5rem; display: grid; gap: 0.15rem; min-width: 0; }
  .st .code { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; color: var(--muted); }
  .st .state { font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 0.35rem; white-space: nowrap; }
  .st .state::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--run); flex: none; }
  .st.down .state::before { background: var(--down); }
  .st.starved .state::before, .st.blocked .state::before { background: var(--wait); }
  .st .count { font-family: "IBM Plex Mono", monospace; font-size: 0.85rem; font-variant-numeric: tabular-nums; }
  .score { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; border-top: 1px solid var(--line); padding-top: 0.8rem; }
  .score div { display: grid; gap: 0.1rem; }
  .score .k { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
  .score .v { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.35rem; font-variation-settings: "wdth" 90; letter-spacing: -0.02em; }
  .score .v small { font-family: "Source Sans 3", sans-serif; font-weight: 400; font-size: 0.8rem; color: var(--muted); letter-spacing: 0; margin-left: 0.3rem; }
  @media (max-width: 560px) { .stations { grid-template-columns: repeat(3, 1fr); } }

  /* ---------- sections ---------- */
  section.block { padding: 4.5rem 0; border-bottom: 1px solid var(--line); }
  section.block .wrap { display: grid; gap: 2.2rem; }
  .section-head { display: grid; gap: 0.8rem; max-width: 64ch; }
  .section-head p { color: var(--muted); font-size: 1.08rem; }

  /* demos */
  .demos { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .demo {
    background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 1.4rem;
    display: grid; grid-template-rows: auto auto 1fr auto; gap: 0.9rem; box-shadow: var(--shadow);
  }
  .demo .plant { font-family: "IBM Plex Mono", monospace; font-size: 0.78rem; color: var(--muted); }
  .demo ul { margin: 0; padding-left: 1.1rem; display: grid; gap: 0.3rem; color: var(--muted); }
  .demo ul strong { color: var(--ink); font-weight: 600; }
  .creds { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; font-size: 0.92rem; color: var(--muted); align-items: baseline; }
  .creds code { font-size: 0.9rem; }
  @media (max-width: 760px) { .demos { grid-template-columns: 1fr; } }

  /* commitments */
  .three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--panel); }
  .three > div { padding: 1.5rem 1.4rem; display: grid; gap: 0.7rem; align-content: start; border-right: 1px solid var(--line); }
  .three > div:last-child { border-right: 0; }
  .three h3 { padding-bottom: 0.4rem; border-bottom: 2px solid var(--accent); display: inline-block; }
  .three p { color: var(--muted); }
  .three p strong { color: var(--ink); font-weight: 600; }
  .three .fact { font-family: "IBM Plex Mono", monospace; font-size: 0.8rem; color: var(--ink); background: var(--code-bg); border-radius: 4px; padding: 0.35rem 0.55rem; }
  @media (max-width: 860px) { .three { grid-template-columns: 1fr; } .three > div { border-right: 0; border-bottom: 1px solid var(--line); } .three > div:last-child { border-bottom: 0; } }

  /* ai flow */
  .flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .step { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 1.3rem 1.3rem 1.4rem; display: grid; gap: 0.6rem; align-content: start; position: relative; }
  .step .n { font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; color: var(--accent); letter-spacing: 0.1em; }
  .step p { color: var(--muted); }
  .step p strong { color: var(--ink); font-weight: 600; }
  @media (max-width: 860px) { .flow { grid-template-columns: 1fr; } }
  .story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.5rem; align-items: start; }
  .story .prose { display: grid; gap: 0.8rem; color: var(--muted); }
  .story .prose strong { color: var(--ink); font-weight: 600; }
  .receipt { display: grid; gap: 0.5rem; }
  .receipt .label { font-size: 0.8rem; color: var(--muted); }
  @media (max-width: 860px) { .story { grid-template-columns: 1fr; } }
  .local { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
  .local div { border-top: 2px solid var(--line-strong); padding-top: 0.7rem; display: grid; gap: 0.25rem; }
  .local div b { font-weight: 600; }
  .local div span { color: var(--muted); font-size: 0.95rem; }
  @media (max-width: 860px) { .local { grid-template-columns: 1fr 1fr; } }

  /* security table */
  table.facts { width: 100%; border-collapse: collapse; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
  table.facts th, table.facts td { text-align: left; vertical-align: top; padding: 0.95rem 1.1rem; border-top: 1px solid var(--line); }
  table.facts tr:first-child th, table.facts tr:first-child td { border-top: 0; }
  table.facts th { width: 24%; font-family: "Archivo", sans-serif; font-weight: 700; font-variation-settings: "wdth" 92; font-size: 0.98rem; }
  table.facts td { color: var(--muted); }
  table.facts td strong { color: var(--ink); font-weight: 600; }
  .table-wrap { overflow-x: auto; }
  @media (max-width: 640px) { table.facts th { width: 34%; } }

  /* run it */
  .steps { display: grid; gap: 0; counter-reset: step; border-left: 2px solid var(--line-strong); }
  .steps > div { display: grid; grid-template-columns: 3.2rem minmax(0, 1fr); gap: 0 0.5rem; padding: 1.2rem 0 1.2rem 0; }
  .steps > div + div { border-top: 1px solid var(--line); }
  .steps .k { font-family: "Archivo", sans-serif; font-weight: 800; font-variation-settings: "wdth" 88; font-size: 1.5rem; color: var(--accent); line-height: 1; padding-left: 1rem; }
  .steps .body { display: grid; gap: 0.6rem; min-width: 0; }
  .steps .body p { color: var(--muted); max-width: 62ch; }
  .steps .body p strong { color: var(--ink); font-weight: 600; }
  .access { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 1.4rem 1.5rem; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; align-items: center; }
  .access p { color: var(--muted); max-width: 60ch; }
  @media (max-width: 760px) { .access { grid-template-columns: 1fr; } }

  footer { padding: 2.5rem 0 3.5rem; color: var(--muted); font-size: 0.92rem; }
  footer .wrap { display: grid; gap: 0.6rem; }
  footer .row { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; }

  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  /* ---------- additions for the multi-page site (same tokens, same shapes) ---------- */
  nav.primary a[aria-current="page"] { color: var(--ink); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
  .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

  /* mobile menu: a details element, no script */
  details.menu { display: none; position: relative; margin-left: auto; }
  details.menu summary { list-style: none; cursor: pointer; width: 40px; height: 40px; display: grid; place-content: center; gap: 5px; border: 1px solid var(--line-strong); border-radius: 6px; background: var(--panel); }
  details.menu summary::-webkit-details-marker { display: none; }
  details.menu summary span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 1px; }
  details.menu nav { position: absolute; right: 0; top: 48px; min-width: 220px; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); padding: 0.6rem; display: grid; }
  details.menu nav a { color: var(--ink); text-decoration: none; font-weight: 600; padding: 0.55rem 0.7rem; border-radius: 6px; }
  details.menu nav a:hover, details.menu nav a[aria-current="page"] { background: var(--panel-2); }
  @media (max-width: 720px) { details.menu { display: block; } header.top .btn { display: none; } }

  /* page heads for the inner pages */
  .page-head { padding: 3.5rem 0 2.5rem; border-bottom: 1px solid var(--line); }
  .page-head .wrap { display: grid; gap: 1rem; }
  .page-head h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
  .page-head .lede { font-size: 1.2rem; color: var(--muted); max-width: 60ch; }
  .page-head .lede strong { color: var(--ink); font-weight: 600; }

  /* doors: the three ways in, on the landing page and elsewhere */
  .doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .door { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 1.4rem; display: grid; grid-template-rows: auto auto 1fr auto; gap: 0.8rem; box-shadow: var(--shadow); }
  .door p { color: var(--muted); }
  .door p strong { color: var(--ink); font-weight: 600; }
  .door .who { font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
  @media (max-width: 860px) { .doors { grid-template-columns: 1fr; } }

  /* forms */
  form.panel { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 1.5rem; display: grid; gap: 1rem; box-shadow: var(--shadow); }
  .fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem 1.2rem; }
  .fields .full { grid-column: 1 / -1; }
  .field { display: grid; gap: 0.35rem; min-width: 0; align-content: start; }
  .field label, .field > span.k { font-weight: 600; font-size: 0.95rem; }
  .field .hint { color: var(--muted); font-size: 0.86rem; }
  input[type="text"], input[type="email"], input[type="number"], input[type="url"], select, textarea {
    font: inherit; color: var(--ink); background: var(--ground); border: 1px solid var(--line-strong); border-radius: 6px;
    padding: 0.6rem 0.75rem; width: 100%; min-width: 0;
  }
  input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
  textarea { min-height: 6.5rem; resize: vertical; }
  .choices { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
  .choices label { font-weight: 400; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.95rem; }
  button.btn { cursor: pointer; font-size: 0.98rem; }
  button.btn[disabled] { opacity: 0.6; cursor: wait; }
  .notice { border-left: 3px solid var(--accent); background: var(--panel-2); padding: 0.7rem 0.9rem; border-radius: 0 6px 6px 0; font-size: 0.95rem; }
  .notice.ok { border-color: var(--run); }
  .notice.err { border-color: var(--down); }
  .row-inline { display: flex; gap: 0.6rem; flex-wrap: wrap; }
  .row-inline input { flex: 1 1 220px; width: auto; }
  form.subscribe { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 0.6rem 2rem; align-items: center; padding: 1.2rem 0 1.6rem; margin-bottom: 1rem; border-bottom: 1px solid var(--line); }
  form.subscribe > div:first-child { display: grid; gap: 0.2rem; }
  form.subscribe > div:first-child b { color: var(--ink); font-weight: 600; }
  form.subscribe .notice { grid-column: 1 / -1; }
  @media (max-width: 760px) { form.subscribe { grid-template-columns: 1fr; } }
  .consent { color: var(--muted); font-size: 0.86rem; max-width: 66ch; }
  @media (max-width: 640px) { .fields { grid-template-columns: 1fr; } }

  /* the estimator */
  .plan { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.5rem; align-items: start; }
  .estimate { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); display: grid; gap: 0; position: sticky; top: 76px; }
  .estimate .head { padding: 1rem 1.3rem; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
  .estimate .head .title { font-family: "Archivo", sans-serif; font-weight: 700; font-variation-settings: "wdth" 92; }
  .estimate .grid { display: grid; grid-template-columns: 1fr 1fr; }
  .estimate .grid > div { padding: 0.95rem 1.3rem; border-bottom: 1px solid var(--line); display: grid; gap: 0.15rem; }
  .estimate .grid > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .estimate .k { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
  .estimate .v { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.35rem; font-variation-settings: "wdth" 90; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
  .estimate .v small { font-family: "Source Sans 3", sans-serif; font-weight: 400; font-size: 0.8rem; color: var(--muted); letter-spacing: 0; margin-left: 0.3rem; }
  .estimate .verdict { padding: 1rem 1.3rem; display: grid; gap: 0.5rem; color: var(--muted); font-size: 0.95rem; }
  .estimate .verdict strong { color: var(--ink); font-weight: 600; }
  .estimate .basis { padding: 0.9rem 1.3rem; border-top: 1px solid var(--line); font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; color: var(--muted); line-height: 1.5; }
  @media (max-width: 900px) { .plan { grid-template-columns: 1fr; } .estimate { position: static; } }

  /* paths on the integrate page */
  .paths { display: grid; gap: 1rem; }
  .path { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 1.4rem; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 1.2rem; box-shadow: var(--shadow); }
  .path .text { display: grid; gap: 0.6rem; }
  .path .text p { color: var(--muted); }
  .path .text p strong { color: var(--ink); font-weight: 600; }
  .path .aside { display: grid; gap: 0.6rem; align-content: start; }
  .path .aside .label { font-size: 0.8rem; color: var(--muted); }
  .path ul.links { margin: 0; padding-left: 1.1rem; display: grid; gap: 0.3rem; }
  @media (max-width: 860px) { .path { grid-template-columns: 1fr; } }

  /* writing */
  .post-list { list-style: none; margin: 0; padding: 0; display: grid; }
  .post-list li { display: grid; grid-template-columns: 7.5rem minmax(0, 1fr); gap: 0.2rem 1rem; padding: 1rem 0; border-top: 1px solid var(--line); align-items: baseline; }
  .post-list li a { font-family: "Archivo", sans-serif; font-weight: 700; font-variation-settings: "wdth" 92; font-size: 1.15rem; color: var(--ink); text-decoration: none; }
  .post-list li a:hover { text-decoration: underline; }
  .post-list li span.muted:last-child { grid-column: 2; }
  @media (max-width: 560px) { .post-list li { grid-template-columns: 1fr; } .post-list li span.muted:last-child { grid-column: 1; } }
  article.post { padding: 3.5rem 0; }
  article.post .wrap { display: grid; gap: 1.2rem; max-width: 72ch; }
  article.post h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
  article.post .body { display: grid; gap: 1rem; }
  article.post .body p, article.post .body li { color: var(--ink); }
  article.post .body h2 { font-size: 1.6rem; margin-top: 1rem; }
  article.post .body h3 { margin-top: 0.6rem; }
  article.post .body ul, article.post .body ol { margin: 0; padding-left: 1.3rem; display: grid; gap: 0.3rem; }
  article.post .body blockquote { margin: 0; padding: 0.2rem 1rem; border-left: 3px solid var(--accent); color: var(--muted); }

  /* a partners list and a status stripe */
  .list-plain { margin: 0; padding-left: 1.2rem; display: grid; gap: 0.4rem; color: var(--muted); }
  .list-plain strong { color: var(--ink); font-weight: 600; }
  .stripe { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; align-items: baseline; font-size: 0.92rem; color: var(--muted); }
