.demo {
  padding: 48px var(--page-px, 48px) 0;
}

.demo-pane {
  position: relative;
  width: 100%;
  height: clamp(400px, 35vw, 600px);
  border-radius: var(--radius, 16px);
  background: linear-gradient(
    170deg,
    rgba(235, 235, 240, 0.7) 0%,
    rgba(215, 215, 225, 0.4) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 0 1px rgba(0, 0, 0, 0.03),
    0 4px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  min-height: 0;
}

.demo-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.015) 0%,
    transparent 45%,
    transparent 55%,
    rgba(255, 255, 255, 0.008) 100%
  );
  pointer-events: none;
  z-index: 10;
}

/* ─────────────────────────────────────────
   DEMO PANE — CINEMATIC STAGE
   Restrained · quiet · Japandi dark interior
   ───────────────────────────────────────── */

/* Dark inner surface — quiet near-black */
.demo-pane::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gray-900);
  border-radius: inherit;
  z-index: 1;
}

/* No colored glows — just a faint warm center bloom */
.demo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

.demo-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.demo-glow-a {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.022) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.demo-glow-b {
  display: none;
}

.demo-glow-c {
  display: none;
}

/* Subtle grain — adds tactile depth */
.demo-pane::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* Stage — all elements centered, cross-fade between phases */
.demo-stage {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
}

/* Pill + thinking + response all overlap at center via absolute */
.demo-query-pill,
.demo-thinking,
.demo-response {
  position: absolute;
}

/* Card sits in normal flow, pushed to center by justify-content */
.demo-card {
  position: relative;
}

/* ── Agent Response ── */
.demo-response {
  max-width: 580px;
  width: calc(100% - 96px);
  text-align: center;
  padding: 0 6px;
}

.demo-response-text {
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.demo-response-cursor {
  display: inline-block;
  width: 1px;
  height: 11px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.5px;
  vertical-align: middle;
  margin-left: 2px;
  animation: cursorBlink 1.3s step-end infinite;
}

/* Subtle card breathing */
@keyframes cardBreathe {
  0%, 100% { box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 16px 48px rgba(0,0,0,0.45); }
  50%       { box-shadow: 0 1px 0 rgba(255,255,255,0.09) inset, 0 20px 56px rgba(0,0,0,0.5), 0 0 60px rgba(255,255,255,0.01); }
}

.demo-card--visible {
  animation: cardBreathe 5s ease-in-out infinite;
}

/* ── Query Pill — rounded glassmorphic input ── */
.demo-query-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 6px 24px rgba(0, 0, 0, 0.3);
  max-width: 580px;
  width: 100%;
}

.demo-query-icon {
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.demo-query-text {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.005em;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #000 85%, transparent 100%);
  mask-image: linear-gradient(to right, #000 85%, transparent 100%);
}

.demo-query-cursor {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 0.5px;
  vertical-align: middle;
  margin-left: 1px;
  animation: cursorBlink 1.1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Thinking dots — quiet and small ── */
.demo-thinking {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 18px;
}

.demo-thinking span {
  display: block;
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: thinkBounce 1.4s ease-in-out infinite both;
}

.demo-thinking span:nth-child(2) { animation-delay: 0.2s; }
.demo-thinking span:nth-child(3) { animation-delay: 0.4s; }

@keyframes thinkBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.25; }
  40%            { transform: scale(1);   opacity: 0.7; }
}

/* ── Glassmorphic Result Card — quiet, elevated ── */
.demo-card {
  width: 100%;
  max-width: 580px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 16px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.demo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-card-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-card-badge {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2.5px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-card-title {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
}

.demo-card-time {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

/* Card body */
.demo-card-body {
  padding: 0;
  overflow: hidden;
}

.demo-panel {
  padding: 16px 18px 12px;
}

/* Stat blocks */
.demo-panel-stats {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.demo-stat-block {
  flex: 1;
  padding: 12px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.demo-stat-block + .demo-stat-block {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-stat-num {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.demo-stat-unit {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.35);
}

.demo-stat-label {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

/* ── Survival Chart ── */
.demo-chart-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-svg {
  width: 100%;
  height: 110px;
  display: block;
  overflow: visible;
}

.demo-km-area-a {
  fill: rgba(65, 50, 180, 0.1);
}

.demo-km-area-b {
  fill: rgba(65, 50, 180, 0.04);
}

.demo-km-line {
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.demo-km-line-a {
  stroke: rgba(70, 55, 185, 0.85);
  stroke-width: 1.4;
}

.demo-km-line-b {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 1;
  stroke-dasharray: 4 3;
}

.demo-axis-label {
  font-family: var(--sans, var(--font-display, 'Pangea', system-ui, sans-serif));
  font-size: 7px;
  fill: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.demo-chart-legend-row {
  display: flex;
  gap: 16px;
}

.demo-leg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
}

.demo-leg-line {
  display: inline-block;
  width: 14px;
  height: 1.5px;
  border-radius: 1px;
}

.demo-leg-a { background: rgba(70, 55, 185, 0.8); }
.demo-leg-b { background: rgba(255, 255, 255, 0.25); }

/* ── Guideline Adherence Bars ── */
.demo-guide-bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.demo-gbar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-gbar-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  width: 160px;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-gbar-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1.5px;
  overflow: hidden;
}

.demo-gbar-fill {
  height: 100%;
  width: 0%;
  border-radius: 1.5px;
  background: rgba(65, 50, 180, 0.7);
}

.demo-gbar-fill--warn {
  background: rgba(65, 50, 180, 0.45);
}

.demo-gbar-fill--alert {
  background: rgba(65, 50, 180, 0.3);
}

.demo-gbar-val {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.demo-gbar-val--warn  { color: rgba(80, 60, 190, 0.7); }
.demo-gbar-val--alert { color: rgba(210, 150, 170, 0.55); }

/* ── Treatment Flow ── */
.demo-flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-flow-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-flow-node {
  font-size: 10px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.demo-flow-node--start {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-flow-node--mid {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-flow-node--alert {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-left: 0;
  font-size: 9.5px;
}

.demo-flow-arrow {
  color: rgba(255, 255, 255, 0.15);
  font-size: 11px;
  flex-shrink: 0;
}

.demo-flow-split {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.demo-flow-branch {
  font-size: 9.5px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-flow-branch strong {
  font-weight: 700;
}

.demo-flow-branch--a {
  background: rgba(65, 50, 180, 0.1);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(65, 50, 180, 0.16);
}

.demo-flow-branch--b {
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ── Pharmacovigilance ── */
.demo-pharma-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-pharma-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-pharma-severity {
  width: 2.5px;
  height: 26px;
  border-radius: 1.5px;
  flex-shrink: 0;
}

.demo-pharma-sev--high { background: rgba(210, 140, 160, 0.7); }
.demo-pharma-sev--med  { background: rgba(70, 55, 185, 0.6); }
.demo-pharma-sev--low  { background: rgba(255, 255, 255, 0.18); }

.demo-pharma-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.demo-pharma-drug {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.demo-pharma-signal {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-pharma-tag {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.demo-pharma-tag--high {
  background: rgba(210, 140, 160, 0.08);
  color: rgba(210, 150, 170, 0.8);
  border: 1px solid rgba(210, 140, 160, 0.15);
}

.demo-pharma-tag--med {
  background: rgba(65, 50, 180, 0.1);
  color: rgba(80, 60, 190, 0.8);
  border: 1px solid rgba(65, 50, 180, 0.14);
}

.demo-pharma-tag--low {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Card footer */
.demo-card-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.02em;
}

/* Cycle tracker */
.demo-tracker {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.demo-tracker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.demo-tracker-dot:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.4);
}

.demo-tracker-dot--active {
  background: rgba(255, 255, 255, 0.65);
  transform: scale(1.3);
}

.demo-tracker-dot--active:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: scale(1.4);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .demo-thinking span,
  .demo-query-cursor,
  .demo-km-line {
    animation: none !important;
    transition: none !important;
  }
  .demo-query-cursor { opacity: 1; }
  .demo-km-line { stroke-dashoffset: 0 !important; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .demo-pane {
    height: clamp(360px, 40vw, 540px);
  }
}

@media (max-width: 768px) {
  .demo { padding: 32px 12px 0; }
  .demo-pane { height: clamp(320px, 55vw, 460px); }
  .demo-stage { padding: 20px 20px; }
  .demo-query-pill { padding: 10px 16px; max-width: calc(100% - 40px); }
  .demo-query-text { font-size: 14px; }
  .demo-response { width: calc(100% - 40px); }
  .demo-response-text { font-size: 12.5px; text-wrap: balance; }
  .demo-card { max-width: calc(100% - 40px); }
  .demo-gbar-label { width: 100px; font-size: 9px; }
  .demo-flow-split { display: none; }
  .demo-stat-num { font-size: 16px; }
  .demo-stat-label { font-size: 7.5px; }
  .demo-pharma-row { padding: 6px 10px; gap: 8px; }
  .demo-pharma-signal { font-size: 8.5px; }
}

@media (max-width: 640px) {
  .demo-pane { height: clamp(300px, 70vw, 420px); }
  .demo-card-title { font-size: 11px; }
  .demo-card-badge { font-size: 7.5px; padding: 2px 5px; }
  .demo-gbar-row { gap: 6px; }
  .demo-gbar-label { width: 80px; font-size: 8px; }
  .demo-gbar-val { font-size: 9px; width: 24px; }
  .demo-flow-node { font-size: 9px; padding: 4px 8px; }
  .demo-pharma-tag { font-size: 7px; padding: 2px 4px; }
  .demo-pharma-row:nth-child(n+4) { display: none; }
  .demo-flow-row:nth-child(n+3) { display: none; }
  .demo-gbar-row:nth-child(n+5) { display: none; }
}

@media (max-width: 480px) {
  .demo { padding: 24px 12px 0; }
  .demo-pane { height: clamp(280px, 75vw, 380px); }
  .demo-stage { padding: 14px 14px; }
  .demo-query-pill { padding: 9px 14px; max-width: calc(100% - 28px); }
  .demo-query-text { font-size: 12.5px; }
  .demo-response { width: calc(100% - 28px); }
  .demo-response-text { font-size: 11.5px; }
  .demo-panel-stats { flex-direction: column; }
  .demo-stat-block + .demo-stat-block { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.05); }
  .demo-stat-block { padding: 8px 12px; }
  .demo-card-header { padding: 10px 14px 8px; }
  .demo-panel { padding: 12px 14px 10px; }
  .demo-tracker { bottom: 12px; gap: 6px; }
  .demo-tracker-dot { width: 6px; height: 6px; }
}

@media (max-width: 360px) {
  .demo-pane { height: clamp(260px, 80vw, 320px); }
  .demo-query-pill { padding: 8px 12px; gap: 6px; }
  .demo-query-text { font-size: 11px; }
  .demo-card { max-width: calc(100% - 16px); }
  .demo-stat-num { font-size: 14px; }
}

/* ─────────────────────────────────────────
   PRISMA PANELS (inside unified demo card)
   ───────────────────────────────────────── */
.demo-panel--prisma {
  padding: 0 !important;
}

.demo-prisma-viewer {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0a0c;
}

.demo-prisma-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.demo-prisma-img--base {
  z-index: 1;
}

.demo-prisma-img--overlay {
  z-index: 2;
  opacity: 0;
}

/* Second H&E set: crop toward denser tissue, reduce stark lumen contrast */
#prismaImgBaseB {
  object-position: 30% center;
  filter: brightness(0.92) contrast(0.88);
}

#prismaImgOverlayB {
  object-position: 30% center;
}

/* Floating results chip — glassmorphic, bottom-left */
.demo-prisma-chip {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(6px);
}

.demo-prisma-chip-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.demo-prisma-chip-value {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.demo-prisma-chip-rows {
  display: flex;
  flex-direction: column;
}

.demo-prisma-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-prisma-result-row:last-child {
  border-bottom: none;
}

.demo-prisma-result-label {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.demo-prisma-result-value {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
  white-space: nowrap;
}

.demo-prisma-result-value--highlight {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .demo-prisma-viewer { height: 200px; }
  .demo-prisma-chip { padding: 8px 12px; }
  .demo-prisma-chip-value { font-size: 15px; }
}

@media (max-width: 640px) {
  .demo-prisma-viewer { height: 170px; }
  .demo-prisma-chip-title { font-size: 8px; }
  .demo-prisma-chip-value { font-size: 14px; }
}

@media (max-width: 480px) {
  .demo-prisma-viewer { height: 150px; }
  .demo-prisma-chip { bottom: 8px; left: 8px; padding: 7px 10px; }
  .demo-prisma-chip-value { font-size: 13px; }
  .demo-prisma-result-label, .demo-prisma-result-value { font-size: 9px; }
}

@media (max-width: 360px) {
  .demo-prisma-viewer { height: 130px; }
  .demo-prisma-chip { padding: 5px 8px; }
  .demo-prisma-chip-value { font-size: 11px; }
  .demo-prisma-result-row { gap: 8px; }
}
