/* Gestalt — Mobile-first CSS (tasks 10.1-10.2) */

:root {
  --bg:         #0f0f1a;
  --bg2:        #1a1a2e;
  --bg3:        #252540;
  --border:     #2e2e4e;
  --text:       #e8e8f0;
  --text-dim:   #8080a0;
  --accent:     #7c7cff;
  --accent-dim: #4040aa;
  --green:      #4caf82;
  --amber:      #e8a940;
  --red:        #e85050;
  --stale:      #806020;
  --node-ref:   #7c7cff;
  --node-lit:   #4caf82;
  --node-bind:  #e8a940;
  --node-kw:    #cc66cc;
  --node-op:    #e8e8f0;
  --node-sel:   rgba(124,124,255,0.25);
  --radius:     8px;
  --radius-sm:  4px;
  --shadow:     0 2px 12px rgba(0,0,0,0.5);
  --font:       'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
  --sans:       system-ui, -apple-system, sans-serif;
  --h-header:   52px;
  --h-scope:    40px;
  --h-def-hdr:  48px;
  --transition: 150ms ease;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; overflow: hidden; }
body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* ── Header ──────────────────────────────────── */
#app-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--h-header);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  z-index: 100;
}

#breadcrumb-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

#breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  font-size: 14px;
}
#breadcrumb::-webkit-scrollbar { display: none; }

.breadcrumb-home { color: var(--text-dim); }
.breadcrumb-sep { color: var(--text-dim); }
.breadcrumb-item {
  color: var(--accent);
  cursor: pointer;
  white-space: nowrap;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.breadcrumb-item:hover { background: var(--bg3); }
.breadcrumb-item.current { color: var(--text); cursor: default; }
.breadcrumb-item.current:hover { background: none; }

#header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Buttons ─────────────────────────────────── */
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: var(--text-dim);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.icon-btn:hover { background: var(--bg3); color: var(--text); }
.icon-btn:active { background: var(--bg3); }
.icon-btn.small { width: 32px; height: 32px; }
.icon-btn svg { width: 20px; height: 20px; }

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition);
  min-height: 44px;
}
.primary-btn:hover { opacity: 0.85; }
.primary-btn:active { opacity: 0.75; }
.primary-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--bg3);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  cursor: pointer;
  transition: background var(--transition);
  min-height: 44px;
}
.secondary-btn:hover { background: var(--border); }

.close-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.close-btn:hover { background: var(--bg3); color: var(--text); }

.badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ── Layout ──────────────────────────────────── */
#app-main {
  position: fixed;
  top: var(--h-header);
  left: 0; right: 0; bottom: 0;
  display: flex;
  overflow: hidden;
}

#definition-viewer {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* ── Panels ──────────────────────────────────── */
.panel {
  position: fixed;
  top: var(--h-header);
  bottom: 0;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 200;
  transition: transform var(--transition), opacity var(--transition);
}

#namespace-panel {
  left: 0;
  width: min(320px, 85vw);
}

#queue-panel {
  right: 0;
  width: min(360px, 92vw);
  border-right: none;
  border-left: 1px solid var(--border);
}

.panel.hidden {
  transform: translateX(-100%);
  pointer-events: none;
  opacity: 0;
}
#queue-panel.hidden {
  transform: translateX(100%);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 52px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.panel-header h2 {
  font-size: 16px;
  font-weight: 600;
}

#namespace-content {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

/* ── Namespace list ──────────────────────────── */
#namespace-list {
  list-style: none;
}
.ns-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  transition: background var(--transition);
  min-height: 44px;
}
.ns-item:hover { background: var(--bg3); }
.ns-item:active { background: var(--border); }
.ns-item .ns-kind {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.ns-kind-term { background: rgba(76,175,130,0.2); color: var(--green); }
.ns-kind-type { background: rgba(124,124,255,0.2); color: var(--accent); }
.ns-kind-ability { background: rgba(232,169,64,0.2); color: var(--amber); }
.ns-kind-ns { background: var(--bg3); color: var(--text-dim); }

.ns-item .ns-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font);
}
.ns-item .ns-arrow {
  color: var(--text-dim);
  font-size: 12px;
}

#project-selector {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.project-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--bg3);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ── Definition viewer ───────────────────────── */
.centered-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
  min-height: 300px;
}
.centered-message.small { padding: 32px 16px; min-height: 160px; }
.centered-message h1 { font-size: 24px; font-weight: 700; }
.centered-message p { color: var(--text-dim); font-size: 15px; }

.welcome-logo svg { color: var(--accent); opacity: 0.8; }

/* Scope bar */
#scope-bar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 10;
  height: var(--h-scope);
}
.scope-btn {
  padding: 4px 14px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-dim);
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 32px;
}
.scope-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.spacer { flex: 1; }

/* Definition header */
#def-header {
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.def-kind {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
#def-name {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
  word-break: break-all;
}

/* Node graph */
#node-graph {
  padding: 16px;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.7;
  user-select: text;
  position: relative;
}

/* Token-based nodes (flowing text layout) */
.token-line {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 4px;
}

.node {
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), outline var(--transition);
  cursor: default;
  outline: 2px solid transparent;
  outline-offset: -1px;
}
.node.selectable { cursor: pointer; }
.node:hover.selectable { background: rgba(255,255,255,0.06); }
.node.selected { background: var(--node-sel) !important; outline-color: var(--accent); }
.node.selection-start { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.node.selection-mid { border-radius: 0; }
.node.selection-end { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* Node kinds */
.node-reference { color: var(--node-ref); cursor: pointer !important; }
.node-reference:hover { text-decoration: underline; }
.node-literal { color: var(--node-lit); }
.node-binding { color: var(--node-bind); font-style: italic; }
.node-keyword { color: var(--node-kw); }
.node-operator { color: var(--node-op); }
.node-punctuation { color: var(--text-dim); }
.node-unknown { color: var(--text-dim); opacity: 0.6; }

/* Annotation markers */
.node-annotated {
  border-bottom: 2px solid var(--amber);
}
.node-annotated-stale {
  border-bottom: 2px dashed var(--stale);
  opacity: 0.6;
}

/* Inline annotation bubbles */
.annotation-bubble {
  position: absolute;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 13px;
  font-family: var(--sans);
  max-width: 280px;
  box-shadow: var(--shadow);
  z-index: 50;
}
.annotation-bubble .ann-state {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.annotation-bubble .ann-comment { color: var(--text); }
.annotation-bubble .ann-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.ann-btn {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: none;
  color: var(--text-dim);
  cursor: pointer;
}
.ann-btn:hover { background: var(--bg3); }

/* Read-only indicator */
.read-only-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--bg3);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  margin-top: 4px;
}

/* Empty body state */
.empty-body-state {
  text-align: center;
  padding: 32px;
  color: var(--text-dim);
  font-size: 14px;
}
.not-found-state {
  text-align: center;
  padding: 32px;
  color: var(--red);
  font-size: 14px;
}

/* ── Queue panel ─────────────────────────────── */
#queue-content {
  flex: 1;
  overflow-y: auto;
}

.queue-card {
  border-bottom: 1px solid var(--border);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.queue-card:last-child { border-bottom: none; }
.queue-card.is-reconciliation { background: rgba(232,169,64,0.05); }
.queue-card.is-failed { background: rgba(232,80,80,0.05); }

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.card-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 2px;
}
.status-pending { background: rgba(124,124,255,0.2); color: var(--accent); }
.status-applied { background: rgba(76,175,130,0.2); color: var(--green); }
.status-reconciliation { background: rgba(232,169,64,0.2); color: var(--amber); }
.status-rejected { background: rgba(128,128,160,0.2); color: var(--text-dim); }
.status-failed { background: rgba(232,80,80,0.2); color: var(--red); }

.card-defs {
  flex: 1;
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.card-def { margin-bottom: 2px; }

.card-annotation {
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--sans);
  margin-bottom: 10px;
  padding: 8px;
  background: var(--bg3);
  border-radius: var(--radius-sm);
}

.card-actions {
  display: flex;
  gap: 8px;
}

/* Swipe gesture indicator */
.queue-card::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.1s;
}
.queue-card::after {
  content: '✕';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.1s;
}
.queue-card.swipe-accept::before { opacity: 1; }
.queue-card.swipe-reject::after { opacity: 1; }

/* ── Bottom sheets ───────────────────────────── */
.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  z-index: 300;
  transition: transform 200ms ease, opacity 200ms ease;
  padding-bottom: env(safe-area-inset-bottom, 0);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.bottom-sheet.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sheet-handle {
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 12px auto 0;
}

.sheet-content {
  padding: 16px 20px 20px;
}
.sheet-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}
.sheet-content p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.selection-preview {
  padding: 8px 12px;
  background: var(--bg3);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 13px;
  color: var(--node-sel-text, var(--accent));
  margin-bottom: 12px;
  max-height: 80px;
  overflow-y: auto;
  word-break: break-all;
}

textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  padding: 10px 12px;
  resize: none;
  transition: border-color var(--transition);
  margin-bottom: 12px;
}
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.annotation-state-label {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.sheet-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Clarification option buttons (Tier-2 catalogue) */
.clarification-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.clarification-option-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg3);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  width: 100%;
  min-height: 56px;
  transition: background var(--transition), border-color var(--transition);
}
.clarification-option-btn strong { font-size: 14px; }
.clarification-option-btn span { font-size: 12px; color: var(--text-dim); }
.clarification-option-btn:hover { background: var(--border); border-color: var(--accent); }
.clarification-option-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Clarification options (legacy inline) */
.clarification-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  min-height: 56px;
}
.clarification-option:hover {
  background: var(--bg3);
  border-color: var(--accent);
}
.clarification-option .option-label {
  flex: 1;
  font-size: 14px;
}
.clarification-option .option-check {
  color: var(--text-dim);
  font-size: 18px;
}

/* ── Toast notifications ─────────────────────── */
#toast-container {
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom, 0) + 16px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  z-index: 500;
  pointer-events: none;
  width: min(400px, calc(100vw - 32px));
}
.toast {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 14px;
  box-shadow: var(--shadow);
  animation: slideUp 0.2s ease;
  pointer-events: auto;
}
.toast.success { border-color: var(--green); }
.toast.error   { border-color: var(--red); }
.toast.warning { border-color: var(--amber); }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ── Spinner ─────────────────────────────────── */
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 32px auto;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

#loading-indicator {
  display: flex;
  justify-content: center;
  padding: 48px;
}
#loading-indicator.hidden { display: none; }

/* ── Stale annotations ───────────────────────── */
#stale-panel {
  margin: 16px;
  border: 1px solid var(--stale);
  border-radius: var(--radius);
  overflow: hidden;
}
#stale-panel h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--amber);
  padding: 10px 14px;
  border-bottom: 1px solid var(--stale);
  background: rgba(128,96,32,0.1);
}
.stale-item {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.stale-item:last-child { border-bottom: none; }
.stale-item .stale-hash { font-family: var(--font); color: var(--text-dim); font-size: 11px; }
.stale-item .stale-comment { margin: 4px 0; }
.stale-item .stale-actions { margin-top: 6px; }

/* ── Desktop layout (task 10.2) ──────────────── */
@media (min-width: 768px) {
  .panel {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    flex-shrink: 0;
    transition: none;
  }
  .panel.hidden {
    display: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  #app-main { gap: 0; }

  #namespace-panel {
    width: 280px;
    border-right: 1px solid var(--border);
  }

  #queue-panel {
    width: 320px;
    border-left: 1px solid var(--border);
    border-right: none;
  }

  .bottom-sheet {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    bottom: 24px;
    width: min(520px, calc(100vw - 48px));
    border-radius: var(--radius);
    border: 1px solid var(--border);
    opacity: 0;
    pointer-events: none;
  }
  .bottom-sheet.open {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 1024px) {
  #namespace-panel { width: 300px; }
  #queue-panel { width: 360px; }
  #node-graph { padding: 24px; font-size: 15px; }
}

/* ── Queue card details ──────────────────────── */
.queue-empty {
  padding: 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
}
.queue-error { color: var(--red); }

.card-definitions {
  font-family: var(--font);
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.def-ref {
  background: var(--bg3);
  border-radius: var(--radius-sm);
  padding: 1px 6px;
  font-size: 12px;
}
.card-branch {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.card-branch code {
  font-family: var(--font);
  color: var(--text);
}
.card-reconcile-warning {
  font-size: 12px;
  color: var(--amber);
  padding: 6px 10px;
  background: rgba(232,169,64,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.card-annotation-link {
  font-size: 16px;
  color: var(--accent);
  margin-left: auto;
}
.card-status-text {
  font-size: 12px;
  color: var(--text-dim);
  padding: 4px 0;
}
.btn-action {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
  min-height: 36px;
  transition: background var(--transition), border-color var(--transition);
}
.btn-action:hover { background: var(--border); }
.btn-action.btn-destructive { color: var(--red); border-color: rgba(232,80,80,0.3); }
.btn-action.btn-destructive:hover { background: rgba(232,80,80,0.1); }
.swiping-accept { background: rgba(76,175,130,0.12) !important; }
.swiping-reject { background: rgba(232,80,80,0.12) !important; }

/* In-flight accept/reject: htmx adds .htmx-request to the card via
   hx-indicator; the transition acknowledges the action within the 100 ms
   card-transition budget while the swap is the confirmation. */
.queue-card.htmx-request { opacity: 0.55; transition: opacity 80ms ease; }
.queue-card.htmx-request .btn-action { pointer-events: none; }

/* ── Stale card ──────────────────────────────── */
.stale-header {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  background: rgba(128,96,32,0.1);
  border-bottom: 1px solid var(--stale);
}
.stale-card {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.stale-card:last-child { border-bottom: none; }
.stale-card-comment { margin-bottom: 4px; color: var(--text); }
.stale-card-meta {
  font-family: var(--font);
  font-size: 11px;
  color: var(--text-dim);
}
.stale-badge {
  display: inline-block;
  background: rgba(128,96,32,0.3);
  color: var(--amber);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

/* ── Utilities ───────────────────────────────── */
.hidden { display: none !important; }
