:root {
  --ink: #191a17;
  --muted: #696b64;
  --paper: #f4f2ec;
  --white: #fffefa;
  --line: #d8d5cc;
  --red: #e1362d;
  --blue: #405fc2;
  --lime: #d9f16e;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }

.site-header {
  height: 72px; padding: 0 clamp(24px, 5vw, 80px); display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid var(--line); background: rgba(244,242,236,.92);
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(12px);
}
.brand { display: flex; gap: 10px; align-items: center; font-weight: 700; letter-spacing: -.03em; }
.brand-mark { display: grid; place-items: center; width: 30px; height: 30px; background: var(--ink); color: white; border-radius: 50%; }
nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 600; }
.nav-home { padding: 10px 16px; border: 1px solid var(--ink); border-radius: 99px; }

main { overflow: hidden; }
.hero { min-height: 620px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 6vw; padding: 80px clamp(24px, 7vw, 112px); }
.eyebrow { margin: 0 0 18px; font: 500 11px/1.2 var(--mono); letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
h1, h2 { margin: 0; letter-spacing: -.055em; line-height: .98; }
h1 { font-size: clamp(52px, 6vw, 92px); font-weight: 500; }
h1 em { font-family: Georgia, serif; font-weight: 400; color: var(--red); }
.hero-description { max-width: 650px; margin: 28px 0 34px; color: var(--muted); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 22px; }
.primary-button { padding: 15px 22px; color: white; background: var(--ink); border-radius: 4px; font-size: 13px; font-weight: 700; }
.hero-note { font: 400 11px var(--mono); color: var(--muted); }
.hero-visual { min-height: 390px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fbfaf6; border: 1px solid var(--line); border-radius: 4px; padding: 28px; position: relative; }
.hero-visual img { width: 100%; height: auto; display: block; }
.hero-visual p { width: 100%; margin: 24px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font: 9px var(--mono); letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }

.reading-guide { padding: 80px clamp(24px, 7vw, 112px); background: var(--ink); color: white; display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; }
.reading-guide .eyebrow { color: #aaa9a2; }
.reading-guide h2, .section-heading h2 { font-size: clamp(38px, 4vw, 60px); font-weight: 500; }
.reading-guide ol { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; }
.reading-guide li { min-height: 138px; padding: 22px; border: 1px solid #42433e; display: grid; grid-template-columns: 40px 1fr; align-content: start; }
.reading-guide li span { grid-row: 1/3; color: var(--lime); font: 12px var(--mono); }
.reading-guide li strong { font-size: 16px; }
.reading-guide li small { color: #aaa9a2; line-height: 1.5; margin-top: 8px; }

.gallery-section { padding: 110px clamp(24px, 7vw, 112px) 140px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 42px; }
.filters { display: flex; gap: 7px; }
.filter { border: 1px solid var(--line); background: transparent; padding: 9px 14px; border-radius: 99px; cursor: pointer; font-size: 12px; }
.filter.is-active { background: var(--ink); color: white; border-color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card { min-height: 410px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--white); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; overflow: hidden; }
.case-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(25,26,23,.08); }
.card-preview { height: 235px; position: relative; background: #eeece5; }
.card-preview canvas, .card-preview img { width: 100%; height: 100%; display: block; }
.card-preview img { object-fit: contain; background: #fffefa; }
.case-number { position: absolute; top: 16px; left: 16px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--white); font: 10px var(--mono); }
.card-content { flex: 1; padding: 22px; display: flex; flex-direction: column; }
.card-meta { display: flex; gap: 6px; margin-bottom: 13px; }
.tag { font: 9px var(--mono); text-transform: uppercase; padding: 4px 6px; background: #eceae3; color: var(--muted); }
.card-content h3 { margin: 0; font-size: 22px; letter-spacing: -.04em; font-weight: 600; }
.card-content p { color: var(--muted); font-size: 13px; line-height: 1.55; }
.card-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font: 11px var(--mono); }
.card-foot b { font-size: 18px; font-family: var(--sans); }

body > footer { padding: 26px clamp(24px, 7vw, 112px); background: var(--ink); color: #aaa9a2; display: flex; justify-content: space-between; font: 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; }

dialog { width: 100vw; height: 100vh; max-width: none; max-height: none; padding: 0; border: 0; background: var(--paper); }
dialog::backdrop { background: rgba(15,15,13,.8); }
.dialog-shell { height: 100%; display: grid; grid-template-rows: auto auto 1fr auto; }
.dialog-header { min-height: 84px; display: flex; justify-content: space-between; align-items: center; padding: 14px 30px; border-bottom: 1px solid var(--line); }
.dialog-kicker { margin: 0 0 5px; font: 10px var(--mono); color: var(--muted); text-transform: uppercase; }
.dialog-header h2 { font-size: 27px; letter-spacing: -.035em; }
.close-button { border: 0; background: transparent; font-size: 34px; cursor: pointer; }
.step-strip { display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); background: var(--white); padding: 0 24px; }
.step-tab { min-width: 155px; padding: 14px 16px; text-align: left; border: 0; border-right: 1px solid var(--line); background: transparent; cursor: pointer; color: var(--muted); }
.step-tab span { display: block; font: 9px var(--mono); margin-bottom: 4px; }
.step-tab strong { font-size: 12px; }
.step-tab.is-active { background: var(--lime); color: var(--ink); }
.workspace { min-height: 0; display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; }
.render-panel, .evidence-panel { min-width: 0; min-height: 0; }
.render-panel { padding: 22px 28px; border-right: 1px solid var(--line); display: grid; grid-template-rows: auto minmax(0,1fr) auto; background: #eceae3; }
.panel-label { display: flex; justify-content: space-between; font: 9px var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.render-stage { min-height: 280px; position: relative; overflow: hidden; }
#render-canvas, #paper-result { width: 100%; height: 100%; position: absolute; inset: 0; }
#paper-result { display: none; object-fit: contain; padding: 18px; }
.change-summary { display: flex; gap: 12px; padding: 13px 15px; border: 1px solid var(--line); background: var(--white); }
.change-icon { color: var(--red); font: 18px var(--mono); }
.change-summary small { color: var(--muted); font: 9px var(--mono); text-transform: uppercase; }
.change-summary p { margin: 4px 0 0; font-size: 12px; }
.evidence-panel { padding: 22px 28px; display: grid; grid-template-rows: auto minmax(0,1fr); gap: 14px; }
.intent-card { border: 1px solid var(--line); background: var(--white); padding: 16px 18px; }
.actor { color: var(--red); font: 9px var(--mono); letter-spacing: .12em; }
blockquote { margin: 9px 0 14px; font-size: 16px; line-height: 1.45; }
.operation-row { display: flex; justify-content: space-between; padding-top: 11px; border-top: 1px solid var(--line); font-size: 10px; color: var(--muted); }
.operation-row code { color: var(--blue); font: 10px var(--mono); }
.code-card { min-height: 0; display: grid; grid-template-rows: auto 1fr; background: #20211f; color: #e6e4dc; border-radius: 3px; overflow: hidden; }
.code-toolbar { min-height: 38px; padding: 0 13px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #3b3c38; color: #999b94; font: 9px var(--mono); }
.code-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 4px; }
.code-dot.red { background: #e05c51; }.code-dot.amber { background: #dfb54d; }.code-dot.green { background: #6ab56d; }
#copy-code { border: 0; background: transparent; color: #bbbcb6; font: 9px var(--mono); cursor: pointer; }
pre { margin: 0; min-height: 0; overflow: auto; padding: 17px; font: 10.5px/1.58 var(--mono); }
.json-key { color: #a9c8ff; }.json-string { color: #d9ed9d; }.json-number { color: #f4aa83; }.json-boolean { color: #d4a8ff; }
.dialog-footer { min-height: 68px; padding: 12px 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; background: var(--white); gap: 30px; }
.dialog-footer p { margin: 0; color: var(--muted); font-size: 11px; max-width: 58%; line-height: 1.5; }
.step-controls { display: flex; align-items: center; gap: 12px; }
.step-controls button { border: 1px solid var(--ink); background: transparent; padding: 9px 12px; cursor: pointer; font-size: 10px; }
.step-controls button:disabled { opacity: .35; cursor: default; }
#step-count { min-width: 42px; text-align: center; font: 10px var(--mono); }

@media (max-width: 950px) {
  .hero, .reading-guide { grid-template-columns: 1fr; }
  .hero-visual { height: 330px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .workspace { grid-template-columns: 1fr; overflow-y: auto; }
  .render-panel { min-height: 520px; border-right: 0; border-bottom: 1px solid var(--line); }
  .evidence-panel { min-height: 620px; }
}
@media (max-width: 650px) {
  nav a:not(.nav-home) { display: none; }
  .hero { padding-top: 58px; }
  .hero-actions, .section-heading { align-items: flex-start; flex-direction: column; }
  .hero-note { display: none; }
  .reading-guide ol, .gallery-grid { grid-template-columns: 1fr; }
  .filters { overflow-x: auto; max-width: 100%; }
  .dialog-header, .render-panel, .evidence-panel, .dialog-footer { padding-left: 16px; padding-right: 16px; }
  .dialog-footer p { display: none; }
  .dialog-footer { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }

/* Long-form, print-first walkthrough */
dialog { overflow-y: auto; }
.dialog-shell { min-height: 100%; height: auto; display: block; }
.dialog-actions { display: flex; align-items: center; gap: 12px; }
.print-button { padding: 10px 16px; border: 1px solid var(--ink); background: var(--ink); color: white; cursor: pointer; font-size: 11px; }
.print-intro { padding: 34px clamp(24px, 6vw, 90px); background: var(--ink); color: white; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.print-intro p { margin: 0; font-size: clamp(28px, 4vw, 48px); letter-spacing: -.05em; }
.print-intro span { max-width: 440px; color: #aaa9a2; font: 11px/1.6 var(--mono); }
.print-steps { padding: 55px clamp(24px, 6vw, 90px) 100px; display: grid; gap: 72px; }
.print-step { background: var(--white); border: 1px solid var(--line); break-inside: avoid; }
.print-step-heading { display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: 20px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.step-index { font: 12px var(--mono); color: var(--red); }
.print-step-heading h3 { margin: 0; font-size: 25px; letter-spacing: -.04em; }
.step-operation { padding: 7px 10px; background: #e8e6df; color: var(--blue); font: 10px var(--mono); }
.print-step-body { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); }
.step-visual { min-width: 0; padding: 22px; background: #eeece5; border-right: 1px solid var(--line); display: grid; grid-template-rows: auto 360px auto; }
.step-evidence { min-width: 0; padding: 22px; display: grid; align-content: start; gap: 14px; }
.step-render { width: 100%; height: 100%; min-height: 280px; }
.step-svg-render { position: relative; display: grid; min-width: 0; min-height: 0; place-items: center; overflow: hidden; border-radius: 12px; }
.step-svg-render svg { position: absolute; inset: 0; display: block; width: 100% !important; height: 100% !important; max-width: 100%; max-height: 100%; overflow: hidden; }
.render-error { max-width: 260px; color: #c53030; text-align: center; font-size: 12px; }
.step-paper-result { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.step-explanation { margin: 0; padding-top: 13px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.step-evidence .code-card pre { max-height: 520px; }
.print-code { display: none; }

@media (max-width: 950px) {
  .print-step-body { grid-template-columns: 1fr; }
  .step-visual { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 650px) {
  .print-button { display: none; }
  .print-step-heading { grid-template-columns: 52px 1fr; }
  .step-operation { grid-column: 2; justify-self: start; }
  .print-intro { align-items: flex-start; flex-direction: column; }
}

@media print {
  @page { size: A4 portrait; margin: 12mm; }
  body { background: white; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  body > .site-header, body > main, body > footer, dialog::backdrop, .dialog-actions { display: none !important; }
  dialog[open] { display: block; position: static; width: auto; height: auto; overflow: visible; background: white; }
  .dialog-header { padding: 0 0 8mm; border-bottom: 1px solid #999; }
  .dialog-header h2 { font-size: 22pt; }
  .print-intro { padding: 8mm; margin-bottom: 8mm; }
  .print-intro p { font-size: 21pt; }
  .print-steps { padding: 0; gap: 10mm; }
  .print-step { break-before: page; page-break-before: always; break-inside: auto; page-break-inside: auto; }
  .print-step-heading { padding: 4mm 5mm; }
  .print-step-heading h3 { font-size: 15pt; }
  .print-step-body { grid-template-columns: 42% 58%; align-items: start; }
  .step-visual, .step-evidence { padding: 3mm; }
  .step-visual { grid-column: 1; grid-row: 1; grid-template-rows: auto 50mm auto; border-bottom: 1px solid var(--line); }
  .step-evidence { display: contents; }
  .step-evidence .intent-card { grid-column: 2; grid-row: 1; margin: 3mm; }
  .step-evidence .code-card { display: grid; grid-column: 1 / -1; grid-row: 2; margin: 0 3mm 3mm; break-inside: auto; page-break-inside: auto; }
  .step-evidence .code-card pre { max-height: none; }
  .step-evidence .screen-code { display: none; }
  .step-evidence .print-code { display: block; }
  pre { font-size: 6pt; line-height: 1.15; white-space: pre-wrap; overflow-wrap: anywhere; overflow: visible; }
  .print-step:last-child pre { font-size: 5.6pt; line-height: 1.05; }
  .intent-card { padding: 4mm; }
  blockquote { font-size: 10pt; }
}

/* Match the visual language of the original GlyphWeaver website. */
@media screen {
  :root {
    --ink: #1a202c;
    --muted: #4a5568;
    --paper: #ffffff;
    --white: #ffffff;
    --line: #e2e8f0;
    --red: #3182ce;
    --blue: #3182ce;
    --lime: #bee3f8;
    --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }
  body { background: #ffffff; line-height: 1.6; }
  .site-header {
    height: 70px; padding: 0 max(24px, calc((100vw - 1200px)/2 + 24px));
    background: rgba(255,255,255,.96); border-bottom: 1px solid #edf2f7;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
  }
  .brand img { display: block; height: 40px; width: auto; }
  .site-header nav { gap: 32px; color: #4a5568; font-size: 14px; }
  .site-header nav a:hover { color: #3182ce; }
  .nav-home { color: #fff !important; background: #3182ce; border: 0; border-radius: 12px; padding: 10px 16px; box-shadow: 0 4px 10px rgba(49,130,206,.18); }

  .hero {
    width: min(1200px, calc(100% - 48px)); min-height: 570px; margin: 0 auto; padding: 90px 0 70px;
    grid-template-columns: 1fr 1fr; gap: 60px;
  }
  .eyebrow { color: #3182ce; font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: 1.5px; }
  h1, h2 { letter-spacing: -.035em; line-height: 1.14; }
  h1 { max-width: 610px; color: #2d3748; font-size: clamp(48px, 5vw, 70px); font-weight: 600; }
  h1 em { color: #3182ce; font-family: inherit; font-style: normal; font-weight: 600; }
  .hero-description { color: #4a5568; font-size: 18px; line-height: 1.7; }
  .primary-button { padding: 13px 22px; background: #3182ce; border-radius: 12px; box-shadow: 0 6px 16px rgba(49,130,206,.2); }
  .hero-note { color: #718096; }
  .hero-visual { min-height: 350px; padding: 28px; background: rgba(13,91,124,.05); border: 1px solid #e2e8f0; border-radius: 28px; box-shadow: 0 10px 24px rgba(0,0,0,.06); }
  .hero-visual p { color: #718096; border-color: #e2e8f0; }

  .reading-guide {
    padding: 76px max(24px, calc((100vw - 1200px)/2 + 24px));
    color: #1a202c; background: rgba(13,91,124,.05); gap: 70px;
  }
  .reading-guide .eyebrow { color: #3182ce; }
  .reading-guide h2, .section-heading h2 { color: #2d3748; font-size: clamp(36px,4vw,52px); }
  .reading-guide ol { gap: 16px; }
  .reading-guide li { min-height: 132px; padding: 22px; background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; box-shadow: 0 4px 12px rgba(0,0,0,.04); }
  .reading-guide li span { color: #3182ce; font-family: var(--mono); }
  .reading-guide li strong { color: #2d3748; }
  .reading-guide li small { color: #718096; }

  .gallery-section { padding: 90px max(24px, calc((100vw - 1200px)/2 + 24px)) 120px; background: #fff; }
  .filter { border-color: #e2e8f0; color: #4a5568; background: #fff; border-radius: 12px; }
  .filter.is-active { background: #3182ce; border-color: #3182ce; }
  .gallery-grid { gap: 24px; }
  .case-card { border-color: #e2e8f0; border-radius: 28px; background: rgba(13,91,124,.05); }
  .case-card:hover { box-shadow: 0 12px 24px rgba(0,0,0,.09); }
  .card-preview { margin: 16px 16px 0; height: 225px; border-radius: 20px; overflow: hidden; background: #fff; }
  .card-preview img { background: #fff; }
  .card-content { padding: 22px 24px 26px; }
  .tag { padding: 5px 8px; color: #3182ce; background: #ebf8ff; border-radius: 6px; font-family: var(--mono); }
  .card-content h3 { color: #2d3748; }
  .card-content p, .card-foot { color: #4a5568; }
  .card-foot b { color: #3182ce; }
  body > footer { padding: 28px max(24px, calc((100vw - 1200px)/2 + 24px)); color: #718096; background: rgba(13,91,124,.05); border-top: 1px solid #edf2f7; }

  dialog { background: #fff; }
  dialog::backdrop { background: rgba(26,32,44,.5); backdrop-filter: blur(5px); }
  .dialog-header { min-height: 78px; padding: 14px max(24px, calc((100vw - 1200px)/2 + 24px)); background: #fff; position: sticky; top: 0; z-index: 4; }
  .dialog-kicker { color: #3182ce; }
  .dialog-header h2 { color: #2d3748; }
  .print-button { color: #fff; background: #3182ce; border-color: #3182ce; border-radius: 10px; }
  .close-button { color: #4a5568; }
  .print-intro { padding: 38px max(24px, calc((100vw - 1200px)/2 + 24px)); color: #1a202c; background: rgba(13,91,124,.05); }
  .print-intro p { color: #2d3748; font-weight: 600; }
  .print-intro span { color: #4a5568; }
  .print-steps { max-width: 1200px; margin: 0 auto; padding: 54px 24px 100px; gap: 48px; }
  .print-step { border-color: #e2e8f0; border-radius: 24px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,.055); }
  .print-step-heading { background: #fff; }
  .step-index { color: #3182ce; }
  .print-step-heading h3 { color: #2d3748; }
  .step-operation { color: #2c5282; background: #ebf8ff; border-radius: 8px; }
  .step-visual { background: rgba(13,91,124,.05); border-color: #e2e8f0; }
  .change-summary, .intent-card { border-color: #e2e8f0; border-radius: 14px; }
  .change-icon, .actor { color: #3182ce; }
  .code-card { background: #1a202c; border-radius: 14px; }
}

/* Input provenance: canvas actions, language instructions, and system work
   remain visually distinct on screen and in the printed walkthrough. */
.input-modality {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font: 700 11px/1.2 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.input-modality span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
}
.intent-card.input-figma {
  border-left: 4px solid #a259ff;
  background: #fcfaff;
}
.input-figma .input-modality { color: #7540bd; }
.input-figma .input-modality span { color: #fff; background: #a259ff; }
.figma-action {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 76px;
  padding: 18px;
  color: #3d2a58;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid #d9c3f5;
  border-radius: 12px;
  background-color: #fff;
  background-image:
    linear-gradient(rgba(162,89,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(162,89,255,.06) 1px, transparent 1px);
  background-size: 16px 16px;
}
.figma-cursor {
  flex: 0 0 auto;
  color: #a259ff;
  font-size: 17px;
  transform: rotate(-12deg);
}
.intent-card.input-natural {
  border-left: 4px solid #3182ce;
  background: #f8fbff;
}
.input-natural .input-modality { color: #2b6cb0; }
.input-natural .input-modality span { color: #fff; background: #3182ce; border-radius: 50%; }
.nl-bubble {
  position: relative;
  max-width: 92%;
  padding: 17px 19px;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  background: #3182ce;
  border-radius: 17px 17px 5px 17px;
  box-shadow: 0 4px 10px rgba(49,130,206,.14);
}
.intent-card.input-system {
  border-left: 4px solid #38a169;
  background: #f7fdf9;
}
.input-system .input-modality { color: #2f855a; }
.input-system .input-modality span { color: #fff; background: #38a169; }
.system-inference {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  color: #276749;
  font-size: 17px;
  line-height: 1.5;
  border: 1px dashed #9ae6b4;
  border-radius: 12px;
  background: #f0fff4;
}
.system-mark { font-size: 18px; }
.step-explanation { margin-top: 16px; }

@media print {
  .intent-card.input-figma { border-left: 3pt solid #7540bd; }
  .intent-card.input-natural { border-left: 3pt solid #2b6cb0; }
  .intent-card.input-system { border-left: 3pt solid #2f855a; }
  .figma-action { background-image: none; }
  .nl-bubble {
    color: #fff !important;
    background: #2b6cb0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
