/* Counting AI — site styles.
   Light editorial: security-paper ground, deep ink, one intaglio-blue accent.
   The green "up" tokens are reserved for positive/verified states. */

:root {
  --paper: #F6F7F5;
  --surface: #FFFFFF;
  --sunk: #EDF0ED;
  --ink: #0D1B1E;
  --text: #2C383D;
  --muted: #5F6D74;
  --faint: #8C989D;
  --rule: #DCE1DE;
  --rule-strong: #C3CBC8;
  --accent: #1E44B0;
  --accent-hover: #15348C;
  --accent-tint: #E9EEFB;
  --accent-ink: #FFFFFF;
  --up: #11734F;
  --up-tint: #E3F2EA;
  --contrast-bg: #0D1B1E;
  --contrast-fg: #EEF2F1;
  --contrast-muted: #9FB0B4;
  --contrast-rule: #26363B;
  --shadow: 0 1px 2px rgba(13, 27, 30, 0.05), 0 12px 32px -16px rgba(13, 27, 30, 0.18);
  --f-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --f-mono: "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0B1113; --surface: #121A1D; --sunk: #0F1618;
    --ink: #EEF2F1; --text: #C8D1D0; --muted: #8D9DA1; --faint: #677579;
    --rule: #223034; --rule-strong: #33444A;
    --accent: #88A2FF; --accent-hover: #AEC0FF; --accent-tint: #18224A; --accent-ink: #0B1113;
    --up: #45C995; --up-tint: #10291F;
    --contrast-bg: #141F3D; --contrast-fg: #EEF2F1; --contrast-muted: #A3AFCC; --contrast-rule: #27345A;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 12px 32px -16px rgba(0, 0, 0, 0.6);
  }
}

/* German pages: long compound words hyphenate instead of overflowing narrow columns. */
html:lang(de) :is(p:not(.kicker), dd, li, h3) { hyphens: auto; hyphenate-limit-chars: 12 5 5; }
html:lang(de) :is(h1, h2) { overflow-wrap: break-word; }
html:lang(de) .why-card b { font-size: clamp(40px, 3.9vw, 56px); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font-family: var(--f-display); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
img, svg { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
h1, h2, h3, h4 { color: var(--ink); margin: 0; text-wrap: balance; font-weight: 600; }
p { margin: 0; }
.wrap { max-width: 1200px; margin: 0 auto; padding-inline: clamp(16px, 4vw, 40px); }
.num { font-variant-numeric: tabular-nums; }
.kicker {
  font-family: var(--f-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0;
}
.skip { position: absolute; left: -9999px; top: 0; }
.skip:focus { left: 16px; top: 12px; z-index: 100; background: var(--surface); padding: 8px 12px; border-radius: 4px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--accent-ink);
  font: 600 15px/1 var(--f-display); padding: 12px 18px;
  border-radius: 6px; border: 1px solid var(--accent); cursor: pointer; transition: background .15s, border-color .15s;
}
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--accent-ink); }
.btn-sm { padding: 9px 14px; font-size: 14px; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn-ghost:hover { background: var(--surface); color: var(--ink); border-color: var(--ink); }
.arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(2px); }

/* ---------- header ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  -webkit-backdrop-filter: saturate(1.4) blur(10px); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav .wrap { display: flex; align-items: center; gap: 10px 32px; padding-block: 14px; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand svg { width: 28px; height: 28px; flex: none; }
.brand-name { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; font-variation-settings: "wdth" 118; }
.brand-ai {
  font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--accent); border: 1px solid currentColor; border-radius: 3px; padding: 1px 4px; margin-left: 2px;
  position: relative; top: -1px;
}
.nav-links { display: flex; gap: 4px 24px; flex-wrap: wrap; font-size: 14.5px; }
.nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--accent); }
.nav-cta { margin-left: auto; }
/* Phones and tablets: one swipeable row of links keeps the sticky header short. */
@media (max-width: 1100px) {
  html { scroll-padding-top: 104px; }
  .nav .wrap { padding-block: 12px 0; row-gap: 4px; column-gap: 12px; }
  .nav-links {
    order: 3; width: 100%; flex-wrap: nowrap; overflow-x: auto; gap: 20px; font-size: 14px;
    padding-bottom: 10px; scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent); mask-image: linear-gradient(90deg, #000 88%, transparent);
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { white-space: nowrap; }
}
@media (max-width: 1100px) { .nav:not(:has(.nav-links)) .wrap { padding-block: 12px; } }

/* ---------- hero: type-led, the headline is the visual ---------- */
.hero { padding-block: clamp(56px, 9vw, 120px) clamp(48px, 6vw, 80px); }
.hero h1 {
  font-size: clamp(40px, 5.2vw, 70px); line-height: 1.02; letter-spacing: -0.034em;
  font-weight: 620; font-variation-settings: "wdth" 112; margin-block: 24px 40px;
}
.hero h1 .soft { color: var(--muted); }
/* One sentence per line on wide screens; each wraps evenly on its own when narrow. */
.hero h1 .line { display: block; text-wrap: balance; }
.hero-sub { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 24px 48px; align-items: end; }
@media (max-width: 860px) { .hero-sub { grid-template-columns: 1fr; } }
.hero .lede { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55; max-width: 34em; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-sub .hero-ctas { justify-content: flex-end; }
@media (max-width: 860px) { .hero-sub .hero-ctas { justify-content: flex-start; } }
.hero-facts {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 40px;
  margin: clamp(48px, 6vw, 80px) 0 0; padding-top: 24px; border-top: 1px solid var(--ink);
}
.hero-facts dt { font-size: clamp(22px, 2vw, 28px); font-weight: 600; color: var(--ink); font-variation-settings: "wdth" 110; letter-spacing: -0.015em; }
.hero-facts dd { margin: 4px 0 0; font-size: 14.5px; color: var(--muted); line-height: 1.45; }
@media (max-width: 560px) { .hero-facts { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- strip ---------- */
.strip { padding-block: 22px; border-block: 1px solid var(--rule); }
.strip .wrap { display: flex; align-items: baseline; gap: 10px 28px; flex-wrap: wrap; }
.strip ul {
  display: flex; flex-wrap: wrap; gap: 6px 26px; margin: 0; padding: 0; list-style: none;
  font-size: 15px; color: var(--ink); font-weight: 500; font-variation-settings: "wdth" 108;
}
.strip .aside { margin-left: auto; font-size: 12.5px; color: var(--muted); }

/* ---------- sections ---------- */
.section { padding-block: clamp(64px, 8vw, 104px); }
.section.band { background: var(--surface); border-block: 1px solid var(--rule); }
.sec-head { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: 16px 40px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head > .kicker { padding-top: 10px; }
.sec-head h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -0.022em; font-variation-settings: "wdth" 110; max-width: 20em; }
.sec-head > div > p { margin-top: 16px; font-size: 17.5px; max-width: 38em; }
@media (max-width: 860px) { .sec-head { grid-template-columns: 1fr; } .sec-head > .kicker { padding-top: 0; } }

/* language switch in the header */
.nav-lang {
  margin-left: auto; padding: 6px 10px; border: 1px solid var(--rule-strong); border-radius: 6px;
  font-size: 13px; line-height: 1; color: var(--text);
}
.nav-lang:hover { color: var(--ink); border-color: var(--ink); }
.nav-lang + .nav-cta { margin-left: 0; }

/* markets: US and EU side by side, the bridge underneath */
.mkts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 760px) { .mkts { grid-template-columns: 1fr; } }
.mkt { background: var(--surface); border: 1px solid var(--rule); border-radius: 10px; padding: 28px; display: grid; gap: 14px; align-content: start; }
.mkt .code { font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: .12em; color: var(--accent); }
.mkt h3 { font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.02em; font-variation-settings: "wdth" 112; }
.mkt p:not(.code) { font-size: 15.5px; color: var(--muted); }
.mkt ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.mkt li { font-size: 14px; padding: 6px 12px; border: 1px solid var(--rule-strong); border-radius: 999px; color: var(--ink); background: var(--paper); }
.mkt-bridge { margin-top: 16px; padding: 18px 24px; border-radius: 10px; background: var(--contrast-bg); color: var(--contrast-fg); display: flex; gap: 8px 20px; flex-wrap: wrap; align-items: baseline; }
.mkt-bridge .kicker { color: var(--contrast-muted); }
.mkt-bridge p:not(.kicker) { font-size: 15.5px; }

/* how it works: your data → Counting → cited answers */
.flow { display: grid; grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1.15fr) 56px minmax(0, 1fr); align-items: center; }
.flow-col { display: grid; gap: 8px; }
.flow-col > .kicker { margin-bottom: 6px; }
.flow-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: var(--paper); border: 1px solid var(--rule); border-radius: 8px; font-size: 15px; color: var(--ink); }
.flow-item::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--rule-strong); flex: none; }
.flow-col.out .flow-item::before { background: var(--accent); }
.flow-arrow { display: grid; place-items: center; color: var(--accent); }
.flow-arrow svg { width: 36px; height: 14px; }
.flow-core { background: var(--contrast-bg); color: var(--contrast-fg); border-radius: 14px; padding: 28px; display: grid; gap: 18px; box-shadow: var(--shadow); }
.core-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.core-head svg { width: 28px; height: 28px; flex: none; }
.core-head b { font-size: 20px; font-weight: 700; font-variation-settings: "wdth" 118; }
.core-head span { margin-left: auto; font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--contrast-muted); }
.flow-core ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--contrast-rule); }
.flow-core li { display: grid; grid-template-columns: 30px 1fr; gap: 2px 10px; padding-block: 12px; border-bottom: 1px solid var(--contrast-rule); }
.flow-core li em { font-style: normal; font-family: var(--f-mono); font-size: 12px; color: var(--contrast-muted); padding-top: 3px; }
.flow-core li b { font-size: 16px; font-weight: 600; }
.flow-core li span { grid-column: 2; font-size: 13.5px; color: var(--contrast-muted); }
@media (max-width: 980px) {
  .flow { grid-template-columns: 1fr; gap: 12px; }
  .flow-arrow svg { transform: rotate(90deg); }
}

/* services: four compact offerings as one tiled object */
.svc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 10px; overflow: hidden; }
@media (max-width: 1020px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
/* Subgrid: icon, title, description and example line up across every tile in a row. */
.svc { background: var(--surface); padding: 28px 26px 30px; display: grid; grid-row: span 4; grid-template-rows: subgrid; row-gap: 14px; }
.svc .eg { padding-top: 14px; border-top: 1px solid var(--rule); font-family: var(--f-serif); font-size: 15px; line-height: 1.45; color: var(--ink); }
.svc .eg span { display: block; margin-bottom: 4px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.svc .glyph { width: 34px; height: 34px; color: var(--accent); }
.svc h3 { font-size: 20px; line-height: 1.2; letter-spacing: -0.01em; font-variation-settings: "wdth" 108; }
.svc p { font-size: 15px; color: var(--muted); }

/* why counting: three big claims, details as chips */
.why3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 32px; }
@media (max-width: 900px) { .why3 { grid-template-columns: 1fr; } }
.why-card { display: grid; grid-row: span 3; grid-template-rows: subgrid; row-gap: 14px; padding-top: 22px; border-top: 2px solid var(--ink); }
.why-card .kicker { color: var(--accent); }
.why-card b { font-size: clamp(44px, 4.6vw, 64px); line-height: .95; font-weight: 620; letter-spacing: -0.035em; font-variation-settings: "wdth" 115; color: var(--ink); }
.why-card:first-child b { color: var(--accent); }
.why-card p:not(.kicker) { font-size: 15.5px; max-width: 24em; }
.tagrows { margin-top: 56px; border-top: 1px solid var(--rule); }
.tagrow { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: 10px 40px; padding-block: 18px; border-bottom: 1px solid var(--rule); align-items: baseline; }
@media (max-width: 760px) { .tagrow { grid-template-columns: 1fr; } }
.tagrow ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.tagrow li { font-size: 14px; padding: 6px 12px; border: 1px solid var(--rule-strong); border-radius: 999px; color: var(--ink); background: var(--surface); }
.band .tagrow li { background: var(--paper); }

/* engagement: a real sequence, so numbered */
.phases { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
@media (max-width: 960px) { .phases { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .phases { grid-template-columns: 1fr; } }
.phase { display: grid; grid-row: span 3; grid-template-rows: subgrid; row-gap: 12px; }
.phase .bar { display: flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 12px; color: var(--muted); }
.phase .bar::after { content: ""; flex: 1; height: 1px; background: var(--rule-strong); }
.phase .bar b { font-weight: 500; color: var(--accent); }
.phase h3 { font-size: 20px; font-variation-settings: "wdth" 108; }
.phase p:not(.bar) { font-size: 15px; }

/* about */
.about { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 72px); align-items: end; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }
.about h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -0.022em; font-variation-settings: "wdth" 110; margin-top: 14px; }
.about .story { margin-top: 20px; font-family: var(--f-serif); font-size: 19px; line-height: 1.55; color: var(--ink); max-width: 32em; }
.facts { margin: 0; border-top: 1px solid var(--rule); }
.facts div { display: grid; grid-template-columns: 112px 1fr; gap: 12px; padding-block: 14px; border-bottom: 1px solid var(--rule); }
.facts dt { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.facts dd { margin: 0; color: var(--ink); }

/* contact */
.contact { background: var(--contrast-bg); color: var(--contrast-fg); padding-block: clamp(64px, 8vw, 104px); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 72px); align-items: end; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; align-items: start; } }
.contact .kicker { color: var(--contrast-muted); }
.contact h2 { color: var(--contrast-fg); font-size: clamp(34px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.026em; font-variation-settings: "wdth" 112; margin-top: 16px; }
.contact p:not(.kicker) { margin-top: 18px; font-size: 17.5px; color: var(--contrast-muted); max-width: 32em; }
.contact-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
@media (max-width: 600px) { .contact-ctas .btn { flex: 1 1 100%; justify-content: center; } }
.btn-light { background: var(--contrast-fg); border-color: var(--contrast-fg); color: var(--contrast-bg); }
.btn-light:hover { background: #FFFFFF; border-color: #FFFFFF; color: var(--contrast-bg); }
.btn-outline-light { background: transparent; border-color: var(--contrast-rule); color: var(--contrast-fg); }
.btn-outline-light:hover { background: transparent; border-color: var(--contrast-fg); color: var(--contrast-fg); }
.contact dl { margin: 0; display: grid; gap: 0; border-top: 1px solid var(--contrast-rule); }
.contact dl div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding-block: 14px; border-bottom: 1px solid var(--contrast-rule); }
.contact dt { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--contrast-muted); padding-top: 3px; }
.contact dd { margin: 0; font-size: 16px; color: var(--contrast-fg); }
.contact dd a { color: var(--contrast-fg); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--contrast-rule); }
.contact dd a:hover { text-decoration-color: var(--contrast-fg); }

/* ---------- footer ---------- */
footer.site { background: var(--surface); border-top: 1px solid var(--rule); padding-block: 56px 32px; font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)); gap: 32px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .foot-grid > :first-child { grid-column: 1 / -1; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.foot-grid .blurb { margin-top: 14px; max-width: 24em; color: var(--muted); }
.foot-grid h4 { font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.foot-grid ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.foot-grid a { color: var(--text); }
.foot-grid a:hover { color: var(--accent); }
.foot-legal { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 12.5px; }
.foot-legal a { color: var(--muted); }
.foot-legal a:hover { color: var(--accent); }
.disclaimer { margin-top: 14px; font-size: 12px; color: var(--muted); max-width: 80em; line-height: 1.5; }

/* ---------- legal pages ---------- */
.legal-head { padding-block: clamp(48px, 6vw, 80px) 32px; border-bottom: 1px solid var(--rule); }
.legal-head h1 { font-size: clamp(36px, 4.6vw, 56px); line-height: 1.04; letter-spacing: -0.026em; font-variation-settings: "wdth" 112; margin-top: 14px; }
.legal-head p:not(.kicker) { margin-top: 14px; color: var(--muted); font-size: 15px; }
.legal { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: 40px; padding-block: 48px 96px; }
@media (max-width: 860px) { .legal { grid-template-columns: 1fr; padding-top: 32px; } .toc { display: none; } }
.toc { position: sticky; top: 96px; align-self: start; }
.toc ol { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; font-size: 14px; counter-reset: toc; }
.toc li { counter-increment: toc; display: grid; grid-template-columns: 26px 1fr; }
.toc li::before { content: counter(toc, decimal-leading-zero); font-family: var(--f-mono); font-size: 11.5px; color: var(--faint); padding-top: 2px; }
.toc a { color: var(--text); }
.toc a:hover { color: var(--accent); }
.prose { max-width: 68ch; font-size: 16.5px; line-height: 1.7; counter-reset: sec; }
.prose section { padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--rule); }
.prose section:last-child { border-bottom: 0; }
.prose h2 { font-size: 22px; letter-spacing: -0.01em; font-variation-settings: "wdth" 108; margin-bottom: 12px; counter-increment: sec; display: flex; gap: 12px; align-items: baseline; }
.prose h2::before { content: counter(sec, decimal-leading-zero); font-family: var(--f-mono); font-size: 13px; font-weight: 400; color: var(--faint); }
.prose p + p, .prose p + ul, .prose ul + p { margin-top: 12px; }
.prose ul { margin: 0; padding-left: 20px; display: grid; gap: 6px; }
.prose .caps { text-transform: uppercase; font-size: 14.5px; letter-spacing: .01em; }

/* ---------- 404 ---------- */
.notfound { padding-block: clamp(80px, 14vw, 160px); }
.notfound h1 { font-size: clamp(40px, 6vw, 72px); letter-spacing: -0.03em; line-height: 1; font-variation-settings: "wdth" 115; margin-top: 16px; }
.notfound p:not(.kicker) { margin-top: 18px; font-size: 18px; max-width: 30em; }
.notfound .hero-ctas { margin-top: 28px; }

.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 50;
  background: var(--ink); color: var(--paper); padding: 12px 18px; border-radius: 6px;
  font-size: 14px; box-shadow: var(--shadow); max-width: calc(100% - 32px);
}
