@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─────────────────────────────────────────────
   DESIGN TOKENS
────────────────────────────────────────────── */
:root {
  --chub-navy:       #0f2d5e;
  --chub-navy-lg:    #1a3d72;
  --chub-amber:      #f59e0b;
  --chub-amber-dk:   #d97706;
  --chub-green:      #10b981;
  --chub-blue:       #3b82f6;
  --chub-red:        #ef4444;
  --chub-purple:     #8b5cf6;
  --chub-bg:         #f0f4f9;
  --chub-surface:    #ffffff;
  --chub-border:     #dde4ee;
  --chub-g50:        #f8fafc;
  --chub-g100:       #f1f5f9;
  --chub-g200:       #e2e8f0;
  --chub-g400:       #94a3b8;
  --chub-g600:       #475569;
  --chub-g700:       #334155;
  --chub-g900:       #0f172a;
  --chub-shadow-sm:  0 1px 3px rgba(15,45,94,.07), 0 4px 16px rgba(15,45,94,.05);
  --chub-shadow-md:  0 4px 20px rgba(15,45,94,.10), 0 1px 4px rgba(15,45,94,.06);
  --chub-shadow-lg:  0 8px 32px rgba(15,45,94,.14), 0 2px 6px rgba(15,45,94,.08);
  --chub-radius:     14px;
  --chub-font:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ─────────────────────────────────────────────
   BASE WRAPPER
────────────────────────────────────────────── */
#chub-app {
  font-family: var(--chub-font);
  color: var(--chub-g900);
  max-width: 1100px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
#chub-app *, #chub-app *::before, #chub-app *::after {
  box-sizing: border-box;
}

/* ─────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
.chub-hero {
  background: linear-gradient(140deg, #0a1f45 0%, #0f2d5e 45%, #163a72 100%);
  border-radius: var(--chub-radius) var(--chub-radius) 0 0;
  padding: 36px 32px 0;
  position: relative;
  overflow: hidden;
}
.chub-hero::before {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,158,11,.14) 0%, transparent 65%);
  pointer-events: none;
}
.chub-hero::after {
  content: '';
  position: absolute; bottom: 0; left: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(59,130,246,.08) 0%, transparent 65%);
  pointer-events: none;
}
.chub-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

/* Brand */
.chub-brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.chub-brand-icon { font-size: 26px; }
.chub-brand-text {
  font-size: 21px; font-weight: 800; color: #fff;
  letter-spacing: -.3px;
}
.chub-tagline {
  color: rgba(255,255,255,.6);
  font-size: 14px; margin: 0 0 24px;
  max-width: 560px;
}

/* ─────────────────────────────────────────────
   SEARCH BAR
────────────────────────────────────────────── */
.chub-search-bar {
  display: flex; align-items: center; gap: 0;
  background: #fff;
  border-radius: 12px;
  padding: 5px 5px 5px 0;
  box-shadow: 0 8px 40px rgba(0,0,0,.22), 0 2px 8px rgba(0,0,0,.12);
  margin-bottom: 26px;
  overflow: hidden;
}
.chub-field {
  display: flex; align-items: center;
  padding: 0 14px; height: 46px;
}
.chub-field--name { flex: 2; gap: 8px; }
.chub-field--divider {
  width: 1px; height: 28px;
  background: var(--chub-g200);
  padding: 0; flex: none;
}
.chub-field--state { flex: 1; }
.chub-field-icon { font-size: 15px; color: var(--chub-g400); flex-shrink: 0; }
.chub-input {
  flex: 1; border: none; outline: none;
  font-family: var(--chub-font); font-size: 15px; color: var(--chub-g900);
  background: transparent; min-width: 0;
}
.chub-input::placeholder { color: var(--chub-g400); }
.chub-select--search {
  border: none; outline: none;
  font-family: var(--chub-font); font-size: 14px;
  color: var(--chub-g700); background: transparent;
  cursor: pointer; width: 100%; padding: 0;
}
.chub-btn-primary {
  background: var(--chub-amber);
  color: var(--chub-navy); border: none;
  border-radius: 9px; padding: 11px 26px;
  font-family: var(--chub-font); font-size: 14px; font-weight: 700;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background .18s, transform .15s, box-shadow .18s;
  margin-left: 4px;
  display: flex; align-items: center; gap: 6px;
}
.chub-btn-primary:hover {
  background: var(--chub-amber-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245,158,11,.4);
}
.chub-btn-primary:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* ─────────────────────────────────────────────
   TAB NAV
────────────────────────────────────────────── */
.chub-tabs {
  display: flex; gap: 2px;
  padding-top: 6px;
}
.chub-tab {
  background: transparent; border: none;
  color: rgba(255,255,255,.55);
  font-family: var(--chub-font); font-size: 13px; font-weight: 600;
  padding: 11px 18px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.chub-tab:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); }
.chub-tab.active {
  background: var(--chub-g50);
  color: var(--chub-navy);
}
.chub-tab-icon { font-size: 13px; }

/* ─────────────────────────────────────────────
   FILTER PANELS
────────────────────────────────────────────── */
.chub-panels {
  background: var(--chub-g50);
  border-left: 1px solid var(--chub-border);
  border-right: 1px solid var(--chub-border);
}
.chub-panel { display: none; }
.chub-panel.active { display: block; }
.chub-panel-inner {
  max-width: 920px; margin: 0 auto;
  padding: 13px 32px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.chub-panel-hint {
  font-size: 12.5px; color: var(--chub-g400); margin: 0; flex: 1;
  min-width: 200px;
}
.chub-panel-hint strong { color: var(--chub-g600); }
.chub-select--sm {
  border: 1px solid var(--chub-g200); background: #fff;
  border-radius: 8px; padding: 7px 12px;
  font-family: var(--chub-font); font-size: 13px; color: var(--chub-g700);
  cursor: pointer; width: auto; flex-shrink: 0;
  transition: border-color .15s;
}
.chub-select--sm:focus { outline: none; border-color: var(--chub-amber); }

/* Sliders */
.chub-slider-group {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.chub-slider-label {
  font-size: 13px; font-weight: 600; color: var(--chub-g700);
  white-space: nowrap;
}
.chub-slider {
  width: 150px; accent-color: var(--chub-amber); cursor: pointer;
}

/* Compare panel inputs */
.chub-compare-fields {
  flex-wrap: nowrap !important;
  gap: 10px !important;
}
.chub-compare-field { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.chub-compare-label-txt {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; color: var(--chub-g400);
}
.chub-compare-input {
  border: 1px solid var(--chub-g200) !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  font-size: 13.5px !important;
  background: #fff !important;
  transition: border-color .15s;
}
.chub-compare-input:focus { border-color: var(--chub-amber) !important; outline: none; }
.chub-compare-vs {
  font-size: 13px; font-weight: 700;
  color: var(--chub-g400); flex-shrink: 0;
  margin-top: 18px;
}

/* ─────────────────────────────────────────────
   BODY / RESULTS AREA
────────────────────────────────────────────── */
.chub-body {
  background: var(--chub-g100);
  border: 1px solid var(--chub-border);
  border-top: none;
  border-radius: 0 0 var(--chub-radius) var(--chub-radius);
  padding: 24px 32px 36px;
  min-height: 320px;
}

/* Loader */
.chub-loader {
  text-align: center; padding: 70px 20px;
  color: var(--chub-g400);
}
.chub-loader p { margin: 14px 0 0; font-size: 14px; }
.chub-spinner-ring {
  width: 42px; height: 42px; margin: 0 auto;
  border: 3px solid var(--chub-g200);
  border-top-color: var(--chub-amber);
  border-radius: 50%;
  animation: chub-spin .75s linear infinite;
}
@keyframes chub-spin { to { transform: rotate(360deg); } }

/* Error */
.chub-error {
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: 9px; padding: 13px 16px;
  color: #b91c1c; font-size: 14px; margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.chub-error::before { content: '⚠️'; flex-shrink: 0; }

/* Status */
.chub-status {
  font-size: 12.5px; color: var(--chub-g600); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0;
}

/* ─────────────────────────────────────────────
   PROMPT / HOME STATE
────────────────────────────────────────────── */
.chub-prompt { padding: 8px 0 4px; }
.chub-prompt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.chub-prompt-card {
  background: #fff; border-radius: 12px;
  border: 1px solid var(--chub-border);
  padding: 20px 14px; text-align: center;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.chub-prompt-card:hover {
  border-color: var(--chub-amber);
  box-shadow: 0 4px 20px rgba(245,158,11,.18);
  transform: translateY(-3px);
}
.chub-prompt-emoji { font-size: 28px; margin-bottom: 10px; }
.chub-prompt-card strong {
  display: block; font-size: 12.5px; font-weight: 700;
  color: var(--chub-navy); margin-bottom: 6px;
}
.chub-prompt-card p {
  font-size: 11.5px; color: var(--chub-g400); margin: 0; line-height: 1.55;
}
.chub-attribution {
  font-size: 11px; color: var(--chub-g400); margin: 0; text-align: center;
}
.chub-attribution a { color: var(--chub-g400); }

/* ─────────────────────────────────────────────
   FADE-IN ANIMATION
────────────────────────────────────────────── */
@keyframes chub-fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   FINDER — CARD GRID
────────────────────────────────────────────── */
.chub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 16px;
}
.chub-card {
  background: #fff; border-radius: 12px;
  box-shadow: var(--chub-shadow-sm);
  padding: 20px;
  transition: box-shadow .2s, transform .2s;
  animation: chub-fadeUp .3s ease both;
  display: flex; flex-direction: column; gap: 14px;
}
.chub-card:hover { box-shadow: var(--chub-shadow-md); transform: translateY(-2px); }

.chub-card-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 8px;
}
.chub-card-location { font-size: 11px; color: var(--chub-g400); margin-bottom: 2px; }
.chub-card-name {
  font-size: 15px; font-weight: 700; color: var(--chub-navy);
  line-height: 1.35;
}
.chub-card-name a { color: inherit; text-decoration: none; }
.chub-card-name a:hover { text-decoration: underline; }

.chub-badge {
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .3px;
  white-space: nowrap; flex-shrink: 0;
  background: var(--chub-g100); color: var(--chub-g600);
}
.chub-badge--public    { background: #dbeafe; color: #1d4ed8; }
.chub-badge--private   { background: #fce7f3; color: #9d174d; }
.chub-badge--forprofit { background: #f1f5f9; color: var(--chub-g600); }

.chub-card-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.chub-stat {
  background: var(--chub-g50); border-radius: 8px;
  padding: 10px 12px;
}
.chub-stat-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--chub-g400); margin-bottom: 3px;
}
.chub-stat-value {
  font-size: 15px; font-weight: 700; color: var(--chub-g900);
}
.chub-stat-value.good { color: var(--chub-green); }
.chub-stat-value.warn { color: var(--chub-amber); }
.chub-stat-value.bad  { color: var(--chub-red); }

.chub-card-footer {
  padding-top: 10px; border-top: 1px solid var(--chub-g100);
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chub-chip { font-size: 11.5px; color: var(--chub-g600); }

/* ─────────────────────────────────────────────
   ROI CALCULATOR
────────────────────────────────────────────── */
.chub-school-list {
  background: #fff; border-radius: 10px;
  box-shadow: var(--chub-shadow-sm);
  overflow: hidden; margin-bottom: 20px;
  animation: chub-fadeUp .25s ease;
}
.chub-school-list-title {
  background: var(--chub-g50); border-bottom: 1px solid var(--chub-g200);
  padding: 11px 16px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--chub-g400);
}
.chub-school-option {
  padding: 14px 18px; cursor: pointer;
  border-bottom: 1px solid var(--chub-g100);
  transition: background .14s;
  display: flex; justify-content: space-between; align-items: center;
}
.chub-school-option:last-child { border-bottom: none; }
.chub-school-option:hover { background: var(--chub-g50); }
.chub-school-option-name { font-size: 14px; font-weight: 600; color: var(--chub-g900); }
.chub-school-option-loc  { font-size: 12px; color: var(--chub-g400); margin-top: 1px; }
.chub-school-option-arrow { color: var(--chub-g400); font-size: 16px; }

.chub-roi-card {
  background: #fff; border-radius: 14px;
  box-shadow: var(--chub-shadow-lg);
  overflow: hidden;
  animation: chub-fadeUp .3s ease;
}
.chub-roi-header {
  background: linear-gradient(130deg, #0a1f45, #0f2d5e);
  color: #fff; padding: 26px 30px;
}
.chub-roi-school-name { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.chub-roi-school-name a { color: #fff; text-decoration: none; }
.chub-roi-school-name a:hover { text-decoration: underline; }
.chub-roi-location { font-size: 13px; color: rgba(255,255,255,.6); }

.chub-roi-body { padding: 26px 30px; }
.chub-roi-stats {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 12px; margin-bottom: 22px;
}
.chub-roi-stat {
  background: var(--chub-g50); border-radius: 10px;
  padding: 14px 16px; text-align: center;
}
.chub-roi-stat-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--chub-g400); margin-bottom: 5px;
}
.chub-roi-stat-value { font-size: 20px; font-weight: 800; color: var(--chub-g900); }

.chub-breakeven {
  background: var(--chub-g50); border-radius: 12px;
  padding: 20px 24px;
}
.chub-breakeven-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 14px;
}
.chub-breakeven-title {
  font-size: 13px; font-weight: 700; color: var(--chub-g700);
}
.chub-breakeven-formula {
  font-size: 11.5px; color: var(--chub-g400); margin-top: 3px;
}
.chub-breakeven-years {
  font-size: 30px; font-weight: 800; line-height: 1;
  text-align: right;
}
.chub-breakeven-years span { font-size: 14px; font-weight: 600; display: block; }
.chub-breakeven-years.great { color: var(--chub-green); }
.chub-breakeven-years.good  { color: var(--chub-blue); }
.chub-breakeven-years.fair  { color: var(--chub-amber); }
.chub-breakeven-years.poor  { color: var(--chub-red); }

.chub-bar-track {
  background: var(--chub-g200); border-radius: 50px; height: 8px; overflow: hidden;
  margin-bottom: 10px;
}
.chub-bar-fill {
  height: 100%; border-radius: 50px;
  transition: width .85s cubic-bezier(.4,0,.2,1);
}
.chub-bar-fill.great { background: linear-gradient(90deg, #059669, #34d399); }
.chub-bar-fill.good  { background: linear-gradient(90deg, #1d4ed8, #60a5fa); }
.chub-bar-fill.fair  { background: linear-gradient(90deg, #b45309, #fbbf24); }
.chub-bar-fill.poor  { background: linear-gradient(90deg, #b91c1c, #f87171); }

.chub-breakeven-verdict {
  font-size: 13px; font-weight: 700; color: var(--chub-g700);
}

/* ─────────────────────────────────────────────
   COMPARE TABLE
────────────────────────────────────────────── */
.chub-compare-wrap {
  background: #fff; border-radius: 14px;
  box-shadow: var(--chub-shadow-lg);
  overflow: hidden;
  animation: chub-fadeUp .3s ease;
}
.chub-compare-head {
  display: grid; grid-template-columns: 180px 1fr 1fr;
  background: linear-gradient(130deg, #0a1f45, #0f2d5e);
}
.chub-ch-cell {
  padding: 20px 24px;
  font-size: 14px; font-weight: 800; color: #fff;
}
.chub-ch-cell:first-child { background: rgba(0,0,0,.14); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.5); display: flex; align-items: flex-end; }
.chub-ch-cell a { color: #fff; text-decoration: none; }
.chub-ch-cell a:hover { text-decoration: underline; }
.chub-ch-sub { font-size: 12px; font-weight: 400; color: rgba(255,255,255,.58); margin-top: 3px; }

.chub-compare-row {
  display: grid; grid-template-columns: 180px 1fr 1fr;
  border-bottom: 1px solid var(--chub-g100);
}
.chub-compare-row:last-child { border-bottom: none; }
.chub-compare-row:nth-child(odd) { background: var(--chub-g50); }

.chub-cr-label {
  padding: 13px 16px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--chub-g400); display: flex; align-items: center;
}
.chub-cr-cell {
  padding: 13px 24px;
  font-size: 15px; font-weight: 700; color: var(--chub-g900);
  display: flex; align-items: center; gap: 8px;
}
.chub-cr-cell.winner { color: var(--chub-green); }
.chub-cr-cell.winner::after {
  content: '✓'; font-size: 10px;
  background: var(--chub-green); color: #fff;
  padding: 2px 5px; border-radius: 50px;
}

/* ─────────────────────────────────────────────
   GRAD RATE LIST
────────────────────────────────────────────── */
.chub-grad-list { display: flex; flex-direction: column; gap: 10px; }
.chub-grad-item {
  background: #fff; border-radius: 11px;
  box-shadow: var(--chub-shadow-sm);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  animation: chub-fadeUp .3s ease both;
  transition: box-shadow .2s;
}
.chub-grad-item:hover { box-shadow: var(--chub-shadow-md); }
.chub-grad-rank {
  font-size: 17px; font-weight: 800; color: var(--chub-g200);
  width: 34px; text-align: center; flex-shrink: 0;
}
.chub-grad-info { flex: 1; min-width: 0; }
.chub-grad-name {
  font-size: 15px; font-weight: 700; color: var(--chub-navy); margin-bottom: 2px;
}
.chub-grad-name a { color: inherit; text-decoration: none; }
.chub-grad-name a:hover { text-decoration: underline; }
.chub-grad-meta { font-size: 12px; color: var(--chub-g400); margin-bottom: 8px; }
.chub-grad-bar-row { display: flex; align-items: center; gap: 10px; }
.chub-grad-track {
  flex: 1; background: var(--chub-g100);
  border-radius: 50px; height: 6px; overflow: hidden;
}
.chub-grad-fill {
  height: 100%; border-radius: 50px;
  transition: width .7s ease;
}
.chub-grad-fill.excellent { background: linear-gradient(90deg, #059669, #34d399); }
.chub-grad-fill.good      { background: linear-gradient(90deg, #1d4ed8, #60a5fa); }
.chub-grad-fill.fair      { background: linear-gradient(90deg, #b45309, #fbbf24); }
.chub-grad-fill.low       { background: linear-gradient(90deg, #b91c1c, #f87171); }
.chub-grad-pct {
  font-size: 20px; font-weight: 800; color: var(--chub-green);
  width: 58px; text-align: right; flex-shrink: 0;
}
.chub-grad-chips {
  flex-shrink: 0; display: flex; flex-direction: column; gap: 3px; text-align: right;
}
.chub-grad-chips .chub-chip { font-size: 11px; }

/* ─────────────────────────────────────────────
   FIRST-GEN FIT CARDS
────────────────────────────────────────────── */
.chub-fgfs-list { display: flex; flex-direction: column; gap: 12px; }
.chub-fgfs-card {
  background: #fff; border-radius: 12px;
  box-shadow: var(--chub-shadow-sm);
  padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 20px;
  animation: chub-fadeUp .3s ease both;
  transition: box-shadow .2s;
}
.chub-fgfs-card:hover { box-shadow: var(--chub-shadow-md); }

/* Score ring */
.chub-score-ring {
  flex-shrink: 0; width: 70px; height: 70px; position: relative;
}
.chub-score-ring svg { transform: rotate(-90deg); overflow: visible; }
.chub-score-circle-bg  { fill: none; stroke: var(--chub-g100); stroke-width: 7; }
.chub-score-circle-fg  {
  fill: none; stroke-width: 7; stroke-linecap: round;
  transition: stroke-dashoffset .85s cubic-bezier(.4,0,.2,1);
}
.chub-score-num {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 17px; font-weight: 800; color: var(--chub-navy);
}
.chub-fgfs-info { flex: 1; min-width: 0; }
.chub-fgfs-name {
  font-size: 15.5px; font-weight: 700; color: var(--chub-navy);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 2px;
}
.chub-fgfs-name a { color: inherit; text-decoration: none; }
.chub-fgfs-name a:hover { text-decoration: underline; }
.chub-fgfs-tag {
  font-size: 10.5px; font-weight: 700;
  padding: 2px 7px; border-radius: 50px;
}
.chub-fgfs-tag.great { background: #d1fae5; color: #065f46; }
.chub-fgfs-tag.good  { background: #fef3c7; color: #92400e; }
.chub-fgfs-tag.fair  { background: #fee2e2; color: #991b1b; }
.chub-fgfs-location { font-size: 12px; color: var(--chub-g400); margin-bottom: 12px; }
.chub-fgfs-bars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.chub-fgfs-bar-row {
  display: contents;
}
.chub-fgfs-bar-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .4px; color: var(--chub-g400); margin-bottom: 4px;
}
.chub-fgfs-bar-track {
  background: var(--chub-g100); border-radius: 50px; height: 5px; overflow: hidden;
}
.chub-fgfs-bar-fill { height: 100%; border-radius: 50px; transition: width .7s ease; }
.chub-fgfs-bar-val { font-size: 11px; font-weight: 700; color: var(--chub-g600); margin-top: 3px; }
.chub-fgfs-right { flex-shrink: 0; text-align: right; }
.chub-fgfs-price { font-size: 16px; font-weight: 800; color: var(--chub-g900); }
.chub-fgfs-price-lbl { font-size: 10px; color: var(--chub-g400); margin-bottom: 4px; }
.chub-fgfs-sub { font-size: 11.5px; color: var(--chub-g400); margin-top: 5px; }

/* ─────────────────────────────────────────────
   PAGINATION
────────────────────────────────────────────── */
.chub-pagination {
  display: flex; gap: 5px;
  justify-content: center; margin-top: 26px; flex-wrap: wrap;
}
.chub-page-btn {
  background: #fff; border: 1px solid var(--chub-g200);
  border-radius: 8px; padding: 8px 14px;
  font-family: var(--chub-font); font-size: 13px; font-weight: 600;
  color: var(--chub-g600); cursor: pointer;
  transition: background .14s, border-color .14s;
}
.chub-page-btn:hover:not(:disabled) { background: var(--chub-g50); border-color: var(--chub-g400); }
.chub-page-btn.active { background: var(--chub-navy); border-color: var(--chub-navy); color: #fff; }
.chub-page-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ─────────────────────────────────────────────
   EMPTY STATE
────────────────────────────────────────────── */
.chub-empty {
  text-align: center; padding: 70px 20px; animation: chub-fadeUp .3s ease;
}
.chub-empty-icon { font-size: 52px; margin-bottom: 16px; }
.chub-empty h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--chub-g700); }
.chub-empty p  { font-size: 14px; color: var(--chub-g400); margin: 0; }

/* ─────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 768px) {
  .chub-hero { padding: 22px 16px 0; }
  .chub-search-bar { flex-wrap: wrap; padding: 6px; gap: 4px; }
  .chub-field--name { width: 100%; border-bottom: 1px solid var(--chub-g200); padding-bottom: 8px; }
  .chub-field--divider { display: none; }
  .chub-field--state { width: 100%; }
  .chub-btn-primary { width: 100%; justify-content: center; margin-left: 0; margin-top: 2px; }
  .chub-tabs { overflow-x: auto; gap: 0; }
  .chub-tab-label { display: none; }
  .chub-tab { padding: 10px 14px; border-radius: 8px 8px 0 0; }
  .chub-body { padding: 16px; }
  .chub-panel-inner { padding: 12px 16px; }
  .chub-compare-fields { flex-wrap: wrap !important; }
  .chub-compare-vs { display: none; }
  .chub-grid { grid-template-columns: 1fr; }
  .chub-compare-head, .chub-compare-row { grid-template-columns: 110px 1fr 1fr; }
  .chub-ch-cell, .chub-cr-cell, .chub-cr-label { padding: 10px 12px; font-size: 12px; }
  .chub-fgfs-card { flex-direction: column; }
  .chub-fgfs-bars { grid-template-columns: 1fr 1fr; }
  .chub-fgfs-right { text-align: left; }
  .chub-grad-item { gap: 10px; }
  .chub-grad-chips { display: none; }
  .chub-prompt-grid { grid-template-columns: repeat(2, 1fr); }
  .chub-roi-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .chub-prompt-grid { grid-template-columns: 1fr; }
  .chub-compare-head, .chub-compare-row { grid-template-columns: 90px 1fr 1fr; }
  .chub-fgfs-bars { grid-template-columns: 1fr; }
  .chub-brand-text { font-size: 17px; }
}
