@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,300..700;1,14..32,300..700&display=swap');

:root {
  --bg:         #faf8f5;
  --bg2:        #f3f0ea;
  --surface:    #ffffff;
  --surface2:   #f7f4ef;
  --border:     #e2ddd6;
  --border2:    #ccc8c0;
  --fg:         #1c1917;
  --fg2:        #57534e;
  --muted:      #a8a29e;
  --accent:     #c2750a;
  --accent-bg:  #fef3c7;
  --accent-mid: #f59e0b;
  --concept:    #c2750a;
  --person:     #16795a;
  --artifact:   #5b5bd6;
  --red:        #c0392b;
  --green:      #16795a;
  --radius:     10px;
  --radius-sm:  6px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
}

/* ── Topbar ──────────────────────────────────────────────────────────────── */

header {
  display: flex;
  align-items: center;
  padding: 0 28px;
  height: 56px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  gap: 0;
  flex-shrink: 0;
}

#brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 32px;
}

.brand-mark {
  flex-shrink: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.brand-name-above {
  font-family: 'Lora', Georgia, serif;
  font-size: 9.5px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--fg2);
}

.brand-name-below {
  font-family: 'Lora', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* ── Surface tabs ────────────────────────────────────────────────────────── */

nav#surfaces {
  display: flex;
  gap: 0;
  height: 100%;
}

nav#surfaces button {
  background: transparent;
  color: var(--muted);
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 20px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: color 0.12s, border-color 0.12s;
  white-space: nowrap;
  height: 100%;
}

nav#surfaces button:hover:not(.active) {
  color: var(--fg2);
}

nav#surfaces button.active {
  color: var(--fg);
  border-bottom-color: var(--accent-mid);
  font-weight: 600;
}

section.surface { display: none; }
section.surface.active { display: block; }

/* ── Page pitch ──────────────────────────────────────────────────────────── */

.page-pitch {
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
}

.pitch-tagline {
  font-family: 'Lora', Georgia, serif;
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.25;
}

.pitch-sub {
  margin: 0 0 5px;
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.6;
  max-width: 640px;
}

.pitch-trust {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

.pitch-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.pitch-cta {
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
  white-space: nowrap;
}

.pitch-cta-primary {
  background: var(--fg);
  color: var(--surface);
  border: 1.5px solid var(--fg);
}

.pitch-cta-primary:hover {
  background: #2d2926;
  border-color: #2d2926;
}

.pitch-cta-secondary {
  background: transparent;
  color: var(--fg2);
  border: 1.5px solid var(--border2);
}

.pitch-cta-secondary:hover {
  border-color: var(--fg2);
  color: var(--fg);
}

/* ── Atlas toolbar ───────────────────────────────────────────────────────── */

#atlas-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
}

nav#filters {
  display: flex;
  gap: 2px;
}

nav#filters button {
  background: transparent;
  color: var(--muted);
  border: none;
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 450;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: background 0.12s, color 0.12s;
}

nav#filters button:hover:not(.active) {
  background: var(--bg2);
  color: var(--fg2);
}

nav#filters button.active {
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 600;
}

/* ── Search ──────────────────────────────────────────────────────────────── */

#search-wrap {
  position: relative;
  flex-shrink: 0;
}

#graph-search {
  background: var(--bg2);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 13px;
  width: 220px;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}

#graph-search::placeholder { color: var(--muted); }

#graph-search:focus {
  outline: none;
  border-color: var(--accent-mid);
  background: var(--surface);
}

#graph-search-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0,0,0,0.06);
  z-index: 100;
  overflow: hidden;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  background: transparent;
  color: var(--fg);
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 9px 14px;
  font-size: 13px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-item:last-child { border-bottom: none; }

.search-item:hover,
.search-item.active {
  background: var(--bg2);
}

.search-kind {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  flex-shrink: 0;
}

.search-kind-concept  { background: var(--concept); }
.search-kind-person   { background: var(--person);   border-radius: 50%; }
.search-kind-artifact { background: var(--artifact); border-radius: 50%; }

/* ── Atlas graph + detail ────────────────────────────────────────────────── */

main {
  display: grid;
  grid-template-columns: 1fr 360px;
  height: calc(100vh - 285px);
  min-height: 500px;
}

#graph {
  background: var(--bg2);
  width: 100%;
  height: 100%;
  min-height: 500px;
}

aside#detail {
  border-left: 1px solid var(--border);
  padding: 20px 18px;
  overflow-y: auto;
  background: var(--surface);
}

aside#detail .placeholder {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

aside#detail h2 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  font-family: 'Lora', Georgia, serif;
}

aside#detail .kind {
  display: inline-flex;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.09em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 600;
}

aside#detail p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg2);
}

aside#detail blockquote {
  margin: 10px 0;
  padding: 8px 12px;
  border-left: 2px solid var(--accent-mid);
  color: var(--fg);
  font-size: 13px;
  line-height: 1.5;
  background: var(--accent-bg);
  border-radius: 0 4px 4px 0;
}

aside#detail .source {
  color: var(--muted);
  font-size: 12px;
  margin: 4px 0;
}

aside#detail .source a {
  color: var(--artifact);
  text-decoration: none;
}

aside#detail .source a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Appears-in section (concepts) ──────────────────────────────────────── */

.appears-in-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.appears-in-header {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.appears-in-item {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.appears-in-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.appears-in-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.4;
}

.appears-in-title a {
  color: var(--artifact);
  text-decoration: none;
}

.appears-in-title a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.appears-in-item blockquote {
  margin: 5px 0 0;
  padding: 5px 10px;
  border-left: 2px solid var(--border2);
  color: var(--fg2);
  font-size: 12px;
  line-height: 1.45;
  background: var(--bg2);
  border-radius: 0 3px 3px 0;
}

/* ── Trust section (people) ─────────────────────────────────────────────── */

.trust-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.trust-header {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin: 12px 0 8px;
}

.trust-header:first-child { margin-top: 0; }

.trust-item {
  font-size: 13px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.trust-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.trust-person {
  font-weight: 600;
  color: var(--person);
  margin-bottom: 3px;
}

.trust-item blockquote {
  margin: 4px 0 0;
  padding: 5px 9px;
  border-left: 2px solid rgba(22, 121, 90, 0.3);
  color: var(--fg2);
  font-size: 12px;
  line-height: 1.45;
  background: rgba(22, 121, 90, 0.04);
  border-radius: 0 3px 3px 0;
}

/* ── Concept tag pills (artifact detail) ─────────────────────────────────── */

.concept-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.concept-tag {
  background: var(--accent-bg);
  color: var(--concept);
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid rgba(194, 117, 10, 0.25);
  font-family: inherit;
  transition: background 0.12s;
}

.concept-tag:hover {
  background: #fde68a;
}

/* ── Detail panel welcome state ──────────────────────────────────────────── */

.detail-welcome {
  padding: 4px 0;
}

.detail-welcome-lead {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 8px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.detail-welcome-body {
  font-size: 13px;
  color: var(--fg2);
  margin: 0;
  line-height: 1.65;
}

.detail-welcome-rule {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.detail-welcome-legend {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.detail-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--fg2);
  line-height: 1.5;
}

.detail-legend-dot {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-legend-item strong {
  color: var(--fg);
  font-weight: 600;
}

.detail-welcome-tip {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

/* ── Detail guest line ───────────────────────────────────────────────────── */

.detail-guest {
  font-style: italic;
}

/* ── Edge detail ─────────────────────────────────────────────────────────── */

.edge-connection-note {
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 14px;
}

.edge-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 14px !important;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 6px !important;
  line-height: 1.4;
}

.edge-arrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
}

.edge-arrow {
  font-size: 16px;
  color: var(--muted);
  line-height: 1;
}

.edge-quote {
  margin-top: 14px !important;
  font-style: italic;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

footer {
  padding: 8px 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  background: var(--surface);
}

/* ── Lookup surface ──────────────────────────────────────────────────────── */

#lookup-surface {
  padding: 36px 28px;
  height: calc(100vh - 185px);
  overflow-y: auto;
  min-height: 500px;
  background: var(--bg);
}

.lookup-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.lookup-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg2);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.lookup-form textarea {
  width: 100%;
  background: var(--surface);
  color: var(--fg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.7;
  resize: vertical;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lookup-form textarea::placeholder { color: var(--muted); font-style: italic; }

.lookup-form textarea:focus {
  outline: none;
  border-color: var(--accent-mid);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.10);
}

.lookup-form-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.lookup-form button[type="submit"],
.lookup-form button#lookup-submit,
.lookup-form button#briefing-submit {
  background: var(--fg);
  color: var(--surface);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: background 0.15s;
  flex-shrink: 0;
}

.lookup-form button[type="submit"]:hover:not(:disabled),
.lookup-form button#lookup-submit:hover:not(:disabled),
.lookup-form button#briefing-submit:hover:not(:disabled) {
  background: #2d2926;
}

.lookup-form button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.sample-chips-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.sample-chips-label {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.sample-chip {
  background: transparent !important;
  color: var(--fg2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 999px !important;
  padding: 4px 12px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  cursor: pointer;
  font-family: inherit !important;
  transition: color 0.12s, border-color 0.12s, background 0.12s;
}

.sample-chip:hover:not(:disabled) {
  color: var(--fg) !important;
  border-color: var(--accent-mid) !important;
  background: var(--accent-bg) !important;
}

.sample-chip:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.muted {
  color: var(--muted);
  font-size: 12px;
}

/* ── Lookup / Briefing response pane ─────────────────────────────────────── */

.lookup-response {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  min-height: 320px;
}

.lookup-response .placeholder {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.lookup-response .error {
  color: var(--red);
  font-size: 14px;
}

.stub-banner {
  background: var(--accent-bg);
  border: 1px solid rgba(194, 117, 10, 0.3);
  color: var(--concept);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 13px;
  margin-bottom: 20px;
}

.error-banner {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--red);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 20px;
}

.error-banner strong { color: #991b1b; }

.error-banner .error-detail {
  margin: 8px 0 0;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  white-space: pre-wrap;
  word-break: break-word;
  color: #7f1d1d;
}

.lookup-section { margin-bottom: 28px; }

.lookup-section:last-child { margin-bottom: 0; }

.lookup-section h3 {
  margin: 0 0 12px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}

.lookup-section p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg);
}

/* ── Concepts list ───────────────────────────────────────────────────────── */

.concepts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.concepts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.concept-pill {
  background: var(--accent-bg);
  color: var(--concept);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(194, 117, 10, 0.25);
}

/* ── Cross-surface atlas links ───────────────────────────────────────────── */

.atlas-link {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.atlas-link:hover,
.atlas-link:focus-visible {
  color: var(--concept);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.atlas-link:focus-visible {
  outline: 1px solid var(--concept);
  outline-offset: 2px;
}

.atlas-link.speaker-link {
  font-weight: 700;
  font-size: 13px;
}

.atlas-link.source-link {
  color: var(--muted);
}

.atlas-link.concept-pill:hover,
.atlas-link.concept-pill:focus-visible {
  background: #fde68a;
  text-decoration: none;
}

.concept-why { color: var(--fg2); }

/* ── Take cards ──────────────────────────────────────────────────────────── */

.takes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.take {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.take header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
  border-bottom: none;
  background: none;
  height: auto;
  padding: 0;
}

.take-source {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.4;
}

.take .position {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 10px;
  color: var(--fg);
}

.take blockquote {
  margin: 0;
  padding: 8px 12px;
  border-left: 2px solid var(--accent-mid);
  font-size: 13px;
  color: var(--fg2);
  line-height: 1.55;
  font-style: italic;
  background: var(--surface);
  border-radius: 0 4px 4px 0;
}

.draft {
  margin: 0;
  padding: 14px 18px;
  background: var(--accent-bg);
  border: 1.5px solid rgba(194, 117, 10, 0.3);
  border-left: 3px solid var(--accent-mid);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg);
}

/* ── Briefing surface ────────────────────────────────────────────────────── */

#briefing-surface {
  padding: 36px 28px;
  height: calc(100vh - 185px);
  overflow-y: auto;
  min-height: 500px;
  background: var(--bg);
}

.briefing-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.priorities {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.priority {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.priority-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.priority-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.priority-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 5px;
  background: var(--accent-bg);
  border: 1px solid rgba(194, 117, 10, 0.25);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.priority-evidence {
  margin: 0 0 14px;
  padding: 8px 12px;
  border-left: 2px solid var(--accent-mid);
  font-size: 13px;
  color: var(--fg2);
  line-height: 1.55;
  font-style: italic;
  background: var(--accent-bg);
  border-radius: 0 4px 4px 0;
}

.priority-lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lane h5 {
  margin: 0 0 10px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--muted);
}

.lane-empty {
  font-size: 13px;
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.evidence {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 8px;
}

.evidence:last-child { margin-bottom: 0; }

.evidence-agree { border-left: 2.5px solid var(--green); }
.evidence-push  { border-left: 2.5px solid var(--red); }

.evidence header {
  margin-bottom: 2px;
  background: none;
  border: none;
  height: auto;
  padding: 0;
  display: block;
}

.evidence header strong { font-size: 13px; }

.evidence blockquote {
  margin: 6px 0;
  padding: 5px 10px;
  border-left: 2px solid var(--border2);
  font-size: 12px;
  color: var(--fg2);
  line-height: 1.5;
  font-style: italic;
}

.evidence-why {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg2);
}

.questions {
  list-style: decimal inside;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg);
}

.questions li { padding-left: 4px; }

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .lookup-grid    { grid-template-columns: 1fr; }
  .briefing-grid  { grid-template-columns: 1fr; }
  .takes          { grid-template-columns: 1fr; }
  .priority-lanes { grid-template-columns: 1fr; }
}
