/* === PRASAR DESIGN SYSTEM === */
:root {
  --purple-50:#faf5ff; --purple-100:#f3e8ff; --purple-500:#a855f7;
  --purple-600:#9333ea; --purple-700:#7e22ce; --pink-500:#ec4899;
  --gradient: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --gradient-soft: linear-gradient(135deg, #faf5ff 0%, #fdf2f8 100%);
  --bg:#fafafa; --surface:#fff; --text:#1a1a2e; --text-muted:#6b7280;
  --border:#e5e7eb; --danger:#ef4444; --success:#10b981;
  --shadow-sm:0 1px 2px rgba(0,0,0,.04);
  --shadow:0 4px 16px rgba(124,58,237,.08);
  --shadow-lg:0 20px 60px rgba(124,58,237,.15);
  --radius:14px; --radius-lg:20px;
}
[data-theme="dark"] {
  --bg:#0f0f1e; --surface:#1a1a2e; --text:#f5f5f7; --text-muted:#9ca3af;
  --border:#2a2a3e; --gradient-soft:linear-gradient(135deg,#1a1a2e,#2d1b3d);
  --shadow:0 4px 16px rgba(0,0,0,.4);
}
* { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:'Inter',-apple-system,sans-serif; background:var(--bg); color:var(--text); -webkit-font-smoothing:antialiased; line-height:1.5; }
h1,h2,h3 { font-family:'Plus Jakarta Sans',sans-serif; letter-spacing:-0.02em; }
a { color:var(--purple-600); text-decoration:none; }
a:hover { text-decoration:underline; }
.gradient-text { background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.muted { color:var(--text-muted); font-size:14px; }

/* LOGO */
.logo { display:flex; align-items:center; gap:8px; font-weight:800; font-size:20px; font-family:'Plus Jakarta Sans',sans-serif; color:var(--text); text-decoration:none; }
.logo-mark { font-size:24px; }
.logo-center { justify-content:center; margin-bottom:32px; }

/* BUTTONS */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:6px; padding:10px 20px; border-radius:10px; font-weight:600; font-size:14px; border:none; cursor:pointer; transition:all .2s; font-family:inherit; }
.btn-primary { background:var(--gradient); color:#fff; box-shadow:0 4px 14px rgba(168,85,247,.4); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(168,85,247,.5); text-decoration:none; }
.btn-ghost { background:transparent; color:var(--text); border:1px solid var(--border); }
.btn-ghost:hover { background:var(--purple-50); border-color:var(--purple-500); text-decoration:none; }
[data-theme="dark"] .btn-ghost:hover { background:rgba(168,85,247,.1); }
.btn-danger { background:var(--danger); color:#fff; }
.btn-danger:hover { background:#dc2626; }
.btn-lg { padding:14px 28px; font-size:16px; }
.btn-sm { padding:6px 12px; font-size:13px; }
.btn-block { width:100%; padding:14px; font-size:15px; }

/* LANDING NAV & HERO */
.nav { display:flex; justify-content:space-between; align-items:center; padding:20px 40px; max-width:1200px; margin:0 auto; }
.nav-actions { display:flex; gap:10px; }
.hero { position:relative; padding:60px 40px 100px; max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; overflow:hidden; }
.hero-bg { position:absolute; top:-200px; right:-200px; width:600px; height:600px; background:var(--gradient); opacity:.15; border-radius:50%; filter:blur(80px); z-index:-1; }
.hero-content { z-index:1; }
.badge { display:inline-block; background:var(--purple-100); color:var(--purple-700); padding:6px 14px; border-radius:20px; font-size:13px; font-weight:600; margin-bottom:20px; }
.hero h1 { font-size:64px; font-weight:800; line-height:1.05; margin-bottom:20px; }
.lead { font-size:19px; color:var(--text-muted); margin-bottom:32px; max-width:500px; }
.hero-cta { display:flex; gap:12px; margin-bottom:24px; flex-wrap:wrap; }
.hero-meta { display:flex; gap:20px; font-size:14px; color:var(--text-muted); flex-wrap:wrap; }

/* HERO PREVIEW CARD */
.hero-preview { display:flex; justify-content:center; }
.preview-card { background:var(--surface); border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow-lg); width:100%; max-width:380px; transform:rotate(2deg); transition:transform .3s; }
.preview-card:hover { transform:rotate(0deg) scale(1.02); }
.preview-header { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.preview-dots { display:flex; gap:5px; }
.preview-dots span { width:10px; height:10px; border-radius:50%; background:#e5e7eb; }
.preview-dots span:first-child { background:#ef4444; }
.preview-dots span:nth-child(2) { background:#f59e0b; }
.preview-dots span:nth-child(3) { background:#10b981; }
.preview-title { font-size:14px; color:var(--text-muted); }
.preview-stat { margin-bottom:24px; }
.preview-label { display:block; font-size:13px; color:var(--text-muted); }
.preview-value { font-size:42px; font-weight:800; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.preview-bars { display:flex; gap:10px; align-items:flex-end; height:120px; margin-bottom:30px; }
.bar { flex:1; background:var(--gradient); border-radius:8px 8px 0 0; height:var(--h); position:relative; min-height:30px; }
.bar span { position:absolute; bottom:-22px; left:0; right:0; text-align:center; font-size:11px; color:var(--text-muted); }
.preview-streak { background:linear-gradient(135deg,#fef3c7,#fed7aa); color:#92400e; padding:8px 14px; border-radius:10px; font-weight:600; text-align:center; font-size:14px; }

/* FEATURES */
.features { padding:80px 40px; max-width:1200px; margin:0 auto; text-align:center; }
.features h2 { font-size:48px; margin-bottom:50px; line-height:1.1; }
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.feature-card { background:var(--surface); padding:32px; border-radius:var(--radius-lg); text-align:left; border:1px solid var(--border); transition:all .3s; }
.feature-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--purple-500); }
.feature-icon { font-size:36px; margin-bottom:16px; }
.feature-card h3 { font-size:20px; margin-bottom:8px; }
.feature-card p { color:var(--text-muted); font-size:15px; }

/* CTA + FOOTER */
.cta { padding:80px 40px; text-align:center; background:var(--gradient-soft); margin:40px; border-radius:var(--radius-lg); }
.cta h2 { font-size:42px; margin-bottom:12px; }
.cta p { font-size:18px; color:var(--text-muted); margin-bottom:28px; }
.footer { text-align:center; padding:30px; color:var(--text-muted); font-size:14px; }

/* TRUST SECTION */
.trust-section { padding:70px 40px; max-width:1200px; margin:0 auto; display:grid; grid-template-columns:0.9fr 1.1fr; gap:32px; align-items:center; }
.trust-copy h2 { font-size:38px; line-height:1.1; margin:12px 0; }
.trust-copy p { color:var(--text-muted); font-size:16px; max-width:480px; }
.trust-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.trust-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:18px; display:flex; flex-direction:column; gap:6px; box-shadow:var(--shadow-sm); }
.trust-card strong { font-size:15px; }
.trust-card span { color:var(--text-muted); font-size:13px; }
.legal-page { min-height:100vh; background:var(--bg); }
.legal-container { max-width:860px; margin:0 auto; padding:46px 24px 70px; }
.legal-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:36px; box-shadow:var(--shadow); }
.legal-card h1 { font-size:36px; margin-bottom:10px; }
.legal-card h2 { font-size:22px; margin-top:28px; margin-bottom:10px; }
.legal-card p, .legal-card li { color:var(--text-muted); margin-bottom:12px; }
.legal-card ul { padding-left:22px; }
.legal-meta { color:var(--text-muted); font-size:14px; margin-bottom:24px; }

/* AUTH PAGES */
.auth-page { min-height:100vh; display:flex; align-items:center; justify-content:center; padding:20px; position:relative; }
.auth-bg { position:absolute; inset:0; background:var(--gradient-soft); z-index:-1; overflow:hidden; }
.auth-bg::before { content:''; position:absolute; top:-100px; left:-100px; width:400px; height:400px; background:var(--gradient); opacity:.15; border-radius:50%; filter:blur(80px); }
.auth-bg::after { content:''; position:absolute; bottom:-100px; right:-100px; width:400px; height:400px; background:var(--gradient); opacity:.15; border-radius:50%; filter:blur(80px); }
.auth-container { width:100%; max-width:420px; }
.auth-card { background:var(--surface); border-radius:var(--radius-lg); padding:40px; box-shadow:var(--shadow-lg); }
.auth-card h1 { font-size:28px; margin-bottom:8px; }
.auth-sub { color:var(--text-muted); margin-bottom:28px; }
.auth-switch { text-align:center; margin-top:20px; color:var(--text-muted); font-size:14px; }
.auth-legal { text-align:center; margin-top:16px; color:var(--text-muted); font-size:12px; }
.password-wrap { position:relative; }
.password-wrap input { padding-right:70px; }
.password-toggle { position:absolute; right:8px; top:50%; transform:translateY(-50%); border:none; background:var(--purple-50); color:var(--purple-700); border-radius:8px; padding:6px 9px; font-size:12px; font-weight:700; cursor:pointer; }
[data-theme="dark"] .password-toggle { background:rgba(168,85,247,.14); color:#d8b4fe; }
.field-hint { color:var(--text-muted); font-size:12px; margin-top:6px; }
.form-help-row { display:flex; justify-content:space-between; gap:12px; align-items:center; margin:-4px 0 14px; font-size:12px; color:var(--text-muted); flex-wrap:wrap; }
.check-row { display:flex; align-items:flex-start; gap:10px; color:var(--text-muted); font-size:13px; margin:-2px 0 16px; }
.check-row input { margin-top:3px; }

/* FORMS */
.field { margin-bottom:18px; }
.field label { display:block; font-size:13px; font-weight:600; margin-bottom:6px; color:var(--text); }
.field input, .field select, .field textarea {
  width:100%; padding:12px 14px; border:1.5px solid var(--border); border-radius:10px;
  font-size:15px; background:var(--surface); color:var(--text); font-family:inherit;
  transition:border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color:var(--purple-500); box-shadow:0 0 0 4px rgba(168,85,247,.1);
}
.field textarea { min-height:70px; resize:vertical; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-error { color:var(--danger); font-size:14px; margin-bottom:12px; min-height:20px; }

/* APP LAYOUT */
.app-page { display:grid; grid-template-columns:240px 1fr; min-height:100vh; }
.sidebar { background:var(--surface); border-right:1px solid var(--border); padding:24px 18px; display:flex; flex-direction:column; gap:24px; position:sticky; top:0; height:100vh; }
.side-nav { display:flex; flex-direction:column; gap:4px; flex:1; }
.side-nav a { display:flex; align-items:center; gap:10px; padding:10px 14px; border-radius:10px; color:var(--text); font-weight:500; font-size:14px; transition:all .15s; }
.side-nav a:hover { background:var(--purple-50); text-decoration:none; }
[data-theme="dark"] .side-nav a:hover { background:rgba(168,85,247,.1); }
.side-nav a.active { background:var(--gradient); color:#fff; }
.side-nav a.active:hover { background:var(--gradient); }
.side-footer { display:flex; flex-direction:column; gap:14px; }
.user-chip { display:flex; align-items:center; gap:10px; padding:10px; border-radius:10px; background:var(--bg); }
.avatar { width:36px; height:36px; border-radius:50%; background:var(--gradient); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; }
.user-name { font-size:13px; font-weight:600; }
.user-action { font-size:12px; color:var(--text-muted); }

.main { padding:32px 40px; max-width:1400px; }
.app-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:28px; flex-wrap:wrap; gap:16px; }
.app-header h1 { font-size:28px; margin-bottom:4px; }

.demo-banner { background:linear-gradient(135deg,#fef3c7,#fed7aa); color:#92400e; padding:12px 20px; border-radius:12px; margin-bottom:20px; font-size:14px; }
.demo-banner a { color:#92400e; font-weight:700; text-decoration:underline; }

/* INSIGHT CARD */
.insight-card { background:var(--gradient); color:#fff; padding:20px 24px; border-radius:var(--radius-lg); margin-bottom:24px; display:flex; gap:16px; align-items:flex-start; box-shadow:var(--shadow-lg); }
.insight-icon { font-size:28px; }
.insight-title { font-weight:700; font-size:16px; margin-bottom:4px; }
.insight-body { font-size:14px; opacity:.95; }

/* STAT GRID */
.stat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:24px; }
.stat-card { background:var(--surface); padding:20px; border-radius:var(--radius); border:1px solid var(--border); transition:all .2s; }
.stat-card:hover { transform:translateY(-2px); box-shadow:var(--shadow); }
.stat-label { font-size:13px; color:var(--text-muted); font-weight:500; margin-bottom:8px; }
.stat-value { font-size:26px; font-weight:800; font-family:'Plus Jakarta Sans',sans-serif; margin-bottom:4px; }
.stat-sub { font-size:12px; color:var(--text-muted); }
.streak-card { background:var(--gradient); color:#fff; border:none; }
.streak-card .stat-label, .streak-card .stat-sub { color:rgba(255,255,255,.85); }

/* PANELS & CHARTS */
.panel { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:22px; margin-bottom:20px; }
.panel h3 { font-size:16px; margin-bottom:16px; }
.panel-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; flex-wrap:wrap; gap:12px; }
.panel-header h3 { margin-bottom:0; }
.link { font-size:13px; color:var(--purple-600); font-weight:600; }
.chart-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.chart-wrap { position:relative; height:260px; }
.chart-empty { position:absolute; inset:0; display:none; align-items:center; justify-content:center; text-align:center; color:var(--text-muted); font-size:14px; padding:24px; border:1px dashed var(--border); border-radius:12px; background:var(--bg); }

/* FILTERS */
.filters { display:flex; gap:8px; flex-wrap:wrap; }
.filters input, .filters select { padding:8px 12px; border:1.5px solid var(--border); border-radius:8px; background:var(--surface); color:var(--text); font-size:13px; font-family:inherit; }
.filters input:focus, .filters select:focus { outline:none; border-color:var(--purple-500); }

/* EXPENSE LIST */
.expense-list { display:flex; flex-direction:column; }
.expense-item { display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid var(--border); }
.expense-item:last-child { border-bottom:none; }
.exp-icon { width:42px; height:42px; border-radius:12px; background:var(--purple-100); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
[data-theme="dark"] .exp-icon { background:rgba(168,85,247,.15); }
.exp-info { flex:1; min-width:0; }
.exp-desc { font-weight:600; font-size:14px; margin-bottom:2px; }
.exp-meta { font-size:12px; color:var(--text-muted); display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.exp-cat { background:var(--purple-100); color:var(--purple-700); padding:2px 8px; border-radius:8px; font-size:11px; font-weight:600; }
[data-theme="dark"] .exp-cat { background:rgba(168,85,247,.15); color:var(--purple-500); }
.exp-amount { font-size:16px; font-weight:700; color:var(--danger); }
.exp-delete { background:transparent; border:none; color:var(--text-muted); cursor:pointer; padding:6px 10px; border-radius:6px; font-size:14px; }
.exp-delete:hover { background:#fee2e2; color:var(--danger); }
[data-theme="dark"] .exp-delete:hover { background:rgba(239,68,68,.15); }

.empty-state { text-align:center; padding:40px 20px; color:var(--text-muted); }
.empty-state .icon { font-size:48px; margin-bottom:12px; }
.empty-state strong { display:block; color:var(--text); font-size:16px; margin-bottom:6px; }
.empty-state p { max-width:360px; margin:0 auto 16px; }
.empty-state .btn { margin-top:4px; }

/* SETTINGS */
.setting-row { display:flex; justify-content:space-between; align-items:center; padding:18px 0; border-bottom:1px solid var(--border); gap:16px; flex-wrap:wrap; }
.setting-row:last-child { border-bottom:none; }
.setting-row p { font-size:13px; }
.setting-row.danger strong { color:var(--danger); }

/* INSIGHTS FEED */
.insight-item { padding:18px; background:var(--gradient-soft); border-radius:12px; margin-bottom:12px; border-left:4px solid var(--purple-500); }
.insight-item h4 { font-size:15px; margin-bottom:6px; }
.insight-item p { font-size:14px; color:var(--text-muted); }

/* MODAL */
.modal { position:fixed; inset:0; background:rgba(15,15,30,.6); backdrop-filter:blur(6px); display:none; align-items:center; justify-content:center; z-index:100; padding:20px; animation:fadeIn .2s; }
.modal.show { display:flex; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.modal-card { background:var(--surface); border-radius:var(--radius-lg); padding:28px; width:100%; max-width:480px; max-height:90vh; overflow-y:auto; animation:slideUp .3s; }
@keyframes slideUp { from{transform:translateY(20px); opacity:0} to{transform:translateY(0); opacity:1} }
.modal-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.modal-header h2 { font-size:22px; }
.modal-close { background:transparent; border:none; font-size:28px; cursor:pointer; color:var(--text-muted); width:32px; height:32px; border-radius:8px; }
.modal-close:hover { background:var(--bg); }

/* CATEGORY PILLS */
.cat-pills { display:flex; flex-wrap:wrap; gap:6px; }
.pill { padding:8px 14px; border:1.5px solid var(--border); background:var(--surface); border-radius:20px; font-size:13px; cursor:pointer; transition:all .15s; color:var(--text); font-family:inherit; }
.pill:hover { border-color:var(--purple-500); }
.pill.active { background:var(--gradient); color:#fff; border-color:transparent; }

/* TOAST */
.toast { position:fixed; bottom:30px; left:50%; transform:translateX(-50%) translateY(100px); background:var(--text); color:var(--bg); padding:12px 24px; border-radius:30px; font-size:14px; font-weight:500; box-shadow:var(--shadow-lg); opacity:0; transition:all .3s; z-index:200; }
.toast.show { transform:translateX(-50%) translateY(0); opacity:1; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .trust-section { grid-template-columns:1fr; padding:50px 20px; }
  .trust-copy h2 { font-size:32px; }
  .hero { grid-template-columns:1fr; padding:40px 20px 60px; gap:40px; }
  .hero h1 { font-size:42px; }
  .feature-grid { grid-template-columns:1fr; }
  .features h2, .cta h2 { font-size:32px; }
  .nav { padding:16px 20px; }
  .app-page { grid-template-columns:1fr; }
  .sidebar { position:static; height:auto; flex-direction:row; flex-wrap:wrap; padding:14px; }
  .side-nav { flex-direction:row; flex:1; overflow-x:auto; }
  .side-footer { flex-direction:row; }
  .main { padding:20px; }
  .stat-grid { grid-template-columns:repeat(2,1fr); }
  .chart-row { grid-template-columns:1fr; }
  .field-row { grid-template-columns:1fr; }
}
@media (max-width: 500px) {
  .nav-actions { gap:6px; }
  .nav .btn { padding:8px 12px; font-size:13px; }
  .hero-cta .btn { width:100%; }
  .trust-grid { grid-template-columns:1fr; }
  .legal-card { padding:26px 20px; }
  .stat-grid { grid-template-columns:1fr 1fr; }
  .stat-value { font-size:22px; }
  .hero h1 { font-size:36px; }
  .auth-card { padding:28px 22px; }
}
/* INCOME MODULE */
.header-actions { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.dashboard-lists { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.balance-card { border-color:rgba(168,85,247,.28); }
.income-card { border-color:rgba(16,185,129,.28); }
.expense-card { border-color:rgba(239,68,68,.22); }
.income-card .stat-value, .income-amount { color:var(--success); }
.expense-card .stat-value, .expense-amount { color:var(--danger); }
.transaction-income .exp-icon { background:rgba(16,185,129,.12); }
.transaction-income .exp-cat { background:rgba(16,185,129,.12); color:var(--success); }
.transaction-expense .exp-icon { background:var(--purple-100); }
[data-theme="dark"] .transaction-expense .exp-icon { background:rgba(168,85,247,.15); }
[data-theme="dark"] .transaction-income .exp-icon,
[data-theme="dark"] .transaction-income .exp-cat { background:rgba(16,185,129,.14); }
@media (max-width: 900px) {
  .dashboard-lists { grid-template-columns:1fr; }
  .header-actions { width:100%; }
  .header-actions .btn { flex:1; }
}
@media (max-width: 500px) {
  .header-actions { flex-direction:column; }
  .header-actions .btn { width:100%; }
}

/* BUDGET + REPORTS MODULE */
.budget-card { border-color:rgba(245,158,11,.30); }
.budget-card .stat-value { color:#f59e0b; }
.budget-list { display:flex; flex-direction:column; gap:12px; }
.budget-form { display:grid; grid-template-columns:1fr 1fr auto; gap:12px; align-items:end; margin-bottom:22px; padding:16px; border:1px solid var(--border); border-radius:var(--radius); background:var(--gradient-soft); }
.budget-form .field { margin-bottom:0; }
.budget-row { border:1px solid var(--border); border-radius:14px; padding:14px; background:var(--surface); box-shadow:var(--shadow-sm); }
.budget-row-top { display:flex; justify-content:space-between; gap:12px; align-items:center; margin-bottom:10px; }
.budget-title { display:flex; align-items:center; gap:8px; font-size:15px; }
.budget-actions { display:flex; align-items:center; gap:8px; }
.budget-delete { border:0; background:transparent; cursor:pointer; opacity:.75; padding:6px; border-radius:8px; }
.budget-delete:hover { background:var(--bg); opacity:1; }
.budget-progress { height:9px; background:var(--border); border-radius:999px; overflow:hidden; margin-bottom:8px; }
.budget-progress span { display:block; height:100%; width:0; background:var(--gradient); border-radius:999px; transition:width .3s; }
.budget-row.warn .budget-progress span { background:#f59e0b; }
.budget-row.over .budget-progress span { background:var(--danger); }
.budget-meta { display:flex; justify-content:space-between; gap:12px; color:var(--text-muted); font-size:13px; flex-wrap:wrap; }
.budget-more { text-align:center; padding:8px; }
.report-stat-grid { grid-template-columns:repeat(4,1fr); }
.report-table-wrap { overflow-x:auto; border:1px solid var(--border); border-radius:var(--radius); }
.report-table { width:100%; border-collapse:collapse; min-width:680px; }
.report-table th, .report-table td { padding:12px 14px; border-bottom:1px solid var(--border); text-align:left; font-size:14px; }
.report-table th { background:var(--gradient-soft); color:var(--text); font-size:13px; }
.report-table tr:last-child td { border-bottom:none; }
.text-right { text-align:right !important; }
.report-badge { display:inline-flex; align-items:center; border-radius:999px; padding:4px 10px; font-size:12px; font-weight:700; }
.report-badge.income { color:var(--success); background:rgba(16,185,129,.12); }
.report-badge.expense { color:var(--danger); background:rgba(239,68,68,.12); }
.empty-cell { text-align:center !important; color:var(--text-muted); padding:28px !important; }
@media (max-width: 900px) {
  .budget-form { grid-template-columns:1fr; }
  .report-stat-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 500px) {
  .budget-row-top { align-items:flex-start; flex-direction:column; }
  .budget-actions { width:100%; justify-content:space-between; }
}
