@font-face {
  font-family: "Geist";
  src: url("./fonts/geist/Geist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("./fonts/geist/Geist-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("./fonts/geist/Geist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("./fonts/geist/Geist-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("./fonts/geist/GeistMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("./fonts/geist/GeistMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-muted: #f1f5f9;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #dbe5f1;
  --border-strong: #cbd8e6;
  --focus: #2563eb;

  --critical: #dc2626;
  --high: #ea580c;
  --medium: #ca8a04;
  --low: #0284c7;
  --info: #64748b;

  --risk-financial: #7c3aed;
  --risk-trust: #0f766e;
  --risk-operational: #1d4ed8;
  --risk-compliance: #b45309;

  --success: #16a34a;
  --warning: #d97706;

  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top right, #f0f6ff 0, transparent 36%), var(--bg);
  color: var(--text);
  font-family: "Geist", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

code,
pre {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

a {
  color: inherit;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-4) var(--space-5) var(--space-3);
  display: grid;
  gap: var(--space-3);
}

.topbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.topbar-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.kpi-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5ff;
  border: 1px solid #cddcfe;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.kpi-pill .num {
  font-weight: 700;
}

.kpi-pill.high {
  background: #fff3eb;
  border-color: #fed7aa;
  color: #9a3412;
}

.kpi-pill.medium {
  background: #fffaeb;
  border-color: #fde68a;
  color: #854d0e;
}

.kpi-pill.low {
  background: #ebf8ff;
  border-color: #b7e3ff;
  color: #0c4a6e;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #0f172a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.brand-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.brand-subtitle {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-2);
}

.nav-pill {
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 12px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.nav-pill:hover {
  background: #f7faff;
  border-color: #bdd4f7;
  color: #1d4ed8;
}

.nav-pill.active {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-5) 56px;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: var(--space-6);
}

.hero h1 {
  margin: 0 0 var(--space-3);
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 72ch;
}

.inline-list {
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.inline-list li {
  background: #eef3ff;
  color: #1e3a8a;
  border: 1px solid #cfdefd;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
}

.severity-split {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-2);
}

.sev-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 12px;
  display: grid;
  gap: 3px;
}

.sev-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  color: var(--text-muted);
  font-weight: 600;
}

.sev-card strong {
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.2px;
}

.sev-card small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.sev-card.total {
  background: #f8fafc;
  border-color: #d7e0ea;
}

.sev-card.high {
  background: #fff4ec;
  border-color: #ffd6b3;
  color: #9a3412;
}

.sev-card.medium {
  background: #fffaec;
  border-color: #fde68a;
  color: #854d0e;
}

.sev-card.low {
  background: #edf9ff;
  border-color: #bfe6ff;
  color: #0c4a6e;
}

.hero-score {
  align-self: stretch;
  background: #ffffff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: grid;
  gap: var(--space-3);
}

.hero-score-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
}

.score {
  margin: 0;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.4px;
  font-weight: 700;
}

.score-sub {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.section {
  margin-top: var(--space-7);
}

.section-head {
  margin-bottom: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-3);
}

.section-head.stacked {
  display: grid;
  justify-content: flex-start;
  align-items: start;
  gap: 6px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: -0.2px;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.mix-stack {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  background: #e8eef7;
}

.mix-stack .segment {
  height: 100%;
  display: block;
}

.mix-stack .segment.regressed {
  background: #dc2626;
}

.mix-stack .segment.new {
  background: #d97706;
}

.mix-stack .segment.unchanged {
  background: #0ea5e9;
}

.mix-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.mix-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #334155;
  font-weight: 600;
}

.mix-values {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-size: 12px;
  color: #475569;
}

.mix-values strong {
  font-size: 14px;
  color: #0f172a;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  display: inline-block;
}

.dot.bad {
  background: #dc2626;
}

.dot.warn {
  background: #d97706;
}

.dot.neutral {
  background: #0ea5e9;
}

.mix-progress {
  height: 7px;
}

.grid {
  display: grid;
  gap: var(--space-4);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.card-muted {
  background: var(--surface-soft);
}

.metric {
  display: grid;
  gap: var(--space-2);
}

.metric-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.metric-label.with-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.metric-label.with-icon .lucide {
  width: 13px;
  height: 13px;
  stroke-width: 2.2;
}

.metric-value {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.metric-foot {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.metric-value.good {
  color: #166534;
}

.metric-value.bad {
  color: #b91c1c;
}

.metric-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.trend-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.metric-delta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  background: #f1f5f9;
  border: 1px solid #dbe5f1;
  color: #334155;
}

.metric-delta.good {
  color: #166534;
  background: #ecfdf3;
  border-color: #b7efcc;
}

.metric-delta.bad {
  color: #b91c1c;
  background: #fef2f2;
  border-color: #fecaca;
}

.metric-change {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}

.metric-change.good {
  color: #166534;
}

.metric-change.bad {
  color: #b91c1c;
}

.metric-change.neutral {
  color: #475569;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
}

.badge-critical {
  background: #fdecec;
  border-color: #f8bbbb;
  color: #991b1b;
}

.badge-high {
  background: #fff3e9;
  border-color: #ffd7b5;
  color: #9a3412;
}

.badge-medium {
  background: #fffbea;
  border-color: #fde390;
  color: #854d0e;
}

.badge-low {
  background: #eef8ff;
  border-color: #bfe6ff;
  color: #0c4a6e;
}

.badge-info {
  background: #f2f6fa;
  border-color: #d7e0ea;
  color: #334155;
}

.badge-ok {
  background: #e9f8ee;
  border-color: #b8e9c6;
  color: #166534;
}

.trend-up {
  color: var(--success);
}

.trend-warn {
  color: var(--warning);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #d7e3f1;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.table th,
.table td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e8eff7;
  padding: 13px 14px;
  font-size: 13px;
}

.table th {
  background: #f7faff;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25px;
}

.table tbody tr:nth-child(even) td {
  background: #fcfdff;
}

.table tbody tr:hover td {
  background: #f4f8ff;
}

.table tr:last-child td {
  border-bottom: none;
}

.progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e7edf5;
  overflow: hidden;
}

.progress > span {
  height: 100%;
  display: block;
}

.fill-critical { background: var(--critical); }
.fill-high { background: var(--high); }
.fill-medium { background: var(--medium); }
.fill-low { background: var(--low); }
.fill-ok { background: var(--success); }

.risk-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.risk-financial { background: #f5f0ff; border-color: #ccb8fa; color: #5b21b6; }
.risk-trust { background: #e8f9f7; border-color: #a5e3dc; color: #0f766e; }
.risk-operational { background: #ebf1ff; border-color: #b8cdfb; color: #1d4ed8; }
.risk-compliance { background: #fff5e9; border-color: #f5d1a7; color: #92400e; }

.priority-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.priority-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 12px;
}

.priority-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.priority-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.priority-meta {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.kpi-chip {
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 12px;
  color: #334155;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.pill {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
}

.detail-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
}

.detail-head {
  background: #f8fafd;
  border-bottom: 1px solid var(--border);
  padding: 13px 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.detail-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.detail-body {
  padding: 14px;
  display: grid;
  gap: 12px;
}

.detail-subtitle {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.3;
}

.checklist {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.checklist.compact {
  gap: 4px;
  font-size: 12px;
}

.note {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.links a {
  color: #1d4ed8;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-4);
}

.split-wide {
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 0.85fr);
}

.kanban {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.kanban-col {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 12px;
}

.kanban-col h3 {
  margin: 0 0 8px;
  font-size: 13px;
}

.kanban-col ul {
  margin: 0;
  padding-left: 17px;
  display: grid;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
}

.slide {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 16px;
}

.slide h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.35;
}

.slide p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.section .slide + .slide {
  margin-top: 12px;
}

.callout-spaced {
  margin-top: 12px;
}

.dev-workbench {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
  gap: var(--space-4);
  align-items: start;
}

.vuln-list-panel {
  display: grid;
  gap: var(--space-3);
}

.vuln-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  max-height: 980px;
  overflow: auto;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  border: 1px solid var(--border);
  background: #fff;
  color: #334155;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.filter-pill .count {
  background: #edf2f8;
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 11px;
  color: #334155;
}

.filter-pill.active {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
}

.filter-pill.active .count {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.vuln-item-button {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-sm);
  text-align: left;
  padding: 10px;
  display: grid;
  gap: 7px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.vuln-item-button:hover {
  border-color: #bad2f8;
  background: #f9fbff;
}

.vuln-item-button.active {
  border-color: #1d4ed8;
  background: #eef4ff;
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.1);
}

.vuln-item-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.vuln-item-title {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.vuln-item-file {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.dev-sidebar {
  position: sticky;
  top: 90px;
  padding: 0;
  overflow: hidden;
}

.code-block {
  margin: 0;
  border: 1px solid #d7e0ea;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.code-frame {
  border: 1px solid #1f2937;
  background: #0b1220;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.code-table {
  width: 100%;
  border-collapse: collapse;
}

.code-table td {
  padding: 5px 8px;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.code-table tr:last-child td {
  border-bottom: none;
}

.code-num {
  width: 54px;
  color: #7b8aa8;
  text-align: right;
  user-select: none;
}

.code-content {
  color: #e6edf7;
  white-space: pre-wrap;
  word-break: break-word;
}

.code-highlight td {
  background: rgba(251, 146, 60, 0.2);
}

.chart-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 10px;
}

.chart-mount {
  width: 100%;
  min-height: 110px;
}

.chart-mount-sm {
  min-height: 86px;
}

.chart-mount-xs {
  min-height: 66px;
}

.presenter-notes {
  margin-top: 10px;
}

.presenter-notes summary {
  cursor: pointer;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 600;
}

.presenter-notes p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.icon-sm {
  width: 14px;
  height: 14px;
}

.label-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.label-with-icon .lucide {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.callout {
  background: #eef5ff;
  border: 1px solid #cfe0fd;
  border-left: 4px solid #2563eb;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: #1e3a8a;
  font-size: 13px;
}

.index-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.index-item {
  text-decoration: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.index-item h3 {
  margin: 0;
  font-size: 16px;
}

.index-item p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 1080px) {
  .topbar-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-pills {
    justify-content: flex-start;
  }

  .hero-grid,
  .severity-split,
  .split,
  .grid-4,
  .grid-3,
  .grid-2,
  .kanban,
  .kpi-row,
  .dev-workbench {
    grid-template-columns: 1fr;
  }

  .dev-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .topbar-inner {
    padding: 12px 14px;
  }

  .container {
    padding: 16px 14px 36px;
  }

  .hero {
    padding: 16px;
  }

  .brand-subtitle {
    white-space: normal;
  }

  .score {
    font-size: 30px;
  }

  .section {
    margin-top: 24px;
  }
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
