:root {
  --bg: #DCE4EC;
  --card-bg: #EBF1F6;
  --card-sub: #F3F7FA;
  --text: #102A43;
  --text-muted: #627D98;
  --border: #BAC7D5;
  --border-light: #CFDBE7;
  --color-besoins: #3B75A6;
  --color-epargne: #059669;
  --color-envies: #D97706;
  --color-danger: #DC2626;
  --btn-action: #3B75A6;
  --btn-action-text: #FFFFFF;
  --input-bg: #F3F7FA;
  --nav-bg: #EBF1F6;
  --nav-active: #3B75A6;
  --shadow: rgba(16, 42, 67, 0.07);
  --highlight: rgba(59, 117, 166, 0.12);
  --gemini-gradient: linear-gradient(135deg, #4285F4 0%, #9B72CB 45%, #D96570 75%, #FF8A65 100%);
}

body.dark-theme {
  --bg: #0B131D;
  --card-bg: #152232;
  --card-sub: #1D2D40;
  --text: #E2E8F0;
  --text-muted: #829AB1;
  --border: #24384D;
  --border-light: #1A2B3D;
  --color-besoins: #5B9FD4;
  --color-epargne: #34D399;
  --color-envies: #FBBF24;
  --color-danger: #F87171;
  --btn-action: #5B9FD4;
  --btn-action-text: #0B131D;
  --input-bg: #101B27;
  --nav-bg: #152232;
  --nav-active: #5B9FD4;
  --shadow: rgba(0, 0, 0, 0.45);
  --highlight: rgba(91, 159, 212, 0.15);
}

* {
  box-sizing: border-box;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, .coach-input, .coach-chat-box, .coach-chat-box * {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  padding-bottom: calc(75px + env(safe-area-inset-bottom, 20px));
  transition: background 0.35s ease, color 0.35s ease;
}

.mobile-app {
  max-width: 480px;
  margin: 0 auto;
  padding: calc(12px + env(safe-area-inset-top, 0px)) 14px 14px;
}

.ia-fab {
  position: fixed;
  bottom: calc(78px + env(safe-area-inset-bottom, 10px));
  right: 18px;
  width: 56px;
  height: 56px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(16, 42, 67, 0.15), 0 0 12px rgba(66, 133, 244, 0.2);
  cursor: grab;
  z-index: 999;
  border: 1.5px solid var(--border-light);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease, background 0.35s ease, border-color 0.35s ease;
}
.ia-fab svg {
  width: 30px;
  height: 30px;
  pointer-events: none;
}
.ia-fab:active, .ia-fab.dragging {
  cursor: grabbing;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.25), 0 0 18px rgba(155, 114, 203, 0.35);
  transform: scale(1.08);
}

body.dark-theme .ia-fab {
  background: #131314;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 0 12px rgba(66, 133, 244, 0.3);
}
body.dark-theme .ia-fab:active, body.dark-theme .ia-fab.dragging {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 18px rgba(155, 114, 203, 0.5);
}

.ia-fab.on-dismiss-target {
  transform: scale(0.75);
  background: var(--color-danger) !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.7) !important;
}

.ia-dismiss-zone {
  position: fixed;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%) scale(0.6);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.18);
  border: 2px dashed var(--color-danger);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-danger);
  font-size: 1.4rem;
  font-weight: 800;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.ia-dismiss-zone.visible {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.ia-dismiss-zone.hovered {
  transform: translateX(-50%) scale(1.25);
  background: var(--color-danger);
  color: #FFFFFF;
  border-style: solid;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.55);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.patrimoine-widget { background: var(--card-bg); border-radius: 18px; padding: 14px 16px; border: 1px solid var(--border-light); box-shadow: 0 4px 12px var(--shadow); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.patrimoine-info { display: flex; flex-direction: column; gap: 2px; }
.patrimoine-lbl { font-size: 0.68rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.patrimoine-val { font-family: ui-monospace, SFMono-Regular, monospace; font-size: 1.35rem; font-weight: 800; color: var(--text); }
.patrimoine-sub { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }

.passive-yield-badge { display: flex; flex-direction: column; align-items: flex-end; background: var(--card-sub); border: 1px solid var(--border); border-radius: 10px; padding: 5px 8px; cursor: pointer; transition: transform 0.15s ease, border-color 0.15s ease; }
.passive-yield-badge:active { transform: scale(0.96); border-color: var(--color-epargne); }
.passive-yield-lbl { font-size: 0.6rem; font-weight: 700; color: var(--color-epargne); text-transform: uppercase; }
.passive-yield-val { font-family: ui-monospace, monospace; font-size: 0.85rem; font-weight: 800; color: var(--color-epargne); }
.passive-yield-sub { font-size: 0.62rem; color: var(--text-muted); font-weight: 600; }

.header-card { background: var(--card-bg); border-radius: 18px; padding: 16px 14px; border: 1px solid var(--border-light); box-shadow: 0 4px 12px var(--shadow); margin-bottom: 12px; }
.header-top { display: flex; justify-content: space-between; align-items: center; }
.app-name { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--text-muted); margin: 0; }

.year-picker { display: flex; align-items: center; gap: 8px; background: var(--card-sub); padding: 4px 8px; border-radius: 12px; border: 1px solid var(--border); }
.year-btn { background: transparent; border: none; font-size: 1.2rem; font-weight: bold; color: var(--text); padding: 2px 8px; cursor: pointer; }
.year-display { font-size: 1.15rem; font-weight: 700; min-width: 44px; text-align: center; }

.progress-multi { height: 10px; background: var(--border-light); border-radius: 999px; overflow: hidden; display: flex; margin-top: 14px; }
.progress-segment { height: 100%; transition: width 0.3s ease; }

.kpis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.kpi-box { background: var(--card-sub); padding: 10px 6px; border-radius: 12px; border: 1px solid var(--border-light); text-align: center; }
.kpi-title { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; margin: 0 0 4px; }
.kpi-val { font-family: ui-monospace, SFMono-Regular, monospace; font-size: 0.88rem; font-weight: 700; }
.kpi-pct { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; font-weight: 600; }

.quick-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 10px; }
.action-btn { display: flex; align-items: center; justify-content: center; gap: 4px; background: var(--card-bg); border: 1px solid var(--border); padding: 9px 6px; border-radius: 12px; font-size: 0.75rem; font-weight: 700; color: var(--text); cursor: pointer; text-align: center; }
.action-btn.danger { color: var(--color-danger); border-color: rgba(220, 38, 38, 0.4); }

.settings-drawer { background: var(--card-bg); border: 1px solid var(--border-light); border-radius: 16px; padding: 16px; margin-bottom: 12px; display: none; gap: 14px; }
.settings-drawer.open { display: grid; }

.input-field { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; font-weight: 600; }
.input-euro { display: flex; align-items: center; background: var(--input-bg); border: 1px solid var(--border); border-radius: 8px; padding: 6px 10px; color: var(--text); }
.input-euro.disabled-wrap { opacity: 0.75; background: var(--card-sub); border-color: var(--border-light); cursor: not-allowed; }
.input-euro input { width: 80px; border: none; background: transparent; outline: none; font-size: 1rem; font-weight: 700; text-align: right; font-family: monospace; color: var(--text); }
.input-euro input:disabled { color: var(--text-muted); cursor: not-allowed; }

.auto-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--card-sub); border: 1px solid var(--border); padding: 5px 10px; border-radius: 8px; font-family: ui-monospace, monospace; font-size: 0.85rem; font-weight: 700; color: var(--color-besoins); }

.slider-block { display: grid; gap: 6px; font-size: 0.85rem; font-weight: 600; }
.slider-block input[type="range"] { width: 100%; accent-color: var(--color-besoins); height: 24px; }
.settings-note { font-size: 0.74rem; color: var(--text-muted); margin: 0; line-height: 1.35; }
.backup-actions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 4px; }
.btn-backup { background: var(--card-sub); border: 1px solid var(--border); border-radius: 8px; padding: 7px 8px; font-size: 0.75rem; font-weight: 700; color: var(--text); cursor: pointer; text-align: center; }

.past-accordion-wrap { margin-bottom: 4px; }
.past-accordion-btn { width: 100%; display: flex; justify-content: flex-end; align-items: center; background: transparent; border: none; padding: 2px 6px; cursor: pointer; }
.past-arrow { font-size: 1.1rem; color: var(--text-muted); transition: transform 0.25s ease; display: inline-block; }
.past-arrow.open { transform: rotate(180deg); }
.past-months-container { display: grid; gap: 10px; margin-top: 6px; margin-bottom: 4px; }

.months-list { display: grid; gap: 10px; }
.month-card { background: var(--card-bg); border-radius: 14px; padding: 12px 14px; border: 1px solid var(--border-light); }
.month-card.current-month-card { border: 1.5px solid var(--color-besoins); box-shadow: 0 4px 14px var(--shadow); cursor: pointer; scroll-margin-top: 100px; }
.month-card.future-locked-card { opacity: 0.72; }
.month-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.month-title-wrap { display: flex; align-items: center; gap: 6px; }
.month-name { font-size: 1.05rem; font-weight: 700; margin: 0; }
.current-badge-tag { font-size: 0.62rem; font-weight: 700; color: #F3F7FA; background: var(--color-epargne); border-radius: 6px; padding: 2px 6px; text-transform: uppercase; }
.past-lock-tag { font-size: 0.62rem; font-weight: 700; color: var(--text-muted); background: var(--card-sub); border: 1px solid var(--border); border-radius: 6px; padding: 2px 5px; }
.matelas-badge-tag { display: inline-block; font-size: 0.65rem; font-weight: 800; border-radius: 8px; padding: 3px 8px; line-height: 1.2; border: 1px solid transparent; }

.mobile-input-wrap { display: flex; align-items: center; background: var(--input-bg); border: 1.5px solid var(--border); border-radius: 10px; padding: 4px 10px; cursor: text; }
.mobile-input-wrap.locked { background: var(--input-bg); border-color: var(--border-light); cursor: not-allowed; opacity: 0.55; }
.mobile-input-wrap input { width: 80px; border: none; background: transparent; font-family: ui-monospace, SFMono-Regular, monospace; font-size: 1rem; font-weight: 700; text-align: right; color: var(--text); outline: none; }
.mobile-input-wrap input:disabled { color: var(--text-muted); cursor: not-allowed; }
.mobile-input-wrap span { color: var(--text-muted); font-weight: 600; margin-left: 3px; }

.month-card-breakdown { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--card-sub); border-radius: 8px; padding: 8px 6px; gap: 4px; text-align: center; }
.breakdown-item { display: flex; flex-direction: column; gap: 2px; }
.breakdown-lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.breakdown-val { font-family: ui-monospace, SFMono-Regular, monospace; font-size: 0.85rem; font-weight: 700; }
.breakdown-sub { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; min-height: 14px; }
.month-mini-bar { height: 4px; background: var(--border-light); border-radius: 999px; overflow: hidden; display: flex; margin-top: 8px; }

.chart-card { background: var(--card-bg); border-radius: 16px; padding: 16px 12px; border: 1px solid var(--border-light); margin-top: 16px; }
.chart-header { font-size: 0.95rem; font-weight: 700; margin: 0 0 10px 4px; }
.chart-container { width: 100%; height: 200px; }

.milestone-card { background: var(--card-sub); border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; margin-top: 12px; display: grid; gap: 8px; }
.milestone-header { display: flex; justify-content: space-between; align-items: center; }
.milestone-title { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin: 0; }
.milestone-pct { font-family: ui-monospace, monospace; font-size: 0.82rem; font-weight: 800; color: var(--color-besoins); }
.milestone-bar { height: 8px; background: var(--border-light); border-radius: 999px; overflow: hidden; }
.milestone-fill { height: 100%; background: var(--color-besoins); transition: width 0.4s ease; }
.milestone-details { display: flex; justify-content: space-between; font-size: 0.72rem; font-weight: 600; color: var(--text-muted); }
.milestone-footer { font-size: 0.72rem; color: var(--text); line-height: 1.35; background: var(--highlight); padding: 6px 8px; border-radius: 8px; border-left: 3px solid var(--color-besoins); margin: 0; }

.fiscal-card-embedded { background: var(--card-sub); border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; margin-top: 10px; display: grid; gap: 6px; }
.fiscal-header-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.74rem; font-weight: 600; }

.crossover-banner {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(59, 117, 166, 0.15));
  border: 1.5px solid var(--color-epargne);
  border-radius: 14px;
  padding: 12px 14px;
  display: grid;
  gap: 4px;
}
.crossover-title { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-epargne); margin: 0; }
.crossover-val { font-size: 1.05rem; font-weight: 800; color: var(--text); font-family: ui-monospace, monospace; }
.crossover-desc { font-size: 0.74rem; color: var(--text-muted); line-height: 1.35; margin: 0; }

.projection-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
  margin-top: 8px;
}
.projection-table th {
  text-align: left;
  color: var(--text-muted);
  padding: 6px 4px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}
.projection-table td {
  padding: 8px 4px;
  border-bottom: 1px solid var(--border-light);
  font-family: ui-monospace, monospace;
  font-weight: 700;
}
.projection-table tr:last-child td { border-bottom: none; }

.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 19, 29, 0.65);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 18px 16px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  animation: popIn 0.2s ease-out;
  display: grid;
  gap: 12px;
}
@keyframes popIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.modal-header { display: flex; justify-content: space-between; align-items: center; }
.modal-title { font-size: 0.95rem; font-weight: 800; color: var(--text); margin: 0; display: flex; align-items: center; gap: 8px; }
.aiguillage-status-tag { font-size: 0.65rem; font-weight: 800; padding: 3px 8px; border-radius: 8px; text-transform: uppercase; }
.aiguillage-status-tag.security { background: rgba(59, 117, 166, 0.15); color: var(--color-besoins); border: 1px solid var(--color-besoins); }
.aiguillage-status-tag.growth { background: rgba(5, 150, 105, 0.15); color: var(--color-epargne); border: 1px solid var(--color-epargne); }
.aiguillage-status-tag.mixed { background: rgba(217, 119, 6, 0.15); color: var(--color-envies); border: 1px solid var(--color-envies); }
.aiguillage-status-tag.gemini {
  background: var(--gemini-gradient);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 2px 8px rgba(155, 114, 203, 0.4);
}
.aiguillage-body { background: var(--card-sub); border-radius: 12px; padding: 12px 14px; border: 1px solid var(--border); display: grid; gap: 8px; font-size: 0.85rem; }
.aiguillage-row { display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.aiguillage-row strong { font-family: ui-monospace, SFMono-Regular, monospace; font-size: 1rem; }
.aiguillage-note { font-size: 0.74rem; color: var(--text-muted); line-height: 1.4; margin: 0; border-top: 1px solid var(--border-light); padding-top: 6px; }

.btn-modal-close {
  background: var(--btn-action);
  color: var(--btn-action-text);
  border: none;
  border-radius: 12px;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  margin-top: 4px;
}

.coach-chat-box {
  max-height: 280px;
  min-height: 140px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  background: var(--card-sub);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.chat-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.45;
  max-width: 88%;
  word-break: break-word;
}
.chat-bubble strong { font-weight: 800; color: inherit; }
.chat-bubble em { font-style: italic; }
.chat-bubble.user {
  align-self: flex-end;
  background: var(--color-besoins);
  color: #FFFFFF;
  border-bottom-right-radius: 2px;
}
.chat-bubble.bot {
  align-self: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  color: var(--text);
  border-bottom-left-radius: 2px;
}
.coach-input-wrap {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.coach-input {
  flex: 1;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
}
.coach-btn-send {
  background: var(--gemini-gradient);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stock-live-card { background: var(--card-sub); border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; margin-top: 12px; display: flex; justify-content: space-between; align-items: center; }
.stock-live-info { display: flex; flex-direction: column; gap: 2px; }
.stock-live-badge { font-size: 0.65rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stock-live-price { font-family: ui-monospace, monospace; font-size: 1.3rem; font-weight: 700; color: var(--text); }
.stock-live-change { font-size: 0.75rem; font-weight: 700; }

.btn-refresh {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.param-grid { display: grid; gap: 12px; margin-top: 12px; }
.param-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; font-weight: 600; }
.deposit-action-card { background: var(--card-sub); border: 1px solid var(--border); border-radius: 14px; padding: 12px; display: grid; gap: 10px; }

.btn-main-action {
  width: 100%;
  background: var(--btn-action);
  color: var(--btn-action-text);
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s ease;
}
.btn-main-action:active { filter: brightness(0.9); transform: scale(0.98); }

.progress-bar-wrap { margin-top: 14px; }
.single-progress-bar { height: 12px; background: var(--border-light); border-radius: 999px; overflow: hidden; position: relative; }
.single-progress-fill { height: 100%; background: var(--color-besoins); transition: width 0.4s ease; }
.progress-legend-row { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); font-weight: 600; margin-top: 5px; }

.duration-chips { display: flex; gap: 6px; margin-top: 8px; }
.chip-btn {
  flex: 1;
  padding: 6px 0;
  background: var(--card-sub);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  text-align: center;
}
.chip-btn.active { background: var(--btn-action); color: var(--btn-action-text); border-color: var(--btn-action); }

.chart-legend { display: flex; justify-content: center; gap: 16px; margin-top: 10px; font-size: 0.75rem; font-weight: 600; }
.legend-item { display: flex; align-items: center; gap: 5px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--nav-bg);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  z-index: 100;
}

.nav-btn {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 10px;
  margin: 0 2px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-btn svg { width: 22px; height: 22px; stroke: currentColor; }
.nav-btn.active { color: var(--nav-active); background: var(--bg); }