@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg:          #0d1117;
  --surface:     #161b22;
  --surface-2:   #1c2330;
  --surface-3:   #21262d;
  --border:      #30363d;
  --border-soft: rgba(48,54,61,0.5);
  --text:        #e6edf3;
  --text-2:      #8b949e;
  --text-3:      #6e7681;
  --accent:      #2f81f7;
  --accent-glow: rgba(47,129,247,0.15);
  --green:       #3fb950;
  --green-bg:    rgba(63,185,80,0.12);
  --yellow:      #d29922;
  --yellow-bg:   rgba(210,153,34,0.12);
  --red:         #f85149;
  --red-bg:      rgba(248,81,73,0.12);
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   14px;
  --shadow:      0 8px 32px rgba(0,0,0,0.4);
  --font:        'Inter', system-ui, sans-serif;
  --font-mono:   'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 15px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

/* ── Typography ────────────────────────────────────────── */
h1 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: 0.95rem; font-weight: 600; }

.label-sm {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
}

.mono { font-family: var(--font-mono); font-size: 0.85em; }

/* ── Buttons ────────────────────────────────────────────── */
button, .btn { font: inherit; cursor: pointer; border: none; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }

.btn {
  height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity .15s, background .15s;
}
.btn:hover { opacity: 0.88; }
.btn:active { opacity: 0.76; }

.btn-primary  { background: var(--accent); color: #fff; }
.btn-surface  { background: var(--surface-3); color: var(--text); border: 1px solid var(--border); }
.btn-ghost    { background: transparent; color: var(--text-2); border: 1px solid var(--border); }
.btn-danger   { background: var(--red-bg); color: var(--red); border: 1px solid rgba(248,81,73,.25); }
.btn-success  { background: var(--green-bg); color: var(--green); border: 1px solid rgba(63,185,80,.25); }
.btn-lg { height: 42px; padding: 0 20px; font-size: 0.95rem; }
.btn-sm { height: 28px; padding: 0 10px; font-size: 0.8rem; }
.btn-icon { width: 34px; padding: 0; justify-content: center; }

.btn[disabled] { opacity: .4; cursor: not-allowed; }

/* ── Form inputs ─────────────────────────────────────────── */
input, select, textarea {
  font: inherit;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  height: 38px;
  width: 100%;
  outline: none;
  transition: border-color .15s;
}
textarea { height: auto; padding: 10px 12px; resize: vertical; }

input:focus, select:focus, textarea:focus { border-color: var(--accent); }
input::placeholder, textarea::placeholder { color: var(--text-3); }

select option { background: var(--surface-2); }

.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 0.8rem; font-weight: 500; color: var(--text-2); }
.field-hint  { font-size: 0.75rem; color: var(--text-3); }

.checkbox-row { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-2); }
.checkbox-row input[type=checkbox] { width: 16px; height: 16px; cursor: pointer; accent-color: var(--accent); }

/* ── Card / Surface ──────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.card-body { padding: 18px 20px; }
.card-header { padding: 14px 20px 12px; border-bottom: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* ── Status pills ────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}
.pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.pill.ok      { background: var(--green-bg);  color: var(--green); }
.pill.changed { background: var(--yellow-bg); color: var(--yellow); }
.pill.error   { background: var(--red-bg);    color: var(--red); }
.pill.idle    { background: var(--surface-3); color: var(--text-3); }
.pill.idle::before { background: var(--text-3); }

/* ── Type badge ──────────────────────────────────────────── */
.type-badge {
  display: inline-block;
  padding: 1px 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--surface-3);
  color: var(--text-2);
  border: 1px solid var(--border);
}

/* ── Banner / Alert ──────────────────────────────────────── */
.banner {
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  background: var(--accent-glow);
  border: 1px solid rgba(47,129,247,.3);
  color: var(--text);
}
.banner.error   { background: var(--red-bg);    border-color: rgba(248,81,73,.3);  color: var(--text); }
.banner.success { background: var(--green-bg);  border-color: rgba(63,185,80,.3);  color: var(--text); }
.banner.warning { background: var(--yellow-bg); border-color: rgba(210,153,34,.3); color: var(--text); }
.hidden { display: none !important; }

/* ── Divider ─────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

/* ── Uptime bar ──────────────────────────────────────────── */
.uptime-bar-wrap { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-3); }
.uptime-bar { flex: 1; height: 5px; border-radius: 3px; background: var(--surface-3); overflow: hidden; }
.uptime-bar-fill { height: 100%; border-radius: 3px; transition: width .4s; }
.uptime-bar-fill.ok      { background: var(--green); }
.uptime-bar-fill.warn    { background: var(--yellow); }
.uptime-bar-fill.bad     { background: var(--red); }

/* ── Meta row ────────────────────────────────────────────── */
.meta-row { display: flex; flex-wrap: wrap; gap: 12px 20px; font-size: 0.8rem; color: var(--text-2); }
.meta-row strong { color: var(--text); font-weight: 500; }

/* ── Table ───────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table th { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--text-3); padding: 8px 12px; border-bottom: 1px solid var(--border); text-align: left; }
.data-table td { padding: 10px 12px; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.data-table pre { font-family: var(--font-mono); font-size: 0.75rem; white-space: pre-wrap; color: var(--text-2); max-height: 120px; overflow: auto; }

/* ── Screenshot grid ─────────────────────────────────────── */
.screenshot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.screenshot-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface-2); }
.screenshot-card-label { padding: 8px 12px; font-size: 0.75rem; color: var(--text-2); border-bottom: 1px solid var(--border); }
.screenshot-card img { width: 100%; display: block; }

/* ── Loading spinner ─────────────────────────────────────── */
.spinner { width: 18px; height: 18px; border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin .65s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════
   AUTH PAGE
══════════════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(47,129,247,.12) 0%, transparent 70%), var(--bg);
}

.auth-box {
  width: min(420px, 100%);
}

.auth-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  font-size: 1rem; font-weight: 700;
}
.auth-logo-icon {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--accent); color: #fff;
  display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0;
}

.auth-card { padding: 28px 32px; }
.auth-card h1 { font-size: 1.25rem; margin-bottom: 4px; }
.auth-card .subtitle { color: var(--text-2); font-size: 0.875rem; margin-bottom: 24px; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }

/* ══════════════════════════════════════════════════════════
   APP SHELL
══════════════════════════════════════════════════════════ */
.app-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}

.sidebar-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 18px 14px;
  font-size: 0.95rem; font-weight: 700;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; font-size: 0.9rem; flex-shrink: 0;
}

.sidebar-nav { flex: 1; padding: 12px 10px; display: flex; flex-direction: column; gap: 2px; }

.nav-link {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 500; color: var(--text-2);
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--surface-2); color: var(--text); }
.nav-link.active { background: var(--accent-glow); color: var(--accent); }
.nav-link svg { flex-shrink: 0; }

.sidebar-footer { padding: 12px 10px; border-top: 1px solid var(--border); }

.main-area { display: flex; flex-direction: column; min-width: 0; }

.topbar {
  height: 52px; flex-shrink: 0;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--bg);
  position: sticky; top: 0; z-index: 10;
}
.topbar-title { font-weight: 600; font-size: 0.95rem; }

.page-content { padding: 24px; flex: 1; }

/* ══════════════════════════════════════════════════════════
   MONITOR GRID
══════════════════════════════════════════════════════════ */
.monitor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }

.monitor-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: border-color .2s;
}
.monitor-card:hover { border-color: var(--accent); }

.mc-head { padding: 14px 16px 10px; display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.mc-head h3 { font-size: 0.95rem; font-weight: 600; line-height: 1.3; }
.mc-url { font-size: 0.78rem; color: var(--text-3); margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 200px; }

.mc-body { padding: 0 16px 10px; flex: 1; display: flex; flex-direction: column; gap: 8px; }

.mc-schedule { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-2); }
.mc-schedule svg { color: var(--text-3); flex-shrink: 0; }

.mc-footer { padding: 10px 16px; border-top: 1px solid var(--border-soft); display: flex; gap: 6px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   RESULTS PANEL
══════════════════════════════════════════════════════════ */
.results-section { margin-top: 28px; }
.results-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 12px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; margin-bottom: 20px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.stat-card .stat-value { font-size: 1.4rem; font-weight: 700; line-height: 1.2; margin-top: 4px; }
.stat-card .stat-label { font-size: 0.75rem; color: var(--text-3); font-weight: 500; }

.empty-state { color: var(--text-3); font-size: 0.875rem; padding: 40px 0; text-align: center; }

/* ══════════════════════════════════════════════════════════
   MONITOR EDITOR
══════════════════════════════════════════════════════════ */
.editor-page { min-height: 100vh; background: var(--bg); }

.editor-topbar {
  height: 52px; padding: 0 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--surface);
  position: sticky; top: 0; z-index: 10;
}
.editor-topbar-left { display: flex; align-items: center; gap: 14px; }

.editor-body { max-width: 780px; margin: 0 auto; padding: 32px 24px; }

.form-section { margin-bottom: 26px; }
.form-section-title { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.form-section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.form-grid { display: grid; gap: 14px; }
.form-grid-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ── Schedule picker ──────────────────────────────────────── */
.schedule-picker { display: flex; flex-direction: column; gap: 12px; }

.schedule-presets { display: flex; flex-wrap: wrap; gap: 6px; }

.preset-btn {
  height: 32px; padding: 0 12px;
  background: var(--surface-3); color: var(--text-2);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 500; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.preset-btn:hover { background: var(--surface-2); color: var(--text); }
.preset-btn.active { background: var(--accent-glow); color: var(--accent); border-color: rgba(47,129,247,.4); }

.schedule-summary {
  font-size: 0.8rem; color: var(--text-2);
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  min-height: 36px;
  display: flex; align-items: center; gap: 6px;
}
.schedule-summary.active { color: var(--green); border-color: rgba(63,185,80,.3); background: var(--green-bg); }
.schedule-summary svg { flex-shrink: 0; }

.schedule-advanced { display: flex; flex-direction: column; gap: 10px; }
.schedule-advanced-toggle { font-size: 0.8rem; color: var(--accent); cursor: pointer; background: none; border: none; padding: 0; width: fit-content; text-decoration: underline; text-underline-offset: 3px; }
.cron-input-wrap { position: relative; }
.cron-input-wrap input { font-family: var(--font-mono); padding-right: 36px; }
.cron-preview { font-size: 0.75rem; color: var(--text-3); font-family: var(--font-mono); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; flex-direction: row; border-right: none; border-bottom: 1px solid var(--border); }
  .sidebar-nav { flex-direction: row; padding: 8px; }
  .sidebar-footer { border-top: none; border-left: 1px solid var(--border); padding: 8px; }
  .monitor-grid { grid-template-columns: 1fr; }
  .page-content { padding: 16px; }
}

/* ══════════════════════════════════════════════════════════
   STATUS PILLS — slow
══════════════════════════════════════════════════════════ */
.pill.slow { background: rgba(130,80,200,.14); color: #a371f7; }

/* ══════════════════════════════════════════════════════════
   TAG CHIPS
══════════════════════════════════════════════════════════ */
.tag-chip {
  display: inline-flex; align-items: center;
  padding: 1px 8px;
  background: var(--surface-3); color: var(--text-2);
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 0.72rem; font-weight: 500; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.tag-chip.active { background: var(--accent-glow); color: var(--accent); border-color: rgba(47,129,247,.4); }
.tag-chip:hover { background: var(--surface-2); }

.tags-row { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }

/* ══════════════════════════════════════════════════════════
   HEATMAP
══════════════════════════════════════════════════════════ */
.heatmap { display: flex; flex-wrap: wrap; gap: 2px; }
.heatmap-cell {
  width: 12px; height: 12px; border-radius: 2px;
  background: var(--surface-3);
  cursor: default;
  transition: opacity .15s;
}
.heatmap-cell:hover { opacity: .7; }
.heatmap-cell.ok      { background: var(--green); }
.heatmap-cell.changed { background: var(--yellow); }
.heatmap-cell.error   { background: var(--red); }
.heatmap-cell.slow    { background: #a371f7; }
.heatmap-legend { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; color: var(--text-3); margin-top: 6px; }
.heatmap-legend-item { display: flex; align-items: center; gap: 4px; }
.heatmap-legend-dot { width: 10px; height: 10px; border-radius: 2px; }

/* ══════════════════════════════════════════════════════════
   SPARKLINE
══════════════════════════════════════════════════════════ */
.sparkline-wrap { position: relative; height: 40px; }
.sparkline-wrap svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ══════════════════════════════════════════════════════════
   DIFF VIEWER
══════════════════════════════════════════════════════════ */
.diff-wrap {
  font-family: var(--font-mono); font-size: 0.78rem;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px;
  max-height: 300px; overflow: auto; line-height: 1.5;
}
.diff-line-add { background: rgba(63,185,80,.12); color: var(--green); }
.diff-line-del { background: rgba(248,81,73,.12); color: var(--red); }
.diff-line-ctx { color: var(--text-3); }

/* ══════════════════════════════════════════════════════════
   ALERTS PAGE
══════════════════════════════════════════════════════════ */
.alert-channel-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 20px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.alert-channel-card h3 { font-size: 0.95rem; font-weight: 600; }
.alert-type-badge { display: inline-block; padding: 1px 7px; border-radius: var(--radius-sm); font-size: 0.72rem; font-weight: 600; font-family: var(--font-mono); background: var(--surface-3); color: var(--text-2); border: 1px solid var(--border); }
.alert-rule-row { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 12px 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }

/* ══════════════════════════════════════════════════════════
   PUBLIC STATUS PAGE
══════════════════════════════════════════════════════════ */
.status-page { max-width: 900px; margin: 0 auto; padding: 40px 24px; }
.status-header { text-align: center; margin-bottom: 36px; }
.status-header h1 { font-size: 1.6rem; margin-bottom: 6px; }
.status-overall { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; border-radius: 999px; font-weight: 600; font-size: 0.95rem; margin-top: 10px; }
.status-overall.all-ok { background: var(--green-bg); color: var(--green); border: 1px solid rgba(63,185,80,.3); }
.status-overall.has-issues { background: var(--red-bg); color: var(--red); border: 1px solid rgba(248,81,73,.3); }
.status-monitor-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--border-soft); gap: 12px; }
.status-monitor-row:last-child { border-bottom: none; }
.status-monitor-name { font-weight: 500; }
.status-monitor-url { font-size: 0.78rem; color: var(--text-3); }

/* ══════════════════════════════════════════════════════════
   TOPBAR FILTERS
══════════════════════════════════════════════════════════ */
.topbar-filters { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }

/* ══════════════════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════════════════ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.hidden { display: none !important; }
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}
.modal-head { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-head h3 { font-size: 1rem; font-weight: 600; }
.modal-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.modal-foot { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; gap: 8px; justify-content: flex-end; }

/* ── SEO Analyzer ─────────────────────────────────────────────────────────── */
.seo-summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; margin-bottom: 20px; }
.seo-stat-card { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 8px; padding: 14px 12px; text-align: center; font-size: 22px; font-weight: 700; line-height: 1.2; }
.seo-stat-card small { display: block; font-size: 11px; font-weight: 400; color: var(--text-muted); margin-top: 4px; }
.seo-stat-card.ok     { border-color: var(--color-ok);      color: var(--color-ok); }
.seo-stat-card.error  { border-color: var(--color-error);   color: var(--color-error); }
.seo-stat-card.warning { border-color: var(--color-warning); color: var(--color-warning); }
.seo-stat-card.info   { border-color: var(--accent);        color: var(--accent); }

.seo-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin: 0 0 16px; flex-wrap: wrap; }
.seo-tab { background: none; border: none; padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color .15s; }
.seo-tab:hover { color: var(--text-primary); }
.seo-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

.seo-tab-panel { padding-bottom: 32px; }
.seo-section-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 10px 0 6px; margin: 8px 0 6px; border-bottom: 1px solid var(--border); }
.seo-section-title.error   { color: var(--color-error); }
.seo-section-title.warning { color: var(--color-warning); }
.seo-section-title.info    { color: var(--accent); }

.seo-project-card:hover { background: var(--bg-secondary); }

