:root {
  --bg: #0b0f14;
  --surface: #151c28;
  --surface-alt: #1a2332;
  --text: #e8edf5;
  --muted: #8b9bb4;
  --accent: #4d9fff;
  --accent-dim: #2a6fc9;
  --success: #3dd68c;
  --error: #f87171;
  --border: #2a3548;
  --radius: 8px;
  --max: 52rem;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: var(--accent);
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.site-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--text);
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a.nav-tool {
  color: var(--accent);
}

.nav-cta {
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 0.4rem 0.8rem;
  color: var(--accent) !important;
  font-weight: 500;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--text) !important;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 38rem;
}

.hero-subtext {
  color: var(--accent);
  font-size: 0.95rem;
  margin: 1rem 0 0;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
  max-width: none;
}

.section-alt > h2,
.section-alt > p,
.section-alt > form {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  margin-top: 0;
}

.section-intro {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.waitlist-form label {
  display: block;
  margin-bottom: 0.5rem;
}

.waitlist-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.waitlist-row input {
  flex: 1;
  min-width: 12rem;
}

.form-hint {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.form-hint.success {
  color: var(--success);
}

.form-hint.error {
  color: var(--error);
}

.contact-line {
  margin: 0.35rem 0;
}

.muted {
  color: var(--muted);
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  color: var(--text);
}

.btn-primary {
  background: var(--accent);
  color: #041018;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--accent-dim);
  color: var(--text);
}

.btn-secondary {
  border-color: var(--border);
  background: var(--surface-alt);
}

.btn-tertiary {
  border-color: var(--border);
  color: var(--muted);
}

.btn-tertiary:hover {
  color: var(--text);
  border-color: var(--accent);
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
}

.hidden {
  display: none !important;
}

/* Hamburger menu styles */
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
}

.hamburger-btn:hover {
  color: var(--accent);
  background: var(--surface-alt);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  z-index: 100;
  padding: 0.5rem 0;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-link {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.15s ease;
}

.menu-link:hover {
  background: var(--surface-alt);
  color: var(--accent);
}

.menu-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
  list-style: none;
}

/* --- Tool page --- */
.tool-body .tool-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem;
}

.tool-badge {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.login-gate {
  max-width: 24rem;
}

.tool-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.tool-tab {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
}

.tool-tab.active {
  color: var(--text);
  border-color: var(--accent);
}

.orch-form label {
  display: block;
  margin-bottom: 1rem;
}

.orch-form input,
.orch-form select,
.orch-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface-alt);
  color: var(--text);
}

.orch-status {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.orch-status.success {
  color: var(--success);
}

.orch-status.error {
  color: var(--error);
}

.orch-card {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.orch-prompt {
  white-space: pre-wrap;
  word-break: break-word;
  background: var(--bg);
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  overflow-x: auto;
}

.orch-form-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
}

.orch-form-inline label {
  flex: 1 1 12rem;
  margin-bottom: 0;
}

.orch-filter-label {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.orch-filter-select {
  display: block;
  margin-top: 0.35rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface-alt);
  color: var(--text);
  min-width: 10rem;
}

.orch-suggestions-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.orch-suggestion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--surface);
}

.orch-suggestion-item p {
  margin: 0 0 0.5rem;
}

.orch-suggestion-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.orch-history-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-top: 1px solid var(--border);
}

.orch-history-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.orch-history-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.orch-history-toggle {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--surface-alt);
  border: none;
  color: var(--text);
  cursor: pointer;
}

.orch-history-detail {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
}

.orch-outcome-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.orch-outcome-btn {
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  font-size: 0.85rem;
  cursor: pointer;
}

.orch-outcome-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.orch-outcome-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.orch-outcome-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
}

.orch-outcome-used {
  background: rgba(61, 214, 140, 0.15);
  color: var(--success);
  border: 1px solid rgba(61, 214, 140, 0.45);
}

.orch-outcome-modified {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.45);
}

.orch-outcome-rejected {
  background: rgba(248, 113, 113, 0.12);
  color: var(--error);
  border: 1px solid rgba(248, 113, 113, 0.45);
}

.orch-outcome-error {
  margin: 0;
  padding: 0.5rem 1rem 0.75rem;
  font-size: 0.85rem;
  color: var(--error);
}

.panel-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.panel-heading-row h2 {
  margin: 0;
}

.orch-tasks-section {
  margin: 1.25rem 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.orch-tasks-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.orch-tasks-header h3 {
  margin: 0;
  font-size: 1rem;
}

.orch-tasks-hint {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
}

.orch-tasks-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.orch-task-row {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface-alt);
}

.orch-task-row label {
  margin-bottom: 0.65rem;
}

.orch-task-row-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.35rem;
}

/* --- Doc Ingest --- */
.orch-doc-ingest-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.orch-doc-ingest-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.orch-doc-ingest-row:last-child {
  border-bottom: none;
}

.orch-doc-ingest-name {
  flex: 1;
  min-width: 0;
}

.orch-doc-ingest-name strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.orch-doc-ingest-name .doc-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.orch-doc-ingest-last {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  min-width: 7rem;
  text-align: right;
}

.orch-doc-ingest-last.success {
  color: var(--success);
}

.orch-doc-ingest-action {
  min-width: 13rem;
  text-align: right;
  font-size: 0.85rem;
}

.orch-doc-ingest-action .success {
  color: var(--success);
}

.orch-doc-ingest-action .muted {
  color: var(--muted);
}

.orch-doc-ingest-action .error {
  color: var(--error);
}

.orch-doc-ingest-spinner {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid var(--border);
  border-top-color: var(--muted);
  border-radius: 50%;
  animation: orch-spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 0.35rem;
}

@keyframes orch-spin {
  to { transform: rotate(360deg); }
}

/* ==================================================================
 *  RCA Demo — private-tier styling matching /tool look
 * ================================================================*/

.rca-header {
  margin-bottom: 24px;
}

.rca-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
}

/* Case list grid */
.rca-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.rca-card-link {
  text-decoration: none;
  color: inherit;
}

.rca-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rca-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(77, 159, 255, 0.15);
}

.rca-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 12px;
}

.rca-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.rca-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(61, 214, 140, 0.12);
  color: var(--success);
  border: 1px solid rgba(61, 214, 140, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.rca-equipment {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 8px;
  line-height: 1.4;
}

.rca-symptom-preview {
  font-size: 13px;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.55;
  flex: 1;
  opacity: 0.85;
}

.rca-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.rca-date {
  font-size: 11px;
  color: var(--muted);
}

.rca-view-link {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* Detail view */
.rca-back-link {
  background: none;
  border: none;
  font-size: 13px;
  color: var(--accent);
  cursor: pointer;
  padding: 0;
  margin-bottom: 18px;
  display: inline-block;
  font-weight: 500;
  font-family: inherit;
}

.rca-back-link:hover {
  color: var(--text);
}

.rca-detail-header {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 16px;
}

.rca-detail-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 16px;
}

.rca-detail-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.rca-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rca-meta-item {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.rca-meta-item strong {
  font-weight: 600;
  color: var(--text);
}

/* Section cards */
.rca-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 14px;
}

.rca-section-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.rca-section-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.rca-section-body {
  font-size: 13px;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  opacity: 0.9;
}

/* Stub / Seeded badges */
.rca-stub-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(77, 159, 255, 0.12);
  color: var(--accent);
  border: 1px solid rgba(77, 159, 255, 0.3);
  text-transform: uppercase;
}

.rca-seeded-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
  text-transform: uppercase;
}

/* AI Analysis panel */
.rca-reasoning-panel {
  background: rgba(77, 159, 255, 0.04);
  border: 1px solid rgba(77, 159, 255, 0.2);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 16px;
}

.rca-reasoning-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.rca-reasoning-icon {
  font-size: 18px;
}

.rca-reasoning-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

.rca-reasoning-steps {
  margin: 0;
  padding: 0 0 0 18px;
  list-style-type: decimal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rca-reasoning-step {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  opacity: 0.9;
}

/* Conversation */
.rca-conversation-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rca-conversation-msg {
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 88%;
}

.rca-conversation-user {
  align-self: flex-end;
  background: rgba(77, 159, 255, 0.08);
  border: 1px solid rgba(77, 159, 255, 0.18);
}

.rca-conversation-assistant {
  align-self: flex-start;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}

.rca-conversation-role {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}

.rca-conversation-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

/* Similar patterns */
.rca-similar-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rca-similar-card {
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
}

.rca-similar-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
  gap: 10px;
}

.rca-similar-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.rca-similarity-score {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.rca-similar-equipment {
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 7px;
}

.rca-similar-summary {
  font-size: 12px;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
  opacity: 0.85;
}

/* Missing Evidence panel */
.rca-evidence-panel {
  background: rgba(248, 113, 113, 0.04);
  border: 1px solid rgba(248, 113, 113, 0.15);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 16px;
}

.rca-evidence-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--error);
  margin: 0;
}

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

.rca-evidence-item {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  opacity: 0.9;
}

.rca-evidence-bullet {
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

/* Report preview */
.rca-report-preview-content {
  display: flex;
  flex-direction: column;
}

.rca-report-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.rca-report-meta-item {
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
  opacity: 0.85;
}

.rca-report-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.rca-report-preview-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
  opacity: 0.85;
}

/* PDF Export */
.rca-export-section {
  margin-top: 20px;
  text-align: center;
  padding: 28px 0;
}

.rca-export-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--accent);
  color: #041018;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.15s ease;
}

.rca-export-button:hover {
  background: var(--accent-dim);
  color: var(--text);
}

.rca-export-hint {
  font-size: 11px;
  color: var(--muted);
  margin: 7px 0 0;
}

/* Not found state */
.rca-not-found {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
}

.rca-not-found h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
}

.rca-not-found p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 18px;
}

/* Responsive */
@media (max-width: 480px) {
  .rca-grid {
    grid-template-columns: 1fr;
  }

  .rca-detail-header {
    padding: 16px 18px;
  }

  .rca-detail-title {
    font-size: 18px;
  }

  .rca-conversation-msg {
    max-width: 95%;
  }

  .rca-report-preview-meta {
    flex-direction: column;
    gap: 6px;
  }
}
