/* ClickBooster — visual do site = visual do aplicativo.
   Cores, cantos, fontes e o fundo vêm do próprio app (tema "ClickBooster"): ver MainWindow.xaml / QuantumFieldBackground.cs. */

:root {
  --bg: #040507;
  --card: rgba(11, 13, 18, .90);
  --surface2: #14161b;
  --surface3: #1e2025;
  --border: #2a2d34;
  --line2: #3a3e46;
  --text: #f3f6fa;
  --muted: #aab3c0;
  --dim: #7a8494;
  --accent: #7ce0ff;
  --accent2: #2aa7de;
  --on-accent: #04090e;
  --good: #8fffc8;
  --warn: #f5c451;
  --danger: #ff8a8a;
  --r-big: 14px;
  --r-small: 9px;
  --sans: "Segoe UI Variable Display", "Segoe UI Variable", "Segoe UI", "Inter", system-ui, -apple-system, Roboto, sans-serif;
  --mono: "Cascadia Mono", Consolas, "JetBrains Mono", ui-monospace, monospace;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; }
img, video { max-width: 100%; display: block; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ---------- fundo (igual ao do app: rede de pontos e linhas, fixa atrás do conteúdo) ---------- */
#bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.vignette {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(90% 70% at 70% -10%, rgba(13, 21, 32, .85) 0%, rgba(13, 21, 32, 0) 100%);
}
.site { position: relative; z-index: 1; }

/* ---------- barra superior (como a barra de título do app) ---------- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  height: 56px;
  display: flex; align-items: center; gap: 18px;
  padding: 0 max(16px, calc((100vw - 1180px) / 2));
  background: rgba(4, 5, 7, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand img { width: 28px; height: 28px; border-radius: 8px; }
.brand span { font-size: 12.5px; font-weight: 600; letter-spacing: .14em; }
.nav { display: flex; gap: 2px; }
.nav a {
  font-size: 14px; color: var(--muted); text-decoration: none;
  padding: 8px 12px; border-radius: var(--r-small);
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--surface2); color: var(--text); }
@media (max-width: 860px) { .nav { display: none; } }

/* ---------- blocos ---------- */
.wrap { max-width: 1180px; margin-inline: auto; padding-inline: 16px; }
section { padding-block: 72px; }
@media (max-width: 700px) { section { padding-block: 48px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow svg { width: 14px; height: 14px; }
.eyebrow.chip {
  padding: 6px 12px; border: 1px solid var(--border); border-radius: 999px;
  background: rgba(11, 13, 18, .6);
}

.title {
  font-weight: 300;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.title b, h2 b { font-weight: 600; color: var(--accent); }
h2 {
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -.005em;
  text-wrap: balance;
}
.sub { color: var(--muted); font-size: 16px; max-width: 62ch; }
.head { display: grid; gap: 14px; margin-bottom: 32px; }
.head .sub { margin-top: 2px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-big);
  padding: 22px;
}
.card h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 14.5px; }
.card .ico {
  width: 40px; height: 40px; border-radius: var(--r-small);
  background: rgba(124, 224, 255, .14);
  display: grid; place-items: center; margin-bottom: 14px; color: var(--accent);
}
.card .ico svg { width: 20px; height: 20px; }

.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* ---------- botões (mesmos do app) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: var(--r-small);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s, color .15s;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 0 24px rgba(124, 224, 255, .28); }
.btn-primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 0 34px rgba(124, 224, 255, .45); }
.btn-white { background: #fff; color: #000; }
.btn-white:hover:not(:disabled) { background: var(--accent); }
.btn-ghost { background: rgba(4, 5, 7, .5); color: var(--text); border-color: var(--line2); }
.btn-ghost:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.btn:disabled { opacity: .55; cursor: default; }
.btn.block { width: 100%; }
.btn.small { padding: 9px 16px; font-size: 13.5px; }
.btn.ghost { background: rgba(4, 5, 7, .5); color: var(--text); border-color: var(--line2); width: auto; padding: 10px 18px; font-size: 13.5px; font-weight: 500; }
.btn.ghost:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }

/* etiquetas (como "RISCO BAIXO" / "ATENÇÃO" do app) */
.pill {
  display: inline-flex; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; border: 1px solid var(--line2); color: var(--muted);
}
.pill.good { color: var(--good); border-color: rgba(143, 255, 200, .4); }
.pill.warn { color: var(--warn); border-color: rgba(245, 196, 81, .45); }
.pill.acc { color: var(--accent); border-color: rgba(124, 224, 255, .45); }

.checks { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; padding: 0; margin: 0; color: var(--muted); font-size: 14px; }
.checks li { display: inline-flex; gap: 8px; align-items: center; }
.checks svg { width: 15px; height: 15px; color: var(--good); flex: none; }

/* ---------- hero ---------- */
.hero { padding-block: 64px 24px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.3fr); gap: 40px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
.hero .title { margin: 20px 0 18px; }
.hero .sub { margin-bottom: 28px; font-size: 17px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

/* janela do app */
.win {
  border: 1px solid var(--line2);
  border-radius: var(--r-big);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .65), 0 0 60px rgba(124, 224, 255, .10);
}
.win img { width: 100%; height: auto; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; }
.stat { text-align: left; }
.stat .num { font-size: 34px; font-weight: 300; color: var(--accent); line-height: 1.1; }
.stat .lbl { font-family: var(--mono); font-size: 11.5px; color: var(--dim); text-transform: uppercase; letter-spacing: .05em; margin-top: 6px; }

/* ---------- galeria de telas ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 4px; padding: 4px; border: 1px solid var(--border); border-radius: var(--r-small); background: rgba(11, 13, 18, .7); width: fit-content; max-width: 100%; margin-bottom: 18px; }
.tabs button {
  font: inherit; font-size: 14px; font-weight: 500; color: var(--muted);
  background: transparent; border: 0; border-radius: 7px; padding: 9px 16px; cursor: pointer;
}
.tabs button:hover { color: var(--text); }
.tabs button[aria-selected="true"] { background: var(--surface3); color: var(--accent); }
.shot-caption { display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap; margin-bottom: 14px; color: var(--muted); font-size: 15px; }
.shot-caption b { color: var(--text); font-weight: 600; }

/* ---------- recursos ---------- */
.feat { display: flex; flex-direction: column; }
.feat .pill { margin-top: 12px; align-self: flex-start; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }
.split .card { padding: 26px; }
.split h3 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ---------- depoimentos ---------- */
.reviews { display: grid; gap: 16px; }
.review { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: start; }
@media (max-width: 700px) { .review { grid-template-columns: 1fr; } }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 15px; height: 15px; fill: var(--warn); }
.quote { font-size: 18px; font-weight: 300; line-height: 1.5; color: var(--text); margin-bottom: 18px; }
.author { display: flex; align-items: center; gap: 10px; }
.author .who { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--accent); display: grid; place-items: center; color: var(--accent); font-weight: 600; font-size: 14px; }
.author .name { font-weight: 600; font-size: 14.5px; }
.author .ctx { font-family: var(--mono); font-size: 11.5px; color: var(--dim); }
.photos { display: flex; gap: 10px; flex-wrap: wrap; max-width: 320px; }
.photos img { width: 96px; height: 128px; object-fit: cover; border-radius: var(--r-small); border: 1px solid var(--border); cursor: zoom-in; transition: transform .15s, border-color .15s; }
.photos img:hover { transform: translateY(-2px); border-color: var(--accent); }
.review video { width: 190px; border-radius: var(--r-small); border: 1px solid var(--border); background: #000; }
@media (max-width: 700px) { .review video { width: 100%; max-width: 240px; } .photos { max-width: none; } }
.lightbox { position: fixed; inset: 0; z-index: 60; background: rgba(0, 0, 0, .92); display: flex; align-items: center; justify-content: center; padding: 28px; cursor: zoom-out; }
.lightbox img { max-width: min(88vw, 760px); max-height: 86vh; width: auto; border-radius: var(--r-small); border: 1px solid var(--border); }
.lightbox button { position: absolute; top: 20px; right: 24px; width: 40px; height: 40px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--border); color: var(--text); font-size: 18px; cursor: pointer; }

/* ---------- avisos e listas ---------- */
.info { border: 1px solid rgba(245, 196, 81, .35); background: rgba(245, 196, 81, .06); color: #e8d3a0; padding: 16px 20px; border-radius: var(--r-big); font-size: 14.5px; margin-top: 20px; }
.info b { color: var(--warn); }
.req { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.req li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; color: var(--muted); font-size: 15px; }
.req li svg { width: 18px; height: 18px; color: var(--accent); margin-top: 3px; }
.req b { color: var(--text); font-weight: 600; }

.steps4 { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: s; }
.step .n { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: .06em; margin-bottom: 12px; display: block; }

/* ---------- planos ---------- */
.plans { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.plan-card { display: flex; flex-direction: column; padding: 30px; }
.plan-card.featured { border-color: rgba(124, 224, 255, .55); background: linear-gradient(160deg, rgba(20, 36, 50, .92), rgba(11, 13, 18, .92)); }
.price { font-size: 54px; font-weight: 300; line-height: 1; margin: 18px 0 8px; }
.price sup { font-size: 20px; color: var(--muted); margin-right: 3px; vertical-align: top; position: relative; top: 8px; }
.price small { font-size: 20px; color: var(--muted); }
.plan-card ul { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 10px; flex: 1; color: var(--muted); font-size: 14.5px; }
.plan-card li { display: flex; gap: 10px; align-items: flex-start; }
.plan-card li svg { width: 16px; height: 16px; color: var(--good); flex: none; margin-top: 4px; }
.alt { display: block; text-align: center; margin-top: 12px; font-size: 13px; color: var(--dim); }
.alt:hover { color: var(--accent); }
.note { color: var(--dim); font-size: 13.5px; margin-top: 18px; text-align: center; }
.note a { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-big); padding: 0 20px; }
.faq summary { cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 18px; height: 18px; color: var(--dim); transition: transform .2s; flex: none; }
.faq details[open] summary svg { transform: rotate(180deg); color: var(--accent); }
.faq details p { color: var(--muted); font-size: 15px; padding-bottom: 18px; max-width: 75ch; }

/* ---------- contato ---------- */
.contact { text-decoration: none; display: flex; flex-direction: column; gap: 6px; transition: border-color .15s, transform .15s; cursor: pointer; }
.contact:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact .lbl { font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--dim); }
.contact .val { font-size: 17px; font-weight: 600; word-break: break-all; }
.contact .hint { font-family: var(--mono); font-size: 12px; color: var(--dim); margin-top: 6px; }

footer { border-top: 1px solid var(--border); padding-block: 30px 44px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-family: var(--mono); font-size: 12px; color: var(--dim); }

/* ---------- página de compra ---------- */
.narrow { max-width: 880px; margin-inline: auto; padding-inline: 16px; padding-bottom: 60px; }
.narrow .page-title { margin: 22px 0 10px; }
.stepbar { display: flex; border: 1px solid var(--border); border-radius: var(--r-big); overflow: hidden; margin: 8px 0 22px; background: var(--card); }
.stepbar div { flex: 1; padding: 13px 14px; display: flex; gap: 10px; align-items: center; font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--dim); border-right: 1px solid var(--border); }
.stepbar div:last-child { border-right: 0; }
.stepbar .n { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line2); display: inline-grid; place-items: center; font-size: 11px; flex: none; }
.stepbar .on { color: var(--text); background: var(--surface2); }
.stepbar .on .n { border-color: var(--accent); color: var(--accent); }
.stepbar .done .n { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
@media (max-width: 560px) { .stepbar div { padding: 11px 8px; font-size: 10px; } .stepbar .txt { display: none; } .stepbar .on .txt { display: inline; } }

.box { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-big); padding: 26px; margin-bottom: 18px; }
.box h2 { font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.hint { font-size: 14px; color: var(--muted); margin: 0 0 16px; }
label.field { display: block; margin-bottom: 18px; }
label.field > span { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
label.field small { display: block; font-size: 12.5px; color: var(--dim); margin-top: 7px; line-height: 1.5; }
label.field small a { color: var(--accent); }
input[type=text], input[type=email] {
  width: 100%; background: rgba(4, 5, 7, .7); border: 1px solid var(--border); color: var(--text);
  padding: 13px 14px; font: inherit; font-size: 15px; border-radius: var(--r-small); outline: none;
}
input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124, 224, 255, .12); }
input.mono { font-family: var(--mono); letter-spacing: .06em; text-transform: uppercase; }

.plans-pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
@media (max-width: 720px) { .plans-pick { grid-template-columns: 1fr; } }
.plan { position: relative; border: 1px solid var(--border); background: rgba(4, 5, 7, .6); border-radius: var(--r-big); padding: 18px; cursor: pointer; display: block; transition: border-color .15s, background .15s; }
.plan input { position: absolute; opacity: 0; pointer-events: none; }
.plan.on { border-color: var(--accent); background: rgba(20, 36, 50, .7); }
.plan input:focus-visible + .t { text-decoration: underline; }
.plan .t { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--dim); }
.plan.on .t { color: var(--accent); }
.plan .p { font-size: 30px; font-weight: 300; margin: 6px 0 2px; }
.plan .p sup { font-size: 14px; color: var(--muted); margin-right: 2px; }
.plan .d { font-size: 13px; color: var(--muted); }
.err { color: var(--danger); font-size: 14px; margin: 12px 0 0; min-height: 1em; }

.pay { display: grid; grid-template-columns: 230px 1fr; gap: 24px; align-items: start; }
@media (max-width: 600px) { .pay { grid-template-columns: 1fr; justify-items: center; } }
.qr { background: #fff; padding: 10px; width: 230px; height: 230px; border-radius: var(--r-small); display: flex; align-items: center; justify-content: center; }
.qr img { width: 100%; height: 100%; image-rendering: pixelated; }
.copybox { display: flex; gap: 8px; }
.copybox input { font-family: var(--mono); font-size: 12px; flex: 1; min-width: 0; text-transform: none; letter-spacing: 0; }
.wait { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 14px; color: var(--muted); }
.spin { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border); border-top-color: var(--accent); animation: spin 1s linear infinite; flex: none; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spin { animation: none; } html { scroll-behavior: auto; } }

.box.ok { border-color: rgba(143, 255, 200, .4); }
.box.ok > h2 { color: var(--good); }
.lic { border: 1px solid var(--border); background: rgba(4, 5, 7, .7); border-radius: var(--r-small); padding: 16px; margin-top: 14px; }
.lic .who { font-family: var(--mono); font-size: 11.5px; color: var(--dim); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; }
.lic .key { font-family: var(--mono); font-size: 13px; word-break: break-all; color: var(--accent); margin-bottom: 12px; user-select: all; }
ol.how { margin: 8px 0 0; padding-left: 20px; color: var(--muted); font-size: 14.5px; }
ol.how li { margin: 6px 0; }
ol.how b { color: var(--text); font-weight: 600; }
.small-note { font-size: 13px; color: var(--dim); margin-top: 14px; }
.small-note a { color: var(--accent); }
.save { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 16px; }

/* ---------- destaque: configs de pro players ---------- */
.pro { position: relative; border: 1px solid rgba(124, 224, 255, .45); border-radius: 20px; padding: clamp(22px, 4vw, 44px);
  background: linear-gradient(150deg, rgba(20, 36, 50, .92), rgba(11, 13, 18, .92) 60%);
  box-shadow: 0 0 60px rgba(124, 224, 255, .10); overflow: hidden; }
.pro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 40px; align-items: center; }
@media (max-width: 900px) { .pro-grid { grid-template-columns: 1fr; gap: 30px; } }
.pro .title { font-size: clamp(28px, 3.8vw, 44px); margin: 16px 0 14px; }
.pro .sub { margin-bottom: 22px; }
.flow { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 14px; counter-reset: f; }
.flow li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.flow .n { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--accent); color: var(--accent); display: grid; place-items: center; font-family: var(--mono); font-size: 13px; }
.flow b { display: block; font-weight: 600; font-size: 16px; margin-bottom: 2px; }
.flow span { color: var(--muted); font-size: 14.5px; }
.pro-points { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }

/* janela de exemplo (mesmo visual da janela "Adicionar config" do app) */
.mock { background: #040507; border: 1px solid var(--line2); border-radius: var(--r-big); padding: 22px; box-shadow: 0 24px 60px rgba(0, 0, 0, .55); }
.mock .mt { font-size: 22px; font-weight: 300; }
.mock .mt b { font-weight: 600; color: var(--accent); }
.mock .ms { color: var(--muted); font-size: 12.5px; margin: 4px 0 14px; }
.mock .row { display: grid; grid-template-columns: 1fr 120px; gap: 10px; }
.mock .f { margin-bottom: 10px; }
.mock .f small { display: block; font-size: 11.5px; font-weight: 600; margin-bottom: 4px; }
.mock .in { border: 1px solid var(--border); background: var(--card); border-radius: var(--r-small); padding: 9px 11px; font-size: 13px; color: var(--text); min-height: 36px; }
.mock .in.dim { color: var(--dim); }
.mock pre { margin: 0; font-family: var(--mono); font-size: 12px; line-height: 1.6; color: var(--muted); white-space: pre-wrap; }
.mock pre i { font-style: normal; color: var(--accent); }
.mock .cb { display: flex; gap: 9px; align-items: center; font-size: 12.5px; margin: 8px 0; }
.mock .cb u { width: 15px; height: 15px; border-radius: 4px; background: var(--accent); color: var(--on-accent); display: grid; place-items: center; text-decoration: none; flex: none; }
.mock .cb u svg { width: 11px; height: 11px; }
.mock .btns { display: flex; gap: 8px; margin-top: 12px; }
.mock .btns span { padding: 8px 16px; border-radius: var(--r-small); font-size: 12.5px; font-weight: 600; }
.mock .b1 { background: #fff; color: #000; }
.mock .b2 { border: 1px solid var(--line2); color: var(--text); }
.result { margin-top: 12px; border: 1px dashed rgba(143, 255, 200, .45); border-radius: var(--r-small); padding: 11px 13px; font-family: var(--mono); font-size: 11.5px; color: var(--good); line-height: 1.6; word-break: break-all; background: rgba(143, 255, 200, .05); }
.result em { font-style: normal; color: var(--muted); }
.mock-tag { display: inline-block; margin-top: 10px; font-family: var(--mono); font-size: 11px; color: var(--dim); }