@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* Sellr Admin — polished SaaS layout */
:root {
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'SF Mono', 'Consolas', 'Courier New', monospace;
  --green-800: #047857;
  --green-900: #065f46;
  --green-600: #10b981;
  --green-50: #ecfdf5;
  --radius: 10px;
  --bg-page: #f3f4f6;
  --bg-card: #ffffff;
  --bg-muted: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --border: #e2e8f0;
  --accent: var(--green-800);
  --header-h: 56px;
  --sidebar-w: 232px;
  --success-bg: #dcfce7;
  --success-text: #166534;
  --warning-bg: #fef3c7;
  --warning-text: #92400e;
  --danger-bg: #fee2e2;
  --danger-text: #991b1b;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-feature-settings: 'tnum' 1;
}

h1, h2, h3, .panel-head, .nav-group, .header-brand strong, .stat-value, .metric-value {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

a { color: #fff; text-decoration: none; }
.main a { color: var(--accent); font-weight: 500; }
.main a:hover { color: var(--green-900); }

/* Header */
.top-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: linear-gradient(180deg, var(--green-800), var(--green-900));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  z-index: 200;
  box-shadow: var(--shadow-md);
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.header-brand-text { display: flex; flex-direction: column; gap: 1px; }
.header-brand strong { font-size: 15px; font-weight: 700; line-height: 1.2; }
.header-sub { font-size: 11px; opacity: 0.8; font-weight: 500; }

.org-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px dashed rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.org-logo.has-image { border-style: solid; border-color: rgba(255,255,255,0.25); background: #fff; }
.org-logo img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.logo-placeholder {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}
.header-user { max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.header-actions span { opacity: 0.9; }
.header-actions a { opacity: 0.95; font-weight: 500; }
.header-actions a:hover { opacity: 1; text-decoration: underline; }
.header-actions .sep { opacity: 0.35; }

.app-body {
  display: flex;
  padding-top: var(--header-h);
  min-height: 100vh;
}

.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  position: fixed;
  top: var(--header-h);
  left: 0; bottom: 0;
  overflow-y: auto;
}
.nav { padding: 12px 10px 28px; }
.nav-group {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-secondary);
  padding: 14px 10px 6px;
}
.nav a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #374151;
  margin-bottom: 2px;
  transition: background 0.15s;
}
.nav a:hover { background: var(--bg-muted); }
.nav a.active {
  background: var(--green-50);
  color: var(--accent);
  font-weight: 600;
}

.main { flex: 1; margin-left: var(--sidebar-w); min-width: 0; }

.page-head {
  padding: 22px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.page-head h1 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page-head .search {
  width: 280px;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  background: var(--bg-card);
  font-family: inherit;
  box-shadow: var(--shadow-sm);
}
.page-head .search:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.12);
}

.page-body { padding: 18px 28px 36px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-label { font-size: 12px; color: var(--text-secondary); font-weight: 500; }
.stat-value {
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0 4px;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.stat-note { font-size: 11px; color: var(--text-secondary); }
.stat-note.up { color: var(--success-text); font-weight: 600; }
.stat-note.warn { color: var(--warning-text); font-weight: 600; }

.panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.panel-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
}
.panel-body { padding: 18px; }
.panel-body.flush { padding: 0; }
.panel-lead { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; }
.panel-note { font-size: 12px; color: var(--text-secondary); margin-top: 12px; padding: 0 18px 16px; }
.panel-body.flush + .panel-note { padding-top: 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

table { width: 100%; border-collapse: collapse; font-size: 13px; }
th {
  text-align: left;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: #fafbfc; }

.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.badge-ok { background: var(--success-bg); color: var(--success-text); }
.badge-warn { background: var(--warning-bg); color: var(--warning-text); }
.badge-bad { background: var(--danger-bg); color: var(--danger-text); }
.badge-muted { background: var(--bg-muted); color: var(--text-secondary); }

.toolbar { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.input, .select {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  background: var(--bg-card);
  font-family: inherit;
}
.input:focus, .select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}
.input { flex: 1; min-width: 160px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
/* Beat `.main a { color: accent }` — white on dark green meets WCAG AA (~7:1) */
.main a.btn,
.main a.btn:hover,
.btn:visited {
  color: #fff !important;
}
.btn:hover { background: var(--green-900); color: #fff !important; }
.btn-sm { padding: 7px 14px; font-size: 12.5px; letter-spacing: 0.01em; }
.btn-outline {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text-primary);
}
.main a.btn-outline,
.main a.btn-outline:visited {
  color: var(--text-primary) !important;
}
.btn-outline:hover,
.main a.btn-outline:hover {
  background: var(--bg-muted);
  color: var(--text-primary) !important;
}
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

/* Warning-banner CTA: dark amber fill + white text (high contrast on cream) */
.alert-banner .btn {
  background: #92400e;
  border-color: #78350f;
  color: #fff !important;
  box-shadow: 0 1px 2px rgba(120, 53, 15, 0.25);
}
.alert-banner .btn:hover {
  background: #78350f;
  color: #fff !important;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-group label input[type="checkbox"] { margin-right: 8px; }
.form-group .input, .form-group .select { width: 100%; }
.textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}
.help-message {
  margin: 0;
  padding: 10px 12px;
  background: var(--surface-muted, #f3f4f6);
  border-radius: 8px;
  white-space: pre-wrap;
  font-size: 13px;
  line-height: 1.5;
  font-family: inherit;
}
.help-msg-row td { border-top: none; padding-top: 0; }
.field-hint { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

.logo-upload-slot { margin-bottom: 18px; }
.logo-upload-preview {
  width: 120px;
  height: 120px;
  border: 2px dashed var(--border);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg-muted);
  margin-bottom: 8px;
  overflow: hidden;
}
.logo-upload-preview img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.logo-upload-placeholder {
  text-align: center;
  color: var(--text-secondary);
}
.logo-upload-placeholder span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.logo-upload-placeholder small { font-size: 11px; }

.feature-list { padding-left: 18px; font-size: 13px; color: var(--text-secondary); }
.feature-list li { margin-bottom: 8px; }
.feature-list strong { color: var(--text-primary); }

.bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 140px;
  padding-top: 8px;
}
.bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}
.bar {
  width: 100%;
  max-width: 44px;
  background: linear-gradient(180deg, var(--green-600), var(--accent));
  border-radius: 4px 4px 0 0;
  min-height: 4px;
}
.bar-label { font-size: 10px; color: var(--text-secondary); font-weight: 500; }

/* ROI metrics + charts */
.stats-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.metric-label { font-size: 11px; color: var(--text-secondary); font-weight: 600; line-height: 1.3; }
.metric-value {
  font-size: 22px;
  font-weight: 700;
  margin: 6px 0 2px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.roi-snapshot {
  margin-bottom: 18px;
}
.roi-snapshot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.roi-snapshot-head h2 {
  font-size: 14px;
  font-weight: 700;
}
.roi-snapshot-head a { font-size: 12px; }
.roi-footnote {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 8px;
  padding: 10px 14px;
  background: var(--bg-muted);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.usage-money {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
  align-items: center;
  margin: 0 0 18px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.08), rgba(255, 255, 255, 0.9) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.usage-money-copy h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}
.usage-money-copy > p {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 52ch;
  line-height: 1.45;
}
.usage-money-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.usage-money-label {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 4px;
}
.usage-money-metrics strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  font-feature-settings: 'tnum' 1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.usage-money-visual {
  text-align: center;
}
.roi-profit-strip {
  margin: 0 0 18px;
  padding: 18px 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.roi-profit-strip-head h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}
.roi-profit-strip-head p {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 72ch;
}
.roi-profit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.roi-profit-card {
  padding: 14px 14px 12px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.roi-profit-card--hero {
  background: linear-gradient(145deg, rgba(4, 120, 87, 0.1), rgba(255, 255, 255, 0.7));
  border-color: #a7f3d0;
}
.roi-profit-card strong,
.roi-profit-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-feature-settings: 'tnum' 1;
  margin: 4px 0 6px;
  color: var(--text-primary);
}
.roi-profit-card .up-text { color: var(--success-text); }
.roi-profit-card .down-text { color: var(--danger-text); }
.roi-profit-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.roi-profit-meta > div {
  padding-top: 10px;
}
.roi-profit-formula {
  font-size: 13px !important;
  line-height: 1.35;
  word-break: break-word;
}
@media (max-width: 1100px) {
  .roi-profit-grid,
  .roi-profit-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .roi-profit-grid,
  .roi-profit-meta { grid-template-columns: 1fr; }
}

.pricing-hero { margin-bottom: 18px; }
.pricing-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.pricing-option-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 16px 18px 14px;
}
.pricing-option-card.is-selected {
  border-color: #a7f3d0;
  box-shadow: 0 0 0 1px rgba(4, 120, 87, 0.2), var(--shadow-md);
}
.pricing-option-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.pricing-option-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.pricing-option-head h3 {
  margin: 0 0 4px;
  font-size: 17px;
}
.pricing-option-head p {
  margin: 0;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.4;
  max-width: 36ch;
}
.pricing-option-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.pricing-option-compare strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2px 0 4px;
}
.pricing-option-compare small {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.pricing-line-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  border-top: 1px solid var(--border);
}
.pricing-line-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.pricing-line-list li:last-child { border-bottom: none; }
.pricing-line-list span { color: var(--text-secondary); }
.pricing-options-grid--single {
  grid-template-columns: 1fr;
  max-width: 920px;
}
.pricing-line-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .pricing-line-cols { grid-template-columns: 1fr; }
}

.pricing-mini {
  margin: 0 0 16px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pricing-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.pricing-mini-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-top: 2px;
}
@media (max-width: 1100px) {
  .pricing-options-grid { grid-template-columns: 1fr; }
  .pricing-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .pricing-mini-grid { grid-template-columns: 1fr; }
}

.roi-scale-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: center;
  margin: 0 0 18px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 55%, #fff 100%);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.roi-scale-copy h2 {
  margin: 0 0 6px;
  font-size: 18px;
}
.roi-scale-copy p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.45;
  max-width: 52ch;
}
.roi-scale-hero {
  text-align: right;
}
.roi-scale-hero strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 4px 0;
}
@media (max-width: 900px) {
  .roi-scale-strip { grid-template-columns: 1fr; }
  .roi-scale-hero { text-align: left; }
}

.roi-model-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 16px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.07), rgba(255, 255, 255, 0.95) 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.roi-model-banner h2 {
  margin: 0 0 6px;
  font-size: 17px;
}
.roi-model-banner p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 68ch;
}
.roi-model-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 280px;
  justify-content: flex-end;
}
.roi-model-chips span {
  font-size: 11px;
  font-weight: 650;
  color: var(--accent);
  background: var(--green-50);
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}

.roi-breakdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}
.roi-breakdown-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.roi-breakdown-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-feature-settings: 'tnum' 1;
  margin: 4px 0 6px;
}

.roi-benchmark {
  margin: 0 0 18px;
  padding: 14px 16px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.roi-benchmark-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.roi-benchmark-head h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.roi-benchmark-track {
  position: relative;
  height: 12px;
  background: var(--bg-muted);
  border-radius: 999px;
  overflow: visible;
}
.roi-benchmark-range {
  position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(4, 120, 87, 0.22);
  border-radius: 999px;
}
.roi-benchmark-atd,
.roi-benchmark-modeled {
  position: absolute;
  top: -4px;
  width: 3px;
  height: 20px;
  border-radius: 2px;
  transform: translateX(-50%);
}
.roi-benchmark-atd { background: #64748b; }
.roi-benchmark-modeled { background: var(--accent); width: 4px; }
.roi-benchmark-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-secondary);
}

.roi-citations {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.roi-citations li {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.roi-citations li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.roi-citations strong {
  font-size: 13px;
  color: var(--text-primary);
}
.roi-cite-claim {
  margin: 0;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.roi-cite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 2px;
}
.roi-cite-actions a,
.btn-link.roi-cite-toggle {
  font-size: 12px;
  font-weight: 650;
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent);
  cursor: pointer;
  width: fit-content;
}
.btn-link.roi-cite-toggle:hover {
  text-decoration: underline;
}

.roi-citations-fold {
  margin: 0 0 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 0;
}
.roi-citations-fold > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.roi-citations-fold > summary::-webkit-details-marker { display: none; }
.roi-citations-fold > summary::after {
  content: '▾';
  color: var(--text-secondary);
  font-size: 12px;
  margin-left: auto;
}
.roi-citations-fold[open] > summary::after { content: '▴'; }
.roi-citations-count {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}
.roi-citations-fold .panel-lead,
.roi-citations-fold .roi-citations {
  padding-left: 18px;
  padding-right: 18px;
}
.roi-citations-fold .panel-lead { margin-top: 0; }
.roi-citations-fold .roi-citations { padding-bottom: 16px; }

.acronym-note {
  margin-top: 8px;
  font-size: 12px;
}
.acronym-note > summary {
  list-style: none;
  cursor: pointer;
  color: var(--accent);
  font-weight: 650;
  width: fit-content;
}
.acronym-note > summary::-webkit-details-marker { display: none; }
.acronym-note > summary::before {
  content: '+ ';
  font-weight: 700;
}
.acronym-note[open] > summary::before { content: '− '; }
.acronym-note p {
  margin: 6px 0 0;
  padding: 8px 10px;
  background: var(--bg-muted);
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  line-height: 1.45;
  font-size: 12px;
}
.acronym-note a {
  font-weight: 650;
  white-space: nowrap;
}
.roi-model-chips .acronym-note {
  flex-basis: 100%;
  margin-top: 4px;
}
.roi-breakdown-card .acronym-note {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .roi-breakdown { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roi-model-chips { max-width: none; justify-content: flex-start; }
}
@media (max-width: 768px) {
  .roi-breakdown { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .usage-money {
    grid-template-columns: 1fr;
  }
  .usage-money-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .usage-money-metrics {
    grid-template-columns: 1fr 1fr;
  }
}
.chart-line-wrap { width: 100%; overflow: hidden; }
.chart-line { width: 100%; height: auto; display: block; }
.chart-area { fill: rgba(4, 120, 87, 0.12); }
.chart-stroke { stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.chart-dot { fill: var(--green-600); stroke: #fff; stroke-width: 1.5; }
.chart-axis-label { font-size: 9px; fill: var(--text-secondary); }

.donut-wrap { display: flex; flex-direction: column; align-items: center; padding: 8px 0; }
.donut { width: 140px; height: 140px; }
.donut-track { stroke: var(--bg-muted); stroke-width: 12; }
.donut-fill {
  stroke: var(--accent);
  stroke-width: 12;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 60px 60px;
}
.donut-value { font-size: 20px; font-weight: 700; fill: var(--text-primary); }
.donut-label { font-size: 10px; fill: var(--text-secondary); font-weight: 600; }
.donut-sub { font-size: 11px; color: var(--text-secondary); margin-top: 4px; text-align: center; }

.score-meter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px 8px;
  text-align: center;
  min-height: 120px;
}
.score-meter-value {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum' 1;
  color: var(--text-primary);
  line-height: 1.1;
}
.score-meter-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}
.score-meter-track {
  width: 100%;
  max-width: 180px;
  height: 8px;
  margin-top: 8px;
  background: var(--bg-muted);
  border-radius: 999px;
  overflow: hidden;
}
.score-meter-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-600), var(--accent));
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.score-meter-meta {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.adoption-bars {
  display: flex;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  margin: 12px 0;
}
.adoption-seg-active { background: linear-gradient(90deg, var(--green-600), var(--accent)); }
.adoption-seg-inactive { background: var(--bg-muted); }
.adoption-legend {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-secondary);
}
.adoption-legend span::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}
.adoption-legend .leg-active::before { background: var(--accent); }
.adoption-legend .leg-inactive::before { background: var(--border); }

.progress-line { margin-bottom: 12px; }
.progress-line .row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 5px;
  font-weight: 500;
}
.track {
  height: 7px;
  background: var(--bg-muted);
  border-radius: 999px;
  overflow: hidden;
}
.fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-600), var(--accent));
  border-radius: 999px;
}

.loading-state, .empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-secondary);
}
.loading-state p, .empty-state p { margin-top: 12px; font-size: 14px; }
.empty-state h2 { font-size: 18px; color: var(--text-primary); margin-bottom: 8px; }

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--green-900);
  box-shadow: var(--shadow-md);
}
.toast-bad { background: #991b1b; }
.toast[hidden] { display: none; }

/* Login page */
.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(160deg, var(--green-50), var(--bg-page));
}
.login-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}
.login-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.login-brand .org-logo { border-color: var(--border); background: var(--bg-muted); }
.login-brand .logo-placeholder { color: var(--accent); }
.login-card h1 { font-size: 22px; margin-bottom: 6px; }
.login-card .subtitle { font-size: 13px; color: var(--text-secondary); margin-bottom: 22px; }
.login-error {
  background: var(--danger-bg);
  color: var(--danger-text);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 14px;
}
.login-card .btn { width: 100%; margin-top: 6px; }

.founders-tour-banner {
  background: #ecfdf5;
  border-bottom: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  text-align: center;
  line-height: 1.4;
}
.founders-tour-banner strong { font-weight: 700; }

.login-founders-tour {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 12px;
  color: #065f46;
  line-height: 1.45;
}
.login-founders-tour strong { display: block; margin-bottom: 4px; font-size: 13px; }

.login-hint {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
}
.login-referrer-help {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #78350f;
}
.login-referrer-help strong { display: block; margin-bottom: 8px; color: #92400e; }
.login-referrer-help ol { margin: 8px 0 8px 18px; }
.login-referrer-help li { margin-bottom: 6px; }
.login-referrer-help code {
  background: #fef3c7;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.login-referrer-help a { color: #047857; font-weight: 600; }
.login-alt { margin-top: 10px; font-size: 12px; }

code {
  font-size: 12px;
  background: var(--bg-muted);
  padding: 2px 6px;
  border-radius: 4px;
}

@media (max-width: 1100px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .chart-grid { grid-template-columns: 1fr; }
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sidebar { display: none; }
  .main { margin-left: 0; }
  .stats { grid-template-columns: 1fr; }
  .stats-5 { grid-template-columns: repeat(2, 1fr); }
  .page-head, .page-body { padding-left: 16px; padding-right: 16px; }
  .header-user { display: none; }
  .header-search-wrap { display: none; }
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
  .setup-complete-row {
    grid-template-columns: auto 1fr auto;
  }
  .setup-complete-row .setup-progress-bar--slim { display: none; }
}

/* ─── SaaS enhancements: motion, graphics, dashboard widgets ─── */

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.92); }
}
@keyframes shimmerLine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.page-body {
  animation: pageEnter 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* When Anime.js owns motion, disable competing CSS enters */
html.anime-motion .page-body,
html.anime-motion .activity-item,
html.anime-motion .bar {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .page-body,
  .activity-item,
  .bar {
    animation: none !important;
  }
  html.anime-motion .stat,
  html.anime-motion .panel,
  html.anime-motion .quick-action {
    opacity: 1 !important;
    transform: none !important;
  }
}

.main {
  background-image:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(16, 185, 129, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(4, 120, 87, 0.05), transparent 50%);
}

.header-search-wrap {
  flex: 1;
  max-width: 360px;
  margin: 0 20px;
  position: relative;
}
.header-search {
  width: 100%;
  padding: 8px 12px 8px 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-family: var(--font-body);
}
.header-search::placeholder { color: rgba(255, 255, 255, 0.65); }
.header-search:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}
.header-search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.75;
  pointer-events: none;
}
.global-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  max-height: 280px;
  overflow-y: auto;
  z-index: 300;
  display: none;
}
.global-search-results.open { display: block; }
.global-search-results a {
  display: block;
  padding: 10px 14px;
  color: var(--text-primary) !important;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.global-search-results a:hover { background: var(--green-50); }
.global-search-results a small {
  display: block;
  color: var(--text-secondary);
  font-size: 11px;
  margin-top: 2px;
}

.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  transition: background 0.2s;
}
.header-icon-btn:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }
.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #fbbf24;
  color: #78350f;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.breadcrumbs {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-weight: 500;
}
.breadcrumbs a { color: var(--text-secondary); font-weight: 500; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--text-primary); font-weight: 600; }

.alert-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid #f59e0b;
  background: linear-gradient(90deg, #fffbeb, #fefce8);
  animation: pageEnter 0.4s ease both;
}
.alert-banner.warn { border-color: #f59e0b; background: linear-gradient(90deg, #fffbeb, #fefce8); }
.alert-banner.info { border-color: #34d399; background: linear-gradient(90deg, var(--green-50), #f0fdf4); }
.alert-banner-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #f59e0b;
}
.alert-banner.info .alert-banner-icon {
  background: var(--green-50);
  color: var(--success-text);
  border-color: #34d399;
}
.alert-banner-body {
  flex: 1;
  min-width: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #78350f;
}
.alert-banner.info .alert-banner-body { color: var(--text-primary); }
.alert-banner-body strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 14.5px;
  color: #78350f;
  line-height: 1.35;
}
.alert-banner.info .alert-banner-body strong { color: var(--text-primary); }
.alert-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}

.dashboard-ops {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 18px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.quick-action {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-primary) !important;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  min-height: 64px;
}
.quick-action:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #a7f3d0;
  color: var(--accent) !important;
}
.quick-action-icon {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green-50);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
}
.quick-action-label {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  color: inherit;
}
.quick-action-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.3;
}

.setup-strip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 10px 14px;
}
.setup-complete-row {
  display: grid;
  grid-template-columns: auto 1fr minmax(72px, 120px) auto;
  gap: 12px;
  align-items: center;
}
.setup-complete-check {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.setup-complete-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.setup-complete-copy strong {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 650;
  color: var(--text-primary);
  line-height: 1.25;
}
.setup-complete-copy span {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.3;
}
.setup-progress-bar--slim {
  height: 6px;
  margin: 0;
}
.setup-checklist-detail {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.setup-checklist-detail[hidden] {
  display: none !important;
}
.onboarding-panel--compact {
  margin-bottom: 0;
}
.onboarding-panel--compact .panel-body {
  padding: 14px 16px 16px;
}
.onboarding-panel--compact .panel-head {
  padding: 12px 16px;
}

.onboarding-panel .checklist,
.setup-checklist-detail .checklist {
  list-style: none;
  margin: 0;
  padding: 4px 0 0;
}
.onboarding-panel .checklist li,
.setup-checklist-detail .checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}
.onboarding-panel .checklist li:last-child,
.setup-checklist-detail .checklist li:last-child { border-bottom: none; padding-bottom: 2px; }
.onboarding-panel .checklist li .check-label,
.setup-checklist-detail .checklist li .check-label {
  flex: 1;
  min-width: 0;
  padding-top: 1px;
}
.check-dot {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  line-height: 1;
}
.check-dot.done {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.setup-progress-bar {
  height: 10px;
  background: var(--bg-muted);
  border-radius: 999px;
  overflow: hidden;
  margin: 4px 0 10px;
}
.setup-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-600), var(--accent));
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.setup-progress-meta {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0 0 8px;
  font-weight: 500;
}

.stat {
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--accent));
  opacity: 0;
  transition: opacity 0.2s;
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stat:hover::before { opacity: 1; }
.stat-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
}
.stat-trend.up { color: var(--success-text); }
.stat-trend.down { color: var(--danger-text); }

.bar {
  transform-origin: bottom;
  animation: barGrow 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.activity-feed { list-style: none; }
.activity-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  animation: pageEnter 0.4s ease both;
}
.activity-item:last-child { border-bottom: none; }
.activity-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 5px;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
.activity-dot.upload { background: #6366f1; }
.activity-dot.session { background: var(--green-600); }
.activity-meta { font-size: 11px; color: var(--text-secondary); margin-top: 2px; }

.support-card {
  text-align: center;
  padding: 8px 0;
}
.support-card p { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; }
.support-links { display: flex; flex-direction: column; gap: 8px; }
.support-links a { font-size: 13px; }

.empty-state-rich {
  text-align: center;
  padding: 36px 24px;
}
.empty-illustration {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-50), #d1fae5);
  display: grid;
  place-items: center;
  font-size: 28px;
}
.empty-state-rich h3 {
  font-size: 16px;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.empty-state-rich p { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; max-width: 320px; margin-left: auto; margin-right: auto; }

code { font-family: var(--font-mono); }
