/* ============================================================================
   AI Quant Desk: business bubble chart
   Tokens per DESIGN.md (validated palette 2026-07-09, incl. the same-day AA
   corrections); identical names and values to the sibling modules so the
   family shares one visual language. Component classes are aiqdb-* and every
   selector is scoped under .aiqd-bubbles (two-class specificity against
   hostile host pages).
   ========================================================================== */

.aiqd-bubbles {
  /* -- surfaces & ink (light) -- */
  --aiqd-bg: #ffffff;
  --aiqd-panel: #f6f6f4;
  --aiqd-panel-2: #efefec;
  --aiqd-border: #e4e4e0;
  --aiqd-ink: #1b1d1a;
  --aiqd-ink-2: #5a5c55;
  --aiqd-ink-3: #6f716a;      /* muted TEXT: AA-corrected 2026-07-09 */
  --aiqd-ink-mark: #8a8c84;   /* decorative marks only, never text */
  --aiqd-tooltip-bg: #23251f;
  --aiqd-tooltip-ink: #f2f3ee;

  /* -- brand & semantic -- */
  --aiqd-value: #5e8a33;
  --aiqd-value-text: #47691f;
  --aiqd-value-tint: rgba(94, 138, 51, 0.10);
  --aiqd-deficit: #d03b3b;
  --aiqd-dream: #b08828;
  --aiqd-dream-text: #79601a;
  --aiqd-warn-ink: #7d621b;
  --aiqd-warn-bg: #faf3dc;
  --aiqd-warn-border: #ecdfb4;

  /* -- categorical parts ramp (fixed order by part position) -- */
  --aiqd-part-1: #6d53c6;
  --aiqd-part-2: #0f8a6c;
  --aiqd-part-3: #c88a00;
  --aiqd-part-4: #d2568e;
  --aiqd-part-5: #2a78d6;
  --aiqd-part-6: #e34948;
  --aiqd-part-7: #eb6834;
  --aiqd-part-8: #0aa0c0;

  /* -- geometry & motion -- */
  --aiqd-r-card: 10px;
  --aiqd-r-chip: 8px;
  --aiqd-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --aiqd-t: 180ms;
  --aiqd-t-fast: 120ms;
  --aiqd-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  --aiqd-shadow-2: 0 4px 16px rgb(0 0 0 / 0.07);

  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--aiqd-ink);
  background: var(--aiqd-bg);
  border: 1px solid var(--aiqd-border);
  border-radius: var(--aiqd-r-card);
  box-sizing: border-box;
  container-type: inline-size;
  display: block;
  font-size: 13px;
  line-height: 1.45;
  max-width: 960px;
  min-width: 300px;
  padding: 20px 20px 14px;
  position: relative;
}
.aiqd-bubbles *, .aiqd-bubbles *::before, .aiqd-bubbles *::after { box-sizing: border-box; }
.aiqd-bubbles .num, .aiqd-bubbles text {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* ---- dark theme: media default + explicit override wins both ways ---- */
@media (prefers-color-scheme: dark) {
  .aiqd-bubbles:not([data-theme="light"]) {
    --aiqd-bg: #121212; --aiqd-panel: #1b1b1a; --aiqd-panel-2: #232322;
    --aiqd-border: #2c2c2a; --aiqd-ink: #edeee9; --aiqd-ink-2: #b0b2a8;
    --aiqd-ink-3: #979990; --aiqd-ink-mark: #7c7e76;
    --aiqd-tooltip-bg: #f2f3ee; --aiqd-tooltip-ink: #23251f;
    --aiqd-value: #78a34b; --aiqd-value-text: #a4cd7c; --aiqd-value-tint: rgba(120, 163, 75, 0.14);
    --aiqd-deficit: #e05252; --aiqd-dream: #c9a03a; --aiqd-dream-text: #d8b654;
    --aiqd-warn-ink: #e8c55b; --aiqd-warn-bg: #2a2513; --aiqd-warn-border: #4a4122;
    --aiqd-part-1: #9085e9; --aiqd-part-2: #199e70; --aiqd-part-3: #c98500;
    --aiqd-part-4: #d55181; --aiqd-part-5: #3987e5; --aiqd-part-6: #e66767;
    --aiqd-part-7: #d95926; --aiqd-part-8: #2ab5c9;
    --aiqd-shadow: none; --aiqd-shadow-2: none;
  }
}
.aiqd-bubbles[data-theme="dark"] {
  --aiqd-bg: #121212; --aiqd-panel: #1b1b1a; --aiqd-panel-2: #232322;
  --aiqd-border: #2c2c2a; --aiqd-ink: #edeee9; --aiqd-ink-2: #b0b2a8;
  --aiqd-ink-3: #979990; --aiqd-ink-mark: #7c7e76;
  --aiqd-tooltip-bg: #f2f3ee; --aiqd-tooltip-ink: #23251f;
  --aiqd-value: #78a34b; --aiqd-value-text: #a4cd7c; --aiqd-value-tint: rgba(120, 163, 75, 0.14);
  --aiqd-deficit: #e05252; --aiqd-dream: #c9a03a; --aiqd-dream-text: #d8b654;
  --aiqd-warn-ink: #e8c55b; --aiqd-warn-bg: #2a2513; --aiqd-warn-border: #4a4122;
  --aiqd-part-1: #9085e9; --aiqd-part-2: #199e70; --aiqd-part-3: #c98500;
  --aiqd-part-4: #d55181; --aiqd-part-5: #3987e5; --aiqd-part-6: #e66767;
  --aiqd-part-7: #d95926; --aiqd-part-8: #2ab5c9;
  --aiqd-shadow: none; --aiqd-shadow-2: none;
}

/* ============================== HEADER ============================== */
.aiqd-bubbles .aiqdb-header { display: flex; flex-wrap: wrap; gap: 4px 16px; align-items: baseline; }
.aiqd-bubbles .aiqdb-vps { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.aiqd-bubbles .aiqdb-vps-lbl { color: var(--aiqd-ink-2); font-size: 14px; font-weight: 500; }
.aiqd-bubbles .aiqdb-coverage { color: var(--aiqd-ink-2); font-size: 13px; }
.aiqd-bubbles .aiqdb-coverage strong { color: var(--aiqd-ink); font-weight: 600; }
.aiqd-bubbles .aiqdb-belief { background: none; border: 0; border-bottom: 1px dotted var(--aiqd-ink-3); border-radius: 0; color: var(--aiqd-ink-2); cursor: pointer; font: inherit; font-size: 12px; padding: 0; }
.aiqd-bubbles .aiqdb-belief::before { content: "\00B7\2002"; color: var(--aiqd-ink-3); }
.aiqd-bubbles .aiqdb-belief--static { border-bottom: 0; cursor: default; }
.aiqd-bubbles .aiqdb-framing { color: var(--aiqd-ink-3); font-size: 12px; margin-top: 2px; width: 100%; }
.aiqd-bubbles .aiqdb-priceframe { color: var(--aiqd-ink-2); font-size: 12px; margin-top: 6px; width: 100%; }
.aiqd-bubbles .aiqdb-priceframe strong { color: var(--aiqd-ink); font-weight: 600; }
.aiqd-bubbles .aiqdb-dream-banner {
  background: color-mix(in srgb, var(--aiqd-dream) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--aiqd-dream) 45%, transparent);
  border-radius: var(--aiqd-r-chip); color: var(--aiqd-dream-text);
  font-size: 12px; font-weight: 500; margin-top: 8px; padding: 6px 10px; width: 100%;
}

.aiqd-bubbles .aiqdb-sr {
  border: 0; clip: rect(0 0 0 0); clip-path: inset(50%); height: 1px;
  margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;
  table-layout: fixed; /* width must bind: a hidden table must never widen the page */
}

/* ============================== FLAGS ============================== */
.aiqd-bubbles .aiqdb-flags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.aiqd-bubbles .aiqdb-flags:empty { display: none; }
.aiqd-bubbles .aiqdb-flag {
  align-items: center; white-space: nowrap; background: var(--aiqd-warn-bg); border: 1px solid var(--aiqd-warn-border);
  border-radius: 999px; color: var(--aiqd-warn-ink); display: inline-flex; font-size: 11px;
  font-weight: 500; gap: 5px; letter-spacing: 0.01em; padding: 3px 9px;
}
.aiqd-bubbles .aiqdb-flag::before { content: ""; background: currentColor; border-radius: 50%; height: 5px; width: 5px; }

/* ============================== CONTROLS ============================== */
.aiqd-bubbles .aiqdb-controls { border-top: 1px solid var(--aiqd-border); margin-top: 14px; padding-top: 14px; }
.aiqd-bubbles .aiqdb-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.aiqd-bubbles .aiqdb-chip {
  background: var(--aiqd-panel); border: 1px solid var(--aiqd-border); border-radius: 999px;
  color: var(--aiqd-ink-2); cursor: pointer; font: inherit; font-size: 12px; font-weight: 500;
  min-height: 30px; padding: 4px 12px; transition: background var(--aiqd-t-fast) var(--aiqd-ease),
  border-color var(--aiqd-t-fast) var(--aiqd-ease), color var(--aiqd-t-fast) var(--aiqd-ease);
}
.aiqd-bubbles .aiqdb-chip:hover { border-color: var(--aiqd-ink-3); color: var(--aiqd-ink); }
.aiqd-bubbles .aiqdb-chip[aria-pressed="true"] {
  background: var(--aiqd-value-tint); border-color: var(--aiqd-value); color: var(--aiqd-value-text); font-weight: 600;
}
.aiqd-bubbles .aiqdb-chip--implies { border-style: dashed; }
.aiqd-bubbles .aiqdb-chip--dream::before { content: "◆"; color: var(--aiqd-dream); font-size: 9px; margin-right: 5px; vertical-align: 1px; }
.aiqd-bubbles .aiqdb-chip--dream[aria-pressed="true"] {
  background: color-mix(in srgb, var(--aiqd-dream) 12%, transparent);
  border-color: var(--aiqd-dream); color: var(--aiqd-dream-text);
}
.aiqd-bubbles .aiqdb-implies-mobile { display: none; }
.aiqd-bubbles .aiqdb-believe { color: var(--aiqd-ink-2); font-size: 13px; margin: 10px 0 0; max-width: 64ch; }
.aiqd-bubbles .aiqdb-believe em { color: var(--aiqd-ink); font-style: normal; font-weight: 500; }
.aiqd-bubbles .aiqdb-believe:empty { display: none; }
.aiqd-bubbles .aiqdb-transient { color: var(--aiqd-ink-2); font-size: 12px; margin: 8px 0 0; max-width: 72ch; }
.aiqd-bubbles .aiqdb-transient:empty { display: none; }

.aiqd-bubbles .aiqdb-bar { align-items: center; border-top: 1px solid var(--aiqd-border); display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 12px; padding-top: 10px; }
.aiqd-bubbles .aiqdb-bar .aiqdb-scensel { flex: 1 1 auto; min-width: 0; }
.aiqd-bubbles .aiqdb-bar .aiqdb-chip { flex: 0 0 auto; }
.aiqd-bubbles .aiqdb-scensel {
  appearance: none; -webkit-appearance: none;
  background: var(--aiqd-panel) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%23888'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid var(--aiqd-border); border-radius: 999px; color: var(--aiqd-ink);
  cursor: pointer; font: inherit; font-size: 12px; font-weight: 500;
  max-width: 260px; min-height: 30px; padding: 4px 26px 4px 12px;
}
.aiqd-bubbles .aiqdb-scensel--mobileonly { display: none; }
.aiqd-bubbles .aiqdb-bar:has(.aiqdb-scensel--mobileonly) { display: none; }

/* window scrubber + mode toggle */
.aiqd-bubbles .aiqdb-yearbox { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; margin-top: 10px; }
.aiqd-bubbles .aiqdb-yearbox[hidden] { display: none; }
.aiqd-bubbles .aiqdb-mode { background: var(--aiqd-panel); border: 1px solid var(--aiqd-border); border-radius: var(--aiqd-r-chip); display: inline-flex; padding: 2px; }
.aiqd-bubbles .aiqdb-mode button {
  background: transparent; border: 0; border-radius: 6px; color: var(--aiqd-ink-2); cursor: pointer;
  font: inherit; font-size: 12px; min-height: 26px; padding: 2px 10px;
  transition: background var(--aiqd-t-fast) var(--aiqd-ease), color var(--aiqd-t-fast) var(--aiqd-ease);
}
.aiqd-bubbles .aiqdb-mode button:hover { color: var(--aiqd-ink); }
.aiqd-bubbles .aiqdb-mode button[aria-pressed="true"] { background: var(--aiqd-value-tint); color: var(--aiqd-value-text); font-weight: 600; }
.aiqd-bubbles .aiqdb-comparekey { color: var(--aiqd-ink-3); font-size: 11px; font-weight: 500; margin: 8px 0 0; }
.aiqd-bubbles .aiqdb-comparekey:empty { display: none; }
.aiqd-bubbles .aiqdb-winsel {
  appearance: none; -webkit-appearance: none;
  background: var(--aiqd-panel) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%23888'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid var(--aiqd-border); border-radius: 999px; color: var(--aiqd-ink);
  cursor: pointer; font: inherit; font-size: 12px; font-weight: 500;
  min-height: 30px; padding: 4px 26px 4px 12px;
}
.aiqd-bubbles .aiqdb-vs { color: var(--aiqd-ink-3); font-size: 11px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; }
.aiqd-bubbles .aiqdb-yearlabel { font-size: 12px; font-weight: 600; }
.aiqd-bubbles .aiqdb-yearbadge { white-space: nowrap; background: var(--aiqd-panel); border: 1px solid var(--aiqd-border); border-radius: 999px; color: var(--aiqd-ink-2); font-size: 10px; font-weight: 600; letter-spacing: 0.03em; padding: 2px 8px; text-transform: uppercase; }
.aiqd-bubbles .aiqdb-year { accent-color: var(--aiqd-value); width: 140px; }

/* ============================== CANVAS ============================== */
.aiqd-bubbles .aiqdb-canvas { margin-top: 8px; position: relative; }
.aiqd-bubbles .aiqdb-canvas svg { display: block; height: auto; width: 100%; }
.aiqd-bubbles svg text { paint-order: stroke; stroke: var(--aiqd-bg); stroke-width: 3px; stroke-linejoin: round; }
.aiqd-bubbles svg .bx-tick { fill: var(--aiqd-ink-3); font-size: 11px; }
.aiqd-bubbles svg .bx-axistitle { fill: var(--aiqd-ink-3); font-size: 11px; }
.aiqd-bubbles svg .bx-name { fill: var(--aiqd-ink); font-size: 11.5px; font-weight: 500; }
.aiqd-bubbles svg .bx-bubble-g { cursor: pointer; outline: none; }
.aiqd-bubbles svg .bx-bubble-g:focus-visible .bx-bubble { stroke-width: 3; }
.aiqd-bubbles svg .bx-bubble-g:hover .bx-bubble { fill-opacity: 0.42; }
.aiqd-bubbles svg .bx-bubble { transition: fill-opacity var(--aiqd-t-fast) var(--aiqd-ease); }

.aiqd-bubbles .aiqdb-canvas-scroll::-webkit-scrollbar { height: 6px; }
.aiqd-bubbles .aiqdb-canvas-scroll::-webkit-scrollbar-thumb { background: var(--aiqd-border); border-radius: 999px; }
.aiqd-bubbles .aiqdb-canvas-scroll::-webkit-scrollbar-track { background: transparent; }
.aiqd-bubbles .aiqdb-canvas-scroll { scrollbar-width: thin; scrollbar-color: var(--aiqd-border) transparent; }
.aiqd-bubbles .aiqdb-hint { color: var(--aiqd-ink-3); font-size: 11px; margin: 8px 0 4px; text-align: right; }
.aiqd-bubbles .aiqdb-notes { color: var(--aiqd-ink-2); font-size: 11px; font-style: italic; margin: 4px 0 0; }
.aiqd-bubbles .aiqdb-notes:empty { display: none; }
/* compact numbers list: the phone's replacement for on-canvas labels */
.aiqd-bubbles .aiqdb-list { display: none; }
.aiqd-bubbles .aiqdb-li { align-items: center; color: var(--aiqd-ink-2); display: inline-flex; font-size: 12px; gap: 6px; }
.aiqd-bubbles .aiqdb-dot { border-radius: 50%; display: inline-block; flex: none; height: 8px; width: 8px; }
.aiqd-bubbles .aiqdb-dot--base { background: transparent; border: 1px dashed currentColor; }
.aiqd-bubbles .aiqdb-list--compare { grid-template-columns: minmax(0, 1fr); }
.aiqd-bubbles .aiqdb-li--compare { align-items: flex-start; display: grid; gap: 2px 8px; grid-template-columns: minmax(72px, auto) minmax(0, 1fr); }
.aiqd-bubbles .aiqdb-li--compare .aiqdb-li-name { color: var(--aiqd-ink); font-weight: 600; grid-row: 1 / span 2; }
.aiqd-bubbles .aiqdb-li--compare .aiqdb-dot { margin-right: 6px; }

/* ============================== RESULT / FOOTER ============================== */
.aiqd-bubbles .aiqdb-result { display: none; }
.aiqd-bubbles .aiqdb-footnotes { border-top: 1px solid var(--aiqd-border); color: var(--aiqd-ink-2); font-size: 11px; margin-top: 12px; padding-top: 8px; }
.aiqd-bubbles .aiqdb-footnotes:empty { display: none; }
.aiqd-bubbles .aiqdb-footnotes p { margin: 2px 0; }
.aiqd-bubbles .aiqdb-stamps { color: var(--aiqd-ink-3); display: flex; flex-wrap: wrap; font-size: 11px; gap: 4px 14px; justify-content: space-between; margin-top: 6px; }

/* ============================== TOOLTIP ============================== */
.aiqd-bubbles .aiqdb-tip {
  background: var(--aiqd-tooltip-bg); border-radius: 8px; box-shadow: var(--aiqd-shadow-2);
  color: var(--aiqd-tooltip-ink); font-size: 12px; left: 0; line-height: 1.4; max-width: 320px;
  opacity: 0; padding: 8px 10px; pointer-events: none; position: absolute; top: 0;
  transition: opacity var(--aiqd-t-fast) var(--aiqd-ease); z-index: 30;
}
.aiqd-bubbles .aiqdb-tip.show { opacity: 1; }
.aiqd-bubbles .aiqdb-tip.pinned { pointer-events: auto; }
.aiqd-bubbles .aiqdb-tip-action {
  background: transparent; border: 1px solid currentColor; border-radius: var(--aiqd-r-chip); color: inherit;
  cursor: pointer; display: block; font: inherit; font-weight: 600; margin-top: 8px; min-height: 32px; padding: 5px 9px; width: 100%;
}
.aiqd-bubbles .aiqdb-tip .t-name { font-weight: 600; }
.aiqd-bubbles .aiqdb-tip .t-sub { opacity: 0.78; }
.aiqd-bubbles .aiqdb-tip .t-warn { opacity: 1; color: color-mix(in srgb, var(--aiqd-dream) 75%, var(--aiqd-tooltip-ink)); }

/* ============================== STATES ============================== */
.aiqd-bubbles .aiqdb-skeleton { display: grid; gap: 12px; }
.aiqd-bubbles .aiqdb-skeleton .sk { animation: aiqdb-shimmer 1.4s ease-in-out infinite; background: linear-gradient(90deg, var(--aiqd-panel) 25%, var(--aiqd-panel-2) 50%, var(--aiqd-panel) 75%); background-size: 200% 100%; border-radius: 8px; }
@keyframes aiqdb-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.aiqd-bubbles .aiqdb-error { border: 1px solid var(--aiqd-border); border-radius: var(--aiqd-r-card); padding: 20px; }
.aiqd-bubbles .aiqdb-error h3 { font-size: 14px; font-weight: 600; margin: 0 0 6px; }
.aiqd-bubbles .aiqdb-error p { color: var(--aiqd-ink-2); font-size: 13px; margin: 0 0 8px; }
.aiqd-bubbles .aiqdb-error code { background: var(--aiqd-panel); border-radius: 4px; color: var(--aiqd-ink-2); display: inline-block; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; padding: 2px 6px; }

.aiqd-bubbles .aiqdb-na { background: var(--aiqd-panel); border-radius: var(--aiqd-r-card); padding: 20px; }
.aiqd-bubbles .aiqdb-na h3 { font-size: 14px; font-weight: 600; margin: 0 0 6px; }
.aiqd-bubbles .aiqdb-na p { color: var(--aiqd-ink-2); font-size: 13px; margin: 0; max-width: 64ch; }

.aiqd-bubbles :focus-visible { outline: 2px solid var(--aiqd-value); outline-offset: 2px; }

/* ============================== RESPONSIVE ============================== */
@container (max-width: 480px) {
  .aiqd-bubbles { padding: 14px 14px 10px; }
  .aiqd-bubbles .aiqdb-vps { font-size: 19px; }
  .aiqd-bubbles .aiqdb-priceframe { display: none; }
  /* the plane renders whole at container width: no horizontal scroll, ever */
  .aiqd-bubbles .aiqdb-list { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-top: 8px; }
  .aiqd-bubbles .aiqdb-list--compare { display: grid; grid-template-columns: minmax(0, 1fr); width: 100%; }
  .aiqd-bubbles .aiqdb-chips { display: none; }
  .aiqd-bubbles .aiqdb-scensel--mobileonly { display: inline-block; }
  .aiqd-bubbles .aiqdb-bar:has(.aiqdb-scensel--mobileonly) { display: flex; }
  .aiqd-bubbles .aiqdb-implies-mobile { display: inline-block; }
  .aiqd-bubbles .aiqdb-yearbox { justify-content: flex-start; }
  .aiqd-bubbles .aiqdb-yearbox:has(.aiqdb-winsel:not([hidden])) { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); }
  .aiqd-bubbles .aiqdb-yearbox:has(.aiqdb-winsel:not([hidden])) .aiqdb-mode { grid-column: 1 / 3; }
  .aiqd-bubbles .aiqdb-yearbox:has(.aiqdb-winsel:not([hidden])) .aiqdb-yearbadge { grid-column: 3; justify-self: end; }
  .aiqd-bubbles .aiqdb-yearbox:has(.aiqdb-winsel:not([hidden])) .aiqdb-winsel { width: 100%; min-width: 0; }
  .aiqd-bubbles .aiqdb-mode button { min-height: 40px; }
  .aiqd-bubbles .aiqdb-winsel { min-height: 44px; }
  .aiqd-bubbles .aiqdb-result { display: block; background: var(--aiqd-panel); border: 1px solid var(--aiqd-border);
    border-radius: var(--aiqd-r-chip); color: var(--aiqd-ink); font-size: 13px; font-weight: 600;
    margin-top: 10px; padding: 8px 12px; }
  .aiqd-bubbles .aiqdb-chip { min-height: 44px; }
  .aiqd-bubbles .aiqdb-belief { border-bottom: 0; min-height: 44px; padding: 0 4px; }
  .aiqd-bubbles .aiqdb-belief::before { content: none; }
  .aiqd-bubbles .aiqdb-scensel { min-height: 44px; }
  .aiqd-bubbles .aiqdb-year { min-height: 44px; width: 120px; }
  .aiqd-bubbles .aiqdb-tip-action { min-height: 44px; }
}

/* ============================== REDUCED MOTION ============================== */
@media (prefers-reduced-motion: reduce) {
  .aiqd-bubbles *, .aiqd-bubbles *::before, .aiqd-bubbles *::after { animation: none !important; transition: none !important; }
}
