/* ═══════════════════════════════════════════════════════════════════
   Braveli — tokens
   Indigo values are the app icon's own gradient stops; the status
   colours are the session rail's. The site and the product should not
   look like two different pieces of software.
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --paper:      #f6f6fb;
  --surface:    #ffffff;
  --raised:     #ffffff;
  --ink:        #14151c;
  --muted:      #5a5d70;
  --faint:      #8b8ea3;
  --line:       #e3e3ee;
  --line-firm:  #d2d2e2;

  --indigo:      #524bd6;
  --indigo-deep: #2e259e;
  --indigo-wash: #eeedfb;

  /* The dark slab. Constant across themes — a terminal is a terminal. */
  --slab:       #0c0e14;
  --slab-line:  #23263a;
  --slab-ink:   #e8e9f2;
  --slab-muted: #8b90ad;

  --working: #17a34a;
  --quiet:   #c2740b;
  --failed:  #dc2626;

  --shadow: 0 1px 2px rgba(20, 21, 28, .04), 0 12px 32px -12px rgba(20, 21, 28, .14);
  --shadow-slab: 0 24px 70px -24px rgba(20, 21, 40, .5);

  --measure: 62ch;
  --gutter: clamp(20px, 5vw, 56px);
  --step: clamp(72px, 11vh, 128px);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:      #0a0b11;
    --surface:    #111320;
    --raised:     #161827;
    --ink:        #eceef7;
    --muted:      #9b9fb6;
    --faint:      #6f7391;
    --line:       #23263a;
    --line-firm:  #333752;

    --indigo:      #8b84f5;
    --indigo-deep: #6c63e8;
    --indigo-wash: #1c1c33;

    --slab:       #05060b;
    --slab-line:  #1e2133;

    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 12px 32px -12px rgba(0, 0, 0, .6);
    --shadow-slab: 0 24px 70px -24px rgba(0, 0, 0, .8);
  }
}

:root[data-theme="dark"] {
  --paper:      #0a0b11;
  --surface:    #111320;
  --raised:     #161827;
  --ink:        #eceef7;
  --muted:      #9b9fb6;
  --faint:      #6f7391;
  --line:       #23263a;
  --line-firm:  #333752;

  --indigo:      #8b84f5;
  --indigo-deep: #6c63e8;
  --indigo-wash: #1c1c33;

  --slab:       #05060b;
  --slab-line:  #1e2133;

  --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 12px 32px -12px rgba(0, 0, 0, .6);
  --shadow-slab: 0 24px 70px -24px rgba(0, 0, 0, .8);
}

/* ── base ─────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; text-wrap: balance; letter-spacing: -0.022em; line-height: 1.08; }
h1 { font-size: clamp(2.6rem, 6.4vw, 4.3rem); font-weight: 600; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.12rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.35; }
p  { margin: 0; }
a  { color: inherit; }

:where(a, button, summary):focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 3px;
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* The mono layer. Every label, state, count and duration on this page is
   set in the terminal's face — the same division the app itself makes
   between prose and instrumentation. */
.mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .705rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow { color: var(--indigo); display: block; margin-bottom: 14px; }

.lede { font-size: 1.16rem; color: var(--muted); max-width: var(--measure); }

/* ── header ───────────────────────────────────────────────────────── */
.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.masthead.is-stuck { border-bottom-color: var(--line); }

.masthead .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 66px;
}

.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; letter-spacing: -.02em; text-decoration: none; }
.brand-mark { width: 27px; height: 27px; border-radius: 7px; display: block; }
.masthead nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
/* Scoped so it cannot reach the button: `.masthead nav a` outweighs
   `.btn-primary`, which left the header's Download in muted grey on indigo. */
.masthead nav a:not(.btn) { color: var(--muted); text-decoration: none; font-size: .93rem; }
.masthead nav a:not(.btn):hover { color: var(--ink); }
@media (max-width: 720px) { .masthead nav a:not(.btn) { display: none; } }

/* ── buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font: inherit;
  font-size: .96rem;
  font-weight: 550;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .12s ease, background .16s ease, border-color .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--indigo); color: #fff; }
.btn-primary:hover { background: var(--indigo-deep); }
.btn-ghost { border-color: var(--line-firm); color: var(--ink); background: var(--surface); }
.btn-ghost:hover { border-color: var(--faint); }
.btn-sm { height: 38px; padding: 0 15px; font-size: .9rem; }

/* ── hero ─────────────────────────────────────────────────────────── */
.hero { padding-top: clamp(52px, 8vh, 92px); padding-bottom: var(--step); }
/* The console runs the full measure rather than sharing a row with the
   headline: squeezed into half the page its terminal column wrapped every
   line. Everything in it is invented — no real repository, ticket or task. */
.hero .wrap { display: grid; gap: clamp(40px, 6vw, 64px); }
.hero-copy { max-width: 43rem; }

.hero h1 { margin-bottom: 22px; }
.hero .lede { margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { margin-top: 18px; color: var(--faint); display: flex; flex-wrap: wrap; gap: 7px; align-items: baseline; }

/* ── the rail: this page's signature ──────────────────────────────── */
.console {
  border-radius: 14px;
  background: var(--slab);
  border: 1px solid var(--slab-line);
  box-shadow: var(--shadow-slab);
  overflow: hidden;
}

.console-bar { display: flex; align-items: center; gap: 9px; padding: 11px 14px; border-bottom: 1px solid var(--slab-line); }
.console-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--slab-line); }
.console-bar .console-title { margin-left: 6px; color: var(--slab-muted); }

.console-tabs {
  display: flex;
  gap: 22px;
  padding: 0 16px;
  border-bottom: 1px solid var(--slab-line);
  font-size: .84rem;
  font-weight: 550;
}
.console-tabs span { padding: 11px 0; color: var(--slab-muted); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.console-tabs .is-on { color: var(--slab-ink); border-bottom-color: var(--slab-ink); }
.console-tabs em {
  font-style: normal;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  text-transform: uppercase;
  font-size: .62rem;
  letter-spacing: .1em;
  color: var(--quiet);
  border: 1px solid color-mix(in srgb, var(--quiet) 45%, transparent);
  border-radius: 999px;
  padding: 2px 6px;
  margin-left: 6px;
}

.console-body { display: grid; grid-template-columns: 268px minmax(0, 1fr); min-height: 372px; }
@media (max-width: 620px) { .console-body { grid-template-columns: minmax(0, 1fr); } .console-term { display: none; } }

.rail { border-right: 1px solid var(--slab-line); padding: 9px 8px; display: grid; align-content: start; gap: 2px; }
.rail-head { display: flex; align-items: center; justify-content: space-between; padding: 5px 8px 11px; color: var(--slab-muted); font-size: .8rem; }
.rail-head em {
  font-style: normal;
  color: var(--indigo);
  background: color-mix(in srgb, var(--indigo) 18%, transparent);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 550;
}

.rail-row { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 7px; border: 1px solid transparent; }
.rail-row.is-live { background: color-mix(in srgb, var(--indigo) 15%, transparent); border-color: color-mix(in srgb, var(--indigo) 42%, transparent); }

.rail-dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--slab-muted); }
.rail-row[data-state="working"]   .rail-dot { background: var(--working); }
.rail-row[data-state="quiet"]     .rail-dot { background: var(--quiet); }
.rail-row[data-state="failed"]    .rail-dot { background: var(--failed); }
.rail-row[data-state="needs-you"] .rail-dot { background: var(--indigo); box-shadow: 0 0 0 3px color-mix(in srgb, var(--indigo) 26%, transparent); }

.rail-body { display: grid; gap: 1px; min-width: 0; }
.rail-name { font-size: .82rem; font-weight: 550; color: var(--slab-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rail-state { font-size: .74rem; color: var(--slab-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rail-row[data-state="needs-you"] .rail-state { color: var(--indigo); }
.rail-row[data-state="failed"]    .rail-state { color: var(--failed); }
.rail-clock { margin-left: auto; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .72rem; color: var(--slab-muted); font-variant-numeric: tabular-nums; }

/* Council members are a group in the real rail, not loose rows — they are
   one piece of work being done by several agents. */
.rail-group { margin-top: 12px; border-top: 1px solid var(--slab-line); padding-top: 11px; }
.rail-group > span { display: block; padding: 0 8px 8px; color: var(--slab-muted); font-size: .76rem; }

.console-term { padding: 16px 20px; overflow: hidden; }
.console-term pre {
  margin: 0;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .775rem;
  line-height: 1.95;
  color: var(--slab-muted);
  white-space: pre-wrap;
  word-break: break-word;
}
.console-term .t-prompt { color: var(--indigo); }
.console-term .t-ok     { color: var(--working); }
.console-term .t-name   { color: var(--slab-ink); }
.caret { display: inline-block; width: 7px; height: 1.02em; background: var(--indigo); vertical-align: text-bottom; animation: blink 1.15s steps(2, start) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ── sections ─────────────────────────────────────────────────────── */
section { padding-block: var(--step); }
.section-head { max-width: var(--measure); margin-bottom: clamp(34px, 5vw, 52px); }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* premise: three plain statements, no cards. The claim is the design. */
.premise { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 48px); }
@media (max-width: 820px) { .premise { grid-template-columns: minmax(0, 1fr); gap: 30px; } }
.premise > div { display: grid; gap: 9px; align-content: start; }
.premise strong { font-size: 1.05rem; font-weight: 600; }
.premise p { color: var(--muted); font-size: .97rem; }
.premise .mono { color: var(--faint); }

/* council: prose beside an excerpt of the thread itself */
.split { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); gap: clamp(32px, 5vw, 68px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: minmax(0, 1fr); } }

/* No accent rail down the side: the heading already separates one point from
   the next, and the space between them does the grouping. Slightly more of it
   now that nothing else marks the boundary. */
.points { display: grid; gap: 26px; margin-top: 30px; }
.points > div { display: grid; gap: 5px; }
.points p { color: var(--muted); font-size: .97rem; }

/* The thread, as the app shows it. An earlier draft drew an abstract
   hub-and-spoke diagram of the conductor; it explained the idea and showed
   nothing of the product. This is the artifact itself — and the loop back to
   the author on turn 4 makes the argument better than a diagram of arrows. */
.threadcard {
  margin: 0;
  display: grid;
  gap: 9px;
  padding: clamp(16px, 2.4vw, 22px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.tc-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
}

.tc-strip li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px 3px 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--faint);
  font-size: .7rem;
  font-weight: 600;
  white-space: nowrap;
}

.tc-strip li span {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--indigo-wash);
  color: var(--faint);
  font-size: .6rem;
  font-variant-numeric: tabular-nums;
}

.tc-strip li.is-now {
  border-color: color-mix(in srgb, var(--indigo) 45%, var(--line));
  background: var(--indigo-wash);
  color: var(--ink);
}

.tc-strip li.is-now span { background: var(--indigo); color: #fff; }

.tc-said {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px 12px;
}

.tc-said header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.tc-said header .mono { color: var(--faint); }
.tc-said header strong { font-size: .88rem; font-weight: 650; }
.tc-said header em { font-style: normal; color: var(--faint); font-size: .78rem; }
.tc-said p { color: var(--muted); font-size: .88rem; line-height: 1.58; }
.tc-said p strong { color: var(--ink); font-weight: 650; }

/* Yours is not one more agent talking. */
.tc-you {
  margin-left: 14%;
  border-color: color-mix(in srgb, var(--indigo) 32%, var(--line));
  background: var(--indigo-wash);
}

.tc-routed {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  padding: 4px 0 4px 11px;
  border-left: 2px solid var(--indigo);
  font-size: .78rem;
}

.tc-hop { color: var(--muted); font-weight: 600; }
.tc-hop strong { color: var(--ink); font-weight: 650; }

.tc-source {
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--indigo-wash);
  color: var(--indigo);
  font-size: .7rem;
  font-weight: 650;
}

.tc-reason { color: var(--faint); }

.threadcard figcaption {
  margin-top: 5px;
  color: var(--faint);
  font-size: .82rem;
  line-height: 1.5;
}

/* the imported board */
.board { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; }
.board-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; border-bottom: 1px solid var(--line); color: var(--faint); }
.board-src { color: var(--indigo); }
.board-row { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.board-row:last-child { border-bottom: 0; }
.board-id { color: var(--faint); letter-spacing: .06em; }
.board-title { font-size: .96rem; font-weight: 500; }
.board-go {
  font-size: .84rem;
  font-weight: 550;
  color: var(--indigo);
  border: 1px solid color-mix(in srgb, var(--indigo) 34%, transparent);
  border-radius: 7px;
  padding: 5px 12px;
}

/* A ticket id, its title and its action do not fit on one phone line without
   squeezing the title to nothing. Stacked, the title keeps the width. */
@media (max-width: 560px) {
  .board-row { grid-template-columns: auto 1fr; row-gap: 9px; }
  .board-go { grid-column: 2; justify-self: start; }
}

/* agents */
.agents { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.agent {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: .93rem;
  font-weight: 500;
}
.agent span { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo); }
.agent small { color: var(--faint); font-size: .78rem; font-weight: 400; }

/* local-first: the one inverted band on the page */
.band { background: var(--slab); color: var(--slab-ink); border-radius: 18px; padding: clamp(34px, 5.5vw, 66px); }
.band h2 { color: #fff; }
.band .eyebrow { color: var(--indigo); }
.band p { color: var(--slab-muted); }
.band .lede { color: var(--slab-muted); }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(22px, 3.5vw, 42px); margin-top: 42px; padding-top: 34px; border-top: 1px solid var(--slab-line); }
@media (max-width: 780px) { .facts { grid-template-columns: minmax(0, 1fr); gap: 26px; } }
.facts > div { display: grid; gap: 7px; align-content: start; }
.facts .mono { color: var(--indigo); }
.facts strong { color: #fff; font-weight: 600; font-size: 1rem; }
.facts p { font-size: .94rem; }

/* pricing — one plan, so there is no comparison table to build */
.plan {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(28px, 3.6vw, 44px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
@media (max-width: 780px) { .plan { grid-template-columns: minmax(0, 1fr); } }

.plan-price { display: grid; gap: 18px; align-content: start; }
.trial {
  display: inline-flex;
  /* Grid stretches items on both axes; `align-self` only frees the block
     one, which left this pill spanning the whole column. */
  justify-self: start;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--indigo-wash);
  color: var(--indigo);
}
.price { display: flex; align-items: baseline; gap: 9px; }
.price b { font-size: clamp(2.8rem, 5vw, 3.5rem); font-weight: 600; letter-spacing: -.035em; font-variant-numeric: tabular-nums; line-height: 1; }
.price span { color: var(--faint); font-size: .95rem; }
.plan-price > p { color: var(--muted); font-size: .96rem; }
/* The one promise on the page worth setting apart from the small print. */
.lock {
  padding: 13px 15px;
  border-radius: 10px;
  background: var(--indigo-wash);
  border: 1px solid color-mix(in srgb, var(--indigo) 24%, transparent);
}
.lock b { color: var(--ink); font-weight: 600; }

.plan-includes { display: grid; gap: 14px; align-content: start; }
.plan-includes > .mono { color: var(--faint); }
.plan ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.plan li { display: grid; grid-template-columns: 15px 1fr; gap: 10px; color: var(--muted); font-size: .96rem; line-height: 1.5; }
.plan li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--indigo); margin-top: .52em; }
.plan-foot { color: var(--faint); font-size: .86rem; margin-top: 4px; }

/* download */
.download { text-align: center; display: grid; justify-items: center; gap: 22px; }
.download .lede { margin-inline: auto; }
.req { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; color: var(--faint); }
.gate {
  max-width: 560px;
  margin-top: 8px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--quiet);
  border-radius: 10px;
  background: var(--surface);
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.6;
  text-align: left;
}
.gate b { color: var(--ink); font-weight: 600; }
.gate code { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .86em; background: var(--indigo-wash); padding: 1px 5px; border-radius: 4px; color: var(--ink); }

/* footer */
footer { padding-block: 44px; border-top: 1px solid var(--line); }
footer .wrap { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; color: var(--faint); }
footer .mono { color: var(--faint); }
footer nav { margin-left: auto; display: flex; gap: 24px; }
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ── changelog ──────────────────────────────────────────────────────
   A release is a date and a list of what changed. The version and date
   sit in the mono layer with the other instrumentation; the entries are
   prose, because "what changed" is a sentence and not a commit subject. */
.log-head { padding-top: clamp(46px, 7vh, 84px); padding-bottom: clamp(30px, 4vw, 46px); }
.log-head p { margin-top: 16px; }

.release {
  display: grid;
  grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 52px);
  padding-block: clamp(30px, 4vw, 44px);
  border-top: 1px solid var(--line);
}
@media (max-width: 760px) { .release { grid-template-columns: minmax(0, 1fr); gap: 18px; } }

.release-meta { display: grid; gap: 7px; align-content: start; position: sticky; top: 90px; }
@media (max-width: 760px) { .release-meta { position: static; } }

.release-version { font-size: 1.22rem; font-weight: 600; letter-spacing: -.02em; }
.release-date { color: var(--faint); }
.release-tag {
  justify-self: start;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--indigo-wash);
  color: var(--indigo);
}

.release-body { display: grid; gap: 22px; align-content: start; max-width: 68ch; }
.change-group { display: grid; gap: 9px; }
.change-group > .mono { color: var(--faint); }
.change-group ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
/* The marker is positioned, not a grid column. An entry is a <strong> plus a
   sentence — two children — and in a two-column grid the second child lands in
   the 14px marker column and breaks one word per line. */
.change-group li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.55;
}
.change-group li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line-firm);
}
.change-group.added li::before { background: var(--working); }
.change-group.fixed li::before { background: var(--quiet); }
.change-group li strong { color: var(--ink); font-weight: 600; }
.change-group li code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .88em;
  background: var(--indigo-wash);
  padding: 1px 5px;
  border-radius: 4px;
  color: var(--ink);
}
