/* BuilderX — the package builder, wherever it appears.
 *
 * The design is the one from /pricing, carried over class for class. What is
 * new is that it no longer depends on the site it is standing in: every colour
 * is `var(--site-token, fallback)`, so on smallbusiness.ge it inherits the
 * page's palette and theme switch for free, and on somebody else's site it
 * falls back to a light neutral of its own. A host who wants the dark version
 * sets data-bx-theme="dark" on the container.
 *
 * Everything is under .bx, so it cannot collide with a host page's CSS, and it
 * sets its own font-family and box-sizing rather than inheriting a reset it
 * cannot see.
 */

.bx, .bx *, .bx *::before, .bx *::after { box-sizing: border-box; }
.bx {
  --bx-bg: var(--bg, #F2F1FA);
  --bx-surface: var(--surface, #FFFFFF);
  --bx-surface-2: var(--surface-2, #F7F6FC);
  --bx-ink: var(--ink, #141221);
  --bx-muted: var(--muted, #5C5878);
  --bx-faint: var(--faint, #8A86A6);
  --bx-line: var(--line, #E5E3F0);
  --bx-line-2: var(--line-2, #D5D2E6);
  --bx-brand: var(--brand, #6D5EF4);
  --bx-brand-wash: var(--brand-wash, #EFEDFE);
  --bx-brand-border: var(--brand-border, #D9D5F7);
  --bx-on-brand: var(--on-brand, #FFFFFF);
  --bx-ok: #2FD07A;
  --bx-shadow: var(--shadow-lg, 0 30px 70px -34px rgba(20, 18, 33, .28));
  font-family: var(--bx-font, 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif);
  color: var(--bx-ink);
  line-height: 1.5;
}
.bx[data-bx-theme="dark"] {
  --bx-bg: #0B0A14; --bx-surface: #15121F; --bx-surface-2: #100E1A;
  --bx-ink: #F4F3F9; --bx-muted: #A29EC0; --bx-faint: #6E6A8C;
  --bx-line: #26233A; --bx-line-2: #332F49;
  --bx-brand: #6D5EF4; --bx-brand-wash: #1A1633; --bx-brand-border: #2C2856;
  --bx-shadow: 0 30px 70px -28px rgba(0, 0, 0, .7);
}
.bx[hidden] { display: none; }

/* ---- the builder's own heading ----
   Drawn by the engine only where no page of ours drew it: on a partner's site.
   Our pages render the same two strings server-side, in the site's own heading
   style, so a crawler sees them without running anything. */
.bx-head { margin-bottom: 26px; }
.bx-kicker {
  display: block; margin-bottom: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bx-faint);
}
.bx-title {
  margin: 0; font-size: clamp(28px, 4.4vw, 44px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; color: var(--bx-ink);
}

/* ---- the service detail, over the builder ---- */
.bx-md { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center;
  justify-content: center; padding: 20px; }
.bx-md-back { position: absolute; inset: 0; background: rgba(11, 10, 20, .55);
  backdrop-filter: blur(2px); }
.bx-md-box { position: relative; z-index: 1; width: min(560px, 100%);
  max-height: min(80vh, 720px); overflow: auto; -webkit-overflow-scrolling: touch;
  background: var(--bx-surface); border: 1px solid var(--bx-line); border-radius: 22px;
  padding: 26px 26px 22px; box-shadow: var(--bx-shadow);
  animation: bxMdIn .18s ease both; }
@keyframes bxMdIn { from { opacity: 0; transform: translateY(10px) scale(.99) } to { opacity: 1; transform: none } }
@media (prefers-reduced-motion: reduce) { .bx-md-box { animation: none } }
.bx-md-x { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  display: grid; place-items: center; border-radius: 50%; cursor: pointer;
  background: var(--bx-surface-2); border: 1px solid var(--bx-line);
  color: var(--bx-muted); font: inherit; font-size: 14px; line-height: 1; }
.bx-md-x:hover { color: var(--bx-ink); border-color: var(--bx-line-2); }
.bx-md-t { font-size: 21px; font-weight: 800; letter-spacing: -.02em; color: var(--bx-ink);
  padding-right: 40px; }
.bx-md-p { margin: 9px 0 14px; font-size: 14.5px; line-height: 1.6; color: var(--bx-muted); }
.bx-md-h { margin-top: 16px; font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--bx-faint); }
.bx-md-l { margin: 8px 0 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.bx-md-l li { position: relative; padding-left: 22px; font-size: 14px; line-height: 1.5; color: var(--bx-ink); }
.bx-md-l li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.bx-md-l.is-in li::before { content: "✓"; color: #2FD07A; }
.bx-md-l.is-ex li::before { content: "–"; color: var(--bx-faint); }
.bx-md-l.is-ex li { color: var(--bx-muted); }
.bx-md-full { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 13.5px; font-weight: 600; color: var(--bx-brand); text-decoration: none; }
.bx-md-full:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---- leaving the builder: one button, one line, one quiet alternative ---- */
.bx-cta-note {
  margin: 10px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--bx-faint);
}
.bx-ask {
  display: block; width: 100%; margin-top: 12px; padding: 10px 0;
  background: none; border: 0; font: inherit; font-size: 13.5px; font-weight: 600;
  color: var(--bx-muted); cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px; text-decoration-color: var(--bx-line-2);
}
.bx-ask:hover { color: var(--bx-ink); text-decoration-color: currentColor; }

/* the choice of how to continue, and the manager's form */
.bx-gate { max-width: 720px; margin: 0 auto; }
.bx-gate-h { margin: 14px 0 18px; font-size: clamp(21px, 2.6vw, 27px); font-weight: 800;
  letter-spacing: -.02em; color: var(--bx-ink); }
.bx-sum { background: var(--bx-surface-2); border: 1px solid var(--bx-line); border-radius: 16px;
  padding: 14px 16px; margin-bottom: 18px; }
.bx-sum-h { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--bx-faint); margin-bottom: 9px; }
.bx-sum-list { display: flex; flex-wrap: wrap; gap: 7px; }
.bx-sum-i { font-size: 13px; font-weight: 600; color: var(--bx-ink);
  background: var(--bx-surface); border: 1px solid var(--bx-line); border-radius: 100px; padding: 5px 12px; }
.bx-gate-2 { display: grid; gap: 14px; }
@media (min-width: 720px) { .bx-gate-2 { grid-template-columns: 1fr 1fr; align-items: start; } }
.bx-gate-card { background: var(--bx-surface); border: 1px solid var(--bx-line);
  border-radius: 20px; padding: 22px; }
/* The self-serve card is the route, so it looks like one. */
.bx-gate-card.is-main { border-color: color-mix(in srgb, var(--bx-brand) 45%, var(--bx-line));
  background: linear-gradient(180deg, color-mix(in srgb, var(--bx-brand) 7%, var(--bx-surface)), var(--bx-surface)); }
.bx-gate-t { font-size: 17px; font-weight: 700; letter-spacing: -.01em; color: var(--bx-ink); }
.bx-gate-p { margin: 8px 0 18px; font-size: 14px; line-height: 1.55; color: var(--bx-muted); }
.bx-cta-quiet { background: var(--bx-surface); color: var(--bx-ink); border: 1px solid var(--bx-line-2); }
.bx-cta-quiet:hover { border-color: var(--bx-ink); }

.bx-form { display: grid; gap: 14px; }
.bx-f { display: grid; gap: 6px; }
.bx-f > span { font-size: 12.5px; font-weight: 600; color: var(--bx-muted); }
.bx-f > span em { font-style: normal; color: var(--bx-faint); font-weight: 500; }
.bx-f input, .bx-f textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--bx-ink);
  background: var(--bx-surface); border: 1px solid var(--bx-line); border-radius: 12px;
  padding: 11px 13px; box-sizing: border-box;
}
.bx-f input:focus, .bx-f textarea:focus { outline: none; border-color: var(--bx-brand); }
.bx-chan { display: flex; gap: 8px; margin-bottom: 8px; }
.bx-chan-b { flex: 1; font: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  background: var(--bx-surface); color: var(--bx-ink); border: 1px solid var(--bx-line);
  border-radius: 12px; padding: 10px 0; }
.bx-chan-b.on { background: var(--bx-brand); border-color: var(--bx-brand); color: #fff; }
.bx-err { margin: 0; font-size: 13px; color: #E5502F; }
.bx-sent { text-align: center; padding: 26px 0; }
.bx-sent-t { font-size: 21px; font-weight: 800; letter-spacing: -.02em; color: var(--bx-ink); margin-bottom: 8px; }

/* ---- the fork: two or three routes, priced ---- */
.bx-presets { margin-bottom: 22px; }
.bx-presets-q {
  margin: 0 0 14px; font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 700; letter-spacing: -.02em; color: var(--bx-ink);
}
.bx-routes { display: grid; gap: 12px; }
@media (min-width: 700px) { .bx-routes { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .bx-routes.is-3 { grid-template-columns: repeat(3, 1fr); } }
.bx-route {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  text-align: left; cursor: pointer; font: inherit; color: inherit;
  background: var(--bx-surface); border: 1.5px solid var(--bx-line-2);
  border-radius: 16px; padding: 18px 20px;
  transition: border-color .15s, transform .12s, background .15s;
}
.bx-route:hover { border-color: var(--bx-brand); transform: translateY(-1px); }
.bx-route.on { border-color: var(--bx-ok); background: color-mix(in srgb, #2FD07A 7%, var(--bx-surface)); }
.bx-route-ic { display: block; margin-bottom: 10px; color: var(--bx-muted); line-height: 0; }
.bx-route.on .bx-route-ic { color: var(--bx-ok); }
.bx-route-t { font-size: 17px; font-weight: 700; color: var(--bx-ink); }
.bx-route-d { font-size: 13px; color: var(--bx-muted); line-height: 1.45; }
/* The caption above the list, in the same quiet register as the other section
   headings so a card reads as one thing rather than two. */
.bx-route-h {
  display: block; margin-top: 12px; font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--bx-faint);
}
.bx-route-h + .bx-route-svcs { margin-top: 7px; }
/* What the route covers. Chips rather than ticks: the notary is the client's
   own cost and the number comes from an operator, so none of this is a promise
   that it is included — it is what the route involves. */
.bx-route-svcs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.bx-route-svc {
  --t: var(--bx-muted);
  font-size: 12px; font-weight: 600; white-space: nowrap;
  color: var(--t);
  background: color-mix(in srgb, var(--t) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--t) 34%, transparent);
  border-radius: 100px; padding: 4px 10px;
}
/* A colour per service, the same on every card, so two cards are compared by
   shape rather than read line by line. Green is missing on purpose: it means
   "chosen" everywhere else here, and the selected card already says so with its
   border — a chip that is green for a second reason is a chip that lies. */
.bx-route-svc[data-bx-tone="violet"] { --t: #8B7CF6; }
.bx-route-svc[data-bx-tone="cyan"]   { --t: #2FB3C9; }
.bx-route-svc[data-bx-tone="amber"]  { --t: #C98A1E; }
.bx-route-svc[data-bx-tone="coral"]  { --t: #E5502F; }
.bx-route-svc[data-bx-tone="teal"]   { --t: #1F9D8B; }
.bx-route-svc[data-bx-tone="pink"]   { --t: #C74E86; }
/* The same hues, lifted for a dark background where the light ones go muddy.
   Two signals, because there are two situations: our own pages carry the
   theme the visitor chose on <html data-theme>, and an embed is told by its
   host. Not prefers-color-scheme — that is the operating system's opinion,
   and it is wrong for anyone reading our site in light mode on a dark Mac. */
.bx[data-bx-theme="dark"] .bx-route-svc[data-bx-tone="cyan"],
[data-theme="dark"] .bx-route-svc[data-bx-tone="cyan"]   { --t: #3BC9DB; }
.bx[data-bx-theme="dark"] .bx-route-svc[data-bx-tone="amber"],
[data-theme="dark"] .bx-route-svc[data-bx-tone="amber"]  { --t: #F0A93B; }
.bx[data-bx-theme="dark"] .bx-route-svc[data-bx-tone="coral"],
[data-theme="dark"] .bx-route-svc[data-bx-tone="coral"]  { --t: #FB7A59; }
.bx[data-bx-theme="dark"] .bx-route-svc[data-bx-tone="teal"],
[data-theme="dark"] .bx-route-svc[data-bx-tone="teal"]   { --t: #35C6AF; }
.bx[data-bx-theme="dark"] .bx-route-svc[data-bx-tone="pink"],
[data-theme="dark"] .bx-route-svc[data-bx-tone="pink"]   { --t: #E86AA6; }
.bx[data-bx-theme="dark"] .bx-route-svc[data-bx-tone="violet"],
[data-theme="dark"] .bx-route-svc[data-bx-tone="violet"] { --t: #A79BFF; }
.bx-route-n { font-size: 12px; color: var(--bx-faint); line-height: 1.45; margin-top: 2px; }
.bx-route-p { margin-top: 12px; font-size: 24px; font-weight: 800; letter-spacing: -.02em; color: var(--bx-ink); }
.bx-route-p small { font-size: 13px; font-weight: 600; color: var(--bx-faint); }
/* Nudge the first route until somebody engages. */
.bx-presets:not(.touched) .bx-route:first-child { animation: bxPulse 2.2s ease-in-out infinite; }
@keyframes bxPulse {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  50% { box-shadow: 0 0 0 5px color-mix(in srgb, #2FD07A 14%, transparent); }
}

/* ---- the walked mode: where you are, and what we do ---- */
.bx-steps { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 26px; padding: 0; }
.bx-step {
  display: inline-flex; align-items: center; gap: 9px; font: inherit; font-size: 13px;
  font-weight: 600; color: var(--bx-muted); background: var(--bx-surface);
  border: 1px solid var(--bx-line); border-radius: 100px; padding: 8px 15px 8px 9px;
  cursor: pointer; transition: .16s;
}
.bx-step > span {
  display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%;
  flex: none; background: var(--bx-surface-2); color: var(--bx-faint); font-size: 12px; font-weight: 700;
}
.bx-step:disabled { opacity: .5; cursor: default; }
.bx-step.done { color: var(--bx-ink); border-color: var(--bx-brand-border); }
.bx-step.done > span { background: var(--bx-ok); color: #fff; }
.bx-step.on { color: var(--bx-ink); border-color: var(--bx-brand); background: var(--bx-brand-wash); }
.bx-step.on > span { background: var(--bx-ink); color: var(--bx-bg); }
/* The answer already given, on the chip that would change it. */
.bx-step em { font-style: normal; font-weight: 500; color: var(--bx-faint); }

.bx-menu-h { margin-bottom: 12px; }
.bx-menu { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
@media (min-width: 820px) { .bx-menu { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 420px) { .bx-menu { grid-template-columns: 1fr; } }
/* Flat on purpose: nothing here is a choice yet, and a card that looks
   pressable but is not teaches people that our cards do nothing. */
.bx-menu-card { background: var(--bx-surface); border: 1px solid var(--bx-line); border-radius: 14px; padding: 14px 16px; }
.bx-menu-ic { display: block; color: var(--bx-faint); line-height: 0; margin-bottom: 9px; }
.bx-menu-ic svg { width: 18px; height: 18px; }
.bx-menu-t { font-size: 14.5px; font-weight: 700; color: var(--bx-ink); line-height: 1.35; }
.bx-menu-ways { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
.bx-way {
  font-size: 11.5px; font-weight: 600; color: var(--bx-muted); background: var(--bx-surface-2);
  border: 1px solid var(--bx-line); border-radius: 100px; padding: 3px 9px; white-space: nowrap;
}
.bx-ask-q { margin-top: 34px !important; }
.bx-back {
  margin-top: 18px; background: none; border: 0; padding: 0; font: inherit;
  font-size: 13.5px; font-weight: 600; color: var(--bx-muted); cursor: pointer;
}
.bx-back:hover { color: var(--bx-ink); }

/* ---- currency ---- */
.bx-cur { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.bx-cur-l { font-size: 13.5px; color: var(--bx-muted); }
.bx-cur-seg {
  display: inline-flex; background: var(--bx-surface-2);
  border: 1px solid var(--bx-line-2); border-radius: 100px; padding: 4px; gap: 2px;
}
.bx-cur-b {
  border: 0; background: transparent; color: var(--bx-muted); font: inherit;
  font-size: 13.5px; font-weight: 600; padding: 7px 15px; border-radius: 100px;
  cursor: pointer; transition: .15s; white-space: nowrap;
}
.bx-cur-b:hover { color: var(--bx-ink); }
.bx-cur-b.on { background: var(--bx-ink); color: var(--bx-bg); }
.bx-cur-mini { display: flex; width: 100%; margin-top: 14px; padding: 3px; }
.bx-cur-mini .bx-cur-b { flex: 1; justify-content: center; padding: 6px 8px; font-size: 12.5px; }
@media (max-width: 430px) { .bx-cur-b { padding: 7px 11px; font-size: 12.5px; } .bx-cur-l { width: 100%; } }

/* ---- the two columns ---- */
.bx-main { display: grid; grid-template-columns: 1fr 350px; gap: 20px; align-items: start; }
.bx-choices { order: 1; display: flex; flex-direction: column; gap: 10px; }
.bx-set {
  order: 2; background: var(--bx-surface); border: 1px solid var(--bx-line);
  border-radius: 22px; padding: 22px; position: sticky; top: 84px;
  display: flex; flex-direction: column; gap: 12px; box-shadow: var(--bx-shadow);
}
.bx-h {
  font-size: 12.5px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--bx-faint);
}
.bx-set-list { display: flex; flex-direction: column; gap: 8px; min-height: 52px; }
.bx-set-empty { font-size: 13px; color: var(--bx-faint); line-height: 1.5; padding: 8px 2px; }
.bx-chip {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border: 1px solid var(--bx-line); border-radius: 12px; background: var(--bx-surface-2);
}
.bx-chip-c { flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--bx-ink); position: relative; }
.bx-chip-c::after {
  content: ""; position: absolute; left: 5px; top: 2.5px; width: 4px; height: 8px;
  border: solid var(--bx-surface); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.bx-chip-t { font-size: 13.5px; font-weight: 600; color: var(--bx-ink); flex: 1; min-width: 0; }
.bx-chip-p { font-size: 12.5px; color: var(--bx-muted); white-space: nowrap; }
.bx-ghost { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.bx-ghost span { height: 11px; border-radius: 5px; background: var(--bx-surface-2); animation: bxGhost 1.8s ease-in-out infinite; }
.bx-ghost span:nth-child(1) { width: 78%; }
.bx-ghost span:nth-child(2) { width: 58%; animation-delay: .2s; }
.bx-ghost span:nth-child(3) { width: 66%; animation-delay: .4s; }
@keyframes bxGhost { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

.bx-total { border-top: 1px solid var(--bx-line); padding-top: 14px; margin-top: 12px; }
.bx-total-l { font-size: 12.5px; color: var(--bx-faint); }
.bx-total-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 2px; }
.bx-total-v { font-weight: 800; font-size: 30px; letter-spacing: -.02em; color: var(--bx-ink); }
.bx-total-alt { font-size: 13.5px; font-weight: 500; color: var(--bx-muted); }
.bx-total-mo { font-size: 13px; color: var(--bx-muted); margin-top: 4px; }
.bx-cta {
  width: 100%; display: inline-flex; align-items: center; justify-content: center;
  font: inherit; font-size: 15px; font-weight: 700; cursor: pointer;
  background: var(--bx-brand); color: var(--bx-on-brand); border: 1px solid transparent;
  border-radius: 100px; padding: 14px 24px; margin-top: 4px; transition: .18s; text-decoration: none;
}
.bx-cta:hover { filter: brightness(1.06); }
.bx-cta:disabled { opacity: .45; cursor: not-allowed; }
.bx-note { font-size: 12px; color: var(--bx-faint); line-height: 1.5; margin: 0; }

/* ---- the choices ---- */
.bx-opt {
  display: flex; align-items: flex-start; gap: 14px; text-align: left; width: 100%;
  min-height: 112px; background: var(--bx-surface); border: 1.5px solid var(--bx-line);
  border-radius: 16px; padding: 18px 20px; cursor: pointer; font: inherit; color: inherit;
  transition: border-color .16s, background .16s;
}
.bx-opt:hover { border-color: var(--bx-brand-border); }
.bx-opt.on { border-color: var(--bx-ok); background: color-mix(in srgb, #2FD07A 7%, var(--bx-surface)); }
.bx-check {
  flex: none; width: 22px; height: 22px; border-radius: 7px; border: 1.5px solid var(--bx-line-2);
  display: grid; place-items: center; color: transparent; margin-top: 2px; transition: .16s;
}
.bx-opt.on .bx-check { background: var(--bx-ok); border-color: var(--bx-ok); color: #fff; }
.bx-opt-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.bx-opt-t { font-size: 15.5px; font-weight: 700; color: var(--bx-ink); }
.bx-opt-badge {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  margin: 2px 0; padding: 4px 10px 4px 8px; border-radius: 100px;
  background: rgba(40, 180, 115, .12); border: 1px solid rgba(40, 180, 115, .4);
  color: #28B473; font-size: 12px; font-weight: 700; line-height: 1.3;
}
.bx-opt-badge svg { flex: none; width: 12px; height: 12px; }
.bx-opt-d { font-size: 13px; color: var(--bx-muted); line-height: 1.45; }
/* Where, and how long. The three or four words somebody is comparing between
   two cards, said as facts rather than buried in a sentence. */
.bx-opt-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 2px; }
.bx-opt-tag {
  font-size: 11.5px; font-weight: 600; color: var(--bx-muted);
  background: var(--bx-surface-2); border: 1px solid var(--bx-line);
  border-radius: 100px; padding: 3px 9px;
}
.bx-opt.on .bx-opt-tag { color: var(--bx-ink); border-color: color-mix(in srgb, #2FD07A 30%, var(--bx-line)); }
/* The government's fee: one line, not a block. It is the opposite of a
   feature — money the client hands over that is not in the total beside it —
   so it is set apart from the description rather than listed with the things
   we do. */
.bx-opt-fee {
  display: block; margin-top: 6px; font-size: 12px; line-height: 1.45;
  color: var(--bx-faint);
}
.bx-opt-fee b { font-weight: 700; color: var(--bx-muted); }
.bx-opt-fee.is-in { color: var(--bx-muted); }
/* Only the "About…" text is a link — a link across the whole row would
   navigate away instead of ticking the box. */
.bx-opt-more {
  font-size: 12.5px; font-weight: 600; color: var(--bx-brand); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px; margin-top: 2px;
  align-self: flex-start; width: fit-content; position: relative; z-index: 1;
}
.bx-opt-more:hover { text-decoration: underline; }
.bx-opt-price { flex: none; font-weight: 700; font-size: 15px; color: var(--bx-ink); white-space: nowrap; margin-top: 2px; }
/* A line somebody else's line pays for.
 *
 * Two facts, and both matter: what it is worth, struck through, and that we are
 * not charging for it. The second used to be plain grey text at the end of a
 * grey row, and the best news on the card was the quietest thing on it.
 *
 * Green here does not collide with green meaning "chosen": this only ever
 * appears on a line that is already chosen, and it says something about that
 * line's price rather than about its state.
 */
.bx-was { color: var(--bx-faint); font-weight: 600; }
.bx-inc-w {
  display: inline-block; margin-left: 7px; padding: 3px 10px; border-radius: 100px;
  background: color-mix(in srgb, #2FD07A 15%, transparent);
  border: 1px solid color-mix(in srgb, #2FD07A 45%, transparent);
  color: #1B8F4E; font-size: 12.5px; font-weight: 700;
}
.bx[data-bx-theme="dark"] .bx-inc-w,
[data-theme="dark"] .bx-inc-w { color: #4BE08F; }
/* In the summary the row is narrower, so the same badge, one size down. */
.bx-chip-p .bx-inc-w { margin-left: 5px; padding: 2px 8px; font-size: 11.5px; }
.bx-chip-p .bx-was { font-size: 12px; }
.bx-opt-price small { font-weight: 500; color: var(--bx-faint); }

/* ---- what the set does and does not cover ---- */
.bx-break { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.bx-col { border: 1px solid var(--bx-line); border-radius: 16px; padding: 16px 18px; background: var(--bx-surface); }
.bx-col-h {
  display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px;
}
.bx-inc .bx-col-h { color: #1f9d57; }
.bx-exc .bx-col-h { color: var(--bx-faint); }
.bx-col-ic { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; flex: none; font-size: 12px; }
.bx-inc .bx-col-ic { background: var(--bx-ok); color: #fff; }
.bx-exc .bx-col-ic { background: var(--bx-surface-2); color: var(--bx-faint); font-weight: 700; }
.bx-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin: 0; padding: 0; }
.bx-col li { font-size: 13.5px; color: var(--bx-ink); }
.bx-exc li { color: var(--bx-muted); }
.bx-col li.bx-none { color: var(--bx-faint); font-style: italic; }

/* ---- the small print an embed owes its host ---- */
.bx-by { margin: 14px 0 0; font-size: 12px; color: var(--bx-faint); text-align: right; }
.bx-by a { color: var(--bx-muted); }

@media (max-width: 860px) {
  .bx-main { grid-template-columns: 1fr; }
  .bx-set { position: static; }
  .bx-break { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .bx-presets .bx-route, .bx-ghost span { animation: none !important; }
  .bx-route, .bx-opt { transition: none; }
}
