:root {
  --chart-width: 3.45in;
  --chart-height: 2.15in;
  --track-color: var(--theme-neutral-muted);
  --text-strong: var(--theme-text);
  --text-muted: var(--theme-text-muted);
  --panel-bg: linear-gradient(180deg, var(--theme-surface-strong) 0%, var(--theme-surface) 100%);
  --panel-border: var(--theme-border-strong);
  --accent: var(--theme-accent);
  --q1-color: var(--theme-neutral-strong);
  --q2-color: #756a63;
  --q3-color: #8f1f2b;
  --q4-color: var(--theme-accent);
}

body {
  margin: 0;
}

.chart-wrapper {
  width: var(--chart-width);
  min-height: var(--chart-height);
}

.chart-card {
  width: 100%;
  min-height: 100%;
  padding: 0.24in;
  border-radius: var(--theme-radius-md);
  border: 1px solid var(--panel-border);
  background: var(--panel-bg);
  box-shadow: var(--theme-shadow-xs);
}

.chart-header {
  margin-bottom: 0.22in;
}

.eyebrow {
  margin: 0 0 0.08in;
  font-size: 0.11in;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.chart-header strong {
  font-size: 0.29in;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

.bar-group {
  display: flex;
  flex-direction: column;
  gap: 0.13in;
}

.bar-row {
  display: grid;
  grid-template-columns: 0.28in 1fr 0.34in;
  align-items: center;
  gap: 0.12in;
}

.bar-label,
.bar-value {
  font-size: 0.11in;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bar-track {
  width: 100%;
  height: 0.1in;
  background: var(--track-color);
  border-radius: var(--theme-radius-pill);
  overflow: hidden;
}

.bar {
  height: 100%;
  border-radius: var(--theme-radius-pill);
}

.bar-q1 { width: 40%; background: var(--q1-color); }
.bar-q2 { width: 20%; background: var(--q2-color); }
.bar-q3 { width: 25%; background: var(--q3-color); }
.bar-q4 { width: 15%; background: var(--q4-color); }
