:root {
  --page: #f3f5f7;
  --panel: #ffffff;
  --panel-muted: #f7f8fa;
  --panel-strong: #eef2f4;
  --text: #172126;
  --text-soft: #56636a;
  --text-faint: #869198;
  --line: #dde3e6;
  --line-strong: #cbd4d8;
  --accent: #087f72;
  --accent-strong: #05655d;
  --accent-soft: #e5f5f2;
  --blue: #2766c7;
  --blue-soft: #eaf1fc;
  --amber: #9a5b08;
  --amber-soft: #fff4dc;
  --danger: #b5382d;
  --danger-soft: #fff0ee;
  --shadow: 0 10px 28px rgba(29, 42, 48, 0.1);
  --nav-width: 64px;
  --list-width: 304px;
  --ai-width: 344px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  color: var(--text);
  background: var(--page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(8, 127, 114, 0.34);
  outline-offset: 2px;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.hidden {
  display: none !important;
}

.spinning {
  animation: spin 0.8s linear infinite;
}

.mobile-only,
.mobile-nav {
  display: none;
}

.workspace-shell {
  width: 100vw;
  height: 100dvh;
  min-height: 600px;
  display: grid;
  grid-template-columns: var(--nav-width) var(--list-width) minmax(460px, 1fr) var(--ai-width);
  background: var(--panel);
}

.global-nav {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 10px;
  border-right: 1px solid #1e2d32;
  color: #d7e1e3;
  background: #17272c;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #365158;
  border-radius: 8px;
  color: #ffffff;
  background: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav-tools,
.nav-bottom {
  display: grid;
  gap: 8px;
}

.nav-tools {
  margin-top: 28px;
}

.nav-bottom {
  margin-top: auto;
}

.nav-button,
.profile-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #aebdc1;
  background: transparent;
}

.nav-button:hover,
.nav-button.active {
  color: #ffffff;
  background: #294047;
}

.profile-button {
  color: #153136;
  background: #cdebe5;
  font-weight: 800;
}

.notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  border: 1px solid #17272c;
  border-radius: 50%;
  background: #e26754;
}

.conversation-pane,
.ai-pane {
  min-width: 0;
  min-height: 0;
  display: grid;
  background: var(--panel);
}

.conversation-pane {
  grid-template-rows: auto auto 1fr auto;
  border-right: 1px solid var(--line);
}

.pane-header,
.ai-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.pane-header h1,
.ai-header h2 {
  font-size: 18px;
  line-height: 1.2;
}

.icon-button {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text-soft);
  background: var(--panel);
}

.icon-button:hover {
  border-color: var(--line-strong);
  color: var(--text);
  background: var(--panel-muted);
}

.icon-button.small {
  width: 32px;
  height: 32px;
}

.icon-button.small svg {
  width: 16px;
  height: 16px;
}

.conversation-controls {
  display: grid;
  gap: 12px;
  padding: 14px 14px 10px;
}

.search-field {
  height: 38px;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text-faint);
  background: var(--panel-muted);
}

.search-field:focus-within {
  border-color: #81c9c0;
  background: var(--panel);
}

.search-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 13px;
}

.search-field input::placeholder {
  color: var(--text-faint);
}

.search-field kbd {
  min-width: 21px;
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-faint);
  background: var(--panel);
  font-family: inherit;
  font-size: 10px;
  text-align: center;
}

.filter-tabs,
.ai-tabs {
  display: flex;
  align-items: center;
}

.filter-tabs {
  gap: 4px;
}

.filter-tab {
  min-height: 30px;
  padding: 5px 10px;
  border: 0;
  border-radius: 6px;
  color: var(--text-soft);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.filter-tab:hover,
.filter-tab.active {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.conversation-list {
  min-height: 0;
  overflow-y: auto;
  padding: 2px 8px 12px;
}

.conversation-item {
  position: relative;
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border: 0;
  border-radius: 8px;
  text-align: left;
  background: transparent;
}

.conversation-item:hover {
  background: var(--panel-muted);
}

.conversation-item.active {
  background: var(--accent-soft);
}

.conversation-item.active::before {
  position: absolute;
  left: -8px;
  width: 3px;
  height: 36px;
  border-radius: 0 3px 3px 0;
  background: var(--accent);
  content: "";
}

.avatar,
.contact-avatar {
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #294148;
  background: #dce8eb;
  font-size: 14px;
  font-weight: 800;
}

.avatar {
  width: 42px;
  height: 42px;
}

.avatar.tone-2,
.contact-avatar.tone-2 {
  color: #6c4213;
  background: #f4e1c8;
}

.avatar.tone-3,
.contact-avatar.tone-3 {
  color: #315e43;
  background: #d8eadf;
}

.avatar.tone-4,
.contact-avatar.tone-4 {
  color: #635184;
  background: #e8e0f2;
}

.conversation-copy {
  min-width: 0;
}

.conversation-title,
.conversation-preview {
  display: flex;
  align-items: center;
  gap: 6px;
}

.conversation-title strong {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.managed-badge {
  flex: 0 0 auto;
  color: var(--accent);
}

.managed-badge svg {
  width: 13px;
  height: 13px;
}

.conversation-preview {
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 12px;
}

.conversation-preview span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-meta {
  min-width: 30px;
  display: grid;
  justify-items: end;
  gap: 7px;
  align-self: stretch;
  padding-top: 2px;
}

.conversation-time {
  color: var(--text-faint);
  font-size: 10px;
}

.unread-count {
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 9px;
  color: #ffffff;
  background: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.empty-state {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px;
  color: var(--text-faint);
  text-align: center;
  font-size: 13px;
}

.empty-state svg {
  width: 24px;
  height: 24px;
}

.sync-footer {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 8px 16px;
  border-top: 1px solid var(--line);
}

.sync-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-faint);
  font-size: 11px;
}

.sync-indicator > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.sync-indicator.live > span {
  background: var(--accent);
}

.sync-indicator.offline > span {
  background: var(--text-faint);
}

.chat-pane {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  background: #f8f9fa;
}

.chat-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.contact-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.contact-heading {
  min-width: 0;
}

.contact-title-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.contact-heading h2 {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-heading p {
  margin-top: 4px;
  overflow: hidden;
  color: var(--text-faint);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.presence {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-strong);
  font-size: 10px;
}

.presence > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.chat-actions {
  display: flex;
  gap: 7px;
  margin-left: auto;
}

.conversation-status {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 14px;
  color: var(--text-faint);
  font-size: 10px;
}

.conversation-status > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-strong);
}

.conversation-status svg {
  width: 13px;
  height: 13px;
}

.message-list {
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 12px clamp(18px, 5vw, 68px) 22px;
}

.message-row {
  max-width: min(72%, 610px);
  display: grid;
  gap: 4px;
  align-self: flex-start;
}

.message-row.mine {
  align-self: flex-end;
}

.message-bubble {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px 8px 8px 2px;
  background: var(--panel);
  box-shadow: 0 2px 5px rgba(29, 42, 48, 0.04);
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.message-row.mine .message-bubble {
  border-color: #b9ded8;
  border-radius: 8px 8px 2px 8px;
  background: var(--accent-soft);
}

.message-foot {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-faint);
  font-size: 9px;
}

.message-row.mine .message-foot {
  justify-content: flex-end;
}

.message-foot svg {
  width: 12px;
  height: 12px;
}

.ai-origin {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--accent-strong);
}

.typing-state {
  width: 54px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 18px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.typing-state span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-faint);
  animation: typing 1s infinite ease-in-out;
}

.typing-state span:nth-child(2) { animation-delay: 0.15s; }
.typing-state span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-3px); opacity: 1; }
}

.composer {
  margin: 0 clamp(14px, 3vw, 38px) 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 22px rgba(29, 42, 48, 0.08);
}

.draft-source {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 8px 5px 11px;
  border-bottom: 1px solid #c7e5e0;
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 10px;
}

.draft-source span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.draft-source svg {
  width: 13px;
  height: 13px;
}

.draft-source button {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--accent-strong);
  background: transparent;
}

.composer textarea {
  width: 100%;
  max-height: 140px;
  min-height: 48px;
  display: block;
  resize: none;
  border: 0;
  outline: 0;
  padding: 13px 14px 6px;
  color: var(--text);
  background: transparent;
  font-size: 13px;
  line-height: 1.5;
}

.composer textarea::placeholder {
  color: var(--text-faint);
}

.composer-toolbar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 7px 7px;
}

.composer-tools {
  display: flex;
  align-items: center;
  gap: 4px;
}

.composer .icon-button {
  border-color: transparent;
}

.ai-quick-button {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border: 0;
  border-radius: 6px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 11px;
  font-weight: 800;
}

.ai-quick-button svg {
  width: 14px;
  height: 14px;
}

.send-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--accent);
}

.send-button:hover {
  background: var(--accent-strong);
}

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

.send-button svg {
  width: 16px;
  height: 16px;
}

.ai-pane {
  grid-template-rows: auto auto 1fr;
  border-left: 1px solid var(--line);
}

.ai-header {
  padding-left: 18px;
}

.managed-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.managed-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-track {
  position: relative;
  width: 34px;
  height: 19px;
  border-radius: 10px;
  background: #cbd4d8;
  transition: background 160ms ease;
}

.switch-track::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  content: "";
  transition: transform 160ms ease;
}

.managed-switch input:checked + .switch-track {
  background: var(--accent);
}

.managed-switch input:checked + .switch-track::after {
  transform: translateX(15px);
}

.managed-switch input:focus-visible + .switch-track {
  outline: 2px solid rgba(8, 127, 114, 0.34);
  outline-offset: 2px;
}

.ai-tabs {
  min-height: 43px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.ai-tab {
  position: relative;
  height: 43px;
  padding: 0 13px;
  border: 0;
  color: var(--text-soft);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.ai-tab.active {
  color: var(--text);
}

.ai-tab.active::after {
  position: absolute;
  right: 11px;
  bottom: -1px;
  left: 11px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.ai-content {
  min-height: 0;
  overflow-y: auto;
  padding: 16px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-heading.compact {
  margin-bottom: 9px;
}

.section-heading h3 {
  font-size: 13px;
}

.section-heading p,
.freshness {
  margin-top: 3px;
  color: var(--text-faint);
  font-size: 10px;
}

.generation-state {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #b9ded8;
  border-radius: 8px;
  background: var(--accent-soft);
}

.generation-state div {
  display: grid;
  gap: 3px;
}

.generation-state strong {
  color: var(--accent-strong);
  font-size: 11px;
}

.generation-state span:last-child {
  color: var(--text-soft);
  font-size: 10px;
}

.spinner {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid #9fd1ca;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.reply-suggestions {
  display: grid;
  gap: 9px;
}

.reply-card {
  display: grid;
  gap: 8px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.reply-card:hover {
  border-color: #a9d8d2;
}

.reply-card-head,
.reply-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.reply-label {
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 800;
}

.risk-badge {
  padding: 3px 6px;
  border-radius: 5px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 9px;
  font-weight: 800;
}

.risk-badge.medium {
  color: var(--amber);
  background: var(--amber-soft);
}

.reply-card p {
  color: var(--text);
  font-size: 12px;
  line-height: 1.55;
}

.reply-reason {
  min-width: 0;
  overflow: hidden;
  color: var(--text-faint);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.apply-reply {
  min-height: 27px;
  flex: 0 0 auto;
  padding: 4px 9px;
  border: 1px solid #a9d8d2;
  border-radius: 6px;
  color: var(--accent-strong);
  background: var(--panel);
  font-size: 10px;
  font-weight: 800;
}

.apply-reply:hover {
  color: #ffffff;
  background: var(--accent);
}

.risk-strip {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--accent-strong);
}

.risk-strip > svg {
  width: 17px;
  height: 17px;
}

.risk-strip div {
  display: grid;
  gap: 3px;
}

.risk-strip strong {
  font-size: 10px;
}

.risk-strip span {
  color: var(--text-faint);
  font-size: 9px;
  line-height: 1.4;
}

.risk-strip.warn {
  color: var(--amber);
}

.context-section {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.context-section:first-child {
  padding-top: 0;
}

.context-section:last-child {
  border-bottom: 0;
}

.summary-text {
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.65;
}

.fact-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  margin: 0;
  font-size: 11px;
}

.fact-list dt {
  color: var(--text-faint);
}

.fact-list dd {
  margin: 0;
  color: var(--text);
  text-align: right;
}

.boundary-list {
  display: grid;
  gap: 8px;
}

.boundary-list span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-size: 11px;
}

.boundary-list svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  max-width: 320px;
  padding: 10px 13px;
  border: 1px solid #a9d8d2;
  border-radius: 8px;
  color: var(--accent-strong);
  background: var(--panel);
  box-shadow: var(--shadow);
  font-size: 11px;
}

.toast.error {
  border-color: #efbcb6;
  color: var(--danger);
}

@media (max-width: 1180px) {
  :root {
    --list-width: 280px;
    --ai-width: 320px;
  }

  .message-list {
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (max-width: 980px) {
  body {
    overflow: auto;
  }

  .desktop-only,
  .global-nav {
    display: none;
  }

  .mobile-only,
  .mobile-nav {
    display: grid;
  }

  .workspace-shell {
    min-height: 520px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) 58px;
  }

  .conversation-pane,
  .chat-pane,
  .ai-pane {
    grid-column: 1;
    grid-row: 1;
    border: 0;
  }

  body[data-mobile-view="conversations"] .chat-pane,
  body[data-mobile-view="conversations"] .ai-pane,
  body[data-mobile-view="chat"] .conversation-pane,
  body[data-mobile-view="chat"] .ai-pane,
  body[data-mobile-view="ai"] .conversation-pane,
  body[data-mobile-view="ai"] .chat-pane {
    display: none;
  }

  .mobile-nav {
    z-index: 10;
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    background: var(--panel);
  }

  .mobile-nav button {
    min-width: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    border: 0;
    color: var(--text-faint);
    background: transparent;
    font-size: 9px;
  }

  .mobile-nav button.active {
    color: var(--accent-strong);
  }

  .mobile-nav svg {
    width: 19px;
    height: 19px;
  }

  .conversation-pane,
  .ai-pane {
    width: 100%;
  }

  .message-list {
    padding-right: 18px;
    padding-left: 18px;
  }

  .message-row {
    max-width: 84%;
  }

  .ai-content {
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .toast {
    right: 12px;
    bottom: 70px;
    left: 12px;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .workspace-shell {
    min-height: 100dvh;
  }

  .pane-header,
  .ai-header,
  .chat-header {
    min-height: 64px;
  }

  .chat-header {
    padding-right: 10px;
    padding-left: 10px;
  }

  .chat-actions {
    gap: 4px;
  }

  .message-list {
    padding: 8px 12px 16px;
  }

  .message-row {
    max-width: 90%;
  }

  .composer {
    margin: 0 8px 9px;
  }

  .ai-quick-button {
    width: 30px;
    overflow: hidden;
    padding: 0;
    justify-content: center;
    color: var(--accent-strong);
    font-size: 0;
  }

  .search-field kbd {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
