/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg-void: #080a0f;
  --bg-base: #0d1117;
  --bg-surface: #131921;
  --bg-raised: #1a2332;
  --bg-overlay: #1e2a3d;
  --accent-teal: #00d4b4;
  --accent-blue: #4f8ef7;
  --accent-amber: #f0a500;
  --accent-coral: #ff5f6d;
  --accent-purple: #8b5cf6;
  --glow-teal: 0 0 20px #00d4b42e;
  --glow-blue: 0 0 20px #4f8ef726;
  --text-primary: #e8edf5;
  --text-secondary: #8a96a8;
  --text-muted: #4a5568;
  --border-subtle: #ffffff0d;
  --border-default: #ffffff17;
  --border-strong: #00d4b44d;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --success: #00d4b4;
  --warning: #f0a500;
  --danger: #ff5f6d;
  --error: #ff5f6d;
}

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

html, body {
  background: var(--bg-void);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: #ffffff14;
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff24;
}

.page-bg {
  background: var(--bg-void);
  min-height: 100vh;
  position: relative;
}

.page-bg:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(#00d4b404 1px, #0000 1px), linear-gradient(90deg, #00d4b404 1px, #0000 1px);
  background-size: 40px 40px;
  position: fixed;
  inset: 0;
}

.section-label {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: IBM Plex Mono, monospace;
  font-size: 10px;
  font-weight: 500;
}

.sidebar {
  background: var(--bg-base);
  border-right: 1px solid var(--border-subtle);
  z-index: 100;
  flex-direction: column;
  width: 220px;
  height: 100vh;
  padding: 20px 12px;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.sidebar:after {
  content: "";
  background: linear-gradient(180deg,
    transparent,
    var(--accent-teal) 40%,
    var(--accent-blue) 70%,
    transparent);
  opacity: .4;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -1px;
}

.sidebar-logo {
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 0 4px;
  display: flex;
}

.sidebar-logo-icon {
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  width: 30px;
  min-width: 30px;
  height: 30px;
  color: var(--bg-void);
  justify-content: center;
  align-items: center;
  font-family: Syne, sans-serif;
  font-size: 14px;
  font-weight: 800;
  display: flex;
}

.sidebar-logo-text {
  letter-spacing: .5px;
  color: var(--text-primary);
  font-family: Syne, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.sidebar-logo-text .ai {
  color: var(--accent-teal);
}

.nav-item {
  border-radius: var(--r-md);
  color: var(--text-secondary);
  cursor: pointer;
  text-align: left;
  background: none;
  border: 1px solid #0000;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  font-family: DM Sans, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  transition: all .15s;
  display: flex;
  position: relative;
}

.nav-item:hover {
  color: var(--text-primary);
  border-color: var(--border-subtle);
  background: #ffffff0a;
}

.nav-item.active {
  color: var(--accent-teal);
  background: #00d4b414;
  border-color: #00d4b433;
  font-weight: 500;
}

.nav-item.active:before {
  content: "";
  background: var(--accent-teal);
  width: 3px;
  height: 16px;
  box-shadow: var(--glow-teal);
  border-radius: 0 2px 2px 0;
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
}

.nav-item-icon {
  justify-content: center;
  align-items: center;
  min-width: 20px;
  font-size: 15px;
  display: flex;
}

.nav-badge {
  background: var(--accent-teal);
  color: var(--bg-void);
  border-radius: 20px;
  margin-left: auto;
  padding: 1px 6px;
  font-family: IBM Plex Mono, monospace;
  font-size: 10px;
  font-weight: 700;
}

.user-card {
  border-top: 1px solid var(--border-subtle);
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  display: flex;
}

.user-card-avatar {
  border-radius: 50%;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  position: relative;
}

.user-card-avatar img {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.user-card-avatar-fallback {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: Syne, sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.user-card-avatar .online-dot {
  background: var(--accent-teal);
  border: 2px solid var(--bg-base);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: -1px;
  right: -1px;
}

.user-card-info {
  flex: 1;
  min-width: 0;
}

.user-card-name {
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
}

.user-card-did {
  color: var(--text-muted);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: IBM Plex Mono, monospace;
  font-size: 9.5px;
  overflow: hidden;
}

.user-card-logout {
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  padding: 4px;
  font-size: 14px;
  transition: color .15s;
  display: flex;
}

.user-card-logout:hover {
  color: var(--accent-coral);
}

.status-pill {
  color: var(--accent-teal);
  background: #00d4b414;
  border: 1px solid #00d4b433;
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: IBM Plex Mono, monospace;
  font-size: 11px;
  display: flex;
}

.status-dot {
  background: var(--accent-teal);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 2s infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

.btn-primary {
  background: var(--accent-teal);
  border-radius: var(--r-md);
  color: var(--bg-void);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: Syne, sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all .15s;
  display: inline-flex;
}

.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: var(--glow-teal);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  border: 1px solid var(--border-default);
  border-radius: var(--r-md);
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: Syne, sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
  display: inline-flex;
}

.btn-secondary:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}

.btn-ghost-blue {
  border-radius: var(--r-md);
  color: var(--accent-blue);
  cursor: pointer;
  background: #4f8ef71a;
  border: 1px solid #4f8ef740;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: Syne, sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
  display: inline-flex;
}

.btn-ghost-blue:hover {
  background: #4f8ef72e;
}

.btn-danger {
  border-radius: var(--r-md);
  color: var(--accent-coral);
  cursor: pointer;
  background: #ff5f6d1a;
  border: 1px solid #ff5f6d40;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: Syne, sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
  display: inline-flex;
}

.btn-danger:hover {
  background: #ff5f6d2e;
}

.btn-google {
  color: #ea4335;
  border-radius: var(--r-md);
  cursor: pointer;
  background: #ea43351a;
  border: 1px solid #ea433540;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s;
  display: inline-flex;
}

.btn-google:hover {
  background: #ea43352e;
  transform: translateY(-1px);
}

.btn-twitter {
  color: #1da1f2;
  border-radius: var(--r-md);
  cursor: pointer;
  background: #1da1f21a;
  border: 1px solid #1da1f240;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s;
  display: inline-flex;
}

.btn-twitter:hover {
  background: #1da1f22e;
  transform: translateY(-1px);
}

.btn-linkedin {
  color: #0077b5;
  border-radius: var(--r-md);
  cursor: pointer;
  background: #0077b51a;
  border: 1px solid #0077b540;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s;
  display: inline-flex;
}

.btn-linkedin:hover {
  background: #0077b52e;
  transform: translateY(-1px);
}

.input-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  transition: border-color .15s;
  display: flex;
}

.input-wrap:focus-within {
  box-shadow: var(--glow-teal);
  border-color: #00d4b466;
}

.chat-input {
  color: var(--text-primary);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
}

.chat-input::placeholder {
  color: var(--text-muted);
}

.input {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-md);
  width: 100%;
  color: var(--text-primary);
  outline: none;
  padding: 10px 14px;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  transition: border-color .15s, box-shadow .15s;
}

.input:focus {
  box-shadow: var(--glow-teal);
  border-color: #00d4b466;
}

.input::placeholder {
  color: var(--text-muted);
}

.tag {
  border: 1px solid;
  border-radius: 4px;
  align-items: center;
  padding: 2px 8px;
  font-family: IBM Plex Mono, monospace;
  font-size: 10.5px;
  display: inline-flex;
}

.tag-teal {
  color: var(--accent-teal);
  background: #00d4b414;
  border-color: #00d4b433;
}

.tag-blue {
  color: var(--accent-blue);
  background: #4f8ef714;
  border-color: #4f8ef733;
}

.tag-amber {
  color: var(--accent-amber);
  background: #f0a50014;
  border-color: #f0a50033;
}

.tag-coral {
  color: var(--accent-coral);
  background: #ff5f6d14;
  border-color: #ff5f6d33;
}

.tag-purple {
  color: var(--accent-purple);
  background: #8b5cf614;
  border-color: #8b5cf633;
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-md);
  cursor: pointer;
  padding: 14px;
  transition: all .15s;
  position: relative;
  overflow: hidden;
}

.card:before {
  content: "";
  background: var(--accent-teal);
  opacity: 0;
  width: 3px;
  height: 100%;
  transition: opacity .15s;
  position: absolute;
  top: 0;
  left: 0;
}

.card:hover {
  border-color: var(--border-strong);
  background: var(--bg-raised);
}

.card:hover:before {
  opacity: 1;
}

.stat-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 12px;
}

.stat-label {
  letter-spacing: .8px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: IBM Plex Mono, monospace;
  font-size: 9.5px;
  font-weight: 500;
}

.stat-value {
  color: var(--text-primary);
  font-family: Syne, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.msg-ai {
  align-self: flex-start;
  gap: 12px;
  max-width: 75%;
  animation: .2s slideIn;
  display: flex;
}

.msg-bubble-ai {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 4px var(--r-lg) var(--r-lg) var(--r-lg);
  color: var(--text-primary);
  min-width: 0;
  max-width: 75%;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.65;
  position: relative;
}

.msg-bubble-ai:before {
  content: "";
  background: linear-gradient(90deg, var(--accent-teal), transparent 60%);
  opacity: .5;
  border-radius: 4px 4px 0 0;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.msg-bubble-user {
  border-radius: var(--r-lg) 4px var(--r-lg) var(--r-lg);
  color: var(--text-primary);
  background: linear-gradient(135deg, #00d4b426, #4f8ef71f);
  border: 1px solid #00d4b440;
  align-self: flex-end;
  max-width: 75%;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.6;
  animation: .2s slideIn;
}

.msg-bubble-ping {
  border-radius: 4px var(--r-lg) var(--r-lg) var(--r-lg);
  color: var(--text-secondary);
  background: #4f8ef70f;
  border: 1px solid #4f8ef726;
  padding: 12px 16px;
  font-size: 13.5px;
}

.ping-tag {
  color: var(--accent-blue);
  background: #4f8ef71f;
  border: 1px solid #4f8ef733;
  border-radius: 4px;
  margin-bottom: 6px;
  padding: 2px 7px;
  font-family: IBM Plex Mono, monospace;
  font-size: 10px;
  font-weight: 500;
  display: inline-block;
}

.msg-avatar {
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  width: 32px;
  height: 32px;
  color: var(--bg-void);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-family: Syne, sans-serif;
  font-size: 13px;
  font-weight: 800;
  display: flex;
}

.msg-timestamp {
  color: var(--text-muted);
  font-family: IBM Plex Mono, monospace;
  font-size: 10px;
}

.identity-block {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-md);
  padding: 12px 14px;
}

.did-string {
  color: var(--accent-teal);
  word-break: break-all;
  opacity: .8;
  font-family: IBM Plex Mono, monospace;
  font-size: 10.5px;
  line-height: 1.5;
}

.verified-badge {
  color: var(--accent-teal);
  background: #00d4b414;
  border: 1px solid #00d4b433;
  border-radius: 4px;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 3px 8px;
  font-family: IBM Plex Mono, monospace;
  font-size: 10px;
  display: inline-flex;
}

.progress-track {
  background: var(--bg-surface);
  border-radius: 20px;
  height: 4px;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
  border-radius: 20px;
  height: 100%;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes typingDot {
  0%, 100% {
    opacity: .3;
  }

  50% {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: .5s forwards fadeInUp;
}

.animate-float {
  animation: 4s ease-in-out infinite float;
}

.topbar {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 50;
  background: #0d1117e6;
  align-items: center;
  height: 56px;
  padding: 0 24px;
  display: flex;
  position: sticky;
  top: 0;
}

.dashboard-main {
  z-index: 1;
  min-height: 100vh;
  margin-left: 220px;
  position: relative;
}

.mobile-header, .mobile-overlay {
  display: none;
}

@media (max-width: 850px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .dashboard-main {
    padding-top: 56px;
    margin-left: 0 !important;
  }

  .mobile-header {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 50;
    background: #0d1117f2;
    align-items: center;
    gap: 12px;
    height: 56px;
    padding: 0 16px;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .mobile-overlay.open {
    z-index: 90;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: #0009;
    display: block;
    position: fixed;
    inset: 0;
  }
}

.markdown-content {
  font-family: DM Sans, sans-serif;
  line-height: 1.65;
}

.markdown-content p {
  margin-bottom: .7rem;
}

.markdown-content p:last-child {
  margin-bottom: 0;
}

.markdown-content h1, .markdown-content h2, .markdown-content h3 {
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: .5rem;
  font-family: Syne, sans-serif;
  font-weight: 700;
}

.markdown-content h1 {
  font-size: 1.4rem;
}

.markdown-content h2 {
  font-size: 1.15rem;
}

.markdown-content h3 {
  font-size: 1rem;
}

.markdown-content ul, .markdown-content ol {
  margin-bottom: .7rem;
  margin-left: 1.2rem;
}

.markdown-content li {
  margin-bottom: .3rem;
}

.markdown-content code {
  color: var(--accent-teal);
  background: #00d4b414;
  border: 1px solid #00d4b426;
  border-radius: 4px;
  padding: .1rem .35rem;
  font-family: IBM Plex Mono, monospace;
  font-size: .85em;
}

.markdown-content pre {
  background: var(--bg-void);
  border-radius: var(--r-md);
  border: 1px solid var(--border-default);
  margin-bottom: .7rem;
  padding: 14px;
  overflow-x: auto;
}

.markdown-content pre code {
  color: var(--text-primary);
  background: none;
  border: none;
  padding: 0;
  font-size: .82em;
  display: block;
}

.markdown-content a {
  color: var(--accent-teal);
  text-underline-offset: 2px;
  text-decoration: underline;
}

.markdown-content blockquote {
  border-left: 3px solid var(--accent-teal);
  color: var(--text-secondary);
  margin-bottom: .7rem;
  padding-left: 1rem;
  font-style: italic;
}

.markdown-content table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: .7rem;
  font-size: .85rem;
}

.markdown-content th, .markdown-content td {
  border: 1px solid var(--border-default);
  text-align: left;
  padding: .5rem;
}

.markdown-content th {
  background: var(--bg-surface);
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  font-family: IBM Plex Mono, monospace;
  font-size: .8rem;
  font-weight: 500;
}

.toast {
  border-radius: var(--r-md);
  z-index: 1000;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 500;
  animation: .25s slideIn;
  display: flex;
  position: fixed;
  top: 20px;
  right: 20px;
}

.toast-success {
  color: var(--accent-teal);
  background: #00d4b41f;
  border: 1px solid #00d4b440;
}

.toast-error {
  color: var(--accent-coral);
  background: #ff5f6d1f;
  border: 1px solid #ff5f6d40;
}

/*# sourceMappingURL=src_app_globals_0p2ml0n.css.map*/