/* ═══════════════════════════════════════════════════════════════ */
/* Design Tokens — Shared across all v2 pages                      */
/* ═══════════════════════════════════════════════════════════════ */

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

:root {
  --bg: #fff;
  --bg-2: #f8f9fa;
  --bg-3: #f1f3f5;
  --border: #e5e7eb;
  --border-subtle: #f0f0f0;
  --text: #1a1a1a;
  --text-2: #6b7280;
  --text-3: #9ca3af;
  --accent: #0056b3;
  --accent-hover: #004494;
  --accent-bg: #e8f0fe;
  --green: #2e7d32;
  --green-bg: #e8f5e9;
  --orange: #e65100;
  --orange-bg: #fff3e0;
  --blue: #1565c0;
  --blue-bg: #e3f2fd;
  --red: #c62828;
  --red-bg: #ffebee;
  --purple: #7c3aed;
  --text-4: #c4c9d1;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'SF Mono', 'Menlo', 'Consolas', monospace;
}

/* ── Shared icon button (used site-wide, matches v1 ctrl-btn) ── */
.header-icon {
  padding: 6px 8px;
  font-size: 14px;
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  transition: color 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-icon svg {
  width: 14px;
  height: 14px;
}

.header-icon:hover {
  color: var(--text-2);
}
