:root {
  --color-bg: #fafaf8;
  --color-text: #1a1a1a;
  --color-text-muted: #5a5a5a;
  --color-text-subtle: #888;
  --color-border: #d8d6d0;
  --color-border-strong: #b8b6b0;
  --color-accent: #2d3a55;
  --color-card-bg: #ffffff;
  --color-card-bg-active: #f4f2ec;
  --color-positive: #2c5d3f;
  --color-negative: #8a3a2a;
  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  --font-serif: "Iowan Old Style", "Charter", "Georgia", "Times New Roman", serif;
  --topbar-h: 64px;
  --policybar-h: 92px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.5;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* TOP BAR */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.5rem;
  background: white;
  border-bottom: 1px solid var(--color-border);
  min-height: var(--topbar-h);
  flex-shrink: 0;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.topbar-title {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.topbar h1 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.tagline {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-style: italic;
  font-family: var(--font-serif);
}

.tour-button {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  margin-right: 0.5rem;
}

.tour-button:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.topbar-link {
  color: var(--color-text-subtle);
  font-size: 0.8rem;
  text-decoration: none;
  margin-left: auto;
  margin-right: 0.85rem;
  padding: 0.4rem 0;
}

.topbar-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.settings-drawer {
  position: relative;
}

.settings-drawer summary {
  cursor: pointer;
  list-style: none;
  padding: 0.5rem 0.85rem;
  background: var(--color-card-bg-active);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  user-select: none;
  white-space: nowrap;
}

.settings-drawer summary::-webkit-details-marker { display: none; }

.settings-drawer summary:hover {
  border-color: var(--color-accent);
}

.settings-form {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 1rem;
  min-width: 320px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  z-index: 20;
}

.settings-form label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.settings-form input[type="number"],
.settings-form select {
  display: block;
  margin-top: 0.2rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: white;
  font-family: inherit;
  font-size: 0.9rem;
  width: 100%;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.settings-form input:focus, .settings-form select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.settings-form .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text);
  padding-top: 0.85rem;
  cursor: pointer;
}

.settings-form .checkbox-label input {
  width: 14px;
  height: 14px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--color-accent);
}

/* DASHBOARD */
.dashboard {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  min-height: 0;
  overflow: hidden;
}

.panel {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  flex-shrink: 0;
  gap: 1rem;
}

.panel h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.net-impact-inline {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.net-impact-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.net-impact-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-accent);
}

.net-impact-value.value-positive { color: var(--color-positive); }
.net-impact-value.value-negative { color: var(--color-negative); }

.net-impact-period {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* INCOME PRESETS */
.income-presets {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: thin;
}

.income-presets::-webkit-scrollbar {
  height: 4px;
}

.income-presets::-webkit-scrollbar-thumb {
  background: var(--color-border-strong);
  border-radius: 2px;
}

.presets-label {
  font-size: 0.7rem;
  color: var(--color-text-subtle);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-right: 0.25rem;
}

.preset-pill {
  background: white;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 0.3rem 0.7rem;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.preset-pill:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.preset-pill.active {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.preset-pill.active:hover {
  background: #1f2940;
  color: white;
}

/* PERSONAL: BARS */
.bar-comparison {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.bar-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.bar-header {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}

.bar-header-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  flex-shrink: 0;
}

.bar-header-rate {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.bar-header-rate strong {
  color: var(--color-text);
  font-weight: 600;
}

.bar-header-pocket {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-left: auto;
}

.bar-header-pocket strong {
  color: var(--color-positive);
  font-weight: 600;
}

.bar {
  display: flex;
  height: 44px;
  background: #efebe3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.bar-segment {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0.5rem;
  overflow: hidden;
  white-space: nowrap;
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: flex 0.4s ease;
  min-width: 0;
}

.bar-segment-label {
  text-overflow: ellipsis;
  overflow: hidden;
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
}

.seg-federal   { background: #8a3a2a; }
.seg-payroll   { background: #a35044; }
.seg-health    { background: #b8634a; }
.seg-debt      { background: #c47a4f; }
.seg-childcare { background: #c98a55; }
.seg-college   { background: #d09a60; }
.seg-pocket    { background: #2c5d3f; }

.bar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.legend-swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

/* QUALITATIVE BENEFITS — compact inline */
.benefits-row {
  flex: 1;
  overflow-y: auto;
  font-size: 0.8rem;
  color: var(--color-text);
  padding: 0.5rem 0.6rem;
  background: var(--color-card-bg-active);
  border-radius: 4px;
  line-height: 1.5;
  min-height: 0;
}

.benefits-empty {
  font-style: italic;
  color: var(--color-text-subtle);
}

.benefit-item {
  display: block;
  padding: 0.15rem 0;
}

.benefit-item::before {
  content: "✓ ";
  color: var(--color-accent);
  font-weight: 700;
}

/* BILLIONAIRE PANEL */
.billionaire-totals {
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.bt-raised {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent);
}

.bt-label {
  font-size: 0.75rem;
}

.billionaire-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  margin-bottom: 0.5rem;
  padding-right: 0.25rem;
}

.billionaire-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.6rem;
  align-items: center;
  padding: 0.3rem 0;
}

.billionaire-meta {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.billionaire-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.1;
}

.billionaire-role {
  font-size: 0.7rem;
  color: var(--color-text-subtle);
  font-style: italic;
  line-height: 1.1;
}

.billionaire-rate {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
  margin-top: 0.1rem;
  cursor: help;
}

.billionaire-rate strong {
  color: var(--color-text);
  font-weight: 600;
}

.billionaire-bar-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.billionaire-bar-header {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
  line-height: 1.1;
}

.billionaire-bar-header strong {
  color: var(--color-text);
  font-weight: 600;
}

.billionaire-bar-header.reform-up strong {
  color: var(--color-accent);
}

.bar-header-delta {
  font-size: 0.65rem;
  color: var(--color-accent);
  font-weight: 500;
}

.billionaire-growth {
  font-size: 0.7rem;
  color: var(--color-text-subtle);
  font-variant-numeric: tabular-nums;
  margin-top: 0.25rem;
  line-height: 1.2;
}

.billionaire-growth strong {
  color: var(--color-text-muted);
  font-weight: 600;
}

.billionaire-bar {
  display: flex;
  height: 36px;
  background: #efebe3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  width: 100%;
}

.billionaire-after {
  background: #2c5d3f;
  display: flex;
  align-items: center;
  padding: 0 0.55rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.4s ease;
}

.billionaire-tax {
  background: var(--color-accent);
  display: flex;
  align-items: center;
  padding: 0 0.55rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.4s ease;
}

.billionaire-bar-label {
  text-overflow: ellipsis;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 1px rgba(0,0,0,0.15);
}

/* SUBSECTION LABELS WITHIN BILLIONAIRE PANEL */
.subsection-label {
  font-size: 0.7rem;
  color: var(--color-text-subtle);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.subsection-label-mid {
  margin-top: 0.85rem;
}

/* INCOME CLASS BARS (below the billionaires) */
.income-class-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-shrink: 0;
  margin-bottom: 0.65rem;
}

.class-row {
  display: grid;
  grid-template-columns: 92px 95px 1fr 105px;
  gap: 0.55rem;
  align-items: center;
  padding: 0.15rem 0;
}

.class-rate {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.class-rate strong {
  color: var(--color-text);
  font-weight: 600;
}

.class-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.class-bar {
  display: flex;
  height: 22px;
  background: #efebe3;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.class-bar-pocket {
  background: #2c5d3f;
  transition: width 0.4s ease;
  display: flex;
  align-items: center;
  padding: 0 0.4rem;
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 1px rgba(0,0,0,0.2);
  white-space: nowrap;
  overflow: hidden;
}

.class-bar-costs {
  background: #8a3a2a;
  transition: width 0.4s ease;
  display: flex;
  align-items: center;
  padding: 0 0.4rem;
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 1px rgba(0,0,0,0.2);
  white-space: nowrap;
  overflow: hidden;
}

.class-change {
  font-variant-numeric: tabular-nums;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: right;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.class-change.positive { color: var(--color-positive); }
.class-change.negative { color: var(--color-negative); }
.class-change.neutral { color: var(--color-text-subtle); }

.billionaire-summary-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.4;
  flex-shrink: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}

/* POLICY BAR (sticky bottom) */
.policy-bar {
  background: white;
  border-top: 2px solid var(--color-accent);
  padding: 0.65rem 1.5rem 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 -4px 16px rgba(45, 58, 85, 0.08);
  min-height: var(--policybar-h);
  display: flex;
  align-items: center;
}

.policy-bar-inner {
  width: 100%;
}

.policy-bar-prompt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  transition: opacity 0.4s ease;
}

.policy-bar-prompt strong {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.prompt-arrow {
  display: inline-block;
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 700;
  animation: bounce-up 1.6s ease-in-out infinite;
}

.policy-bar-prompt.dim {
  opacity: 0;
  pointer-events: none;
  height: 0;
  margin-bottom: 0;
  overflow: hidden;
}

@keyframes bounce-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.policy-chips {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.55rem;
}

.chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.7rem 0.95rem;
  background: var(--color-card-bg);
  border: 2px solid var(--color-border-strong);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s, box-shadow 0.15s;
  user-select: none;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(45, 58, 85, 0.12);
}

.chip input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

.chip-cost {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
  font-variant-numeric: tabular-nums;
}

.chip:has(input:checked) {
  background: var(--color-card-bg-active);
  border-color: var(--color-accent);
  transform: none;
}

.chip:has(input:checked) .chip-label {
  color: var(--color-accent);
}

.chip:has(input:checked)::before {
  content: "✓";
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 700;
}

/* WALKTHROUGH */
.walkthrough {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.walkthrough[hidden] { display: none; }

.walkthrough.show { pointer-events: auto; }
.walkthrough.show.passive { pointer-events: none; }
.walkthrough.show.passive .wt-card { pointer-events: auto; }

.wt-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 25, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.walkthrough.show .wt-backdrop { opacity: 1; }
.walkthrough.show.passive .wt-backdrop { opacity: 0; }

.wt-card {
  position: absolute;
  background: white;
  border-radius: 8px;
  padding: 1.75rem 2rem 1.5rem;
  max-width: 540px;
  width: calc(100% - 2rem);
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
  transition: top 0.4s ease, transform 0.4s ease, max-width 0.3s ease;
  border: 1px solid var(--color-border);
}

.wt-card.position-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wt-card.position-top {
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 620px;
  padding: 1.25rem 1.75rem 1.25rem;
}

.wt-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--color-text-subtle);
  cursor: pointer;
  width: 28px;
  height: 28px;
  line-height: 1;
  border-radius: 4px;
}

.wt-close:hover {
  background: var(--color-card-bg-active);
  color: var(--color-text);
}

.wt-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-subtle);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.wt-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.wt-card.position-top .wt-title {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.wt-body {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.wt-card.position-top .wt-body {
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.wt-body strong { color: var(--color-text); font-weight: 600; }

.wt-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.wt-btn {
  padding: 0.6rem 1.1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
}

.wt-btn-primary {
  background: var(--color-accent);
  color: white;
}

.wt-btn-primary:hover {
  background: #1f2940;
}

.wt-btn-secondary {
  background: transparent;
  color: var(--color-text-muted);
  padding: 0.6rem 0.5rem;
  text-decoration: underline;
}

.wt-btn-secondary:hover { color: var(--color-text); }

.wt-progress {
  font-size: 0.7rem;
  color: var(--color-text-subtle);
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .dashboard {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .panel {
    overflow: visible;
  }
  .billionaire-list {
    overflow-y: visible;
  }
  .benefits-row {
    overflow-y: visible;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 0.5rem 0.85rem;
  }
  .topbar h1 { font-size: 1.2rem; }
  .tagline { font-size: 0.75rem; }
  .tour-button { font-size: 0.7rem; padding: 0.3rem 0.55rem; }

  .wt-card { padding: 1.25rem 1.25rem 1rem; }
  .wt-title { font-size: 1.3rem; }
  .wt-card.position-top { top: 60px; max-width: calc(100% - 1rem); }
  .wt-card.position-top .wt-title { font-size: 1rem; }
  .wt-card.position-top .wt-body { font-size: 0.8rem; }
  .settings-form {
    right: -0.5rem;
    grid-template-columns: 1fr;
    min-width: 250px;
  }
  .dashboard {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  .panel { padding: 0.85rem; }
  .panel h2 { font-size: 1.15rem; }
  .net-impact-value { font-size: 1.3rem; }
  .bar-header { gap: 0.4rem 0.6rem; }
  .bar-header-name { font-size: 0.9rem; }
  .bar-header-rate, .bar-header-pocket { font-size: 0.7rem; }
  .bar-header-pocket { margin-left: 0; }
  .billionaire-row {
    grid-template-columns: 90px 1fr;
  }
  .billionaire-name { font-size: 0.85rem; }
  .billionaire-role { font-size: 0.65rem; }
  .billionaire-after, .billionaire-tax { font-size: 0.65rem; padding: 0 0.4rem; }
  .policy-bar {
    padding: 0.6rem 0.75rem;
  }
  .policy-chips {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
  .chip { padding: 0.45rem 0.6rem; }
  .chip-label { font-size: 0.78rem; }
  .chip-cost { font-size: 0.65rem; }
}
