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

/* ─── Landing page ─── */

.landing {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-image: url("../Images/header.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
}

.landing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 48px 40px;
  max-width: 480px;
}

.landing-logo {
  height: 88px;
  width: auto;
  margin-bottom: 14px;
}

.landing-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.6px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

.landing-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.2px;
  margin-top: 2px;
}

.landing-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.65;
  max-width: 340px;
  margin-top: 6px;
}

.landing-signin {
  margin-top: 28px;
  padding: 13px 48px;
  background: #5e81ff;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  letter-spacing: 0.1px;
}

.landing-signin:hover {
  background: #4b6de6;
}

.landing-signin:active {
  background: #3a5cd0;
  transform: scale(0.99);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  height: 100vh;
  display: grid;
  grid-template-rows: 90px 1fr;
  grid-template-columns: 240px 1fr;
  grid-template-areas:
    "header header"
    "sidebar main";
  color: #e8eeff;
  background: #05070d;
}

/* ─── Header ─── */

header {
  grid-area: header;
  background-image: url("../Images/header.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  height: 75px;
  width: auto;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.user-info .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  object-fit: cover;
}

.user-info .user-email {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.packs-nav-link {
  margin-left: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}

.packs-nav-link:hover {
  color: #fff;
}

.admin-nav-link {
  color: rgba(255, 165, 80, 0.75);
}

.admin-nav-link:hover {
  color: rgba(255, 165, 80, 1);
}

.logout-btn {
  margin-left: 12px;
  padding: 5px 13px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.logout-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ─── Sidebar ─── */

aside {
  grid-area: sidebar;
  background: #080b14;
  border-right: 1px solid rgba(94, 129, 255, 0.1);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-label {
  font-size: 11px;
  font-weight: 600;
  color: #4a5a7a;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

aside select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(94, 129, 255, 0.18);
  background: #0d1120;
  font-size: 13px;
  font-family: inherit;
  color: #c8d4ff;
  cursor: pointer;
  appearance: auto;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

aside select:focus {
  outline: none;
  border-color: #5e81ff;
  box-shadow: 0 0 0 3px rgba(94, 129, 255, 0.18);
}

.new-project-btn {
  width: 100%;
  padding: 7px 10px;
  background: none;
  border: 1px dashed rgba(94, 129, 255, 0.3);
  border-radius: 8px;
  font-size: 12px;
  font-family: inherit;
  color: #5e6a99;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.new-project-btn:hover {
  border-color: #5e81ff;
  color: #5e81ff;
}

.new-project-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.new-project-form input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #5e81ff;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: #c8d4ff;
  background: #0d1120;
  outline: none;
  box-shadow: 0 0 0 3px rgba(94, 129, 255, 0.15);
}

.new-project-actions {
  display: flex;
  gap: 6px;
}

.new-project-actions button {
  flex: 1;
  padding: 7px 0;
  border-radius: 8px;
  font-size: 12px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease;
}

.new-project-actions button:first-child {
  background: #5e81ff;
  color: #ffffff;
}

.new-project-actions button:first-child:hover {
  background: #4b6de6;
}

.new-project-actions button:first-child:disabled {
  background: rgba(94, 129, 255, 0.3);
  cursor: not-allowed;
}

.new-project-actions button:last-child {
  background: #0d1120;
  color: #7a8ab8;
  border: 1px solid rgba(94, 129, 255, 0.15);
}

.new-project-actions button:last-child:hover {
  background: #111827;
}

.new-project-status {
  font-size: 12px;
  color: #ff3b30;
  min-height: 16px;
}

/* ─── Project panel ─── */

.project-panel {
  background: #0d1120;
  border: 1px solid rgba(94, 129, 255, 0.12);
  border-radius: 10px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-panel-empty {
  font-size: 12px;
  color: #3a4a6a;
  font-style: italic;
}

.project-panel-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.active-name {
  font-size: 13px;
  font-weight: 600;
  color: #c8d4ff;
  line-height: 1.3;
}

.project-panel-label {
  font-size: 10px;
  font-weight: 600;
  color: #3a4a6a;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 5px;
}

.project-toc,
.project-packs {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
  border-top: 1px solid rgba(94, 129, 255, 0.1);
}

.toc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0;
  font-size: 12px;
  color: #8da4cc;
}

.toc-label { font-weight: 400; }
.toc-count {
  font-weight: 600;
  color: #c8d4ff;
  font-variant-numeric: tabular-nums;
}

.pack-row {
  font-size: 11px;
  color: #5e6a99;
  padding: 2px 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.delete-project-btn {
  background: none;
  border: none;
  padding: 2px 5px;
  color: #c7c7cc;
  font-size: 12px;
  cursor: pointer;
  border-radius: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s ease, background 0.15s ease;
}

.delete-project-btn:hover {
  color: #ff3b30;
  background: rgba(255, 59, 48, 0.08);
}

.delete-confirm {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.delete-confirm-msg {
  font-size: 12px;
  color: #ff3b30;
  line-height: 1.4;
}

.delete-confirm-actions {
  display: flex;
  gap: 6px;
}

.delete-confirm-yes,
.delete-confirm-no {
  flex: 1;
  padding: 6px 0;
  border-radius: 7px;
  font-size: 12px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease;
}

.delete-confirm-yes {
  background: #ff3b30;
  color: #ffffff;
}

.delete-confirm-yes:hover { background: #e0332a; }
.delete-confirm-yes:disabled { background: #ffb3af; cursor: not-allowed; }

.delete-confirm-no {
  background: #e5e5ea;
  color: #1d1d1f;
}

.delete-confirm-no:hover { background: #d2d2d7; }

/* ─── Main ─── */

main {
  grid-area: main;
  background: #0d1625;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.main-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 32px 64px;
}

/* ─── Tabs ─── */

.main-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(94, 129, 255, 0.15);
  padding-bottom: 0;
}

.tab {
  padding: 8px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  color: #4a5a7a;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.tab:hover {
  color: #c8d4ff;
}

.tab.active {
  color: #5e81ff;
  border-bottom-color: #5e81ff;
}

/* ─── Ask panel ─── */

#askPanel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

/* ─── Add Knowledge panel ─── */

.add-panel {
  flex: 1;
  overflow-y: auto;
}

.add-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
}

.field-note {
  font-weight: 400;
  color: #6e6e73;
}

.form-group select,
.form-group textarea {
  padding: 9px 12px;
  border: 1px solid rgba(94, 129, 255, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #c8d4ff;
  background: #0d1120;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-group select {
  cursor: pointer;
  appearance: auto;
}

.form-group textarea {
  resize: vertical;
  line-height: 1.5;
}

.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5e81ff;
  background: #111827;
  box-shadow: 0 0 0 3px rgba(94, 129, 255, 0.15);
}

.add-status {
  font-size: 13px;
  min-height: 18px;
}

.add-status.error {
  color: #ff3b30;
}

.add-status.success {
  color: #34c759;
}

#addBtn {
  align-self: flex-start;
  padding: 10px 22px;
  background: #5e81ff;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}

#addBtn:hover {
  background: #4b6de6;
}

#addBtn:active {
  background: #3a5cd0;
}

#addBtn:disabled {
  background: rgba(94, 129, 255, 0.3);
  cursor: not-allowed;
}

.main-heading {
  margin-bottom: 20px;
  text-align: center;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.suggestion {
  padding: 5px 11px;
  border: 1px solid rgba(94, 129, 255, 0.2);
  border-radius: 20px;
  background: #0d1120;
  font-size: 12px;
  font-family: inherit;
  color: #7a8ab8;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.suggestion:hover {
  background: rgba(94, 129, 255, 0.12);
  border-color: #5e81ff;
  color: #5e81ff;
}

.main-heading h1 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #c8d4ff;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}

.main-heading p {
  font-size: 13px;
  color: #6b7db3;
  line-height: 1.55;
}

/* ─── Chat ─── */

.chat-inner {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 0 20px;
}

.msg {
  max-width: 72%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  word-wrap: break-word;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.msg.user {
  align-self: flex-end;
  background: #5e81ff;
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.msg-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.msg-action {
  background: none;
  border: none;
  padding: 4px 5px;
  border-radius: 6px;
  cursor: pointer;
  color: #4a5a7a;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.msg-action:hover {
  background: rgba(94, 129, 255, 0.1);
  color: #c8d4ff;
}

.msg-action.copied {
  color: #34c759;
}

.msg-action-divider {
  width: 1px;
  height: 14px;
  background: rgba(94, 129, 255, 0.15);
  flex-shrink: 0;
  margin: 0 2px;
}

.msg-helpful-label {
  font-size: 12px;
  color: #4a5a7a;
  font-weight: 500;
  white-space: nowrap;
}

.msg-helpful-btn {
  background: none;
  border: 1px solid rgba(94, 129, 255, 0.2);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 12px;
  color: #5e6a99;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.msg-helpful-btn:hover {
  background: rgba(94, 129, 255, 0.1);
  color: #c8d4ff;
  border-color: rgba(94, 129, 255, 0.35);
}

.msg-helpful-thanks {
  font-size: 12px;
  color: #34c759;
  font-weight: 500;
  white-space: nowrap;
}

.msg.assistant {
  align-self: flex-start;
  background: #141e35;
  color: #d8e2ff;
  border: 1px solid rgba(94, 129, 255, 0.15);
  border-bottom-left-radius: 4px;
  transform-origin: left center;
}

.msg.assistant p {
  margin: 0 0 0.6em;
}

.msg.assistant p:last-of-type {
  margin-bottom: 0;
}

.msg.assistant:hover {
  transform: scale(1.015);
  transform-origin: left center;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.4);
}

/* ─── Input bar ─── */

.input-bar {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  padding-top: 16px;
  border-top: 1px solid rgba(94, 129, 255, 0.15);
}

.input-bar textarea {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(94, 129, 255, 0.2);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #c8d4ff;
  background: #0d1120;
  resize: none;
  min-height: 42px;
  max-height: 140px;
  line-height: 1.5;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.input-bar textarea:focus {
  outline: none;
  border-color: #5e81ff;
  background: #111827;
  box-shadow: 0 0 0 3px rgba(94, 129, 255, 0.15);
}

.input-bar button {
  padding: 10px 20px;
  background: #5e81ff;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
  height: 42px;
}

.input-bar button:hover {
  background: #4b6de6;
}

.input-bar button:active {
  background: #3a5cd0;
}

/* ===================== REQUEST ACCESS ===================== */

.landing-request-link {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.landing-request-link a {
  color: #6ab0f5;
  text-decoration: none;
}

.landing-request-link a:hover {
  text-decoration: underline;
}

.request-panel {
  width: 100%;
  text-align: left;
}

.request-panel-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  text-align: center;
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.request-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
}

.request-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.request-input:focus {
  background: rgba(255, 255, 255, 0.18);
}

.request-textarea {
  resize: none;
}

.request-radio-group {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.request-radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.request-submit-btn {
  margin-top: 4px;
}

.request-back-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  cursor: pointer;
  padding: 4px 0;
  text-align: center;
  font-family: inherit;
}

.request-back-btn:hover {
  color: rgba(255, 255, 255, 0.85);
}

.request-confirm {
  text-align: center;
  color: #6ab0f5;
  font-size: 14px;
  margin-top: 16px;
}

/* ─── App footer ─── */

.app-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #05070d;
  border-top: 1px solid rgba(94, 129, 255, 0.1);
  z-index: 50;
}

.app-footer-link {
  font-size: 11.5px;
  color: #3a4a6a;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.app-footer-link:hover {
  color: #7b9bff;
}

/* ─── Project type badge ─────────────────────────────────────────────────── */

.project-type-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: middle;
}

.project-type-badge.badge-legal {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.project-type-badge.badge-finance {
  background: rgba(52, 199, 89, 0.12);
  color: #4ade80;
  border: 1px solid rgba(52, 199, 89, 0.25);
}

.project-type-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 4px;
}

.project-type-select {
  flex: 1;
  padding: 5px 8px;
  border: 1px solid rgba(94, 129, 255, 0.2);
  border-radius: 8px;
  font-size: 12px;
  font-family: inherit;
  color: #c8d4ff;
  background: #0d1120;
  cursor: pointer;
}

/* ─── Jurisdiction bar ───────────────────────────────────────────────────── */

.jurisdiction-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 10px;
}

.jurisdiction-label {
  font-size: 11px;
  font-weight: 700;
  color: #5a6a9a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.jurisdiction-select {
  padding: 5px 10px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 8px;
  font-size: 12px;
  font-family: inherit;
  color: #c8d4ff;
  background: #0d1120;
  cursor: pointer;
}

.jurisdiction-select:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
}

/* ─── Legal response renderer ────────────────────────────────────────────── */

.legal-response {
  width: 100%;
  line-height: 1.5;
}

.legal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.legal-jurisdiction {
  font-size: 12px;
  color: #7a8ab8;
  font-weight: 600;
}

.legal-confidence-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.legal-confidence-badge.high {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.legal-confidence-badge.medium {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.legal-confidence-badge.low {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.legal-section {
  margin-bottom: 12px;
}

.legal-section-title {
  font-size: 10px;
  font-weight: 700;
  color: #5a6a9a;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 5px;
}

.legal-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-section-list li {
  font-size: 13px;
  color: #d8e2ff;
  padding: 3px 0 3px 10px;
  border-left: 2px solid rgba(168, 85, 247, 0.3);
  line-height: 1.45;
}

.legal-disclaimer {
  font-size: 11px;
  color: #4a5a7a;
  font-style: italic;
  border-top: 1px solid rgba(94, 129, 255, 0.08);
  padding-top: 10px;
  margin-top: 12px;
  line-height: 1.5;
}
