.mika-brief-shell {
  display: grid;
  gap: 12px;
}

.brief-live-card {
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 96% 0%, rgba(53,208,196,.05), transparent 30%),
    linear-gradient(145deg, rgba(13,22,41,.98), rgba(8,16,32,.99));
  box-shadow: 0 16px 36px rgba(0,0,0,.16);
}

.brief-live-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 13px;
}

.brief-live-head > div {
  display: grid;
  gap: 4px;
}

.brief-live-head span:first-child,
.brief-live-head small {
  color: var(--muted);
  font-size: 8px;
}

.brief-live-head h2 {
  margin: 0;
  font-size: 16px;
}

.brief-status-pill {
  flex: none;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
}

.brief-status-pill[data-state="ready"] {
  color: var(--teal-soft);
  background: rgba(53,208,196,.08);
}

.brief-status-pill[data-state="stale"] {
  color: #ffd18a;
  background: rgba(255,209,138,.08);
}

.brief-section-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0 14px 12px;
  scrollbar-width: none;
}

.brief-section-tabs::-webkit-scrollbar { display: none; }

.brief-section-tabs button {
  flex: none;
  padding: 7px 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
}

.brief-section-tabs button.active {
  color: var(--teal-soft);
  background: rgba(53,208,196,.09);
}

.brief-live-body {
  padding: 0 14px 15px;
}

.brief-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.brief-snapshot-metric {
  display: grid;
  gap: 4px;
  padding: 10px 11px;
  border-radius: 14px;
  background: rgba(255,255,255,.027);
}

.brief-snapshot-metric span {
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.brief-snapshot-metric strong {
  font-size: 10px;
}

.brief-snapshot-metric strong[data-state="positive"] { color: var(--teal-soft); }
.brief-snapshot-metric strong[data-state="negative"] { color: #ff91a5; }

.brief-mini-heading {
  margin: 14px 0 7px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.brief-coin-list,
.brief-narrative-list,
.brief-news-list,
.brief-bullet-list {
  display: grid;
  gap: 7px;
}

.brief-coin-row,
.brief-narrative-row,
.brief-news-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 11px;
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.brief-news-row {
  color: inherit;
  text-decoration: none;
}

.brief-coin-row > span,
.brief-narrative-row > span,
.brief-news-row > span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brief-coin-row strong,
.brief-narrative-row strong,
.brief-news-row strong {
  font-size: 10px;
}

.brief-news-row strong {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.brief-coin-row small,
.brief-narrative-row small,
.brief-news-row small {
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brief-coin-row b,
.brief-narrative-row b {
  display: grid;
  place-items: center;
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: rgba(255,255,255,.035);
  font-size: 10px;
}

.brief-coin-row b[data-state="strong"] { color: var(--teal-soft); background: rgba(53,208,196,.08); }
.brief-coin-row b[data-state="weak"] { color: #ff91a5; background: rgba(244,91,145,.08); }

.brief-news-row b {
  flex: none;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: var(--muted);
  font-size: 7px;
  letter-spacing: .04em;
}

.brief-news-row b[data-state="high"] { color: var(--teal-soft); background: rgba(53,208,196,.08); }
.brief-news-row b[data-state="medium"] { color: #ffd18a; background: rgba(255,209,138,.08); }
.brief-news-row b[data-state="watch"] { color: #ffb6ce; background: rgba(244,91,145,.07); }

.brief-news-empty {
  margin: 0;
  padding: 10px 11px;
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.brief-bullet-list p {
  margin: 0;
  padding: 10px 11px;
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  color: var(--text);
  font-size: 9px;
  line-height: 1.5;
}

.brief-empty-card {
  margin: 0;
}

.brief-empty-card strong {
  display: block;
  margin: 5px 0;
}

.brief-empty-card p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.brief-archive-card {
  margin: 12px 0 0;
  padding: 0 !important;
  overflow: hidden;
}

.brief-archive-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  list-style: none;
}

.brief-archive-card summary::-webkit-details-marker { display: none; }

.brief-archive-card summary > span:first-child {
  display: grid;
  gap: 3px;
}

.brief-archive-card summary strong {
  font-size: 11px;
}

.brief-archive-card summary > span:last-child {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(53,208,196,.075);
  color: var(--teal-soft);
  font-size: 8px;
  font-weight: 800;
}

.brief-archive-list {
  display: grid;
  gap: 7px;
  padding: 0 12px 13px;
}

.brief-archive-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 11px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  color: inherit;
  text-align: left;
}

.brief-archive-row > span {
  display: grid;
  gap: 2px;
}

.brief-archive-row strong { font-size: 9px; }
.brief-archive-row small { color: var(--muted); font-size: 8px; }
.brief-archive-row b { color: var(--muted); font-size: 8px; }

.brief-archive-empty {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}
