/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette */
  --dark:       #141413;
  --light:      #faf9f5;
  --mid-gray:   #b0aea5;
  --light-gray: #e8e6dc;
  --orange:     #d97757;
  --orange-dim: #f3e2d9;
  --orange-dark:#b85f3e;
  --blue:       #6a9bcc;
  --blue-dim:   #dde9f5;
  --green:      #788c5d;

  /* Semantic aliases */
  --primary:        var(--orange);
  --primary-light:  var(--orange-dim);
  --primary-dark:   var(--orange-dark);
  --accent:         var(--blue);
  --accent-light:   var(--blue-dim);
  --bg:             var(--light);
  --surface:        #ffffff;
  --border:         var(--light-gray);
  --border-light:   #f0ede4;
  --text:           var(--dark);
  --text-secondary: #4a4843;
  --text-muted:     var(--mid-gray);

  /* Layout */
  --nav-height:    60px;
  --sidebar-width: 280px;
  --content-max:   1100px;
  --radius:        10px;
  --radius-lg:     16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(20,20,19,0.05);
  --shadow:     0 2px 8px rgba(20,20,19,0.07), 0 0 0 1px rgba(20,20,19,0.03);
  --shadow-md:  0 4px 16px rgba(20,20,19,0.09), 0 0 0 1px rgba(20,20,19,0.04);
  --shadow-lg:  0 8px 32px rgba(20,20,19,0.12);

  /* Typography */
  --font-heading: 'Poppins', Arial, sans-serif;
  --font-body:    'Lora', Georgia, 'Times New Roman', serif;

  --transition: 0.18s ease;
}

html { font-size: 15px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); text-decoration: underline; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background: rgba(250,249,245,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center;
  padding: 0 28px;
  box-shadow: 0 1px 4px rgba(20,20,19,0.05);
}
.navbar .brand {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 1.05rem;
  color: var(--dark); margin-right: 32px;
  white-space: nowrap; letter-spacing: -0.01em;
}
.navbar nav { display: flex; gap: 2px; }
.navbar nav a {
  padding: 6px 14px; border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.01em;
}
.navbar nav a:hover { background: var(--orange-dim); color: var(--orange-dark); text-decoration: none; }
.navbar nav a.active {
  background: var(--orange); color: #fff;
  box-shadow: 0 2px 6px rgba(217,119,87,0.3);
}
.hamburger {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--text);
  margin-left: auto; padding: 4px;
}

/* Mobile filter toggle */
.sidebar-toggle-mobile {
  display: none;
  position: fixed; bottom: 24px; right: 20px; z-index: 90;
  background: var(--orange); color: #fff;
  border: none; border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; box-shadow: var(--shadow-lg);
  transition: background var(--transition), transform var(--transition);
}
.sidebar-toggle-mobile:hover { background: var(--orange-dark); transform: translateY(-2px); }
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(20,20,19,0.45); z-index: 88;
  backdrop-filter: blur(2px);
}
.drawer-overlay.open { display: block; }

/* ============ LAYOUT ============ */
.page-wrapper {
  margin-top: var(--nav-height);
  display: flex;
  min-height: calc(100vh - var(--nav-height));
}

.sidebar {
  width: var(--sidebar-width);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-right: 1px solid var(--border-light);
  padding: 24px 18px 40px;
  overflow-y: auto;
  flex-shrink: 0;
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
}

.main-content {
  flex: 1; padding: 28px 36px 0;
  min-width: 0;
}
.no-sidebar .main-content { padding: 28px 48px 0; max-width: var(--content-max); margin: 0 auto; }

/* ============ PAGE SUBTITLE (below h1) ============ */
.page-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--orange); margin-bottom: 4px;
}
h1 {
  font-family: var(--font-heading);
  font-size: 1.9rem; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 6px; color: var(--dark);
}
h2 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600;
  letter-spacing: -0.01em;
  margin: 28px 0 10px; color: var(--dark);
}
h3 {
  font-family: var(--font-heading);
  font-size: 0.92rem; font-weight: 600;
  margin-bottom: 6px; color: var(--dark);
}
.subtitle {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 18px;
  line-height: 1.55;
}

/* ============ SLICE PILL ============ */
.slice-pill {
  display: inline-flex; align-items: center; flex-wrap: wrap;
  gap: 0; margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 600;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 5px 14px;
  box-shadow: var(--shadow-sm);
  color: var(--text-secondary);
  line-height: 1.4;
}
.slice-pill .pill-sep {
  margin: 0 7px; color: var(--border); font-weight: 400;
}
.slice-pill .pill-val {
  color: var(--dark); font-weight: 600;
}

/* ============ FILTER HINT ============ */
.filter-hint {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  margin-bottom: 18px; line-height: 1.6;
  padding: 9px 13px;
  background: var(--bg);
  border-radius: 8px;
  border-left: 3px solid var(--orange-dim);
}

/* ============ FILTER PANEL ============ */
.sidebar-section-title {
  font-family: var(--font-heading);
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--mid-gray); margin: 18px 0 8px;
  padding-bottom: 4px; border-bottom: 1px solid var(--border-light);
}
.filter-group { margin-bottom: 16px; }
.filter-group > label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 5px;
}
.filter-group select,
.filter-group input[type="text"],
.filter-group input[type="number"] {
  width: 100%; padding: 7px 10px;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.86rem; font-family: var(--font-body);
  background: var(--surface); color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217,119,87,0.15);
}

.year-range { display: flex; gap: 8px; align-items: center; }
.year-range input { width: 70px !important; text-align: center; }
.year-range span { color: var(--text-muted); font-size: 0.82rem; font-family: var(--font-heading); }

/* Measure checkboxes with color dots */
.measure-checkbox-item {
  display: flex; align-items: center; gap: 7px;
  padding: 4px 6px; border-radius: 6px; cursor: pointer;
  font-size: 0.84rem; font-family: var(--font-body);
  transition: background var(--transition);
  margin-bottom: 1px;
}
.measure-checkbox-item:hover { background: var(--bg); }
.measure-checkbox-item input[type="checkbox"] { cursor: pointer; accent-color: var(--orange); }
.measure-dot {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  flex-shrink: 0;
}

/* Chip input */
.chip-input-wrap {
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--surface); padding: 5px 7px; min-height: 38px;
  display: flex; flex-wrap: wrap; gap: 4px; cursor: text;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.chip-input-wrap:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217,119,87,0.15);
}
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--orange-dim); color: var(--orange-dark);
  padding: 2px 10px; border-radius: 14px; font-size: 0.78rem;
  white-space: nowrap; font-family: var(--font-heading); font-weight: 600;
}
.chip button {
  background: none; border: none; cursor: pointer;
  font-size: 0.9rem; color: var(--orange-dark); line-height: 1; padding: 0;
  transition: color var(--transition);
}
.chip button:hover { color: #c0392b; }
.chip-input-wrap input {
  border: none; outline: none; background: transparent;
  font-size: 0.84rem; flex: 1; min-width: 60px; padding: 2px;
  font-family: var(--font-body);
}
.dropdown-list {
  position: absolute; left: -1px; right: -1px; top: 100%;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; max-height: 200px; overflow-y: auto;
  z-index: 50; box-shadow: var(--shadow-lg); display: none; margin-top: 4px;
}
.dropdown-list.open { display: block; }
.dropdown-list .option {
  padding: 7px 12px; cursor: pointer; font-size: 0.84rem;
  font-family: var(--font-body);
  transition: background var(--transition);
}
.dropdown-list .option:hover { background: var(--orange-dim); }
.dropdown-list .option.selected { background: var(--orange); color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface); color: var(--text);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.btn:hover { background: var(--bg); box-shadow: var(--shadow-sm); }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 2px 8px rgba(217,119,87,0.3); }
.btn-sm { padding: 5px 12px; font-size: 0.78rem; }
.btn-group { display: flex; gap: 0; }
.btn-group .btn { border-radius: 0; margin-left: -1px; }
.btn-group .btn:first-child { border-radius: 8px 0 0 8px; margin-left: 0; }
.btn-group .btn:last-child { border-radius: 0 8px 8px 0; }
.btn-group .btn.active { background: var(--orange); color: #fff; border-color: var(--orange); z-index: 1; }

.filter-actions {
  display: flex; gap: 8px; margin-top: 16px;
  padding-top: 14px; border-top: 1px solid var(--border-light);
}

/* ============ VIEW CONTROLS ============ */
.view-controls {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  margin-bottom: 16px; padding: 11px 18px;
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
}
.view-controls label {
  font-family: var(--font-heading);
  font-size: 0.72rem; color: var(--text-muted);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; margin-right: 4px;
}
.view-controls select, .view-controls input[type="number"] {
  padding: 5px 9px; border: 1px solid var(--border);
  border-radius: 6px; font-size: 0.84rem;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.view-controls select:focus, .view-controls input:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217,119,87,0.15);
}

/* ============ CHART CONTAINER & TOOLBAR ============ */
.chart-container {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 20px 20px 16px;
  margin-bottom: 14px;
  position: relative;
  transition: box-shadow var(--transition);
}
.chart-container:hover { box-shadow: var(--shadow-lg); }
.chart-container canvas { width: 100% !important; }

/* Skeleton loading */
.chart-skeleton {
  position: absolute; inset: 20px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--bg) 25%, var(--light-gray) 50%, var(--bg) 75%);
  background-size: 200% 100%;
  animation: skeleton-sweep 1.4s infinite ease-in-out;
}
@keyframes skeleton-sweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Chart toolbar */
.chart-toolbar {
  position: absolute; top: 12px; right: 14px;
  display: flex; gap: 4px; z-index: 5;
  opacity: 0; transition: opacity var(--transition);
}
.chart-container:hover .chart-toolbar { opacity: 1; }
.chart-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 9px; border-radius: 6px;
  background: rgba(250,249,245,0.9);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.7rem; font-weight: 600;
  color: var(--text-secondary); cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.chart-btn:hover {
  background: var(--orange-dim); color: var(--orange-dark);
  border-color: var(--orange); box-shadow: var(--shadow-sm);
}

/* Coverage bar */
.coverage-bar {
  font-size: 0.76rem; color: var(--text-muted);
  padding: 10px 14px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  font-family: var(--font-heading);
}
.coverage-title {
  font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 7px; color: var(--text-secondary);
}
.coverage-items { display: flex; flex-wrap: wrap; gap: 5px 14px; }
.coverage-bar span {
  white-space: nowrap; font-variant-numeric: tabular-nums;
}

/* ============ LOADING ============ */
.loading-overlay {
  position: absolute; inset: 0;
  background: rgba(250,249,245,0.72);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg); z-index: 10;
  backdrop-filter: blur(3px);
}
.spinner {
  width: 30px; height: 30px;
  border: 2.5px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ EMPTY STATE ============ */
.empty-state {
  text-align: center; padding: 52px 24px;
  color: var(--text-muted);
}
.empty-state-icon {
  font-size: 2.8rem; margin-bottom: 14px; opacity: 0.35;
}
.empty-state-title {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 6px;
}
.empty-state p {
  font-size: 0.88rem; max-width: 340px;
  margin: 0 auto; line-height: 1.6;
}

/* ============ CARDS ============ */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px; margin: 16px 0;
}
.card {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 20px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
  border-color: var(--orange-dim); text-decoration: none;
}
.card h3 { color: var(--dark); margin-bottom: 6px; }
.card p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.5; }

/* Stat cards */
.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px; margin: 20px 0;
}
.stat-card {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 16px 18px;
  text-align: center; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--orange);
  transition: box-shadow var(--transition), transform var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.stat-card .stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem; font-weight: 700;
  color: var(--orange); font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat-card .stat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem; color: var(--text-muted);
  margin-top: 4px; text-transform: uppercase;
  letter-spacing: 0.05em; font-weight: 600;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #1a1f2e 0%, #2a3a55 50%, #3d5a80 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: 44px 48px; margin-bottom: 28px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 72% 18%, rgba(217,119,87,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.hero h1 {
  color: #fff; font-size: 2.2rem; margin-bottom: 10px;
}
.hero-desc {
  color: rgba(255,255,255,0.8); font-size: 1rem;
  max-width: 600px; line-height: 1.65; margin-bottom: 22px;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.88rem; font-weight: 700;
  background: var(--orange); color: #fff;
  border: none; cursor: pointer; letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 2px 12px rgba(217,119,87,0.4);
  text-decoration: none;
}
.btn-hero:hover {
  background: var(--orange-dark); transform: translateY(-1px);
  text-decoration: none; color: #fff;
}

/* ============ TABLES ============ */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
th, td {
  padding: 9px 14px; text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-variant-numeric: tabular-nums;
}
th {
  font-family: var(--font-heading);
  font-size: 0.7rem; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.06em; background: var(--bg);
  position: sticky; top: 0; z-index: 2;
}
tr { transition: background var(--transition); }
tr:hover td { background: rgba(217,119,87,0.03); }
tr.highlight td {
  background: rgba(217,119,87,0.07);
  border-left: 3px solid var(--orange);
}
tr.highlight td:first-child { padding-left: 11px; }

.table-container {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  max-height: 600px; overflow-y: auto;
  border: 1px solid var(--border-light);
}

/* ============ RANKING STICKY BAR ============ */
.ranking-sticky-bar {
  position: sticky; top: 0; z-index: 10;
  background: rgba(250,249,245,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 9px 16px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-family: var(--font-heading); font-size: 0.76rem;
}
.ranking-sticky-bar .rsb-label {
  font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-right: 2px;
}
.rsb-tag {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 12px;
  background: var(--orange-dim); color: var(--orange-dark);
  font-weight: 600; font-size: 0.74rem;
}
.rsb-sep { color: var(--border); font-size: 1rem; }

/* ============ CITATION ============ */
.citation-block {
  margin-top: 36px; padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--orange);
}
.citation-block h2 { margin-top: 0; }

/* ============ METHODS ============ */
.method-section { margin-bottom: 32px; }
.method-section p {
  font-size: 0.9rem; line-height: 1.7;
  margin-bottom: 10px; color: var(--text-secondary);
}
.method-section a { color: var(--blue); }
.method-section a:hover { color: var(--orange); }

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--dark); color: #fff;
  padding: 10px 22px; border-radius: 8px;
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 600;
  z-index: 200; box-shadow: var(--shadow-lg);
  opacity: 0; transition: opacity 0.25s;
  pointer-events: none;
}
.toast.show { opacity: 1; }

/* ============ SITE FOOTER ============ */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,0.55);
  padding: 20px 48px;
  font-family: var(--font-heading); font-size: 0.78rem;
  margin-top: 48px;
}
.footer-inner {
  max-width: var(--content-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-cite { line-height: 1.55; }
.footer-cite strong { color: rgba(255,255,255,0.75); }
.footer-links { display: flex; gap: 16px; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); text-decoration: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .navbar nav {
    display: none; position: absolute;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(250,249,245,0.97);
    backdrop-filter: blur(14px);
    flex-direction: column; padding: 8px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .navbar nav.open { display: flex; }

  .sidebar {
    display: none; position: fixed;
    left: 0; top: 0; bottom: 0; width: 85vw; max-width: 320px;
    z-index: 89; height: 100vh;
    background: rgba(250,249,245,0.98);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
    padding-top: calc(var(--nav-height) + 16px);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }
  .sidebar.open {
    display: block;
    transform: translateX(0);
  }
  .sidebar-toggle-mobile { display: flex; }
  .main-content { padding: 16px; }
  .no-sidebar .main-content { padding: 16px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .hero { padding: 28px 24px; }
  .hero h1 { font-size: 1.65rem; }
  .site-footer { padding: 18px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .chart-toolbar { opacity: 1; }
}
