@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --navy:       #0d1b2a;
  --navy-2:     #1a2d42;
  --navy-3:     #1e3a5f;
  --accent:     #00d4ff;
  --accent2:    #7c3aed;
  --gold:       #f59e0b;
  --green:      #10b981;
  --red:        #ef4444;
  --text:       #e2e8f0;
  --text-muted: #94a3b8;
  --border:     rgba(0, 212, 255, 0.15);
  --card-bg:    rgba(26, 45, 66, 0.8);
  --sidebar-w:  240px;
  --topbar-h:   60px;
  --radius:     14px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--navy-2); }
::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 3px; }

/* LOGIN */
.login-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.login-bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  top: -200px; left: -200px;
  border-radius: 50%;
  pointer-events: none;
}
.login-bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  bottom: -150px; right: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.login-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0,212,255,0.05);
  position: relative;
  z-index: 1;
  animation: slideUp 0.5s ease;
}
@keyframes slideUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo .logo-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0,212,255,0.3);
}
.login-logo h1 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); }
.login-logo p  { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* FORMS */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 12px; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-control {
  width: 100%;
  padding: 11px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); }
.form-control option { background: var(--navy-2); color: var(--text); }
select.form-control { cursor: pointer; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: white; box-shadow: 0 4px 14px rgba(0,212,255,0.3); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,212,255,0.4); }
.btn-success   { background: var(--green); color: white; }
.btn-danger    { background: var(--red);   color: white; }
.btn-warning   { background: var(--gold);  color: #1a1a1a; }
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-sm   { padding: 6px 12px; font-size: 12px; border-radius: 7px; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { width: 34px; height: 34px; padding: 0; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; }

/* LAYOUT */
.app-layout { display: flex; min-height: 100vh; }

/* SIDEBAR */
.sidebar {
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--navy-2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  z-index: 200;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden; /* sidebar itself never scrolls — only nav-links does */
}
.sidebar-logo { padding: 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.sidebar-logo .logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.sidebar-logo .logo-text h2 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.1; }
.sidebar-logo .logo-text span { font-size: 11px; color: var(--text-muted); display: block; margin-top: 2px; }
.nav-links { flex: 1; padding: 10px 8px; overflow-y: auto; min-height: 0; /* critical: allows flex child to shrink and scroll */ }
.nav-section-title { font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; padding: 10px 10px 4px; }
.nav-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; color: var(--text-muted); text-decoration: none; font-size: 13.5px; transition: all var(--transition); margin-bottom: 2px; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.nav-item:hover  { background: rgba(0,212,255,0.07); color: var(--text); }
.nav-item.active { background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(124,58,237,0.15)); color: var(--accent); font-weight: 500; }
.nav-item .nav-icon { width: 20px; text-align: center; font-size: 15px; flex-shrink: 0; }
.sidebar-footer { padding: 12px 8px; border-top: 1px solid var(--border); flex-shrink: 0; }

/* OVERLAY for mobile */
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 150; backdrop-filter: blur(2px); }
.sidebar-overlay.active { display: block; }

/* MAIN CONTENT */
.main-content { margin-left: var(--sidebar-w); flex: 1; min-height: 100vh; display: flex; flex-direction: column; min-width: 0; }

/* TOPBAR */
.topbar {
  height: var(--topbar-h);
  background: rgba(26,45,66,0.95);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  gap: 12px;
}
/* Hamburger — hidden on desktop */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 8px; transition: background var(--transition); flex-shrink: 0; -webkit-tap-highlight-color: transparent; }
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger span  { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

.topbar-title  { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600; color: var(--text); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar-right  { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.date-badge    { font-size: 12px; color: var(--text-muted); background: rgba(255,255,255,0.05); padding: 4px 12px; border-radius: 20px; border: 1px solid var(--border); white-space: nowrap; }

/* PAGE */
.page-body    { flex: 1; padding: 20px 24px 40px; }
.page-header  { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; gap: 12px; flex-wrap: wrap; }
.page-title   { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); gap: 10px; }
.page-subtitle{ font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* CARDS */
.card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); backdrop-filter: blur(10px); overflow: hidden; }
.card-header { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.card-title  { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 8px; }
.card-body   { padding: 18px; }

/* STAT CARDS */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 20px; }
.stat-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; position: relative; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); backdrop-filter: blur(10px); }
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.stat-card.income::before   { background: linear-gradient(90deg, var(--green), #34d399); }
.stat-card.expense::before  { background: linear-gradient(90deg, var(--red), #f87171); }
.stat-card.savings::before  { background: linear-gradient(90deg, var(--accent), #67e8f9); }
.stat-card.networth::before { background: linear-gradient(90deg, var(--accent2), #a78bfa); }
.stat-card.loans::before    { background: linear-gradient(90deg, var(--gold), #fcd34d); }
.stat-card.shares::before   { background: linear-gradient(90deg, #06b6d4, var(--accent)); }
.stat-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; margin-bottom: 12px; }
.stat-card.income   .stat-icon { background: rgba(16,185,129,0.15); color: var(--green); }
.stat-card.expense  .stat-icon { background: rgba(239,68,68,0.15);  color: var(--red); }
.stat-card.savings  .stat-icon { background: rgba(0,212,255,0.15);  color: var(--accent); }
.stat-card.networth .stat-icon { background: rgba(124,58,237,0.15); color: var(--accent2); }
.stat-card.loans    .stat-icon { background: rgba(245,158,11,0.15); color: var(--gold); }
.stat-card.shares   .stat-icon { background: rgba(6,182,212,0.15);  color: #06b6d4; }
.stat-value { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 4px; word-break: break-word; }
.stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* CHARTS */
.charts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.chart-container { position: relative; height: 260px; padding: 8px; }

/* TABLES */
.table-container { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 480px; }
.data-table thead th { background: rgba(0,212,255,0.05); color: var(--text-muted); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
.data-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.04); transition: background var(--transition); }
.data-table tbody tr:hover { background: rgba(0,212,255,0.04); }
.data-table tbody td { padding: 10px 12px; color: var(--text); vertical-align: middle; }
.data-table tbody tr:last-child { border-bottom: none; }

/* BADGES */
.badge { display: inline-flex; align-items: center; padding: 3px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.badge-green  { background: rgba(16,185,129,0.15);  color: var(--green); }
.badge-red    { background: rgba(239,68,68,0.15);   color: var(--red); }
.badge-blue   { background: rgba(0,212,255,0.15);   color: var(--accent); }
.badge-gold   { background: rgba(245,158,11,0.15);  color: var(--gold); }
.badge-purple { background: rgba(124,58,237,0.15);  color: var(--accent2); }
.badge-accent { background: rgba(0,212,255,0.15);   color: var(--accent); }
.badge-muted  { background: rgba(148,163,184,0.15); color: var(--text-muted); }

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1000; align-items: center; justify-content: center; backdrop-filter: blur(4px); padding: 16px; }
.modal-overlay.active { display: flex; }
.modal { background: var(--navy-2); border: 1px solid var(--border); border-radius: 18px; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.5); animation: modalIn 0.25s ease; }
@keyframes modalIn { from { opacity:0; transform: scale(0.95) translateY(-20px); } to { opacity:1; transform: scale(1) translateY(0); } }
.modal-header { padding: 18px 20px 14px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.modal-title  { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600; color: var(--text); }
.modal-close  { width: 30px; height: 30px; border: none; background: rgba(255,255,255,0.08); border-radius: 8px; color: var(--text-muted); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); flex-shrink: 0; }
.modal-close:hover { background: var(--red); color: white; }
.modal-body   { padding: 18px 20px; }
.modal-footer { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr;     gap: 14px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

/* ALERTS */
.alert { padding: 12px 16px; border-radius: 10px; font-size: 13px; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.alert-success { background: rgba(16,185,129,0.1);  border: 1px solid rgba(16,185,129,0.3); color: #34d399; }
.alert-danger  { background: rgba(239,68,68,0.1);   border: 1px solid rgba(239,68,68,0.3);  color: #f87171; }
.alert-info    { background: rgba(0,212,255,0.1);   border: 1px solid rgba(0,212,255,0.3);  color: var(--accent); }

/* TOAST */
.toast-container { position: fixed; bottom: 20px; right: 16px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; max-width: calc(100vw - 32px); }
.toast { background: var(--navy-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: 13px; box-shadow: var(--shadow); min-width: 240px; max-width: 340px; animation: toastIn 0.3s ease; word-break: break-word; }
@keyframes toastIn { from { opacity:0; transform: translateX(30px); } to { opacity:1; transform: translateX(0); } }
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }
.toast.info    { border-left: 3px solid var(--accent); }

/* FILTER BAR */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; margin-bottom: 16px; padding: 14px 16px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); backdrop-filter: blur(10px); }
.filter-bar .form-group  { margin-bottom: 0; }
.filter-bar .form-control { min-width: 130px; }

/* COLORS */
.positive { color: var(--green); font-weight: 500; }
.negative { color: var(--red);   font-weight: 500; }
.neutral  { color: var(--accent); font-weight: 500; }

/* NET WORTH */
.nw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.nw-total-box { background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(124,58,237,0.1)); border: 1px solid var(--accent); border-radius: var(--radius); padding: 20px; text-align: center; }
.nw-total-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.nw-total-value { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--accent); word-break: break-all; }

/* TABS */
.tabs { display: flex; gap: 4px; background: rgba(255,255,255,0.04); padding: 4px; border-radius: 10px; margin-bottom: 20px; border: 1px solid var(--border); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tab { flex: 1; padding: 8px 14px; border: none; border-radius: 8px; background: transparent; color: var(--text-muted); cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 13px; transition: all var(--transition); white-space: nowrap; -webkit-tap-highlight-color: transparent; }
.tab.active { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: white; font-weight: 500; }

/* MILEAGE */
.mileage-display { background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(124,58,237,0.08)); border: 1px solid var(--border); border-radius: 12px; padding: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; margin-top: 14px; }
.mileage-item .value { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--accent); }
.mileage-item .label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* PORTFOLIO */
.portfolio-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 16px; }
.portfolio-stat { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 14px; text-align: center; }
.portfolio-stat .value { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; word-break: break-word; }
.portfolio-stat .label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 4px; }

/* EMPTY */
.empty-state { text-align: center; padding: 48px 24px; color: var(--text-muted); }
.empty-state .empty-icon { font-size: 40px; margin-bottom: 12px; opacity: 0.5; }
.empty-state p { font-size: 14px; }

/* LOADER */
.loader { display: flex; align-items: center; justify-content: center; padding: 40px; }
.spinner { width: 30px; height: 30px; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ====== RESPONSIVE ====== */

/* Large monitors 1400px+ */
@media (min-width: 1400px) {
  .stats-grid  { grid-template-columns: repeat(6, 1fr); }
  .page-body   { padding: 28px 36px 48px; }
}

/* 1025-1399 */
@media (max-width: 1399px) and (min-width: 1025px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablets 768-1024 */
@media (max-width: 1024px) {
  :root { --sidebar-w: 210px; }
  .charts-grid    { grid-template-columns: 1fr; }
  .nw-grid        { grid-template-columns: 1fr 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .portfolio-summary { grid-template-columns: 1fr 1fr 1fr; }
  .page-body      { padding: 16px 18px 32px; }
  .stat-value     { font-size: 18px; }
}

/* Mobile < 768px */
@media (max-width: 767px) {
  :root { --sidebar-w: 240px; }

  .sidebar {
    transform: translateX(-100%);
    box-shadow: none;
    height: 100vh;
    height: 100dvh; /* dynamic viewport height — fixes mobile browser address-bar shrink */
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .sidebar.open { transform: translateX(0); box-shadow: 4px 0 30px rgba(0,0,0,0.5); }
  .nav-links { flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .sidebar-footer { flex-shrink: 0; }
  .main-content { margin-left: 0; }
  .hamburger    { display: flex; }

  .page-body  { padding: 14px 14px 32px; }
  .page-header { flex-direction: column; align-items: flex-start; }
  .page-title  { font-size: 18px; }

  .charts-grid,
  .grid-2,
  .grid-3,
  .nw-grid,
  .portfolio-summary { grid-template-columns: 1fr; }

  .stats-grid   { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-value   { font-size: 16px; }
  .stat-card    { padding: 14px; }

  .mileage-display { grid-template-columns: 1fr 1fr; }

  .filter-bar { padding: 12px; gap: 8px; }
  .filter-bar .form-control { min-width: unset; width: 100%; }
  .filter-bar .form-group   { width: 100%; }

  .login-card { padding: 32px 22px; }

  .modal { border-radius: 16px; }
  .modal-footer { flex-direction: column-reverse; }
  .modal-footer .btn { width: 100%; justify-content: center; }

  .date-badge { display: none; }
  .topbar { padding: 0 14px; }

  .toast-container { right: 10px; left: 10px; }
  .toast { min-width: unset; max-width: 100%; }

  .card-header { flex-direction: column; align-items: flex-start; }
}

/* Very small < 380px */
@media (max-width: 379px) {
  .stats-grid      { grid-template-columns: 1fr; }
  .mileage-display { grid-template-columns: 1fr; }
  .stat-value { font-size: 15px; }
  .btn-sm     { padding: 5px 10px; font-size: 11px; }
}

/* ============================================================
   FOOTER COPYRIGHT
   ============================================================ */
.site-footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  flex-shrink: 0;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer a:hover { color: var(--accent2); text-decoration: underline; }

.site-footer .footer-divider {
  display: inline-block;
  margin: 0 8px;
  opacity: 0.4;
}
