@charset "UTF-8";
/**
 * VoxDiff Comparison UI — FUR Template (Frontend UI Redesign)
 * Aesthetic: precision scientific instrument — dark chrome, monospaced metrics
 * Typography: DM Mono (data) + Fraunces (display)
 * Mobile-first, pure-css grid
 */
/* FUR Template CSS partials */
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
/**
 * VoxDiff Admin Mixins Library
 * Reusable patterns for consistency across all admin interfaces
 */
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-pop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes vxd-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes vxd-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes vxd-fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes vxd-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
/**
 * VoxDiff Admin Mixins Library
 * Reusable patterns for consistency across all admin interfaces
 */
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-pop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes vxd-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes vxd-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes vxd-fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes vxd-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/**
 * Status Bar Component
 *
 * Renders ProcessState steps as an animated timeline of pill-shaped segments.
 * Each step is color-coded by status (pending, active, done, failed).
 * Steps animate in with stagger timing to suggest real work in progress.
 */
.vxd-status-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: hsl(0, 0%, 16%);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.04);
  min-height: 33.71875px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  /* Scrollbar styling — subtle track */
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.08) transparent;
}
.vxd-status-bar::-webkit-scrollbar {
  height: 4px;
}
.vxd-status-bar::-webkit-scrollbar-track {
  background: transparent;
}
.vxd-status-bar::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 100%, 0.08);
  border-radius: 2px;
}
.vxd-status-bar::-webkit-scrollbar-thumb:hover {
  background: hsla(0, 0%, 100%, 0.15);
}
.vxd-status-bar {
  /* Hide status bar in reduced motion contexts */
}
@media (prefers-reduced-motion: reduce) {
  .vxd-status-bar .vxd-status-step {
    animation: none !important;
  }
}

/* ── Step Pills ─────────────────────────────────────────────────────────── */
.vxd-status-step {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12.4444444444px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: default;
  user-select: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
  /* Base state: pending (muted, in queue) */
  background: rgba(183.6, 183.6, 183.6, 0.12);
  color: hsl(0, 0%, 54%);
  border: 1px solid hsla(0, 0%, 100%, 0.04);
  /* Animation: staggered entry with spring easing */
  animation: vxd-status-slide-in 320ms cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  /* Status modifiers */
}
.vxd-status-step[data-status=active] {
  background: rgba(77.673, 158.1, 238.527, 0.2);
  color: hsl(227, 88%, 66%);
  border-color: hsl(227, 88%, 66%);
  box-shadow: 0 0 8px rgba(77.673, 158.1, 238.527, 0.2);
  animation: vxd-status-pulse 1s ease-in-out infinite;
}
.vxd-status-step[data-status=done] {
  background: rgba(77.673, 238.527, 128.6101, 0.15);
  color: hsl(139, 83%, 62%);
  border-color: hsl(139, 83%, 62%);
}
.vxd-status-step[data-status=failed] {
  background: rgba(238.527, 77.673, 77.673, 0.15);
  color: hsl(0, 83%, 62%);
  border-color: hsl(0, 83%, 62%);
}
.vxd-status-step[data-status=cancelled] {
  background: rgba(153, 153, 153, 0.1);
  color: hsl(0, 0%, 54%);
  border-color: hsla(0, 0%, 100%, 0.08);
  opacity: 0.6;
}
.vxd-status-step {
  /* Indicator dot for active steps */
}
.vxd-status-step[data-status=active]::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(227, 88%, 66%);
  animation: vxd-status-pulse-dot 1.5s ease-in-out infinite;
}
.vxd-status-step {
  /* Checkmark for completed steps */
}
.vxd-status-step[data-status=done]::before {
  content: "✓";
  display: inline-block;
  font-size: 11.0617283951px;
  font-weight: bold;
  margin-right: -2px;
}
.vxd-status-step {
  /* Indicator for failed steps */
}
.vxd-status-step[data-status=failed]::before {
  content: "✕";
  display: inline-block;
  font-size: 11.0617283951px;
  font-weight: bold;
  margin-right: -2px;
}
.vxd-status-step {
  /* Truncate long labels on mobile */
}
.vxd-status-step .vxd-status-step-label {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .vxd-status-step .vxd-status-step-label {
    max-width: 180px;
  }
}
@media (min-width: 1200px) {
  .vxd-status-step .vxd-status-step-label {
    max-width: 240px;
  }
}
.vxd-status-step {
  /* Optional: brief lane ID marker for per-lane steps */
}
.vxd-status-step .vxd-status-step-lane {
  font-size: 11.0617283951px;
  opacity: 0.75;
  display: none;
}
@media (min-width: 768px) {
  .vxd-status-step .vxd-status-step-lane {
    display: inline;
  }
}
.vxd-status-step .vxd-status-step-lane::before {
  content: " · ";
}

/* ── Empty State ────────────────────────────────────────────────────────── */
.vxd-status-empty {
  color: hsl(0, 0%, 54%);
  font-size: 12.4444444444px;
  padding: 4px 8px;
}

/* ── Animations ─────────────────────────────────────────────────────────── */
@keyframes vxd-status-slide-in {
  from {
    opacity: 0;
    transform: translateX(-12px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes vxd-status-pulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(77.673, 158.1, 238.527, 0.2);
  }
  50% {
    box-shadow: 0 0 12px rgba(77.673, 158.1, 238.527, 0.35);
  }
}
@keyframes vxd-status-pulse-dot {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}
/* ── Phase Indicators (optional: header styling per phase) ─────────────── */
.vxd-status-bar[data-phase=creating],
.vxd-status-bar[data-phase=streaming],
.vxd-status-bar[data-phase=saving],
.vxd-status-bar[data-phase=judging],
.vxd-status-bar[data-phase=backfilling] {
  border-bottom-color: hsla(0, 0%, 100%, 0.15);
}

.vxd-status-bar[data-phase=error] {
  border-bottom-color: rgba(238.527, 77.673, 77.673, 0.3);
  background: rgba(238.527, 77.673, 77.673, 0.05);
}

/* ── Accessibility ──────────────────────────────────────────────────────── */
.vxd-status-bar-aria {
  /* Hidden but available to screen readers */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@keyframes vxd-portrait-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes vxd-lane-card-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vxd-comparison {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 14px;
  color: hsl(225, 27%, 95%);
  background: hsl(220, 22%, 4%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  border-radius: 0;
  overflow-y: scroll;
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 1fr;
}

/*
 * Mobile (default): single column stack
 *   row 1 = topbar
 *   row 2 = status-bar
 *   row 3 = lanes-wrap (config + lanes, scrolls internally)
 *           — info-wrap follows lanes-wrap in the scroll, but on mobile
 *             it's below the fold; user scrolls to it
 *   row 4 = input-bar
 *
 * The info-wrap sits in the normal flow after lanes-wrap on mobile.
 */
/* ── Wide landscape: lanes left, info right ───────────────────── */
@media (min-width: 1200px) and (orientation: landscape) {
  .vxd-comparison {
    /* 3 columns: lanes | handle | info — handle is 5px, panels split via custom property */
    grid-template-columns: var(--vxd-left-w, 1fr) 5px var(--vxd-right-w, 1fr);
    grid-template-rows: auto auto 1fr auto;
    overflow-y: hidden;
  }
  /* Topbar spans all columns */
  .vxd-topbar {
    grid-column: 1/-1;
    grid-row: 1;
  }
  /* Status bar spans all columns */
  .vxd-status-bar {
    grid-column: 1/-1;
    grid-row: 2;
  }
  /* Left column: lanes-wrap (config + lane responses) */
  .vxd-lanes-wrap {
    grid-column: 1;
    grid-row: 3;
    overflow-y: auto;
    min-height: 0;
  }
  /* Center: drag handle */
  .vxd-split-handle {
    grid-column: 2;
    grid-row: 3;
    z-index: 90;
  }
  /* Right column: info-wrap (analysis + findings + phase-space + timeline) */
  .vxd-info-wrap {
    grid-column: 3;
    grid-row: 3;
    overflow-y: auto;
    min-height: 0;
    min-width: 0;
  }
  /* Input bar spans all columns, pinned to bottom */
  .vxd-input-bar {
    grid-column: 1/-1;
    grid-row: 4;
    min-width: 0;
    position: sticky;
    bottom: 0;
    z-index: 20;
    background: hsl(220, 21%, 7%);
    border-top: 1px solid hsla(0, 0%, 100%, 0.13);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.4);
  }
}
.vxd-comparison.is-readonly .vxd-input-bar,
.vxd-comparison.is-readonly .vxd-config-bar,
.vxd-comparison.is-readonly .vxd-mobile-nav {
  display: none !important;
}

.vxd-comparison * {
  box-sizing: border-box;
}

.vxd-prompt-display {
  max-height: 4em;
}

.vxd-topbar {
  grid-row: 1;
}

.vxd-status-bar {
  grid-row: 2;
}

.vxd-lanes-wrap {
  grid-row: 3;
}

.vxd-info-wrap {
  grid-row: 3;
}

.vxd-input-bar {
  grid-row: 4;
}

.vxd-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
  box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.07), 0 1px 0 rgba(0, 0, 0, 0.4);
  background: hsl(220, 21%, 7%);
  position: relative;
  z-index: 10;
  min-height: 40px;
}

@media (min-width: 600px) {
  .vxd-topbar {
    padding: 8px 20px;
  }
}
.vxd-topbar-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.vxd-wordmark {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 17.71875px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
  color: hsl(225, 27%, 95%);
  line-height: 1;
  white-space: nowrap;
}

.vxd-wordmark span {
  color: hsl(163, 83%, 62%);
}

.vxd-topbar-meta {
  font-size: 12.4444444444px;
  color: hsl(213, 19%, 29%);
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 480px) {
  .vxd-topbar-meta {
    display: none;
  }
}
.vxd-topbar-meta .vxd-badge {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vxd-prompt-display {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
}

.vxd-prompt-display-label {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 11.0617283951px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(163, 83%, 62%);
  opacity: 0.7;
  flex-shrink: 0;
  padding: 2px 5px;
  border: 1px solid rgba(61, 232, 184, 0.25);
  border-radius: 2px;
  line-height: 1.4;
}

.vxd-prompt-display-text {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 12.4444444444px;
  color: hsl(216, 19%, 82%);
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
  line-height: 1.4;
  mask-image: linear-gradient(to right, hsl(225, 27%, 95%) 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, hsl(225, 27%, 95%) 85%, transparent 100%);
}

.vxd-config-bar {
  padding: 24px 24px 16px;
  background: hsl(220, 21%, 7%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
}

@media (min-width: 600px) {
  .vxd-config-bar {
    padding: 24px 24px 16px;
    gap: 20px;
  }
}
.vxd-prompt-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vxd-prompt-label {
  font-size: 12.4444444444px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(216, 19%, 82%);
}

.vxd-prompt-input {
  background: hsl(217, 22%, 11%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  color: hsl(225, 27%, 95%);
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  transition: border-color 150ms cubic-bezier(0.4, 0, 1, 1);
  width: 100%;
  resize: vertical;
  min-height: 72px;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 12px;
}

.vxd-prompt-input:focus {
  outline: none;
  border-color: hsl(163, 83%, 62%);
  box-shadow: 0 0 0 3px rgba(61, 232, 184, 0.1);
}

.vxd-prompt-input::placeholder {
  color: hsl(213, 12%, 52%);
  opacity: 0.5;
}

.vxd-lane-configs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 480px) {
  .vxd-lane-configs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .vxd-lane-configs {
    grid-template-columns: repeat(4, 1fr);
  }
}
.vxd-lanes .vxd-lane:nth-child(1) {
  animation: vxd-lane-card-in 280ms 0ms cubic-bezier(0, 0, 0.2, 1) both;
}

.vxd-lanes .vxd-lane:nth-child(2) {
  animation: vxd-lane-card-in 280ms 50ms cubic-bezier(0, 0, 0.2, 1) both;
}

.vxd-lanes .vxd-lane:nth-child(3) {
  animation: vxd-lane-card-in 280ms 100ms cubic-bezier(0, 0, 0.2, 1) both;
}

.vxd-lanes .vxd-lane:nth-child(4) {
  animation: vxd-lane-card-in 280ms 150ms cubic-bezier(0, 0, 0.2, 1) both;
}

.vxd-lanes .vxd-lane:nth-child(5) {
  animation: vxd-lane-card-in 280ms 200ms cubic-bezier(0, 0, 0.2, 1) both;
}

.vxd-lanes .vxd-lane:nth-child(6) {
  animation: vxd-lane-card-in 280ms 250ms cubic-bezier(0, 0, 0.2, 1) both;
}

.vxd-lane-config-panel {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vxd-lane-config-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vxd-lane-config-label {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 12.4444444444px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lane-color, hsl(213, 12%, 52%));
  opacity: 0.9;
  font-weight: 600;
}

.vxd-lane-label-input {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  color: hsl(225, 27%, 95%);
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  transition: border-color 150ms cubic-bezier(0.4, 0, 1, 1), box-shadow 150ms cubic-bezier(0.4, 0, 1, 1);
  font-size: 11.0617283951px;
  padding: 5px 8px;
  width: 100%;
}

.vxd-lane-label-input:focus {
  outline: none;
  border-color: var(--lane-color, hsl(163, 83%, 62%));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--lane-color, hsl(163, 83%, 62%)) 15%, transparent);
}

.vxd-lane-label-input::placeholder {
  color: hsl(213, 12%, 52%);
  opacity: 0.35;
  font-style: italic;
}

.vxd-lane-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.vxd-lane-config-panel .vxd-color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 100ms ease, border-color 100ms ease, box-shadow 100ms ease;
  flex-shrink: 0;
}
.vxd-lane-config-panel .vxd-color-swatch:hover, .vxd-lane-config-panel .vxd-color-swatch:focus-visible {
  transform: scale(1.25);
  outline: none;
}
.vxd-lane-config-panel .vxd-color-swatch.vxd-swatch--active {
  border-color: rgba(255, 255, 255, 0.85);
  transform: scale(1.15);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.vxd-color-custom-wrap {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.vxd-color-custom-wrap .vxd-color-swatch--custom {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: conic-gradient(hsl(0, 70%, 55%), hsl(60, 70%, 55%), hsl(120, 70%, 55%), hsl(180, 70%, 55%), hsl(240, 70%, 55%), hsl(300, 70%, 55%), hsl(0, 70%, 55%));
  border: 2px solid transparent;
  transition: transform 100ms ease, border-color 100ms ease;
}
.vxd-color-custom-wrap .vxd-color-swatch--custom:hover {
  transform: scale(1.25);
}
.vxd-color-custom-wrap .vxd-color-swatch--custom.vxd-swatch--active {
  border-color: rgba(255, 255, 255, 0.85);
  transform: scale(1.15);
}
.vxd-color-custom-wrap input[type=color] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.vxd-lane-selectors {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vxd-selector-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vxd-selector-label {
  font-size: 11.0617283951px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(213, 12%, 52%);
  font-weight: 500;
}

.vxd-lane-config-panel .vxd-selector-label {
  color: var(--lane-color, hsl(213, 12%, 52%));
  opacity: 0.75;
  font-weight: 600;
}

.vxd-lane-config-panel .vxd-model-group {
  margin-bottom: 4px;
}

.vxd-lane-config-panel .vxd-model-group-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 4px 0 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 4px;
  gap: 4px;
  transition: opacity 100ms ease;
  font-size: 125%;
}
.vxd-lane-config-panel .vxd-model-group-toggle:hover {
  opacity: 0.85;
}
.vxd-lane-config-panel .vxd-model-group-toggle .vxd-model-group-label {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(213, 12%, 72%);
  border-bottom: none;
  padding-bottom: 0;
  flex: 1;
}
.vxd-lane-config-panel .vxd-model-group-toggle .vxd-model-group-count {
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.07);
  padding: 1px 5px;
  border-radius: 8px;
  color: hsl(213, 12%, 52%);
  margin-left: 0;
  padding-left: 5px;
}
.vxd-lane-config-panel .vxd-model-group-toggle .vxd-model-group-arrow {
  font-size: 1rem;
  color: hsl(240, 69%, 59%);
  transform: rotate(-90deg);
}

.vxd-lane-config-panel .vxd-model-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  width: 100%;
}

.vxd-lane-config-panel .vxd-model-group-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0 1.5rem;
  flex-direction: column;
}
.vxd-lane-config-panel .vxd-model-group-btns[hidden] {
  display: none;
}

.vxd-select-wrap {
  position: relative;
}

.vxd-select-wrap::after {
  content: "▾";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(213, 12%, 52%);
  font-size: 11.0617283951px;
  pointer-events: none;
}

.vxd-select-wrap select {
  background: hsl(217, 22%, 11%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  color: hsl(225, 27%, 95%);
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  transition: border-color 150ms cubic-bezier(0.4, 0, 1, 1);
  -webkit-appearance: none;
  appearance: none;
  font-size: 12.4444444444px;
  padding: 6px 28px 6px 8px;
  width: 100%;
}

.vxd-select-wrap select:focus {
  outline: none;
  border-color: hsl(163, 83%, 62%);
  box-shadow: 0 0 0 3px rgba(61, 232, 184, 0.1);
}

.vxd-select-wrap select::placeholder {
  color: hsl(213, 12%, 52%);
}

.vxd-lane-config-panel input[type=text] {
  background: hsl(217, 22%, 11%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  color: hsl(225, 27%, 95%);
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  transition: border-color 150ms cubic-bezier(0.4, 0, 1, 1);
  width: 100%;
  font-size: 12.4444444444px;
  padding: 6px 8px;
}

.vxd-lane-config-panel input[type=text]:focus {
  outline: none;
  border-color: hsl(163, 83%, 62%);
  box-shadow: 0 0 0 3px rgba(61, 232, 184, 0.1);
}

.vxd-lane-config-panel input[type=text]::placeholder {
  color: hsl(213, 12%, 52%);
}

.vxd-advanced-toggle {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 12.4444444444px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(213, 12%, 52%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: color 150ms cubic-bezier(0.4, 0, 1, 1);
}

.vxd-advanced-toggle:hover {
  color: hsl(216, 19%, 82%);
}

.vxd-advanced-toggle[aria-expanded=true] {
  color: hsl(163, 83%, 62%);
}

.vxd-advanced-toggle[aria-expanded=true] .vxd-advanced-toggle-icon {
  transform: rotate(90deg);
}

.vxd-advanced-toggle .vxd-advanced-toggle-icon {
  display: inline-block;
  transition: transform 150ms cubic-bezier(0.4, 0, 1, 1);
  font-style: normal;
}

.vxd-advanced-panel {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
  max-height: 0;
  transition: max-height 380ms cubic-bezier(0.4, 0, 0.2, 1), opacity 280ms ease;
  opacity: 0;
}

.vxd-advanced-panel.is-open {
  max-height: 900px;
  opacity: 1;
}

.vxd-advanced-inner {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vxd-param-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: hsla(0, 0%, 100%, 0.13);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
}

@media (min-width: 480px) {
  .vxd-param-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.vxd-param-grid--duo {
  grid-template-columns: 1fr;
}

@media (min-width: 360px) {
  .vxd-param-grid--duo {
    grid-template-columns: 1fr 1fr;
  }
}
.vxd-param-grid--duo .vxd-param:nth-child(1) .vxd-param-value {
  color: hsl(163, 83%, 62%);
  text-shadow: 0 0 8px rgba(74, 240, 196, 0.35);
}

.vxd-param-grid--duo .vxd-param:nth-child(2) .vxd-param-value {
  color: #f0c44a;
  text-shadow: 0 0 8px rgba(240, 196, 74, 0.35);
}

.vxd-param-grid--duo .vxd-param:nth-child(1) .vxd-slider {
  background: linear-gradient(to right, hsl(163, 83%, 62%) var(--pct, 0%), #1e2530 var(--pct, 0%));
}

.vxd-param-grid--duo .vxd-param:nth-child(1) .vxd-slider::-webkit-slider-thumb {
  background: hsl(163, 83%, 62%);
  box-shadow: 0 0 0 2px hsl(220, 22%, 4%), 0 0 0 3px hsl(163, 83%, 62%), 0 0 6px rgba(74, 240, 196, 0.5);
}

.vxd-param-grid--duo .vxd-param:nth-child(2) .vxd-slider {
  background: linear-gradient(to right, #f0c44a var(--pct, 0%), #1e2530 var(--pct, 0%));
}

.vxd-param-grid--duo .vxd-param:nth-child(2) .vxd-slider::-webkit-slider-thumb {
  background: #f0c44a;
  box-shadow: 0 0 0 2px hsl(220, 22%, 4%), 0 0 0 3px #f0c44a, 0 0 6px rgba(240, 196, 74, 0.5);
}

.vxd-param {
  background: hsl(217, 22%, 11%);
  padding: 10px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 150ms cubic-bezier(0.4, 0, 1, 1);
}

.vxd-param:hover {
  background: #1e2530;
}

.vxd-param-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.vxd-param-name {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 11.0617283951px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(216, 19%, 82%);
  white-space: nowrap;
}

.vxd-param-value {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 14px;
  font-weight: 500;
  color: hsl(163, 83%, 62%);
  letter-spacing: 0.04em;
  min-width: 3.5ch;
  text-align: right;
  text-shadow: 0 0 8px rgba(74, 240, 196, 0.35);
  transition: color 150ms cubic-bezier(0.4, 0, 1, 1), text-shadow 150ms cubic-bezier(0.4, 0, 1, 1);
}

.vxd-param-desc {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 11.0617283951px;
  letter-spacing: 0.05em;
  color: hsl(213, 12%, 52%);
  opacity: 0.55;
  line-height: 1.3;
}

.vxd-param-desc--scoped {
  opacity: 0.45;
  color: hsl(33, 83%, 62%);
}

.vxd-param-desc--inline {
  display: inline;
  margin-left: 8px;
  text-transform: none;
  letter-spacing: 0.03em;
}

.vxd-slider-wrap {
  position: relative;
  margin-top: 4px;
}

.vxd-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(to right, hsl(163, 83%, 62%) var(--pct, 0%), #1e2530 var(--pct, 0%));
}

.vxd-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: hsl(163, 83%, 62%);
  cursor: pointer;
  box-shadow: 0 0 0 2px hsl(220, 22%, 4%), 0 0 0 3px hsl(163, 83%, 62%), 0 0 6px rgba(74, 240, 196, 0.5);
  transition: box-shadow 150ms cubic-bezier(0.4, 0, 1, 1);
}

.vxd-slider:hover::-webkit-slider-thumb, .vxd-slider:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 2px hsl(220, 22%, 4%), 0 0 0 3px hsl(163, 83%, 62%), 0 0 12px rgba(74, 240, 196, 0.7);
}

.vxd-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: hsl(163, 83%, 62%);
  cursor: pointer;
  border: 2px solid hsl(220, 22%, 4%);
  box-shadow: 0 0 6px rgba(74, 240, 196, 0.5);
}

.vxd-slider::-moz-range-progress {
  background: hsl(163, 83%, 62%);
  height: 2px;
  border-radius: 1px;
}

.vxd-param-rail-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
}

.vxd-param-rail-labels span {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  color: hsl(213, 12%, 52%);
  opacity: 0.35;
}

.vxd-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vxd-system-prompt-field textarea {
  background: hsl(217, 22%, 11%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  color: hsl(225, 27%, 95%);
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  transition: border-color 150ms cubic-bezier(0.4, 0, 1, 1);
  width: 100%;
  font-size: 12.4444444444px;
  padding: 8px 10px;
  resize: vertical;
  min-height: 56px;
  line-height: 1.5;
}

.vxd-system-prompt-field textarea:focus {
  outline: none;
  border-color: hsl(163, 83%, 62%);
  box-shadow: 0 0 0 3px rgba(61, 232, 184, 0.1);
}

.vxd-system-prompt-field textarea::placeholder {
  color: hsl(213, 12%, 52%);
}

.vxd-config-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 360px) {
  .vxd-config-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.vxd-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: none;
  border-radius: 4px;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 12.4444444444px;
  font-weight: 500;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 1, 1);
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.vxd-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.vxd-btn-primary {
  background: hsl(163, 83%, 62%);
  color: hsl(220, 22%, 4%);
}

.vxd-btn-primary:hover:not(:disabled) {
  background: rgb(106.5944700461, 237.4055299539, 200.6866359447);
  box-shadow: 0 0 20px rgba(74, 240, 196, 0.3);
}

.vxd-start-btn {
  box-shadow: 0 0 16px rgba(74, 240, 196, 0.12), 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12.4444444444px;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  padding: 10px 24px;
  animation: vxd-start-pulse 3s ease-in-out infinite;
}

.vxd-start-btn:hover:not(:disabled) {
  box-shadow: 0 0 32px rgba(74, 240, 196, 0.3), 0 4px 16px rgba(0, 0, 0, 0.4);
  animation: none;
  transform: translateY(-2px);
}

.vxd-start-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 0 16px rgba(74, 240, 196, 0.2);
}

@keyframes vxd-start-pulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(74, 240, 196, 0.1), 0 2px 8px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 24px rgba(74, 240, 196, 0.22), 0 2px 8px rgba(0, 0, 0, 0.4);
  }
}
.vxd-btn-ghost {
  background: transparent;
  color: hsl(216, 19%, 82%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
}

.vxd-btn-ghost:hover:not(:disabled) {
  border-color: hsla(0, 0%, 100%, 0.26);
  color: hsl(225, 27%, 95%);
}

.vxd-btn-warn {
  background: rgba(240, 168, 74, 0.1);
  color: hsl(33, 83%, 62%);
  border: 1px solid rgba(240, 168, 74, 0.2);
}

.vxd-btn-warn:hover:not(:disabled) {
  background: rgba(240, 168, 74, 0.2);
}

.vxd-lane-count-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

@media (max-width: 480px) {
  .vxd-lane-count-controls {
    margin-left: 0;
    justify-content: space-between;
  }
}
.vxd-lane-count-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(217, 22%, 11%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  color: hsl(216, 19%, 82%);
  font-size: 17.71875px;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 1, 1);
  line-height: 1;
  padding: 0;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
}

.vxd-lane-count-btn:hover:not(:disabled) {
  border-color: hsl(163, 83%, 62%);
  color: hsl(163, 83%, 62%);
}

.vxd-lane-count-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.vxd-lane-count-label {
  font-size: 12.4444444444px;
  color: hsl(213, 12%, 52%);
  min-width: 52px;
  text-align: center;
}

.vxd-session-stats {
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 8;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
}

.vxd-session-stats .vxd-stats-strip {
  width: 100%;
}

.vxd-session-stats .vxd-sbar-value {
  font-size: 12.4444444444px;
}

.vxd-energy-info-icon {
  cursor: help;
  opacity: 0.5;
  font-style: normal;
  font-size: 12.4444444444px;
}

.vxd-lanes-wrap {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}

.vxd-info-wrap {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.vxd-info-wrap #comparison-container {
  flex: 1 1 0;
  min-height: 0;
}

/* ── Lane-row drag handle (radar ↔ body boundary) ─────────────── */
.vxd-lane-row-handle {
  position: absolute;
  height: 5px;
  cursor: row-resize;
  background: hsla(0, 0%, 100%, 0.13);
  z-index: 20;
  transition: background 150ms cubic-bezier(0.4, 0, 1, 1);
}
.vxd-lane-row-handle::before {
  content: "";
  position: absolute;
  inset: -4px 0;
}
.vxd-lane-row-handle::after {
  content: "⸽";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  color: hsl(213, 12%, 52%);
  font-size: 14px;
  pointer-events: none;
  line-height: 1;
}
.vxd-lane-row-handle:hover, .vxd-lane-row-handle:focus-visible, .vxd-lane-row-handle.is-dragging {
  background: hsl(163, 83%, 62%);
  box-shadow: 0 0 8px rgba(74, 240, 196, 0.3);
  outline: none;
}

/* ── Split handle (desktop only) ──────────────────────────────────── */
.vxd-split-handle {
  display: none; /* hidden on mobile */
  /* Vertical handle: between lanes and info panels (left/right drag) */
}
.vxd-split-handle[aria-orientation=vertical] {
  display: none;
}
@media (min-width: 1200px) and (orientation: landscape) {
  .vxd-split-handle[aria-orientation=vertical] {
    display: block;
    grid-column: 2;
    grid-row: 3;
    width: 5px;
    cursor: col-resize;
    background: hsla(0, 0%, 100%, 0.13);
    position: relative;
    z-index: 15;
    transition: background 150ms cubic-bezier(0.4, 0, 1, 1);
  }
  .vxd-split-handle[aria-orientation=vertical]::before {
    content: "";
    position: absolute;
    inset: 0 -4px; /* expand hit area */
  }
  .vxd-split-handle[aria-orientation=vertical]:hover, .vxd-split-handle[aria-orientation=vertical]:active, .vxd-split-handle[aria-orientation=vertical].is-dragging {
    background: hsl(163, 83%, 62%);
    box-shadow: 0 0 8px rgba(74, 240, 196, 0.3);
  }
  .vxd-split-handle[aria-orientation=vertical] {
    /* Grip dots */
  }
  .vxd-split-handle[aria-orientation=vertical]::after {
    content: "⸽";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: hsl(213, 12%, 52%);
    font-size: 14px;
    letter-spacing: 2px;
    pointer-events: none;
  }
}
.vxd-split-handle {
  /* Horizontal handle: between findings and viz rows (top/bottom drag) */
}
.vxd-split-handle[aria-orientation=horizontal] {
  display: none;
}
@media (min-width: 1200px) and (orientation: landscape) {
  .vxd-split-handle[aria-orientation=horizontal] {
    display: block;
    height: 5px;
    cursor: row-resize;
    background: hsla(0, 0%, 100%, 0.13);
    position: relative;
    z-index: 15;
    transition: background 150ms cubic-bezier(0.4, 0, 1, 1);
    margin: 0;
  }
  .vxd-split-handle[aria-orientation=horizontal]::before {
    content: "";
    position: absolute;
    inset: -4px 0; /* expand hit area vertically */
  }
  .vxd-split-handle[aria-orientation=horizontal]:hover, .vxd-split-handle[aria-orientation=horizontal]:active, .vxd-split-handle[aria-orientation=horizontal].is-dragging {
    background: hsl(163, 83%, 62%);
    box-shadow: 0 0 8px rgba(74, 240, 196, 0.3);
  }
  .vxd-split-handle[aria-orientation=horizontal] {
    /* Grip dots */
  }
  .vxd-split-handle[aria-orientation=horizontal]::after {
    content: "⸽";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: hsl(213, 12%, 52%);
    font-size: 14px;
    letter-spacing: 2px;
    pointer-events: none;
  }
}

/* ── When session is running, hide config bar chrome ── */
.vxd-comparison[data-state=running] .vxd-config-bar {
  padding: 0;
  gap: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}
.vxd-comparison[data-state=running] .vxd-config-bar .vxd-prompt-block,
.vxd-comparison[data-state=running] .vxd-config-bar > div:has(.vxd-advanced-toggle),
.vxd-comparison[data-state=running] .vxd-config-bar .vxd-config-actions {
  display: none;
}
.vxd-comparison[data-state=running] .vxd-config-bar .vxd-lane-configs {
  display: none;
}

.vxd-lane-running-head {
  border-top: 3px solid var(--lane-color, hsla(0, 0%, 100%, 0.13));
  background: color-mix(in srgb, var(--lane-color, hsl(220, 21%, 7%)) 8%, hsl(220, 21%, 7%));
  flex-shrink: 0;
  order: 2;
  z-index: 3;
  display: flex;
  flex-direction: column;
  position: relative;
}

.vxd-lane-running-head .vxd-lane-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 4px 12px;
  min-width: 0;
}

.vxd-lane-running-head .vxd-lane-label {
  font-size: 12.4444444444px;
  font-weight: 600;
  color: hsl(225, 27%, 95%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.vxd-lane-running-head .vxd-lane-model {
  font-size: 12.4444444444px;
  color: hsl(213, 12%, 52%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.vxd-lane-running-head .vxd-lane-color-btn {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 0;
  background: var(--lane-color, hsl(213, 12%, 52%));
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease;
}
.vxd-lane-running-head .vxd-lane-color-btn:hover, .vxd-lane-running-head .vxd-lane-color-btn:focus-visible {
  transform: scale(1.35);
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
}

.vxd-lane-color-picker {
  display: flex;
  gap: 6px;
  padding: 8px;
  background: hsl(220, 21%, 7%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 2px 6px rgba(0, 0, 0, 0.35);
}
.vxd-lane-color-picker .vxd-color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 100ms ease, border-color 100ms ease;
}
.vxd-lane-color-picker .vxd-color-swatch:hover, .vxd-lane-color-picker .vxd-color-swatch:focus-visible {
  transform: scale(1.2);
  outline: none;
}
.vxd-lane-color-picker .vxd-color-swatch.is-active {
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.15);
}


/**
 * VoxDiff FUR Menu & Header Styling
 * Tight one-liner header: centered branding, right-aligned search + nav
 * Mechanical, efficient aesthetic matching lanes.scss precision
 */
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
/**
 * VoxDiff Admin Mixins Library
 * Reusable patterns for consistency across all admin interfaces
 */
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-pop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes vxd-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes vxd-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes vxd-fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes vxd-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
header[role=banner] {
  position: relative;
  z-index: 100;
  background: hsl(220, 21%, 7%);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
  box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.07), 0 2px 8px rgba(0, 0, 0, 0.55);
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  transition: background 150ms cubic-bezier(0.4, 0, 1, 1);
}
@media (max-width: 768px) {
  header[role=banner] {
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    gap: 4px;
  }
}

#branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  gap: 2px;
  text-align: center;
}
@media (max-width: 768px) {
  #branding {
    padding: 4px 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
    margin-bottom: 4px;
  }
}

#site-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
}
#site-title h1 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
  color: hsl(216, 19%, 82%);
}
#site-title a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: opacity 150ms cubic-bezier(0.4, 0, 1, 1);
}
#site-title a:hover {
  opacity: 0.8;
}
#site-title a:focus {
  outline: 2px solid hsl(163, 83%, 62%);
  outline-offset: 2px;
  border-radius: 4px;
}
#site-title [itemprop=name] {
  color: hsl(216, 19%, 82%);
}

#site-description {
  font-size: 11.0617283951px;
  color: hsl(213, 12%, 52%);
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
  padding: 0;
}

nav[role=navigation] {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  nav[role=navigation] {
    width: 100%;
    flex-direction: row;
    gap: 4px;
  }
}

.menu-the-one-true-menu-container {
  flex: 1;
  min-width: 0;
}

#menu-the-one-true-menu,
.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
#menu-the-one-true-menu ol, #menu-the-one-true-menu ul,
.menu ol,
.menu ul {
  display: flex;
  flex-direction: row;
  align-content: space-evenly;
  align-items: center;
}
#menu-the-one-true-menu ol li, #menu-the-one-true-menu ul li,
.menu ol li,
.menu ul li {
  padding: 3pt;
  font-family: monospace;
}
@media (max-width: 768px) {
  #menu-the-one-true-menu,
  .menu {
    flex: 0;
    order: 2;
  }
}

.menu-item {
  position: relative;
  margin: 0;
  padding: 0;
}
.menu-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background: hsla(0, 0%, 100%, 0.13);
}
.menu-item a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  color: hsl(216, 19%, 82%);
  text-decoration: none;
  font-size: 11.0617283951px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  border-radius: 4px;
  transition: all 150ms cubic-bezier(0.4, 0, 1, 1);
  white-space: nowrap;
}
.menu-item a:hover {
  color: hsl(225, 27%, 95%);
  background: color-mix(in srgb, hsl(163, 83%, 62%) 12%, hsl(217, 22%, 11%));
}
.menu-item a:focus {
  outline: 2px solid hsl(163, 83%, 62%);
  outline-offset: -2px;
}
.menu-item a[rel=privacy-policy] {
  font-size: 11.0617283951px;
  color: hsl(213, 12%, 52%);
}
.menu-item a[rel=privacy-policy]:hover {
  color: hsl(216, 19%, 82%);
}
.menu-item.current-menu-item a {
  color: hsl(163, 83%, 62%);
}
.menu-item.current-menu-item a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: hsl(163, 83%, 62%);
  border-radius: 0.5px;
}
@media (max-width: 768px) {
  .menu-item a {
    padding: 8px 12px;
    justify-content: space-between;
    width: 100%;
  }
}

#search {
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 768px) {
  #search {
    width: 100%;
    order: 1;
    flex: 1;
  }
}

.search-form {
  display: none;
  align-items: stretch;
  gap: 4px;
  background: color-mix(in srgb, hsl(163, 83%, 62%) 5%, hsl(220, 21%, 7%));
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  padding: 4px;
  height: 28px;
}
.search-form.is-expanded {
  display: flex;
}
.search-form:focus-within {
  border-color: hsl(163, 83%, 62%);
  background: color-mix(in srgb, hsl(163, 83%, 62%) 8%, hsl(220, 21%, 7%));
}
@media (max-width: 768px) {
  .search-form {
    width: 100%;
  }
}

.search-form label {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.search-field {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: hsl(225, 27%, 95%);
  font-size: 11.0617283951px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  padding: 4px 6px;
  line-height: 1;
}
.search-field::placeholder {
  color: hsl(213, 12%, 52%);
  opacity: 0.7;
}
.search-field:focus {
  outline: none;
}

.search-icon-btn {
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  color: hsl(163, 83%, 62%);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 1, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  line-height: 1;
}
.search-icon-btn:hover {
  color: color-mix(in srgb, hsl(163, 83%, 62%) 85%, white);
}
.search-icon-btn:focus {
  outline: 2px solid hsl(163, 83%, 62%);
  outline-offset: -2px;
}
.search-icon-btn:active {
  transform: scale(0.95);
}
.search-icon-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}

.search-submit {
  flex-shrink: 0;
  padding: 4px 8px;
  background: hsl(163, 83%, 62%);
  color: hsl(220, 21%, 7%);
  border: none;
  border-radius: 2px;
  font-size: 11.0617283951px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 1, 1);
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1;
}
.search-submit:hover {
  background: color-mix(in srgb, hsl(163, 83%, 62%) 85%, hsl(220, 21%, 7%));
  box-shadow: 0 0 8px rgba(61, 232, 184, 0.3);
}
.search-submit:focus {
  outline: 2px solid hsl(163, 83%, 62%);
  outline-offset: -2px;
}
.search-submit:active {
  transform: scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  header[role=banner],
  .menu-item a,
  .search-form,
  .search-submit {
    transition: none;
  }
}
@media print {
  header[role=banner],
  nav[role=navigation],
  #search {
    display: none;
  }
}
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
/**
 * VoxDiff Admin Mixins Library
 * Reusable patterns for consistency across all admin interfaces
 */
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-pop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes vxd-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes vxd-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes vxd-fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes vxd-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.vxd-lanes {
  display: grid;
  grid-template-columns: repeat(var(--lane-count, 2), minmax(0, 1fr));
  height: 100%;
  max-width: 96vw;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
}

.vxd-lane {
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-right: 1px solid hsla(0, 0%, 100%, 0.13);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 96vw;
  overflow: hidden;
  position: relative;
  transition: background 150ms cubic-bezier(0.4, 0, 1, 1), border-color 150ms cubic-bezier(0.4, 0, 1, 1);
  background: hsl(220, 21%, 7%);
  box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.07), 0 2px 8px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.35);
}
.vxd-lane .vxd-turn-card {
  display: none;
}
.vxd-lane .vxd-lane-config-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}
.vxd-lane .vxd-lane-running-head {
  display: none;
  min-height: 4rem;
}
.vxd-lane .vxd-portrait-radar-wrap,
.vxd-lane .vxd-lane-body {
  display: none;
}

.vxd-lane.is-running {
  cursor: pointer;
}
.vxd-lane.is-running .vxd-lane-config-panel {
  display: none;
}
.vxd-lane.is-running .vxd-lane-running-head {
  display: block;
  min-height: 4rem;
}
.vxd-lane.is-running .vxd-portrait-radar-wrap,
.vxd-lane.is-running .vxd-lane-body {
  display: block;
}

.vxd-lane.is-selecting {
  cursor: default;
}
.vxd-lane.is-selecting .vxd-lane-config-panel {
  display: flex;
  flex-direction: column;
}
.vxd-lane.is-selecting .vxd-lane-running-head {
  display: none;
  min-height: 4rem;
}

.vxd-lane:last-child {
  border-right: 1px solid hsla(0, 0%, 100%, 0.13);
}

.vxd-lane.is-running:hover {
  background: hsla(0, 0%, 100%, 0.07);
}

.vxd-lane[data-lane-index="0"] {
  --lane-color: hsl(210, 83%, 62%);
  background: color-mix(in srgb, hsl(210, 83%, 62%) 7%, hsl(220, 21%, 7%));
}
.vxd-lane[data-lane-index="0"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: hsl(210, 83%, 62%);
  opacity: 0.9;
  z-index: 1;
}

.vxd-lane[data-lane-index="1"] {
  --lane-color: hsl(286, 83%, 62%);
  background: color-mix(in srgb, hsl(286, 83%, 62%) 7%, hsl(220, 21%, 7%));
}
.vxd-lane[data-lane-index="1"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: hsl(286, 83%, 62%);
  opacity: 0.9;
  z-index: 1;
}

.vxd-lane[data-lane-index="2"] {
  --lane-color: hsl(163, 83%, 62%);
  background: color-mix(in srgb, hsl(163, 83%, 62%) 7%, hsl(220, 21%, 7%));
}
.vxd-lane[data-lane-index="2"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: hsl(163, 83%, 62%);
  opacity: 0.9;
  z-index: 1;
}

.vxd-lane[data-lane-index="3"] {
  --lane-color: hsl(327, 83%, 62%);
  background: color-mix(in srgb, hsl(327, 83%, 62%) 7%, hsl(220, 21%, 7%));
}
.vxd-lane[data-lane-index="3"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: hsl(327, 83%, 62%);
  opacity: 0.9;
  z-index: 1;
}

.vxd-lane[data-lane-index="4"] {
  --lane-color: hsl(45, 83%, 62%);
  background: color-mix(in srgb, hsl(45, 83%, 62%) 7%, hsl(220, 21%, 7%));
}
.vxd-lane[data-lane-index="4"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: hsl(45, 83%, 62%);
  opacity: 0.9;
  z-index: 1;
}

.vxd-lane[data-lane-index="5"] {
  --lane-color: hsl(139, 83%, 62%);
  background: color-mix(in srgb, hsl(139, 83%, 62%) 7%, hsl(220, 21%, 7%));
}
.vxd-lane[data-lane-index="5"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: hsl(139, 83%, 62%);
  opacity: 0.9;
  z-index: 1;
}

.vxd-lane.is-streaming {
  border-color: hsla(0, 0%, 100%, 0.26);
}

.vxd-lane.is-streaming .vxd-lane-header {
  background: color-mix(in srgb, var(--lane-color, hsl(163, 83%, 62%)) 14%, hsl(220, 21%, 7%));
}

.vxd-lane .vxd-lane-body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, hsla(220, 22%, 6%, 0.92));
  pointer-events: none;
  z-index: 2;
}

.vxd-lane-expand-hint {
  position: absolute;
  bottom: 8px;
  right: 10px;
  z-index: 3;
  font-size: 12.4444444444px;
  color: var(--lane-color, hsl(163, 83%, 62%));
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.4, 0, 1, 1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.vxd-lane:hover .vxd-lane-expand-hint {
  opacity: 0.7;
}

.vxd-lane-selectors .vxd-model-tabs {
  display: none;
}

.vxd-model-list,
.vxd-model-other-toggle,
.vxd-model-group-btns {
  width: 100%;
}

.vxd-lane-header {
  border-top: 1px solid hsla(0, 0%, 100%, 0.13);
  border-bottom: none;
  background: color-mix(in srgb, var(--lane-color, hsl(220, 21%, 7%)) 12%, #161b22);
  flex-shrink: 0;
  order: 2;
  transition: background 150ms cubic-bezier(0.4, 0, 1, 1);
  z-index: 3;
  display: flex;
  flex-direction: column;
  position: relative;
}

.vxd-lane-title-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 12px 4px 12px;
  min-width: 0;
}

.vxd-lane-stats-toggle {
  position: absolute;
  top: 4px;
  right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #3d4a58;
  padding: 0;
  transition: color 150ms cubic-bezier(0.4, 0, 1, 1), opacity 150ms cubic-bezier(0.4, 0, 1, 1);
  line-height: 1;
  opacity: 0.5;
  z-index: 4;
}

.vxd-lane-stats-toggle svg {
  transition: transform 300ms cubic-bezier(0.4, 0, 1, 1);
}

.vxd-lane-stats-toggle:hover {
  color: hsl(225, 27%, 95%);
  opacity: 1;
}

.vxd-lane.is-stats-collapsed .vxd-lane-stats-toggle svg {
  transform: rotate(-90deg);
}

.vxd-lane-replay-btn,
.vxd-lane-replace-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--lane-color, currentColor);
  opacity: 0.75;
  font-size: 1.5rem;
  padding: 2px 4px;
  line-height: 1;
  border-radius: 3px;
  transition: opacity 0.35s;
}
.vxd-lane-replay-btn:hover,
.vxd-lane-replace-btn:hover {
  opacity: 1;
}

.vxd-comparison.is-running .vxd-lane-replay-btn,
.vxd-comparison.is-running .vxd-lane-replace-btn {
  display: inline-flex;
  align-items: center;
}

.vxd-lane-stats-wrap {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
  max-height: 80px;
  transition: max-height 300ms cubic-bezier(0.4, 0, 1, 1), opacity 200ms ease;
  opacity: 1;
}

.vxd-lane.is-stats-collapsed .vxd-lane-stats-wrap {
  max-height: 0;
  opacity: 0;
}

.vxd-lane-title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.vxd-lane-label {
  font-size: 14px;
  font-weight: 500;
  color: hsl(225, 27%, 95%);
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
  text-overflow: ellipsis;
}

.vxd-lane-model {
  font-size: 12.4444444444px;
  color: var(--lane-color, hsl(163, 83%, 62%));
  letter-spacing: 0.04em;
}

.vxd-lane-stats {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
  border-top: 1px solid hsla(0, 0%, 100%, 0.07);
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  font-size: 12.4444444444px;
  color: hsl(216, 19%, 82%);
  line-height: 12.4444444444px;
  padding: 0 8px;
}

.vxd-lane-stats:has(.vxd-stats-strip) {
  padding: 0;
  line-height: normal;
}

.vxd-lane-stats .vxd-sbar-value {
  font-size: 12.4444444444px;
}

.vxd-lane-axis-pips {
  display: flex;
  gap: 3px;
  padding: 0 10px 5px;
  align-items: center;
}

.vxd-axis-pip {
  display: block;
  height: 4px;
  width: 36px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pip-color) var(--pip-fill), hsla(0, 0%, 100%, 0.07) var(--pip-fill));
  flex-shrink: 0;
  transition: width 300ms cubic-bezier(0.4, 0, 1, 1);
  cursor: default;
}

.vxd-axis-pip:hover {
  filter: brightness(1.3);
}

.vxd-lane-body {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
  padding: 8px 10px 8px 14px;
  position: relative;
  min-height: 0;
  order: 1;
  z-index: 5;
  background-color: hsl(220, 22%, 4%);
}

.vxd-turn {
  margin-bottom: 12px;
  animation: vxd-fade-up 200ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.vxd-turn:last-child {
  margin-bottom: 0;
}

.vxd-turn-user {
  font-size: 11.0617283951px;
  color: hsl(216, 19%, 82%);
  margin-bottom: 4px;
  font-style: italic;
  border-left: 2px solid hsla(0, 0%, 100%, 0.13);
  padding-left: 6px;
  opacity: 0.7;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vxd-turn-assistant {
  color: hsl(225, 27%, 95%);
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
  opacity: 0.85;
}

.vxd-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--lane-color, hsl(163, 83%, 62%));
  animation: vxd-blink 0.8s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 1px;
}

.vxd-lane-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: hsl(216, 19%, 82%);
  font-size: 12.4444444444px;
  flex-direction: column;
  gap: 8px;
}

.vxd-lane-placeholder-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lane-color, hsla(0, 0%, 100%, 0.13));
  opacity: 0.4;
}

.vxd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
  background: rgba(8, 10, 13, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  animation: vxd-lightbox-in 200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.vxd-lightbox.vxd-collapsed {
  display: none;
  pointer-events: none;
}

.vxd-lightbox.is-closing {
  animation: vxd-lightbox-out 150ms ease both;
}

@keyframes vxd-lightbox-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes vxd-lightbox-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.98);
  }
}
.vxd-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.26);
  background: rgba(19, 22, 27, 0.95);
  gap: 12px;
  flex-shrink: 0;
}

.vxd-lightbox-lane-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.vxd-lightbox-lane-label {
  font-size: 17.71875px;
  font-weight: 600;
  color: var(--lb-lane-color, hsl(163, 83%, 62%));
  letter-spacing: -0.01em;
}

.vxd-lightbox-lane-model {
  font-size: 15.75px;
  color: hsl(216, 19%, 82%);
  letter-spacing: 0.04em;
}

.vxd-lightbox-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.vxd-lightbox-nav-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #161b22;
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 3px;
  color: hsl(225, 27%, 95%);
  cursor: pointer;
  font-size: 15.75px;
  transition: all 150ms cubic-bezier(0.4, 0, 1, 1);
}

.vxd-lightbox-nav-btn:hover:not(:disabled) {
  border-color: hsl(163, 83%, 62%);
  color: hsl(163, 83%, 62%);
}

.vxd-lightbox-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.vxd-lightbox-turn-indicator {
  font-size: 15.75px;
  color: hsl(216, 19%, 82%);
  letter-spacing: 0.06em;
  padding: 0 6px;
}

.vxd-lightbox-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 3px;
  color: hsl(216, 19%, 82%);
  cursor: pointer;
  font-size: 17.71875px;
  transition: all 150ms cubic-bezier(0.4, 0, 1, 1);
  margin-left: 8px;
}

.vxd-lightbox-close:hover {
  border-color: #e84a4a;
  color: #e84a4a;
}

.vxd-lightbox-body {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
  padding: 32px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  min-height: 0;
}

.vxd-lightbox-content {
  color: hsl(225, 27%, 95%);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  max-width: 100%;
  width: 100%;
  border-left: 3px solid var(--lb-lane-color, hsl(163, 83%, 62%));
  padding-left: 24px;
}

.vxd-lightbox-footer {
  padding: 10px 20px;
  border-top: 1px solid hsla(0, 0%, 100%, 0.13);
  background: rgba(19, 22, 27, 0.95);
  font-size: 15.75px;
  color: hsl(216, 19%, 82%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}

.vxd-lightbox-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vxd-lightbox-hint {
  opacity: 0.5;
  letter-spacing: 0.04em;
}

@keyframes vxd-glow-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
.vxd-turn-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.13) transparent;
  margin-left: auto;
}

.vxd-turn-pill {
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  background: transparent;
  color: hsl(216, 19%, 82%);
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  font-size: 15.75px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 1, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.vxd-turn-pill:hover:not(.is-active) {
  border-color: hsla(0, 0%, 100%, 0.26);
  color: hsl(225, 27%, 95%);
}

/* Lane status messages and retry buttons */
.vxd-lane-status {
  font-size: 17.71875px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.vxd-lane-status[data-type=loading] {
  color: hsl(213, 12%, 52%);
}
.vxd-lane-status[data-type=loading]::before {
  content: "⟳ ";
}
.vxd-lane-status[data-type=error] {
  color: #e84a4a;
  background: rgba(232, 74, 74, 0.12);
}

.vxd-lane-retry-btn {
  font-size: 17.71875px;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #e84a4a;
  color: #e84a4a;
  background: transparent;
  cursor: pointer;
  margin-top: 4px;
  display: block;
  font-family: inherit;
  transition: all 150ms cubic-bezier(0.4, 0, 1, 1);
}
.vxd-lane-retry-btn:hover:not(:disabled) {
  background: rgba(232, 74, 74, 0.12);
}
.vxd-lane-retry-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

/**
 * VoxDiff Finding Cards & Pattern Signals
 * Narrative layer: turn-by-turn claims, pattern signal bars, sidebar states.
 */
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
/**
 * VoxDiff Admin Mixins Library
 * Reusable patterns for consistency across all admin interfaces
 */
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-pop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes vxd-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes vxd-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes vxd-fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes vxd-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.vxd-finding-card {
  background: hsl(220, 18%, 12%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  margin-bottom: 6px;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  font-size: 12.4444444444px;
  line-height: 1.55;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  overflow: hidden;
}
.vxd-finding-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.vxd-finding-card:last-child {
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────── */
/* CARD HEADER: Turn Label + Timestamp                            */
/* ─────────────────────────────────────────────────────────────── */
.vxd-finding-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.2);
  gap: 4px;
}

.vxd-turn-label {
  font-weight: 700;
  font-size: 15.75px;
  color: hsl(216, 19%, 82%);
  flex-shrink: 0;
  /* Turn-specific coloring via data-turn attribute */
}
.vxd-finding-card[data-turn="1"] .vxd-turn-label {
  color: hsl(0, 100%, 70%); /* Turn 1: prominent red */
}
.vxd-finding-card[data-turn="2"] .vxd-turn-label {
  color: hsl(14, 100%, 72%); /* Turn 2: softer red */
}
.vxd-finding-card[data-turn="3"] .vxd-turn-label {
  color: hsl(163, 83%, 62%); /* Turn 3+: teal */
}
.vxd-finding-card[data-turn="4"] .vxd-turn-label, .vxd-finding-card[data-turn="5"] .vxd-turn-label {
  color: hsl(163, 83%, 62%); /* Consistent Turn 3+ color */
}

.vxd-turn-ts {
  display: none;
}

.vxd-finding-div {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 11.0617283951px;
  letter-spacing: 0.08em;
  color: hsl(213, 12%, 52%);
  padding: 1px 6px;
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
}

.vxd-axes-table {
  display: flex;
  flex-direction: row;
  height: 8px;
  gap: 2px;
  border-top: 1px solid hsla(0, 0%, 100%, 0.13);
  margin-top: 8px;
  border-radius: 3px;
  overflow: hidden;
}

.vxd-ax-segment {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 1px;
}

.vxd-ax-bar-fill {
  flex: 1;
  height: 8px;
}

/* ─────────────────────────────────────────────────────────────── */
/* CARD BODY: Claim Text + Pattern Signals                        */
/* ─────────────────────────────────────────────────────────────── */
.vxd-finding-body {
  padding: 8px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vxd-turn-claim {
  color: hsl(216, 19%, 82%);
  margin: 0;
  font-weight: 400;
  font-size: 12.4444444444px;
  line-height: 1.6;
}

.vxd-session-summary {
  font-size: 11.0617283951px;
  color: hsl(213, 12%, 52%);
  line-height: 1.5;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid rgba(74, 240, 196, 0.3);
  border-radius: 0 2px 2px 0;
}
.vxd-session-summary p {
  margin: 0;
}
.vxd-session-summary strong {
  color: hsl(216, 19%, 82%);
  font-weight: 600;
}

.unique-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid hsla(0, 0%, 100%, 0.13);
  margin-top: 4px;
}

.unique-lane {
  font-size: 11.0617283951px;
  color: hsl(213, 12%, 52%);
  line-height: 1.55;
  padding: 6px 10px;
  border-top: 2px solid transparent;
  border-right: 1px solid hsla(0, 0%, 100%, 0.13);
}
.unique-lane:last-child {
  border-right: none;
}
.unique-lane strong {
  display: block;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(216, 19%, 82%);
  font-weight: 600;
  margin-bottom: 4px;
}
.unique-lane ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.unique-lane ul li {
  line-height: 1.5;
  padding-left: 10px;
  position: relative;
}
.unique-lane ul li::before {
  content: "·";
  position: absolute;
  left: 2px;
  color: hsl(213, 19%, 29%);
}

/* ─────────────────────────────────────────────────────────────── */
/* PATTERN SIGNALS: Turn 3+ Visualization (Bars)                  */
/* ─────────────────────────────────────────────────────────────── */
.vxd-pattern-signals {
  margin: 0.75rem 0;
  padding: 12px;
  background: hsl(220, 18%, 12%);
  border-left: 3px solid #FF6B6B;
  border-radius: 0 4px 4px 0;
  display: grid;
  gap: 4px;
}

.vxd-signal {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 12.4444444444px;
}
.vxd-signal .label {
  font-weight: 500;
  color: hsl(213, 12%, 52%);
  font-size: 12.4444444444px;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}
.vxd-signal .bar {
  height: 20px;
  background: linear-gradient(to right, hsl(0, 100%, 70%), color-mix(in srgb, hsl(0, 100%, 70%) 50%, white));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
  color: white;
  font-size: 11.0617283951px;
  font-weight: 600;
  letter-spacing: 0.02em;
  min-width: 60px;
  transition: all 0.3s ease;
  /* Color coding by signal type */
}
.vxd-signal.consistency .vxd-signal .bar {
  background: linear-gradient(to right, hsl(163, 83%, 62%), color-mix(in srgb, hsl(163, 83%, 62%) 60%, white));
}
.vxd-signal.sycophancy .vxd-signal .bar {
  background: linear-gradient(to right, hsl(33, 83%, 62%), color-mix(in srgb, hsl(33, 83%, 62%) 50%, white));
}
.vxd-signal.revision .vxd-signal .bar {
  background: linear-gradient(to right, hsl(286, 83%, 62%), color-mix(in srgb, hsl(286, 83%, 62%) 50%, white));
}
.vxd-signal.collapse .vxd-signal .bar {
  background: linear-gradient(to right, hsl(0, 83%, 62%), color-mix(in srgb, hsl(0, 83%, 62%) 50%, white));
}

/* ─────────────────────────────────────────────────────────────── */
/* SESSION SUMMARY: Turn 3+ Only                                  */
/* ─────────────────────────────────────────────────────────────── */
.vxd-session-summary {
  margin-top: 0.75rem;
  padding: 12px;
  background: hsl(220, 17%, 9%);
  border-left: 3px solid #4ECDC4;
  border-radius: 0 4px 4px 0;
  font-size: 12.4444444444px;
  color: hsl(216, 19%, 82%);
  line-height: 1.5;
}
.vxd-session-summary p {
  margin: 0;
}
.vxd-session-summary p strong {
  color: hsl(163, 83%, 62%);
}

/* ─────────────────────────────────────────────────────────────── */
/* CARD FOOTER: Next Turn Prompt                                  */
/* ─────────────────────────────────────────────────────────────── */
.vxd-finding-footer {
  padding-top: 0.5rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.07);
}

.vxd-next-turn-prompt {
  margin: 0;
  font-size: 12.4444444444px;
  color: hsl(213, 12%, 52%);
  font-style: italic;
  line-height: 1.4;
}
.vxd-next-turn-prompt em {
  margin-right: 0.4rem;
  color: hsl(163, 83%, 62%);
}

/* ─────────────────────────────────────────────────────────────── */
/* FINDINGS SIDEBAR: Container & State Transitions                */
/* ─────────────────────────────────────────────────────────────── */
#findings-sidebar {
  display: flex;
  flex-direction: column;
}
#findings-sidebar .findings-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
#findings-sidebar .findings-sidebar-header h3 {
  margin: 0;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(213, 12%, 52%);
}
#findings-sidebar .findings-sidebar-header .findings-sidebar-minimize-btn {
  background: none;
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 2px;
  color: hsl(213, 12%, 52%);
  font-size: 14px;
  line-height: 1;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease;
  padding: 0;
}
#findings-sidebar .findings-sidebar-header .findings-sidebar-minimize-btn:hover {
  border-color: hsla(0, 0%, 100%, 0.26);
  color: hsl(216, 19%, 82%);
}
#findings-sidebar .findings-sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  flex: 1 1 0;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}
#findings-sidebar .findings-sidebar-content .vxd-finding-card {
  flex-shrink: 0;
  margin-bottom: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: none;
}
#findings-sidebar .findings-sidebar-content .vxd-finding-card:not(:last-child) {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
}
#findings-sidebar .findings-sidebar-content .vxd-finding-card:last-child {
  border-bottom: none;
}

#vxd-findings-sidebar-content {
  display: flex;
  flex-direction: column;
}

/* ─────────────────────────────────────────────────────────────── */
/* MINIMIZED MODE: Tab Navigation                                 */
/* ─────────────────────────────────────────────────────────────── */
.vxd-findings-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  overflow-y: auto;
  max-height: calc(100vh - 120px);
}

.vxd-findings-tab {
  background: hsl(220, 18%, 12%);
  border: 1px solid #999;
  border-radius: 4px;
  padding: 4px 2px;
  cursor: pointer;
  font-size: 12.4444444444px;
  font-weight: 600;
  text-align: center;
  color: hsl(216, 19%, 82%);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.vxd-findings-tab:hover {
  background: hsl(220, 19%, 15%);
  border-color: hsla(0, 0%, 100%, 0.26);
}
.vxd-findings-tab.active {
  background: hsl(0, 100%, 70%);
  color: white;
  border-color: hsl(0, 83%, 62%);
  box-shadow: 0 2px 4px color-mix(in srgb, hsl(0, 100%, 70%) 30%, transparent);
}

/* ─────────────────────────────────────────────────────────────── */
/* MINIMIZED SIDEBAR: Collapsed State (60px width)                */
/* ─────────────────────────────────────────────────────────────── */
#vxd-findings-sidebar.minimized {
  width: 60px !important;
  min-width: 60px;
}
#vxd-findings-sidebar.minimized #vxd-findings-sidebar-header-label {
  display: none;
}
#vxd-findings-sidebar.minimized #vxd-findings-sidebar-content {
  display: none;
}
#vxd-findings-sidebar.minimized .vxd-findings-tabs {
  display: flex;
}

/* ─────────────────────────────────────────────────────────────── */
/* EXPANDED SIDEBAR: Default State (300px width)                  */
/* EXPANDED SIDEBAR: Default State (300px width)                  */
/* ─────────────────────────────────────────────────────────────── */
#vxd-findings-sidebar:not(.minimized) #vxd-findings-sidebar-content {
  display: flex;
}
#vxd-findings-sidebar:not(.minimized) .vxd-findings-tabs {
  display: none;
}

/* ─────────────────────────────────────────────────────────────── */
/* POPOVER: For minimized mode card inspection                    */
/* POPOVER: For minimized mode card inspection                    */
/* ─────────────────────────────────────────────────────────────── */
.vxd-finding-popover {
  position: fixed;
  bottom: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: hsl(220, 21%, 7%);
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 4px 8px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px;
  z-index: 9999;
  animation: popoverSlideUp 0.2s ease;
}
@keyframes popoverSlideUp {
  from {
    opacity: 0;
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.vxd-finding-popover .vxd-finding-card {
  margin: 0;
  box-shadow: none;
  border: none;
}
.vxd-finding-popover .vxd-finding-card:hover {
  box-shadow: none;
}
.vxd-finding-popover .popover-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 19.93359375px;
  cursor: pointer;
  color: hsl(213, 12%, 52%);
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
}
.vxd-finding-popover .popover-close:hover {
  color: hsl(216, 19%, 82%);
}

.vxd-finding-popover-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(0, 0%, 0%, 0.5);
  z-index: 9998;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────────────── */
/* RESPONSIVE ADJUSTMENTS                                         */
/* ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vxd-finding-card {
    font-size: 12.4444444444px;
    padding: 12px;
  }
  .vxd-finding-header {
    margin-bottom: 0.5rem;
    padding-bottom: 0.35rem;
  }
  .vxd-turn-claim {
    margin: 0 0 0.5rem 0;
    font-size: 0.92rem;
  }
  .vxd-pattern-signals {
    margin: 0.5rem 0;
    padding: 4px;
  }
  .vxd-signal {
    grid-template-columns: 85px 1fr;
    gap: 4px;
    font-size: 12.4444444444px;
  }
}
@media (max-width: 768px) {
  .vxd-finding-card {
    font-size: 0.88rem;
    padding: 0.6rem;
  }
  .vxd-turn-claim {
    font-size: 12.4444444444px;
  }
  .vxd-pattern-signals {
    padding: 0.4rem;
  }
  .vxd-signal {
    grid-template-columns: 75px 1fr;
    font-size: 12.4444444444px;
  }
  .vxd-signal .bar {
    height: 18px;
    min-width: 50px;
    font-size: 0.7rem;
    padding-right: 4px;
  }
}
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
/**
 * VoxDiff Admin Mixins Library
 * Reusable patterns for consistency across all admin interfaces
 */
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-pop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes vxd-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes vxd-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes vxd-fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes vxd-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.vxd-turn-pill.is-active {
  background: color-mix(in srgb, var(--pill-color, hsl(163, 83%, 62%)) 15%, transparent);
  border-color: color-mix(in srgb, var(--pill-color, hsl(163, 83%, 62%)) 50%, transparent);
  color: var(--pill-color, hsl(163, 83%, 62%));
}

.vxd-radar-explode-btn {
  font-size: 11.0617283951px;
  color: hsl(213, 12%, 52%);
  background: transparent;
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 2px;
  padding: 4px 6px;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 160ms cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
  align-self: flex-start;
}

.vxd-radar-explode-btn:hover {
  border-color: hsl(163, 83%, 62%);
  color: hsl(163, 83%, 62%);
}

.vxd-radar-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vxd-radar-reset-btn {
  font-size: 11.0617283951px;
  color: hsl(213, 12%, 52%);
  background: transparent;
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 2px;
  padding: 4px 6px;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 160ms cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

.vxd-radar-reset-btn:hover {
  border-color: hsl(213, 12%, 52%);
  color: hsl(225, 27%, 95%);
}

.vxd-radar-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9001;
  overflow-x: hidden;
  overflow-y: auto;
  background: hsla(220, 22%, 4%, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vxd-lightbox-in 200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.vxd-radar-lightbox.vxd-collapsed {
  display: none;
  pointer-events: none;
}

.vxd-radar-lightbox.is-closing {
  animation: vxd-lightbox-out 160ms ease both;
}

.vxd-radar-lightbox-inner {
  background: hsl(220, 21%, 7%);
  border: 1px solid hsla(0, 0%, 100%, 0.26);
  border-radius: 8px;
  padding: 24px 28px;
  width: 92vw;
  height: 84vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
}

.vxd-radar-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
}

.vxd-radar-lightbox-title {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 14px;
  font-style: italic;
  color: hsl(225, 27%, 95%);
  letter-spacing: 0.04em;
}

.vxd-radar-lightbox-close,
.vxd-radar-lightbox-play {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  color: hsl(213, 12%, 52%);
  cursor: pointer;
  font-size: 12.4444444444px;
  transition: all 160ms cubic-bezier(0.25, 1, 0.5, 1);
}

.vxd-radar-lightbox-close:hover {
  border-color: hsl(0, 83%, 62%);
  color: hsl(0, 83%, 62%);
}

.vxd-radar-lightbox-play:hover,
.vxd-radar-lightbox-play[aria-pressed=true] {
  border-color: hsl(163, 83%, 62%);
  color: hsl(163, 83%, 62%);
}

.vxd-radar-lightbox-svg-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vxd-radar-lightbox-svg-wrap .vxd-cumulative-radar-stack {
  width: 420px;
  height: 420px;
  scale: 1.5;
  perspective: 1200px;
}

.vxd-radar-lightbox-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  flex-shrink: 0;
}

.vxd-analysis-card {
  display: none;
}

.vxd-card-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: hsl(220, 21%, 7%);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
}

.vxd-card-turn-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(216, 19%, 82%);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  flex-shrink: 0;
}

.vxd-card-summary-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.vxd-card-summary-text {
  font-size: 15px;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  color: hsl(225, 27%, 95%);
  font-style: italic;
  line-height: 1.35;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  text-overflow: ellipsis;
}

@media (min-width: 600px) {
  .vxd-card-summary-text {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}
.vxd-card-consensus {
  font-size: 12px;
  color: hsl(216, 19%, 82%);
  line-height: 1.45;
}

@media (min-width: 600px) {
  .vxd-card-consensus {
    display: block;
  }
}
.vxd-card-score {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.vxd-card-score svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}

.vxd-card-score[data-score-range=low] .vxd-card-arc {
  stroke: #4af07a;
}

.vxd-card-score[data-score-range=low] .vxd-card-arc-num {
  color: #4af07a;
}

.vxd-card-score[data-score-range=mid] .vxd-card-arc {
  stroke: hsl(33, 83%, 62%);
}

.vxd-card-score[data-score-range=mid] .vxd-card-arc-num {
  color: hsl(33, 83%, 62%);
}

.vxd-card-score[data-score-range=high] .vxd-card-arc {
  stroke: hsl(0, 83%, 62%);
}

.vxd-card-score[data-score-range=high] .vxd-card-arc-num {
  color: hsl(0, 83%, 62%);
}

.vxd-card-score::before {
  content: "";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gauge-color, hsl(163, 83%, 62%));
  opacity: 0.07;
  filter: blur(14px);
  animation: vxd-glow-pulse 3s ease-in-out infinite;
}

.vxd-card-arc-bg {
  fill: none;
  stroke: #1e2530;
  stroke-width: 6;
}

.vxd-card-arc {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.vxd-card-arc-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.vxd-card-body {
  display: grid;
  grid-template-columns: 1fr;
  background: hsl(217, 22%, 11%);
}

@media (min-width: 560px) and (max-width: 899px) {
  .vxd-card-body {
    grid-template-columns: 1fr 1fr;
  }
  .vxd-card-body .vxd-card-radar {
    grid-column: 1/-1;
  }
  .vxd-card-body .vxd-card-tokens {
    border-right: 1px solid hsla(0, 0%, 100%, 0.13);
  }
}
@media (min-width: 900px) {
  .vxd-card-body {
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: 1fr;
  }
  .vxd-card-body .vxd-card-radar {
    grid-column: auto;
  }
  .vxd-card-body .vxd-card-tokens {
    border-right: 1px solid hsla(0, 0%, 100%, 0.13);
    border-bottom: none;
  }
  .vxd-card-body .vxd-card-radar {
    border-right: 1px solid hsla(0, 0%, 100%, 0.13);
    border-bottom: none;
  }
  .vxd-card-body .vxd-card-unique {
    border-bottom: none;
  }
}
.vxd-card-tokens {
  padding: 16px 18px 14px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
  border-right: 1px solid hsla(0, 0%, 100%, 0.13);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.vxd-card-tokens-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(216, 19%, 82%);
}

.vxd-tok-chart-wrap {
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
}

.vxd-tok-chart-wrap::-webkit-scrollbar {
  display: none;
}

.vxd-tok-chart-svg {
  display: block;
  overflow: visible;
}

.vxd-tok-chart-svg .vxd-bar-out,
.vxd-tok-chart-svg .vxd-bar-in,
.vxd-tok-chart-svg .vxd-bar-energy {
  transition: height 900ms cubic-bezier(0.22, 1, 0.36, 1), y 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vxd-tok-chart-svg .vxd-bar-energy {
  transition-delay: 120ms;
}

.vxd-tok-chart-svg .vxd-bar-group {
  cursor: default;
}

.vxd-tok-chart-svg .vxd-bar-group:hover .vxd-bar-out {
  opacity: 1;
  filter: brightness(1.15);
}

.vxd-tok-chart-svg .vxd-bar-group:hover .vxd-bar-energy {
  opacity: 1;
}

.vxd-tok-aggregates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 8px;
  border-top: 1px solid hsla(0, 0%, 100%, 0.13);
  padding-top: 10px;
}

.vxd-tok-agg-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vxd-tok-agg-label {
  font-size: 11.0617283951px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(216, 19%, 82%);
}

.vxd-tok-agg-val {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.vxd-tok-agg-val.is-energy {
  color: hsl(33, 83%, 62%);
}

.vxd-tok-agg-val.is-cost {
  color: hsl(163, 83%, 62%);
}

.vxd-tok-agg-val.is-latency {
  color: hsl(163, 83%, 62%);
}

.vxd-tok-agg-unit {
  font-size: 10px;
  color: hsl(216, 19%, 82%);
  margin-left: 2px;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  font-weight: 400;
}

.vxd-token-bar-row {
  display: contents;
}

.vxd-token-bar-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vxd-token-bar-label {
  font-size: 11px;
  color: hsl(225, 27%, 95%);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vxd-token-bar-swatch {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.vxd-token-bar-counts {
  font-size: 10px;
  color: hsl(216, 19%, 82%);
  display: flex;
  gap: 4px;
}

.vxd-tbc-in {
  color: hsl(216, 19%, 82%);
}

.vxd-tbc-out {
  color: hsl(225, 27%, 95%);
  font-weight: 600;
}

.vxd-tbc-sep {
  color: hsl(213, 12%, 52%);
}

.vxd-token-bar-footnote {
  font-size: 10px;
  color: hsl(216, 19%, 82%);
}

.vxd-token-bar-stack {
  display: none;
}

.vxd-token-seg {
  display: none;
}

.vxd-tok-donut {
  display: none;
}

.vxd-card-radar {
  padding: 20px 24px 16px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
  border-right: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.vxd-card-radar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(74, 159, 240, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.vxd-card-radar-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(216, 19%, 82%);
  align-self: flex-start;
  color: hsl(216, 19%, 82%);
}

.vxd-card-radar svg {
  width: 280px !important;
  height: 280px !important;
  max-width: 100%;
}

.vxd-radar-lightbox-svg-wrap svg {
  width: 420px !important;
  height: 420px !important;
  max-width: 100%;
}

.vxd-radar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
}

.vxd-radar-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: hsl(216, 19%, 82%);
  letter-spacing: 0.04em;
}

.vxd-radar-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes vxd-tag-pop {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(4px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.vxd-card-unique {
  padding: 14px 18px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vxd-card-unique-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(216, 19%, 82%);
}

.vxd-unique-lane {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vxd-unique-lane-label {
  font-size: 12px;
  font-weight: 600;
  color: hsl(225, 27%, 95%);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}

.vxd-unique-lane-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vxd-unique-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.vxd-unique-tag {
  display: inline-block;
  font-size: 11px;
  line-height: 1.4;
  padding: 3px 9px 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(var(--lane-color-rgb, 74, 159, 240), 0.3);
  background: rgba(var(--lane-color-rgb, 74, 159, 240), 0.06);
  color: hsl(216, 19%, 82%);
  letter-spacing: 0.01em;
  animation: vxd-tag-pop 280ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
  border-color: color-mix(in srgb, var(--lane-color, hsl(163, 83%, 62%)) 40%, transparent);
  background: color-mix(in srgb, var(--lane-color, hsl(163, 83%, 62%)) 8%, transparent);
  color: color-mix(in srgb, var(--lane-color, hsl(163, 83%, 62%)) 70%, hsl(225, 27%, 95%));
}

.vxd-unique-tag:hover {
  background: color-mix(in srgb, var(--lane-color, hsl(163, 83%, 62%)) 16%, transparent);
}

.vxd-trajectory-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  margin-top: -12px;
  margin-bottom: -12px;
  min-height: 48px;
  position: relative;
  z-index: 1;
}

.vxd-trajectory-row-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(to right, hsla(0, 0%, 100%, 0.13) 0px, hsla(0, 0%, 100%, 0.13) 4px, transparent 4px, transparent 9px);
}

.vxd-trajectory-row-delta {
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.vxd-trajectory-row-delta.is-up {
  color: hsl(0, 83%, 62%);
  border-color: rgba(232, 74, 74, 0.25);
  background: rgba(232, 74, 74, 0.06);
}

.vxd-trajectory-row-delta.is-down {
  color: #4af07a;
  border-color: rgba(74, 240, 122, 0.25);
  background: rgba(74, 240, 122, 0.06);
}

.vxd-trajectory-row-delta.is-flat {
  color: hsl(213, 12%, 52%);
  border-color: hsla(0, 0%, 100%, 0.13);
}

/* ── Analysis panel: three rows ────────────────────────────────────── */
#comparison-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: hsl(220, 22%, 4%);
  border-top: 1px solid hsla(0, 0%, 100%, 0.13);
  animation: vxd-fade-up 400ms cubic-bezier(0.4, 0, 0.2, 1) both;
  --vxd-findings-flex: 0 0 35vh;
  --vxd-viz-flex: 1 1 0;
  --vxd-stats-flex: 0 0 auto;
}

/* ── Shared row ─────────────────────────────────────────────────────── */
.vxd-row {
  display: flex;
  flex-direction: row;
  min-height: 0;
  flex-shrink: 0;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
}
.vxd-row:last-child {
  border-bottom: none;
}
.vxd-row .vxd-tile {
  border-radius: 0;
  box-shadow: none;
  border-top: none;
  border-bottom: none;
}
.vxd-row .vxd-tile:not(:last-child) {
  border-right: 1px solid hsla(0, 0%, 100%, 0.13);
}
.vxd-row .vxd-tile:last-child {
  border-right: none;
}
.vxd-row .vxd-tile {
  border-left: none;
}

/* ── Row 1: Findings full-width, divergence score aside ─────────────── */
.vxd-row--findings {
  flex: var(--vxd-findings-flex, 0 0 35vh);
  min-height: 0;
  max-height: none;
}
.vxd-row--findings .vxd-findings-tile {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-bottom: none;
  box-shadow: none;
}
.vxd-row--findings .vxd-divergence-panel {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid hsla(0, 0%, 100%, 0.13);
  overflow: hidden;
}
.vxd-row--findings .vxd-divergence-panel .vxd-analysis-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  height: auto;
  background: transparent;
  border-bottom: none;
}
.vxd-row--findings .vxd-divergence-panel .vxd-divergence-badge {
  font-size: 28px;
  padding: 0;
  background: none;
  border: none;
  letter-spacing: -0.02em;
}
.vxd-row--findings .vxd-divergence-panel .vxd-divergence-badge::before {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-bottom: 2px;
  opacity: 0.5;
}
.vxd-row--findings .vxd-divergence-panel .vxd-turn-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* ── Row 2: Viz — radar fills, phase space fixed right ───────────────── */
.vxd-row--viz {
  flex: var(--vxd-viz-flex, 1 1 0);
  min-height: 0;
}
.vxd-row--viz .vxd-cumulative-radar-zone {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
}
.vxd-row--viz #phase-space-container {
  flex: 0 0 320px;
  overflow: hidden;
}

/* ── Row 3: Stats — session stats · history · timeline ───────────────── */
.vxd-row--stats {
  flex: var(--vxd-stats-flex, 0 0 auto);
  max-height: 220px;
  overflow: hidden;
}
.vxd-row--stats .vxd-session-stats {
  flex: 0 0 auto;
  min-width: 180px;
}
.vxd-row--stats .vxd-history-strip {
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vxd-row--stats #timeline-sidebar {
  flex: 0 0 360px;
  overflow: hidden;
}

/* Base tile — used everywhere */
.vxd-tile {
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  background: hsl(220, 21%, 7%);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 200ms ease;
}

/* Shared tile section header style */
.vxd-tile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.18);
}

.vxd-tile-label {
  font-size: 9px;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(213, 12%, 52%);
  font-weight: 600;
}

.vxd-analysis-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 12px;
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

.vxd-analysis-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.vxd-divergence-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  letter-spacing: 0.05em;
  color: hsl(216, 19%, 82%);
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  min-height: 22px;
  flex-shrink: 0;
  transition: border-color 400ms ease, color 400ms ease;
}
.vxd-divergence-badge::before {
  content: "DIV";
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(213, 12%, 52%);
  opacity: 0.7;
}
.vxd-divergence-badge.vxd-score-low {
  color: #4af07a;
  border-color: rgba(74, 240, 122, 0.3);
}
.vxd-divergence-badge.vxd-score-mid {
  color: hsl(33, 83%, 62%);
  border-color: rgba(240, 168, 74, 0.3);
}
.vxd-divergence-badge.vxd-score-high {
  color: hsl(0, 83%, 62%);
  border-color: rgba(232, 74, 74, 0.3);
}

.vxd-divergence-badge .vxd-badge-score {
  font-weight: 700;
  color: hsl(225, 27%, 95%);
  letter-spacing: 0.02em;
}

.vxd-divergence-badge .vxd-badge-label {
  opacity: 0.5;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vxd-analysis-right {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: visible;
  background: hsl(220, 21%, 7%);
}

.vxd-axis-table {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 0 4px;
  background: hsl(217, 22%, 11%);
}

.vxd-axis-lane-headers {
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 3px;
}

.vxd-axis-lane-headers .vxd-axis-row-label {
  visibility: hidden;
}

.vxd-axis-lane-header-bars {
  display: grid;
  grid-template-columns: repeat(var(--lane-count, 2), minmax(0, 1fr));
  flex: 1;
  gap: 3px;
  min-width: 0;
}

.vxd-axis-lane-header-cell {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lane-color, hsl(213, 12%, 52%));
  padding: 4px 3px 3px;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  text-overflow: ellipsis;
  opacity: 0.75;
  border-bottom: 2px solid var(--lane-color, hsla(0, 0%, 100%, 0.13));
}

.vxd-axis-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  min-height: 16px;
}

.vxd-axis-row.is-floating .vxd-axis-row-label {
  color: rgba(240, 168, 74, 0.65);
}

.vxd-axis-row-label {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  font-size: 8.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: hsl(213, 12%, 52%);
  flex: 0 0 64px;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  text-overflow: ellipsis;
}

.vxd-axis-row-bars {
  display: grid;
  grid-template-columns: repeat(var(--lane-count, 2), minmax(0, 1fr));
  flex: 1;
  gap: 3px;
  align-items: center;
  min-width: 0;
}

.vxd-axis-bar {
  flex: 1;
  height: 5px;
  border-radius: 2px;
  position: relative;
  background: linear-gradient(90deg, var(--bar-color) var(--bar-pct), rgba(255, 255, 255, 0.06) var(--bar-pct));
  transition: background 500ms cubic-bezier(0.25, 1, 0.5, 1);
  cursor: default;
}

.vxd-axis-bar:hover {
  filter: brightness(1.25);
}

.vxd-axis-bar-score {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  color: hsl(216, 19%, 82%);
  background: #1e2530;
  padding: 1px 3px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 100ms ease;
}

.vxd-axis-row:hover .vxd-axis-bar-score {
  opacity: 1;
}

.vxd-portrait-radar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3pt;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 2;
  transition: background 160ms cubic-bezier(0.25, 1, 0.5, 1);
  min-height: 100px;
  overflow: hidden;
}

.vxd-portrait-radar-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 0.1px;
  background: rgba(255, 255, 255, 0.055);
  pointer-events: none;
}

.vxd-portrait-radar-wrap:hover {
  font-size: 150%;
  transition: 150ms ease-in-out;
}

.vxd-portrait-radar-wrap svg {
  display: block;
  overflow: visible;
  animation: vxd-portrait-in 300ms cubic-bezier(0.25, 1, 0.5, 1) both;
  transform-origin: center;
}

@keyframes vxd-radar-wire-loop {
  0% {
    stroke-dashoffset: 1;
  }
  12.86% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes vxd-radar-dot-pop-loop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  2.3595% {
    transform: scale(1.15);
    opacity: 1;
  }
  4.29% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.vxd-radar-animated .vxd-radar-poly-draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: vxd-radar-wire-loop 7s cubic-bezier(0.76, 0, 0.24, 1) infinite;
  animation-delay: calc(var(--lane-i, 0) * 900ms);
}

.vxd-radar-animated .vxd-radar-dot {
  transform-origin: center;
  transform-box: fill-box;
  animation: vxd-radar-dot-pop-loop 7s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
  animation-delay: calc(var(--lane-i, 0) * 900ms + 0.85s + var(--dot-i, 0) * 80ms);
}

.vxd-radar-once.vxd-radar-animated .vxd-radar-poly-draw {
  animation-name: vxd-radar-wire;
  animation-duration: 0.9s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.vxd-radar-once.vxd-radar-animated .vxd-radar-dot {
  animation-name: vxd-radar-dot-pop;
  animation-duration: 300ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.vxd-cumulative-radar-stack.is-dragging .vxd-radar-poly-draw,
.vxd-cumulative-radar-stack.is-dragging .vxd-radar-dot {
  animation-play-state: paused;
}

.vxd-history-strip {
  flex: 0 0 auto;
  padding: 4px 12px 4px;
  cursor: crosshair;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.12);
}

.vxd-history-strip-svg {
  width: 100%;
  height: 36px;
  display: block;
  background-image: repeating-linear-gradient(180deg, transparent 0px, transparent 8px, rgba(255, 255, 255, 0.015) 8px, rgba(255, 255, 255, 0.015) 9px);
}

.vxd-analysis-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  min-height: 0;
  flex: 1 1 0;
  overflow: hidden;
}

.vxd-consensus-whisper {
  flex: 1 1 0;
  padding: 9px 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  min-height: 0;
}

.vxd-consensus-whisper::-webkit-scrollbar {
  width: 3px;
}

.vxd-consensus-whisper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.vxd-whisper-summary {
  font-size: 11px;
  font-style: italic;
  color: hsl(216, 19%, 82%);
  line-height: 1.65;
  margin-bottom: 7px;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}

.vxd-whisper-consensus {
  font-size: 10.5px;
  color: hsl(216, 19%, 82%);
  line-height: 1.55;
  border-left: 2px solid rgba(74, 240, 196, 0.4);
  padding-left: 8px;
  font-style: italic;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}

.vxd-unique-points {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: repeat(var(--lane-count, 2), minmax(0, 1fr));
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  min-width: 0;
  min-height: 0;
}

.vxd-unique-lane-block {
  padding: 8px 10px 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 2px solid var(--lane-color, rgba(255, 255, 255, 0.08));
  overflow-y: auto;
  overflow-x: hidden;
  min-width: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  background: color-mix(in srgb, var(--lane-color, transparent) 3%, transparent);
}

.vxd-unique-lane-block::-webkit-scrollbar {
  width: 3px;
}

.vxd-unique-lane-block::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.vxd-unique-lane-block:last-child {
  border-right: none;
}

.vxd-unique-lane-head {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.vxd-unique-lane-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vxd-unique-lane-name {
  font-size: 11.0617283951px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(213, 12%, 52%);
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  text-overflow: ellipsis;
}

.vxd-unique-lane-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vxd-unique-lane-list li {
  font-size: 10px;
  color: hsl(216, 19%, 82%);
  line-height: 1.5;
}

.vxd-unique-lane-list li::before {
  content: "· ";
  color: #3d4a58;
}

.vxd-unique-lane-empty {
  font-size: 10px;
  color: #3d4a58;
  padding-top: 2px;
}

.vxd-cumulative-radar-zone {
  padding: 0;
  background: hsl(220, 21%, 7%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.vxd-cumulative-radar-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 65% at 50% 55%, rgba(74, 159, 240, 0.06) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 50% 50%, rgba(74, 240, 196, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.vxd-cumulative-radar-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
.vxd-cumulative-radar-zone > * {
  position: relative;
  z-index: 1;
}

.vxd-cumulative-radar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 7px 12px 6px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.2);
}

.vxd-cumulative-radar-zone-title {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(213, 12%, 52%);
  font-weight: 600;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
}

.vxd-cumulative-radar-container {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 20px 16px 12px;
  animation: vxd-fade-up 300ms cubic-bezier(0.25, 1, 0.5, 1) both;
}

.vxd-cumulative-radar-stack {
  position: relative;
  width: min(100%, 480px);
  height: min(100%, 480px);
  aspect-ratio: 1;
  flex-shrink: 0;
  perspective: 800px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  transform-origin: 50% 50% 0;
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  user-select: none;
  touch-action: none;
}

.vxd-cumulative-radar-svg {
  display: block;
  overflow: visible;
  width: 100% !important;
  height: 100% !important;
  filter: drop-shadow(0 0 32px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 8px rgba(74, 159, 240, 0.08));
}
.vxd-cumulative-radar-svg.vxd-radar-lane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform-origin: 50% 50% 0;
}

.vxd-radar-label {
  position: absolute;
  transform-origin: 50% 50% 0;
  font-size: 7.5px;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
}

.vxd-cumulative-radar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  padding: 7px 12px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.15);
  justify-content: center;
}

.vxd-cumulative-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: hsl(213, 12%, 52%);
  letter-spacing: 0.03em;
}

.vxd-cumulative-legend-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.85;
  box-shadow: 0 0 4px currentColor;
}

.vxd-cumulative-legend-label {
  overflow-x: hidden;
  overflow-y: auto;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 130px;
}

.vxd-portrait-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 8px;
  gap: 10px;
  background: hsl(220, 21%, 7%);
  overflow: visible;
}

.vxd-portrait-col::-webkit-scrollbar {
  width: 4px;
}

.vxd-portrait-col::-webkit-scrollbar-track {
  background: transparent;
}

.vxd-portrait-col::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
}

.vxd-portrait-col::-webkit-scrollbar-thumb:hover {
  background: hsla(0, 0%, 100%, 0.13);
}

.vxd-portrait-row {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 8px 8px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 4px;
  flex-wrap: wrap;
  background: hsl(220, 21%, 7%);
}

.vxd-portrait-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: default;
  padding: 6px 4px 4px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background 160ms cubic-bezier(0.25, 1, 0.5, 1), border-color 160ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 160ms cubic-bezier(0.25, 1, 0.5, 1);
}

.vxd-portrait-cell:hover {
  background: hsl(217, 22%, 11%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.vxd-portrait-cell svg {
  display: block;
  overflow: visible;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5));
}

.vxd-portrait-cell-label {
  font-size: 11.0617283951px;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  color: hsl(213, 12%, 52%);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  text-overflow: ellipsis;
  max-width: 110px;
  text-align: center;
  color: var(--lane-color);
  opacity: 0.8;
}

.vxd-portrait-tooltip {
  position: absolute;
  z-index: 200;
  background: #1e2530;
  border: 1px solid hsla(0, 0%, 100%, 0.26);
  border-radius: 8px;
  padding: 10px 12px;
  min-width: 160px;
  max-width: 220px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  animation: vxd-fade-up 120ms cubic-bezier(0.25, 1, 0.5, 1) both;
}

.vxd-pt-turn {
  font-size: 11.0617283951px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(213, 12%, 52%);
  margin-bottom: 8px;
}

.vxd-pt-axes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.vxd-pt-axis {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.vxd-pt-axis-label {
  font-size: 10px;
  color: hsl(216, 19%, 82%);
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  text-overflow: ellipsis;
  max-width: 120px;
}

.vxd-pt-axis-score {
  font-size: 11px;
  color: hsl(225, 27%, 95%);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.vxd-pt-axis-max {
  font-size: 11.0617283951px;
  color: #3d4a58;
}

.vxd-pt-unique {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 8px;
}

.vxd-pt-unique-item {
  font-size: 10px;
  color: hsl(213, 12%, 52%);
  line-height: 1.4;
}

.vxd-pt-unique-item::before {
  content: "· ";
  color: #3d4a58;
}

.vxd-pt-summary {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 6px;
  font-size: 10px;
  font-style: italic;
  color: hsl(213, 12%, 52%);
  line-height: 1.45;
}

.vxd-analysis-title {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 9px;
  font-weight: 600;
  color: hsl(213, 12%, 52%);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  display: none;
}

.vxd-turn-badge {
  font-size: 9px;
  color: hsl(213, 12%, 52%);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  padding: 2px 6px;
  border-radius: 2px;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  transition: border-color 150ms ease, color 150ms ease;
}
.vxd-turn-badge:hover {
  border-color: hsla(0, 0%, 100%, 0.26);
  color: hsl(216, 19%, 82%);
}

.vxd-divergence-hero {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: hsl(217, 22%, 11%);
  position: relative;
}

.vxd-divergence-hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  border-radius: 0 2px 2px 0;
  background: #3d4a58;
  transition: background 600ms ease;
}

.vxd-divergence-hero[data-score-range=low] .vxd-score-arc {
  stroke: #4af07a;
}

.vxd-divergence-hero[data-score-range=low] .vxd-score-num {
  color: #4af07a;
}

.vxd-divergence-hero[data-score-range=low]::after {
  background: #4af07a;
  opacity: 0.7;
}

.vxd-divergence-hero[data-score-range=mid] .vxd-score-arc {
  stroke: hsl(33, 83%, 62%);
}

.vxd-divergence-hero[data-score-range=mid] .vxd-score-num {
  color: hsl(33, 83%, 62%);
}

.vxd-divergence-hero[data-score-range=mid]::after {
  background: hsl(33, 83%, 62%);
  opacity: 0.7;
}

.vxd-divergence-hero[data-score-range=high] .vxd-score-arc {
  stroke: hsl(0, 83%, 62%);
}

.vxd-divergence-hero[data-score-range=high] .vxd-score-num {
  color: hsl(0, 83%, 62%);
}

.vxd-divergence-hero[data-score-range=high]::after {
  background: hsl(0, 83%, 62%);
  opacity: 0.7;
}

.vxd-score-gauge {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.vxd-score-gauge svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.vxd-score-arc-bg {
  fill: none;
  stroke: #1e2530;
  stroke-width: 5;
}

.vxd-score-arc {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1), stroke 600ms ease;
}

.vxd-score-tick {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.vxd-score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.vxd-divergence-text {
  text-align: center;
}

.vxd-divergence-label {
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3d4a58;
}

.vxd-divergence-summary {
  display: none;
}

.vxd-analysis-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .vxd-analysis-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .vxd-analysis-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.vxd-analysis-block {
  padding: 16px 20px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
  border-right: 1px solid hsla(0, 0%, 100%, 0.13);
}

.vxd-analysis-block:nth-child(2n) {
  border-right: none;
}

@media (min-width: 900px) {
  .vxd-analysis-block:nth-child(2n) {
    border-right: 1px solid hsla(0, 0%, 100%, 0.13);
  }
  .vxd-analysis-block:nth-child(3n) {
    border-right: none;
  }
}
.vxd-analysis-block-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(216, 19%, 82%);
  margin-bottom: 10px;
}

.vxd-consensus-text {
  font-size: 12px;
  color: hsl(216, 19%, 82%);
  line-height: 1.6;
  border-left: 2px solid hsl(163, 83%, 62%);
  padding-left: 10px;
}

.vxd-unique-lane {
  margin-bottom: 10px;
}

.vxd-unique-lane:last-child {
  margin-bottom: 0;
}

.vxd-unique-lane-label {
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vxd-unique-lane-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vxd-lane-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vxd-lane-points li {
  font-size: 11px;
  color: hsl(216, 19%, 82%);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.vxd-lane-points li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: hsl(213, 12%, 52%);
}

.vxd-badges-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vxd-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vxd-badge-row-label {
  font-size: 10px;
  color: hsl(213, 12%, 52%);
  min-width: 36px;
  flex-shrink: 0;
}

.vxd-badge {
  display: inline-block;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  font-weight: 500;
  background: #1e2530;
  color: hsl(216, 19%, 82%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
}

.vxd-badge[data-tone=authoritative] {
  border-color: hsl(210, 83%, 62%);
  color: hsl(210, 83%, 62%);
}

.vxd-badge[data-tone=exploratory] {
  border-color: hsl(163, 83%, 62%);
  color: hsl(163, 83%, 62%);
}

.vxd-badge[data-tone=cautious] {
  border-color: hsl(33, 83%, 62%);
  color: hsl(33, 83%, 62%);
}

.vxd-badge[data-tone=prescriptive] {
  border-color: hsl(286, 83%, 62%);
  color: hsl(286, 83%, 62%);
}

.vxd-badge[data-tone=conversational] {
  border-color: hsl(327, 83%, 62%);
  color: hsl(327, 83%, 62%);
}

.vxd-confidence-high {
  color: #4af07a;
}

.vxd-confidence-medium {
  color: hsl(33, 83%, 62%);
}

.vxd-confidence-low {
  color: hsl(0, 83%, 62%);
}

.vxd-token-block {
  padding: 14px 20px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
}

.vxd-token-rows {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.vxd-token-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vxd-token-item-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(216, 19%, 82%);
}

.vxd-token-item-val {
  font-size: 15px;
  font-weight: 500;
  color: hsl(225, 27%, 95%);
  line-height: 1;
}

.vxd-token-item-val.is-watts {
  color: hsl(33, 83%, 62%);
}

.vxd-token-item-val.is-cost {
  color: hsl(216, 19%, 82%);
}

.vxd-token-item-sub {
  font-size: 10px;
  color: hsl(213, 12%, 52%);
}


/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
/**
 * VoxDiff Admin Mixins Library
 * Reusable patterns for consistency across all admin interfaces
 */
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-pop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes vxd-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes vxd-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes vxd-fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes vxd-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.vxd-input-bar {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  background: hsl(220, 21%, 7%);
  border-top: 1px solid hsla(0, 0%, 100%, 0.26);
  align-items: flex-end;
  position: sticky;
  bottom: 0;
  z-index: 10;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 hsla(0, 0%, 100%, 0.07);
}

@media (min-width: 600px) {
  .vxd-input-bar {
    padding: 12px 24px;
  }
}
.vxd-input-wrap {
  flex: 1;
}

.vxd-input {
  background: hsl(217, 22%, 11%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  color: hsl(225, 27%, 95%);
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  transition: border-color 150ms cubic-bezier(0.4, 0, 1, 1);
  width: 100%;
  font-size: 14px;
  padding: 10px 12px;
  resize: none;
  min-height: 42px;
  max-height: 120px;
  line-height: 1.5;
}

.vxd-input:focus {
  outline: none;
  border-color: hsl(163, 83%, 62%);
  box-shadow: 0 0 0 3px color-mix(in srgb, hsl(163, 83%, 62%) 10%, transparent);
}

.vxd-input::placeholder {
  color: hsl(213, 12%, 52%);
}

.vxd-input-bar-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.vxd-status-bar {
  padding: 8px 24px;
  font-size: 11.0617283951px;
  color: hsl(213, 12%, 52%);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
  min-height: 32px;
}

.vxd-spinner {
  width: 12px;
  height: 12px;
  border: 2px solid hsla(0, 0%, 100%, 0.13);
  border-top-color: hsl(163, 83%, 62%);
  border-radius: 50%;
  animation: vxd-spin 0.7s linear infinite;
  flex-shrink: 0;
}

.vxd-error-bar {
  padding: 10px 24px;
  background: color-mix(in srgb, hsl(0, 83%, 62%) 10%, transparent);
  border: 1px solid color-mix(in srgb, hsl(0, 83%, 62%) 20%, transparent);
  border-radius: 4px;
  color: hsl(0, 83%, 62%);
  font-size: 12.4444444444px;
  margin: 12px 24px;
}

.vxd-balance {
  font-size: 11.0617283951px;
  color: hsl(213, 12%, 52%);
  display: flex;
  align-items: center;
  gap: 4px;
}

.vxd-balance-val {
  color: hsl(216, 19%, 82%);
  font-weight: 500;
}

.vxd-balance.is-low .vxd-balance-val {
  color: hsl(33, 83%, 62%);
}

.vxd-balance.is-empty .vxd-balance-val {
  color: hsl(0, 83%, 62%);
}

.vxd-upgrade-banner {
  margin: 12px 24px;
  padding: 12px 16px;
  background: color-mix(in srgb, hsl(163, 83%, 62%) 10%, transparent);
  border: 1px solid color-mix(in srgb, hsl(163, 83%, 62%) 20%, transparent);
  border-radius: 4px;
  font-size: 12.4444444444px;
  color: hsl(216, 19%, 82%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@keyframes vxd-toast-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes vxd-toast-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
}
@keyframes vxd-border-sweep {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -440;
  }
}
@keyframes vxd-judge-dot {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.vxd-save-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: hsl(220, 21%, 7%);
  border: 1px solid hsla(0, 0%, 100%, 0.26);
  border-radius: 12px;
  padding: 16px 24px 16px 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px hsla(0, 0%, 100%, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 260px;
  max-width: min(420px, 90vw);
  animation: vxd-toast-in 260ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.vxd-save-toast.is-leaving {
  animation: vxd-toast-out 200ms ease both;
}

.vxd-save-toast .vxd-toast-ring {
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  pointer-events: none;
  overflow: visible;
}

.vxd-save-toast .vxd-toast-ring rect {
  fill: none;
  stroke: hsl(163, 83%, 62%);
  stroke-width: 1.5;
  stroke-dasharray: 110;
  stroke-dashoffset: 0;
  rx: 12;
  ry: 12;
  opacity: 0.4;
  animation: vxd-border-sweep 1.8s linear infinite;
}

.vxd-save-toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, hsl(163, 83%, 62%) 10%, transparent);
  border: 1px solid color-mix(in srgb, hsl(163, 83%, 62%) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.vxd-save-toast-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, hsl(163, 83%, 62%) 20%, transparent);
  animation: vxd-glow-pulse 1.4s ease-in-out infinite;
}

.vxd-save-toast-glyph {
  font-size: 16px;
  line-height: 1;
}

.vxd-save-toast-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.vxd-save-toast-title {
  font-size: 12.4444444444px;
  font-weight: 600;
  color: hsl(225, 27%, 95%);
  letter-spacing: 0.01em;
}

.vxd-save-toast-sub {
  font-size: 10px;
  color: hsl(213, 12%, 52%);
  letter-spacing: 0.02em;
}

.vxd-thinking-dots {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  vertical-align: middle;
  margin-left: 3px;
}

.vxd-thinking-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: hsl(163, 83%, 62%);
  animation: vxd-judge-dot 1.4s ease-in-out infinite;
}

.vxd-thinking-dots span:nth-child(2) {
  animation-delay: 0.16s;
}

.vxd-thinking-dots span:nth-child(3) {
  animation-delay: 0.32s;
}

.vxd-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.vxd-modal {
  background: hsl(220, 21%, 7%);
  border: 1px solid hsla(0, 0%, 100%, 0.26);
  border-radius: 6px;
  padding: 24px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.vxd-modal-title {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  color: hsl(225, 27%, 95%);
  margin-bottom: 12px;
}

.vxd-share-url {
  width: 100%;
  background: hsl(217, 22%, 11%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  color: hsl(163, 83%, 62%);
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  font-size: 12.4444444444px;
  padding: 10px 12px;
  margin-bottom: 12px;
  word-break: break-all;
}

.vxd-readonly-banner {
  padding: 10px 24px;
  background: hsl(220, 21%, 7%);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
  font-size: 11.0617283951px;
  color: hsl(213, 12%, 52%);
  text-align: center;
  letter-spacing: 0.06em;
}

.vxd-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow-x: hidden;
  overflow-y: auto;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.vxd-stats-strip {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0;
  padding: 4px 6px;
  box-sizing: border-box;
  animation: vxd-strip-in 0.3s ease-out both;
}

@keyframes vxd-strip-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.vxd-sbar-cell {
  flex: 1;
  min-width: 0;
  position: relative;
  padding: 0 4px;
}

.vxd-sbar-cell + .vxd-sbar-cell {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.vxd-sbar-track {
  width: 100%;
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.07);
  border-radius: 4px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  align-items: center;
}

.vxd-sbar-value {
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  font-size: 12.4444444444px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.vxd-sbar-fill {
  position: absolute;
  top: 0;
  height: 100%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.vxd-sbar-subvalue {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.vxd-sbar-fill--current::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--bar-color, #fff);
  opacity: 0.85;
  filter: blur(1px);
}

.vxd-sbar-meta {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: hsl(213, 12%, 52%);
  opacity: 0.5;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.vxd-provider-btns,
.vxd-model-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.vxd-provider-btn {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  font-size: 11.0617283951px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: hsl(217, 22%, 11%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  color: hsl(213, 12%, 52%);
  cursor: pointer;
  transition: all 120ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-weight: 500;
  min-width: 80px;
  text-align: center;
}

.vxd-provider-btn:hover:not(:disabled):not(.is-active) {
  background: #1e2530;
  border-color: hsla(0, 0%, 100%, 0.26);
  color: hsl(216, 19%, 82%);
  box-shadow: 0 4px 12px rgba(74, 240, 196, 0.08);
  transform: translateY(-1px);
}

.vxd-provider-btn:active:not(:disabled) {
  transform: translateY(0);
}

.vxd-provider-btn:focus {
  outline: none;
  border-color: hsl(163, 83%, 62%);
  box-shadow: 0 0 0 2px #090b0e, 0 0 0 4px hsl(163, 83%, 62%);
}

.vxd-provider-btn.is-active {
  background: hsl(163, 83%, 62%);
  border-color: hsl(163, 83%, 62%);
  color: #090b0e;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(74, 240, 196, 0.25);
  transform: translateY(-2px);
}

.vxd-provider-btn.is-active:hover {
  box-shadow: 0 8px 28px rgba(74, 240, 196, 0.35);
}

.vxd-provider-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  padding: 1px 4px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
  vertical-align: middle;
  pointer-events: none;
}

.vxd-provider-badge--free {
  background: #1a7f4b;
  color: #fff;
}

.vxd-provider-badge--premium {
  background: #7c4dff;
  color: #fff;
}

.vxd-model-btn {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  font-size: 11.0617283951px;
  padding: 7px 11px;
  background: hsl(217, 22%, 11%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  color: hsl(216, 19%, 82%);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  transition: all 120ms cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
}

.vxd-model-btn:hover:not(:disabled):not(.is-active):not(.is-taken) {
  background: #1e2530;
  border-color: hsla(0, 0%, 100%, 0.26);
  color: hsl(225, 27%, 95%);
  box-shadow: 0 4px 12px rgba(74, 240, 196, 0.06);
  transform: translateY(-1px);
}

.vxd-model-btn:active:not(:disabled) {
  transform: translateY(0);
}

.vxd-model-btn:focus {
  outline: none;
  border-color: hsl(163, 83%, 62%);
  box-shadow: 0 0 0 2px #090b0e, 0 0 0 4px hsl(163, 83%, 62%);
}

.vxd-model-btn.is-active {
  background: hsl(180, 10%, 72%);
  border-color: hsl(180, 20%, 72%);
  color: #090b0e;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(74, 240, 196, 0.25);
  transform: translateY(-2px);
}

.vxd-model-btn.is-active .vxd-model-primary {
  color: #090b0e;
}

.vxd-model-btn.is-active .vxd-model-sub {
  color: rgba(12, 14, 17, 0.7);
}

.vxd-model-btn.is-active:hover {
  box-shadow: 0 8px 28px rgba(74, 240, 196, 0.35);
}

.vxd-model-btn.is-locked {
  opacity: 0.55;
  cursor: not-allowed;
}

.vxd-model-btn.is-locked:hover {
  box-shadow: 0 2px 8px rgba(240, 168, 74, 0.15);
}

.vxd-model-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.vxd-model-btn.is-unavailable {
  opacity: 0.45;
  border-color: rgba(255, 255, 255, 0.06);
  color: hsl(213, 12%, 52%);
}

.vxd-model-btn.is-unavailable .vxd-model-sub {
  opacity: 0.6;
}

.vxd-model-primary {
  font-size: 1rem;
  line-height: 1.2;
}

.vxd-model-sub {
  font-size: 9px;
  letter-spacing: 0.05em;
  color: hsl(213, 12%, 52%);
  line-height: 1.2;
}

.vxd-model-cost {
  display: block;
  font-size: 0.75em;
  opacity: 0.7;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .vxd-lightbox-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start;
    padding: 20px 20px 60px;
  }
  .vxd-lightbox-content {
    font-size: 14px !important;
    padding-left: 16px;
  }
  .vxd-lightbox-portrait {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
  }
  .vxd-lightbox-portrait svg {
    width: 160px;
    height: 160px;
  }
  .vxd-lightbox-body {
    flex-direction: column;
    align-items: stretch;
  }
  .vxd-lightbox-footer {
    padding-bottom: 60px;
  }
  .vxd-comparison {
    grid-template-rows: auto 1fr;
    padding-bottom: 52px;
  }
  .vxd-topbar {
    grid-row: 1;
    padding: 6px 12px;
    min-height: 36px;
    gap: 10px;
  }
  .vxd-config-bar,
  .vxd-status-bar,
  .vxd-lanes-wrap,
  .vxd-analysis-panel {
    grid-row: 2;
    grid-column: 1;
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    bottom: 52px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: none !important;
    opacity: 1 !important;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 260ms cubic-bezier(0.25, 1, 0.5, 1), visibility 0ms linear 260ms;
  }
  .vxd-config-bar.is-mobile-active,
  .vxd-status-bar.is-mobile-active,
  .vxd-lanes-wrap.is-mobile-active,
  .vxd-analysis-panel.is-mobile-active {
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
    transition: transform 260ms cubic-bezier(0.25, 1, 0.5, 1), visibility 0ms linear 0ms;
  }
  .vxd-config-bar.is-mobile-prev,
  .vxd-status-bar.is-mobile-prev,
  .vxd-lanes-wrap.is-mobile-prev,
  .vxd-analysis-panel.is-mobile-prev {
    pointer-events: none;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform 260ms cubic-bezier(0.25, 1, 0.5, 1), visibility 0ms linear 260ms;
  }
  .vxd-status-bar {
    bottom: auto;
    height: auto;
    top: 36px;
    overflow: visible;
  }
  .vxd-input-bar {
    position: fixed;
    bottom: 52px;
    left: 0;
    right: 0;
    z-index: 200;
    max-height: none !important;
    border-top: 1px solid hsla(0, 0%, 100%, 0.13);
    background: hsl(220, 21%, 7%);
  }
  .vxd-input-bar.vxd-collapsed {
    display: none;
  }
  .vxd-config-bar {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 16px;
    gap: 16px;
  }
  .vxd-lanes {
    grid-template-columns: 1fr;
  }
  .vxd-config-actions {
    flex-direction: column;
    gap: 10px;
  }
  .vxd-start-btn {
    width: 100%;
    justify-content: center;
  }
  .vxd-lane-count-controls {
    justify-content: center;
  }
  .vxd-lanes {
    grid-template-columns: 1fr !important;
    height: auto;
  }
  .vxd-lane {
    height: auto;
    min-height: 160px;
    max-height: none;
  }
  .vxd-analysis-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 16px 112px;
  }
  .vxd-portrait-col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .vxd-cumulative-radar-zone,
  .vxd-analysis-right {
    width: 100%;
  }
  .vxd-mobile-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: rgba(15, 19, 24, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 300;
    align-items: stretch;
    padding: 0 4px;
  }
  .vxd-mnav-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    color: #3d4a58;
    padding: 6px 4px;
    position: relative;
    transition: color 160ms ease;
    min-width: 0;
  }
  .vxd-mnav-tab svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .vxd-mnav-tab .vxd-mnav-lane-num {
    font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
    font-size: 8px;
    letter-spacing: 0.06em;
    line-height: 1;
    color: currentColor;
    opacity: 0.8;
  }
  .vxd-mnav-tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1.5px;
    background: hsl(163, 83%, 62%);
    border-radius: 0 0 2px 2px;
    opacity: 0;
    transition: opacity 160ms ease;
  }
  .vxd-mnav-tab.is-active {
    color: hsl(163, 83%, 62%);
  }
  .vxd-mnav-tab.is-active::before {
    opacity: 1;
  }
  .vxd-mnav-tab:disabled {
    color: #3d4a58;
    opacity: 0.3;
    cursor: not-allowed;
  }
  .vxd-mnav-tab:disabled::before {
    opacity: 0;
  }
  .vxd-mnav-tab.vxd-mnav-lane.is-active {
    color: var(--lane-color);
  }
  .vxd-mnav-tab.vxd-mnav-lane.is-active::before {
    background: var(--lane-color);
  }
}
.vxd-mobile-nav {
  display: none;
}

.vxd-usage-chip {
  font-size: 11.0617283951px;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  color: hsl(213, 12%, 52%);
  cursor: pointer;
  user-select: none;
  list-style: none;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  transition: color 0.15s, border-color 0.15s;
}

.vxd-usage-chip::-webkit-details-marker {
  display: none;
}

.vxd-usage-chip::marker {
  display: none;
}

.vxd-usage-chip:hover {
  color: hsl(216, 19%, 82%);
  border-color: hsla(0, 0%, 100%, 0.26);
}

.vxd-usage-panel[open] .vxd-usage-chip {
  color: hsl(163, 83%, 62%);
  border-color: color-mix(in srgb, hsl(163, 83%, 62%) 35%, transparent);
}

.vxd-usage-panel {
  position: relative;
}

.vxd-usage-body {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 200;
  width: 260px;
  background: hsl(217, 22%, 11%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.4);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vxd-usage-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vxd-usage-section-label {
  font-size: 9px;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  color: #3d4a58;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.vxd-usage-row {
  display: grid;
  grid-template-columns: 72px 1fr 54px;
  align-items: center;
  gap: 4px;
}

.vxd-usage-row-label {
  font-size: 10px;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  color: hsl(213, 12%, 52%);
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  text-overflow: ellipsis;
}

.vxd-usage-bar {
  height: 4px;
  background: #1e2530;
  border-radius: 2px;
  overflow-x: hidden;
  overflow-y: auto;
}

.vxd-usage-fill {
  height: 100%;
  background: hsl(163, 83%, 62%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vxd-usage-row.is-warn .vxd-usage-fill {
  background: hsl(33, 83%, 62%);
}

.vxd-usage-row.is-crit .vxd-usage-fill {
  background: hsl(0, 83%, 62%);
}

.vxd-usage-row-count {
  font-size: 10px;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, "Courier New", monospace;
  color: hsl(213, 12%, 52%);
  text-align: right;
  white-space: nowrap;
}

.vxd-usage-row[data-usage-type=tokens] .vxd-usage-fill {
  background: #4af07a;
}

.vxd-usage-row[data-usage-type=tokens].is-warn .vxd-usage-fill {
  background: hsl(33, 83%, 62%);
}

.vxd-usage-row[data-usage-type=tokens].is-crit .vxd-usage-fill {
  background: hsl(0, 83%, 62%);
}

@media print {
  .vxd-session-stats,
  .vxd-lane-stats {
    background: white;
    border-color: #ccc;
    color: #000;
  }
  .vxd-session-stats .vxd-stat-label,
  .vxd-lane-stats .vxd-stat-label {
    color: #666;
  }
  .vxd-session-stats .vxd-stat-value,
  .vxd-lane-stats .vxd-stat-value {
    color: #000;
  }
}

/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
.vxd-td-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 10px;
  color: hsl(213, 12%, 52%);
  line-height: 1;
}

.vxd-td-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  white-space: nowrap;
}

.vxd-td-label {
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
}

.vxd-td-total {
  color: hsl(216, 19%, 82%);
  font-weight: 500;
}

.vxd-td-think {
  color: #a89ef8;
}

.vxd-td-energy {
  color: hsl(33, 83%, 62%);
  opacity: 0.7;
}

.vxd-td-cost {
  color: hsl(163, 83%, 62%);
  opacity: 0.7;
}

.vxd-thinking-controls {
  margin-top: 10px;
  padding: 10px 12px;
  background: hsl(220, 17%, 9%);
  border: 1px solid hsla(0, 0%, 100%, 0.07);
  border-radius: 4px;
}

.vxd-thinking-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vxd-thinking-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  font-size: 12px;
  color: hsl(216, 19%, 82%);
}

.vxd-thinking-toggle {
  width: 14px;
  height: 14px;
  accent-color: hsl(163, 83%, 62%);
  cursor: pointer;
  flex-shrink: 0;
}
.vxd-thinking-toggle:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.vxd-thinking-label-text {
  font-weight: 500;
  color: hsl(225, 27%, 95%);
}

.vxd-thinking-type-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(124, 106, 247, 0.15);
  color: #a89ef8;
  white-space: nowrap;
}

.vxd-thinking-budget-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid hsla(0, 0%, 100%, 0.07);
}

.vxd-budget-label-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 11px;
  color: hsl(213, 12%, 52%);
}
.vxd-budget-label-row .vxd-budget-value {
  font-weight: 600;
  font-size: 13px;
  color: hsl(225, 27%, 95%);
  min-width: 48px;
  text-align: right;
}
.vxd-budget-label-row .vxd-budget-unit {
  font-size: 11px;
  color: hsl(213, 12%, 52%);
}

.vxd-thinking-budget-slider {
  width: 100%;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: hsl(220, 19%, 15%);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.vxd-thinking-budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: hsl(163, 83%, 62%);
  cursor: pointer;
  box-shadow: 0 0 0 3px color-mix(in srgb, hsl(163, 83%, 62%) 12%, transparent);
  transition: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.vxd-thinking-budget-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: hsl(163, 83%, 62%);
  cursor: pointer;
}
.vxd-thinking-budget-slider:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px color-mix(in srgb, hsl(163, 83%, 62%) 20%, transparent);
}

.vxd-budget-warning {
  margin-top: 5px;
  font-size: 11px;
  color: hsl(33, 83%, 62%);
  line-height: 1.3;
}

.vxd-thinking-temp-notice {
  margin-top: 8px;
  padding: 6px 8px;
  background: rgba(240, 164, 41, 0.08);
  border: 1px solid rgba(240, 164, 41, 0.2);
  border-radius: 4px;
  font-size: 11px;
  color: hsl(33, 83%, 62%);
  line-height: 1.35;
}

.vxd-setting-row.is-disabled,
.vxd-param-row.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.vxd-temp-thinking-notice {
  margin-top: 4px;
  font-size: 11px;
  color: hsl(33, 83%, 62%);
}

.vxd-thinking-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(124, 106, 247, 0.15);
  color: #a89ef8;
  vertical-align: middle;
  margin-left: 6px;
}

.vxd-stat-thinking {
  font-size: 11px;
  color: #a89ef8;
  opacity: 0.85;
}
.vxd-stat-thinking::before {
  content: " · ";
  opacity: 0.5;
}

.vxd-model-group-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}
.vxd-model-group-toggle:hover .vxd-model-group-label {
  color: hsl(225, 27%, 95%);
}

.vxd-model-group-arrow {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  transition: transform 200ms ease-out;
  font-size: 0.75em;
  line-height: 1;
  transform: rotate(-90deg);
}

.vxd-model-other {
  margin-top: 4px;
}

.vxd-model-other-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: hsl(213, 12%, 52%);
  font-size: 11.0617283951px;
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.vxd-model-other-toggle:hover {
  opacity: 1;
  color: hsl(216, 19%, 82%);
}
.vxd-model-other-toggle .vxd-model-group-count {
  padding-left: 4px;
}

.vxd-model-other-arrow {
  display: inline-block;
  font-size: 0.65em;
  transition: transform 200ms ease-out;
}

.vxd-model-other-btns {
  padding-left: 8px;
  margin-top: 2px;
}

.vxd-model-group-label {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 11.0617283951px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(213, 12%, 52%);
  padding-bottom: 2px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.13);
  flex: 1;
}

.vxd-model-group-count {
  font-family: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Fira Code", monospace;
  font-size: 11.0617283951px;
  color: hsl(213, 12%, 52%);
  margin-left: auto;
  padding-left: 8px;
}

/**
 * CreditStrip — instrument-panel credit + usage display
 *
 * 8:1 aspect ratio strip. Grayscale-dominant palette with a single
 * desaturated-cyan accent for the gauge fill. Lives in the site header.
 *
 * Aesthetic: flight-data-recorder. Tight monospace readouts, ruled dividers,
 * segment labels pressed into the chrome in small-caps.
 */
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
/**
 * VoxDiff Admin Mixins Library
 * Reusable patterns for consistency across all admin interfaces
 */
/**
 * VoxDiff Admin Design System
 * Aesthetic: Precision technical interface — Swiss typography, modular scale
 * All values derived from fundamental units for consistency and maintainability
 */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-pop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes vxd-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes vxd-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes vxd-fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes vxd-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.vxd-credit-strip {
  display: flex;
  align-items: center;
  height: 38px;
  background: hsl(220, 21%, 7%);
  border: 1px solid hsla(0, 0%, 100%, 0.13);
  border-radius: 4px;
  overflow: hidden;
  white-space: nowrap;
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace;
  user-select: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 1px 4px rgba(0, 0, 0, 0.45);
}
.vxd-credit-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 1px, rgba(0, 0, 0, 0.08) 1px, rgba(0, 0, 0, 0.08) 2px);
  pointer-events: none;
  border-radius: inherit;
}
.vxd-credit-strip[data-balance-level=warn] .vxd-cs-balance-val {
  color: hsl(39, 22%, 72%);
}
.vxd-credit-strip[data-balance-level=crit] .vxd-cs-balance-val {
  color: hsl(0, 18%, 72%);
}
.vxd-credit-strip[data-balance-level=warn] .vxd-cs-gauge-fill {
  background: hsl(39, 22%, 72%);
}
.vxd-credit-strip[data-balance-level=crit] .vxd-cs-gauge-fill {
  background: hsl(0, 18%, 72%);
}

.vxd-cs-divider {
  width: 1px;
  height: 60%;
  background: hsla(0, 0%, 100%, 0.13);
  flex-shrink: 0;
}

.vxd-cs-segment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 10px;
  gap: 1px;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
.vxd-cs-segment[data-intensity=mid] .vxd-cs-duo-val {
  color: hsl(39, 22%, 72%);
}
.vxd-cs-segment[data-intensity=high] .vxd-cs-duo-val {
  color: hsl(0, 18%, 72%);
}

.vxd-cs-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(213, 19%, 29%);
  line-height: 1;
}

.vxd-cs-value {
  font-size: 12.4444444444px;
  font-weight: 500;
  color: hsl(225, 27%, 95%);
  letter-spacing: 0.02em;
  line-height: 1;
}

.vxd-cs-balance {
  min-width: 112px;
}
.vxd-cs-balance .vxd-cs-balance-val {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: hsl(225, 27%, 95%);
  transition: color 400ms cubic-bezier(0.4, 0, 1, 1);
}

.vxd-cs-gauge {
  width: calc(100% - 20px);
  height: 3px;
  background: hsla(0, 0%, 100%, 0.07);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  margin-top: 2px;
}

.vxd-cs-gauge-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--fill-pct, 100%);
  background: hsl(210, 18%, 58%);
  border-radius: 2px;
  transition: width 600ms cubic-bezier(0.4, 0, 0.2, 1), background 400ms cubic-bezier(0.4, 0, 1, 1);
}
.vxd-cs-gauge-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to right, transparent 0%, transparent calc(20% - 1px), rgba(0, 0, 0, 0.35) calc(20% - 1px), rgba(0, 0, 0, 0.35) 20%);
}

.vxd-cs-diffs,
.vxd-cs-turns {
  min-width: 88px;
}

.vxd-cs-duo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.vxd-cs-duo-item {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.vxd-cs-duo-val {
  font-size: 12.4444444444px;
  font-weight: 600;
  color: hsl(225, 27%, 95%);
  letter-spacing: 0.02em;
  transition: color 300ms cubic-bezier(0.4, 0, 1, 1);
}

.vxd-cs-duo-unit {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: hsl(213, 12%, 52%);
  text-transform: lowercase;
}

.vxd-cs-duo-sep {
  font-size: 11.0617283951px;
  color: hsla(0, 0%, 100%, 0.13);
  margin: 0 1px;
}

.vxd-cs-session {
  min-width: 80px;
}
.vxd-cs-session .vxd-cs-session-val {
  font-size: 12.4444444444px;
  font-weight: 500;
  color: hsl(225, 27%, 95%);
  letter-spacing: 0.02em;
}

.vxd-cs-tier-badge {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(213, 19%, 29%);
  padding: 0 8px;
  height: 100%;
  display: flex;
  align-items: center;
  border-left: 1px solid hsla(0, 0%, 100%, 0.13);
  background: rgba(255, 255, 255, 0.018);
  flex-shrink: 0;
}
.vxd-cs-tier-badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 2px;
  border-radius: 1px;
  background: transparent;
}
.vxd-cs-tier-badge[data-tier=red_cup]::before {
  background: hsl(0, 22%, 58%);
}
.vxd-cs-tier-badge[data-tier=open_bar]::before {
  background: hsl(213, 22%, 58%);
}
.vxd-cs-tier-badge[data-tier=cash_bar]::before {
  background: hsl(45, 22%, 62%);
}
.vxd-cs-tier-badge[data-tier=run_a_tab]::before {
  background: hsl(163, 22%, 52%);
}

@keyframes vxd-cs-shimmer {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.3;
  }
}
.vxd-credit-strip:not([data-balance-level]) .vxd-cs-value,
.vxd-credit-strip:not([data-balance-level]) .vxd-cs-duo-val,
.vxd-credit-strip:not([data-balance-level]) .vxd-cs-session-val {
  animation: vxd-cs-shimmer 1.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@media (max-width: 768px) {
  .vxd-cs-diffs,
  .vxd-cs-turns,
  .vxd-cs-session {
    display: none;
  }
  .vxd-cs-divider:not(:nth-child(2)) {
    display: none;
  }
}
.vxd-credit-strip-item {
  padding: 0 !important;
  margin: 0 4px !important;
}
.vxd-credit-strip-item::before {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .vxd-cs-gauge-fill,
  .vxd-cs-balance-val,
  .vxd-cs-duo-val {
    transition: none;
  }
  .vxd-credit-strip:not([data-balance-level]) .vxd-cs-value,
  .vxd-credit-strip:not([data-balance-level]) .vxd-cs-duo-val,
  .vxd-credit-strip:not([data-balance-level]) .vxd-cs-session-val {
    animation: none;
  }
}

/*# sourceMappingURL=compare.css.map */
