:root {
  --c-black: #111110;
  --c-white: #fafafa;
  --c-green: #8fd600;
  --c-green-dim: #5a9e00;
  --c-green-glow: rgba(143, 214, 0, 0.15);
  --c-orange: #ff6200;
  --c-red: #d92534;
  --c-amber: #9e3a00;
  --c-blue: #3b82f6;
  --c-bg: #fafafa;
  --c-surface: #ffffff;
  --c-fg: #000000;
  --c-muted: rgba(17, 17, 16, 0.7);
  --c-subtle: rgba(17, 17, 16, 0.07);
  --c-border: rgba(17, 17, 16, 0.12);
  --c-border-h: rgba(17, 17, 16, 0.2);
  --c-hover: rgba(17, 17, 16, 0.04);
  --c-focus: rgba(143, 214, 0, 0.25);
  --c-scrim: rgba(17, 17, 16, 0.4);
  --c-code: #1a1a2e;
  --c-inline: rgba(17, 17, 16, 0.06);
  --c-highlight: rgba(143, 214, 0, 0.1);
  --c-scrollbar: rgba(17, 17, 16, 0.18);
  --c-ok: #16a34a;
  --c-warn: #d97706;
  --c-error: #d92534;
  --c-info: #2563eb;
  --g-green: linear-gradient(135deg, #8fd600, #5a9e00);
  --g-orange: linear-gradient(135deg, #ff6200, #cc4e00);
  --g-subtle: linear-gradient(180deg, #ffffff, #fafafa);
  --font-body: DM Mono, ui-monospace, monospace;
  --font-head: Syne, system-ui, sans-serif;
  --font-mono: DM Mono, ui-monospace, monospace;
  --font-display: Syne, system-ui, sans-serif;
  --fs-xs: 11px;
  --fs-sm: 12px;
  --fs-base: 13px;
  --fs-md: 14px;
  --fs-lg: 16px;
  --fs-xl: 20px;
  --fs-2xl: 24px;
  --fs-3xl: 32px;
  --fs-hero: clamp(3rem, 7vw, 5.5rem);
  --lh-tight: 1.15;
  --lh-normal: 1.6;
  --lh-relaxed: 1.65;
  --lh-code: 1.55;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-24: 96px;
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
  --bp-2xl: 1536px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;
  --shadow-xs: 0 1px 2px rgba(17, 17, 16, 0.05);
  --shadow-sm: 0 2px 4px rgba(17, 17, 16, 0.06), 0 1px 2px rgba(17, 17, 16, 0.04);
  --shadow-md: 0 4px 12px rgba(17, 17, 16, 0.08), 0 2px 4px rgba(17, 17, 16, 0.04);
  --shadow-lg: 0 8px 24px rgba(17, 17, 16, 0.1), 0 4px 8px rgba(17, 17, 16, 0.05);
  --shadow-green: 0 0 20px rgba(143, 214, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #000000;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

::selection {
  background: #8fd600;
  color: #111110;
}

:focus-visible {
  outline: 2px solid #8fd600;
  outline-offset: 2px;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #8fd600;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  padding-left: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

code {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.95em;
  background: rgba(17, 17, 16, 0.06);
  padding: 1px 5px;
  border-radius: 4px;
}

pre {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.55;
  background: #1a1a2e;
  color: #e0e0e0;
  padding: 16px;
  border-radius: 6px;
  overflow-x: auto;
  border: 1px solid rgba(17, 17, 16, 0.12);
}
pre code {
  background: none;
  padding: 0;
  color: inherit;
}

blockquote {
  margin: 16px 0;
  padding-left: 16px;
  border-left: 3px solid #8fd600;
  color: rgba(17, 17, 16, 0.7);
  font-style: italic;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(17, 17, 16, 0.12);
}

th {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #ffffff;
}

hr {
  border: none;
  height: 1px;
  background: rgba(17, 17, 16, 0.12);
  margin: 24px 0;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 16, 0.18);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 17, 16, 0.7);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-wide {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-full {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  max-width: 100%;
  overflow: hidden;
}

.row-collapse {
  margin: 0;
}

.column {
  flex: 1 1 0%;
  padding: 0 12px;
  min-width: 0;
  overflow: hidden;
  overflow: hidden;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 0 12px;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 0 12px;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 12px;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 0 12px;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 0 12px;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 12px;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 0 12px;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 0 12px;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 12px;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 0 12px;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 0 12px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 12px;
}

.offset-0 {
  margin-left: 0%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-auto-sm {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

@media (min-width: 640px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1024px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1280px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-xl-offset-0 {
    margin-left: 0%;
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
}
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.flex-evenly {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.self-stretch {
  align-self: stretch;
}

.center-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hide {
  display: none !important;
}

@media (max-width: 639px) {
  .hide-sm-down {
    display: none !important;
  }
}
@media (min-width: 640px) {
  .show-sm-up {
    display: block !important;
  }
  .hide-sm-up {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .show-md-up {
    display: block !important;
  }
  .hide-md-up {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .show-lg-up {
    display: block !important;
  }
  .hide-lg-up {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .show-xl-up {
    display: block !important;
  }
  .hide-xl-up {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .hide-mobile {
    display: none !important;
  }
  .col-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-11 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 769px) {
  .show-mobile {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .hide-tablet {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .show-tablet {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .text-mobile-center {
    text-align: center;
  }
  .text-mobile-left {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .flex-mobile-col {
    flex-direction: column;
  }
  .flex-mobile-center {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .p-mobile-0 {
    padding: 0 !important;
  }
  .p-mobile-2 {
    padding: 8px !important;
  }
  .p-mobile-4 {
    padding: 16px !important;
  }
  .m-mobile-0 {
    margin: 0 !important;
  }
  .m-mobile-2 {
    margin: 8px !important;
  }
  .m-mobile-4 {
    margin: 16px !important;
  }
}
@media (hover: none) {
  .hover-only {
    display: none;
  }
}
@media print {
  .no-print {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .card, .feature-card {
    border: 1px solid #ddd;
    box-shadow: none;
  }
}
.app-shell {
  display: grid;
  grid-template-rows: 52px 1fr 28px;
  grid-template-columns: 1fr;
  min-height: 100vh;
  overflow: hidden;
}
.app-shell .app-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 17, 16, 0.12);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  z-index: 20;
}
.app-shell .app-topbar .app-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-shell .app-topbar .app-topbar-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.app-shell .app-topbar .app-topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.app-shell .app-topbar .app-brand {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.app-shell .app-topbar .app-brand .brand-accent {
  color: #8fd600;
}
.app-shell .app-topbar .app-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
}
.app-shell .app-topbar .app-breadcrumb .crumb-sep {
  color: rgba(17, 17, 16, 0.12);
}
.app-shell .app-topbar .app-breadcrumb a {
  color: rgba(17, 17, 16, 0.7);
  text-decoration: none;
}
.app-shell .app-topbar .app-breadcrumb a:hover {
  color: #000000;
}
.app-shell .app-topbar .app-topbar-user {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
}
.app-shell .app-topbar .app-topbar-btn {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: #000000;
  background: #fafafa;
  border: 1px solid rgba(17, 17, 16, 0.12);
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.app-shell .app-topbar .app-topbar-btn:hover {
  background: rgba(17, 17, 16, 0.04);
}
.app-shell .app-topbar .app-topbar-btn--danger {
  color: #d92534;
  border-color: #d92534;
}
.app-shell .app-topbar .app-topbar-btn--primary {
  color: #5a9e00;
  border-color: #5a9e00;
}
.app-shell .app-workspace {
  grid-row: 2;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fafafa;
  min-height: 0;
}
.app-shell .app-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  background: #ffffff;
  border-top: 1px solid rgba(17, 17, 16, 0.12);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  z-index: 20;
}
.app-shell .app-footer .app-footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-shell .app-footer .app-footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.app-shell .app-footer .app-footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.app-shell .app-footer .footer-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
}
.app-shell .app-footer .footer-dot.dot-online {
  background: #16a34a;
}
.app-shell .app-footer .footer-dot.dot-offline {
  background: rgba(17, 17, 16, 0.7);
}
.app-shell .app-footer .footer-dot.dot-warning {
  background: #d97706;
}
@media (max-width: 768px) {
  .app-shell .app-topbar {
    grid-template-columns: 1fr auto;
    padding: 0 12px;
  }
  .app-shell .app-topbar .app-topbar-center {
    display: none;
  }
  .app-shell .app-footer {
    grid-template-columns: 1fr;
  }
  .app-shell .app-footer .app-footer-center,
  .app-shell .app-footer .app-footer-right {
    display: none;
  }
}

.workspace-dashboard {
  display: grid;
  grid-template-columns: var(--aside-w, 240px) 1fr var(--aside-w, 240px);
  grid-template-rows: 1fr;
  min-height: 100%;
  gap: 0;
}
.workspace-dashboard .ws-aside-left {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #ffffff;
  border-right: 1px solid rgba(17, 17, 16, 0.12);
  overflow: hidden;
}
.workspace-dashboard .ws-aside-left .ws-aside-header {
  padding: 12px 16px;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(17, 17, 16, 0.7);
  border-bottom: 1px solid rgba(17, 17, 16, 0.12);
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.workspace-dashboard .ws-aside-left .ws-aside-content {
  overflow-y: auto;
  padding: 8px;
}
.workspace-dashboard .ws-content {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #fafafa;
}
.workspace-dashboard .ws-content .ws-content-header {
  padding: 12px 16px;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 17, 16, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.workspace-dashboard .ws-content .ws-content-header .ws-content-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
}
.workspace-dashboard .ws-content .ws-content-header .ws-content-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.workspace-dashboard .ws-content .ws-content-body {
  overflow-y: auto;
  padding: 16px;
}
.workspace-dashboard .ws-aside-right {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #ffffff;
  border-left: 1px solid rgba(17, 17, 16, 0.12);
  overflow: hidden;
}
.workspace-dashboard .ws-aside-right .ws-aside-header {
  padding: 12px 16px;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(17, 17, 16, 0.7);
  border-bottom: 1px solid rgba(17, 17, 16, 0.12);
  background: #ffffff;
}
.workspace-dashboard .ws-aside-right .ws-aside-content {
  overflow-y: auto;
  padding: 8px;
}
@media (max-width: 1280px) {
  .workspace-dashboard {
    grid-template-columns: var(--aside-w, 240px) 1fr;
  }
  .workspace-dashboard .ws-aside-right {
    display: none;
  }
}
@media (max-width: 768px) {
  .workspace-dashboard {
    grid-template-columns: 1fr;
  }
  .workspace-dashboard .ws-aside-left {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 6px;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  user-select: none;
}
.btn:hover {
  border-color: rgba(17, 17, 16, 0.2);
  background: rgba(17, 17, 16, 0.04);
}
.btn:active {
  transform: scale(0.98);
}
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.btn:focus-visible {
  outline: 2px solid #8fd600;
  outline-offset: 2px;
}

.btn-sm {
  padding: 4px 8px;
  font-size: 11px;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.btn-primary:hover {
  background: #8fd600;
  color: #111110;
  border-color: #8fd600;
}

.btn-success {
  background: #16a34a;
  color: #fafafa;
  border-color: #16a34a;
}
.btn-success:hover {
  background: rgb(15.9351351351, 118.0648648649, 53.6);
  border-color: rgb(15.9351351351, 118.0648648649, 53.6);
}

.btn-danger {
  background: #d92534;
  color: #fafafa;
  border-color: #d92534;
}
.btn-danger:hover {
  background: rgb(173.4291338583, 29.5708661417, 41.5590551181);
  border-color: rgb(173.4291338583, 29.5708661417, 41.5590551181);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
}
.btn-ghost:hover {
  background: rgba(17, 17, 16, 0.04);
  border-color: rgba(17, 17, 16, 0.12);
}

.btn-icon {
  padding: 8px;
  width: 32px;
  height: 32px;
}

.btn-icon-lg {
  padding: 12px;
  width: 40px;
  height: 40px;
}

.card, .bot-card, .feature-card, .card-hover {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 8px;
  padding: 24px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  border-color: #8fd600;
  box-shadow: 0 8px 24px rgba(17, 17, 16, 0.1), 0 4px 8px rgba(17, 17, 16, 0.05), 0 0 20px rgba(143, 214, 0, 0.15);
  transform: translateY(-2px);
}

.card-header {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17, 17, 16, 0.12);
}
.card-header h3, .card-header h4 {
  margin: 0;
}

.card-body {
  flex: 1;
}

.card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 16, 0.12);
}

.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #8fd600;
}
.feature-card-orange::before {
  background: #ff6200;
}
.feature-card h4 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
  padding-left: 12px;
}
.feature-card p {
  margin: 0;
  font-size: 12px;
  color: rgba(17, 17, 16, 0.7);
  padding-left: 12px;
}

.bot-card {
  padding: 0;
  overflow: hidden;
}
.bot-card--online::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(135deg, #8fd600, #5a9e00);
}
.bot-card--offline {
  opacity: 0.7;
}
.bot-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 12px;
}
.bot-card-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bot-card-icon {
  font-size: 1.5rem;
  color: #8fd600;
  opacity: 0.8;
}
.bot-card-names {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bot-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px 12px;
}
.bot-card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0 20px;
  background: rgba(17, 17, 16, 0.12);
  border-radius: 4px;
  overflow: hidden;
}
.bot-card-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  background: #ffffff;
}
.bot-card-spec-label {
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.bot-card-spec-value {
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bot-card-network {
  margin: 12px 20px 0;
  padding: 12px;
  background: #fafafa;
  border-radius: 4px;
}
.bot-card-net-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
}
.bot-card-net-row + .bot-card-net-row {
  margin-top: 4px;
}
.bot-card-net-label {
  color: rgba(17, 17, 16, 0.7);
  min-width: 50px;
}
.bot-card-net-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bot-card-event {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  margin-top: 12px;
  border-top: 1px solid rgba(17, 17, 16, 0.12);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fd600;
  box-shadow: 0 0 8px rgba(143, 214, 0, 0.6);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.status-dot--off {
  background: rgba(17, 17, 16, 0.7);
  box-shadow: none;
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(143, 214, 0, 0.6);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 4px rgba(143, 214, 0, 0.3);
  }
}
.alert {
  padding: 12px 16px;
  margin: 12px 0;
  font-size: 12px;
  border-left: 3px solid;
  border-radius: 0 4px 4px 0;
}
.alert strong {
  font-weight: 600;
}

.alert-info {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
  color: #000000;
}

.alert-success {
  border-color: #16a34a;
  background: rgba(22, 163, 74, 0.05);
  color: #000000;
}

.alert-warning {
  border-color: #d97706;
  background: rgba(217, 119, 6, 0.05);
  color: #000000;
}

.alert-danger {
  border-color: #d92534;
  background: rgba(217, 37, 52, 0.05);
  color: #000000;
}

.alert-jarvis {
  border-color: #8fd600;
  background: rgba(143, 214, 0, 0.04);
  color: #000000;
}

.alert-dismissible {
  position: relative;
  padding-right: 40px;
}
.alert-dismissible .alert-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(17, 17, 16, 0.7);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 4px;
}
.alert-dismissible .alert-close:hover {
  color: #000000;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  white-space: nowrap;
}

.badge-green {
  background: rgba(143, 214, 0, 0.12);
  color: #5a9e00;
}

.badge-orange {
  background: rgba(255, 98, 0, 0.1);
  color: #ff6200;
}

.badge-red {
  background: rgba(217, 37, 52, 0.1);
  color: #d92534;
}

.badge-blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.badge-muted {
  background: rgba(17, 17, 16, 0.06);
  color: rgba(17, 17, 16, 0.7);
}

.badge-solid {
  background: #000000;
  color: #ffffff;
}

.badge-sm {
  padding: 1px 4px;
  font-size: 10px;
}

.badge-lg {
  padding: 4px 12px;
  font-size: 11px;
}

.badge-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

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

.form-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input, .form-select, .form-textarea {
  padding: 8px 12px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  color: #000000;
  background: #fafafa;
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 6px;
  outline: none;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #8fd600;
  box-shadow: 0 0 0 3px rgba(143, 214, 0, 0.15);
}
.form-input::placeholder, .form-select::placeholder, .form-textarea::placeholder {
  color: rgba(17, 17, 16, 0.7);
}
.form-input:disabled, .form-select:disabled, .form-textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-input.is-error, .is-error.form-select, .is-error.form-textarea {
  border-color: #d92534;
}
.form-input.is-error:focus, .is-error.form-select:focus, .is-error.form-textarea:focus {
  box-shadow: 0 0 0 3px rgba(217, 37, 52, 0.15);
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.form-checkbox, .form-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
}
.form-checkbox input[type=checkbox], .form-radio input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #8fd600;
  cursor: pointer;
}

.form-radio input[type=radio] {
  accent-color: #8fd600;
}

.form-range {
  width: 100%;
  height: 4px;
  appearance: none;
  background: rgba(17, 17, 16, 0.12);
  border-radius: 2px;
  outline: none;
}
.form-range::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: #8fd600;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(17, 17, 16, 0.06), 0 1px 2px rgba(17, 17, 16, 0.04);
}

.form-help {
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  margin-top: 4px;
}

.form-error {
  font-size: 11px;
  color: #d92534;
  margin-top: 4px;
}

.input-group {
  display: flex;
  gap: 8px;
}
.input-group .form-input, .input-group .form-textarea, .input-group .form-select {
  flex: 1;
}

.progress {
  height: 6px;
  background: rgba(17, 17, 16, 0.12);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #8fd600;
  border-radius: 9999px;
  transition: width 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-bar-animated {
  animation: progress-stripes 1s linear infinite;
}

.progress-bar-success {
  background: #16a34a;
}

.progress-bar-warning {
  background: #d97706;
}

.progress-bar-danger {
  background: #d92534;
}

@keyframes progress-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 0;
  }
}
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(17, 17, 16, 0.12);
  border-top-color: #8fd600;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner-lg {
  width: 32px;
  height: 32px;
  border-width: 3px;
}

.spinner-sm {
  width: 14px;
  height: 14px;
  border-width: 1.5px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-dots {
  display: inline-flex;
  gap: 2px;
}
.loading-dots span {
  animation: dot-blink 1.4s infinite;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dot-blink {
  0%, 80%, 100% {
    opacity: 0.3;
  }
  40% {
    opacity: 1;
  }
}
.skeleton {
  background: linear-gradient(90deg, rgba(17, 17, 16, 0.12) 25%, rgba(17, 17, 16, 0.04) 50%, rgba(17, 17, 16, 0.12) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 4px;
}

.skeleton-text {
  height: 12px;
  margin-bottom: 8px;
}

.skeleton-title {
  height: 20px;
  width: 60%;
  margin-bottom: 12px;
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.dash {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: var(--c-bg);
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 24px;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}

.dash-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-brand-icon {
  font-size: 20px;
  color: #8fd600;
}

.dash-brand-name {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #000000;
}

.dash-topbar-center {
  flex: 1;
}

.dash-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dash-user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-user-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #8fd600;
  color: #111110;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
}

.dash-user-name {
  font-size: 12px;
  color: #000000;
  font-weight: 500;
}

.dash-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 4px;
  background: transparent;
  color: rgba(17, 17, 16, 0.7);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s ease;
}
.dash-logout-btn:hover {
  color: #d92534;
  border-color: #d92534;
}

.dash-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.dash-aside {
  width: 200px;
  background: var(--c-surface);
  border-right: 1px solid var(--c-border);
  flex-shrink: 0;
  overflow-y: auto;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(17, 17, 16, 0.7);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.15s ease;
}
.dash-nav-item:hover {
  color: #000000;
  background: var(--c-hover);
}
.dash-nav-item.active {
  color: #8fd600;
  background: rgba(143, 214, 0, 0.05);
}

.dash-nav-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.dash-workspace {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

.dash-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.dash-widget {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  overflow: hidden;
}

.dash-widget-header {
  padding: 16px 24px;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
}

.dash-widget-body {
  padding: 24px;
}

.dash-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  padding: 0 24px;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  flex-shrink: 0;
}

.dash-statusbar-left,
.dash-statusbar-center,
.dash-statusbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8fd600;
}
.status-dot--ok {
  background: #16a34a;
}
.status-dot--warn {
  background: #d97706;
}
.status-dot--error {
  background: #d92534;
}

.dash-bot-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
}
.dash-bot-row:last-child {
  border-bottom: none;
}

.dash-bot-name {
  flex: 1;
  font-size: 12px;
  color: #000000;
}

@media (max-width: 768px) {
  .dash-aside {
    width: 60px;
  }
  .dash-nav-label {
    display: none;
  }
  .dash-nav-item {
    justify-content: center;
    padding: 12px;
  }
  .dash-widgets {
    grid-template-columns: 1fr;
  }
}
.instance-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(17, 17, 16, 0.06), 0 1px 2px rgba(17, 17, 16, 0.04);
}
.instance-card:hover {
  border-color: rgba(17, 17, 16, 0.2);
  box-shadow: 0 4px 12px rgba(17, 17, 16, 0.08), 0 2px 4px rgba(17, 17, 16, 0.04);
  transform: translateY(-2px);
}
.instance-card--online {
  border-color: rgba(22, 163, 74, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, rgba(22, 163, 74, 0.02) 100%);
}
.instance-card--online:hover {
  border-color: rgba(22, 163, 74, 0.5);
  box-shadow: 0 4px 12px rgba(17, 17, 16, 0.08), 0 2px 4px rgba(17, 17, 16, 0.04), 0 0 20px rgba(22, 163, 74, 0.1);
}
.instance-card--online .instance-card-header {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid rgba(22, 163, 74, 0.15);
}
.instance-card--online .instance-card-icon {
  background: #16a34a;
  color: #fafafa;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}
.instance-card--online .instance-status-dot {
  background: #16a34a;
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.5);
  animation: pulse-green 2s ease-in-out infinite;
}
.instance-card--offline {
  border-color: rgba(17, 17, 16, 0.2);
  opacity: 0.75;
}
.instance-card--offline:hover {
  opacity: 1;
}
.instance-card--offline .instance-card-header {
  background: rgba(17, 17, 16, 0.05);
  border-bottom: 1px solid rgba(17, 17, 16, 0.1);
}
.instance-card--offline .instance-card-icon {
  background: rgba(17, 17, 16, 0.15);
  color: rgba(17, 17, 16, 0.7);
}
.instance-card--offline .instance-status-dot {
  background: rgba(17, 17, 16, 0.7);
}
.instance-card--compact .instance-card-header {
  padding: 12px 16px;
}
.instance-card--compact .instance-card-icon {
  width: 32px;
  height: 32px;
  font-size: 14px;
}
.instance-card--compact .instance-card-name {
  font-size: 12px;
}
.instance-card--compact .instance-card-status {
  padding: 12px 16px;
}
.instance-card--compact .instance-status-dot {
  width: 8px;
  height: 8px;
}
.instance-card--compact .instance-spec {
  padding: 12px 16px;
}
.instance-card--compact .instance-card-network,
.instance-card--compact .instance-card-event {
  padding: 12px 16px;
  font-size: 10px;
}
.instance-card--warning {
  border-color: rgba(217, 119, 6, 0.3);
}
.instance-card--warning .instance-card-header {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid rgba(217, 119, 6, 0.15);
}
.instance-card--warning .instance-card-icon {
  background: #d97706;
  color: #fafafa;
}
.instance-card--warning .instance-status-dot {
  background: #d97706;
  box-shadow: 0 0 8px rgba(217, 119, 6, 0.5);
}
.instance-card--error {
  border-color: rgba(217, 37, 52, 0.3);
}
.instance-card--error .instance-card-header {
  background: linear-gradient(135deg, rgba(217, 37, 52, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid rgba(217, 37, 52, 0.15);
}
.instance-card--error .instance-card-icon {
  background: #d92534;
  color: #fafafa;
}
.instance-card--error .instance-status-dot {
  background: #d92534;
  box-shadow: 0 0 8px rgba(217, 37, 52, 0.5);
}

.instance-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(17, 17, 16, 0.12);
}

.instance-card-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.instance-card-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8fd600;
  border-radius: 6px;
  font-size: 18px;
  color: #fafafa;
  transition: all 0.3s ease;
}

.instance-card-names {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.instance-card-name {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #000000;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.instance-card-id {
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  font-family: "DM Mono", ui-monospace, monospace;
}

.instance-card-role {
  font-size: 11px;
  color: #ffffff;
  background: #000000;
  padding: 3px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.instance-card-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(17, 17, 16, 0.12);
}

.instance-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
}

.instance-status-label {
  font-size: 12px;
  font-weight: 600;
  color: #000000;
}

.instance-status-meta {
  color: rgba(17, 17, 16, 0.7);
  font-size: 11px;
  margin-left: auto;
  font-family: "DM Mono", ui-monospace, monospace;
}

.instance-card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(17, 17, 16, 0.12);
  margin: 0;
}
.instance-card-specs > *:nth-child(odd) {
  background: #ffffff;
}
.instance-card-specs > *:nth-child(even) {
  background: rgba(255, 255, 255, 0.95);
}

.instance-spec {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
}

.instance-spec-label {
  font-size: 10px;
  color: rgba(17, 17, 16, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.instance-spec-value {
  font-size: 12px;
  color: #000000;
  font-family: "DM Mono", ui-monospace, monospace;
  font-weight: 500;
}

.instance-card-network {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(17, 17, 16, 0.12);
}

.instance-net-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  padding: 3px 0;
}
.instance-net-row:not(:last-child) {
  border-bottom: 1px solid rgba(17, 17, 16, 0.5);
}

.instance-net-label {
  color: rgba(17, 17, 16, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.instance-net-value {
  color: #000000;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
}

.instance-card-event {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid rgba(17, 17, 16, 0.12);
  font-size: 11px;
}

.instance-event-type {
  color: #8fd600;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.instance-event-time {
  color: rgba(17, 17, 16, 0.7);
  font-family: "DM Mono", ui-monospace, monospace;
}

.instance-card-empty {
  text-align: center;
  padding: 40px 24px;
  color: rgba(17, 17, 16, 0.7);
}

.instance-card-empty-icon {
  font-size: 40px;
  margin-bottom: 16px;
  opacity: 0.4;
}

@keyframes pulse-green {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .instance-card-specs {
    grid-template-columns: 1fr;
  }
  .instance-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .instance-card-role {
    align-self: flex-start;
  }
}
.dash-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.dash-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 6px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
}
.dash-stat .dash-stat-value {
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}
.dash-stat .dash-stat-label {
  color: rgba(17, 17, 16, 0.7);
}
.dash-stat--green .dash-stat-value {
  color: #16a34a;
}
.dash-stat--amber .dash-stat-value {
  color: #d97706;
}
.dash-stat--red .dash-stat-value {
  color: #d92534;
}
.dash-stat--muted .dash-stat-value {
  color: rgba(17, 17, 16, 0.7);
}

.dash-bulk {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 6px;
}
.dash-bulk-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(17, 17, 16, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.dash-bulk-btn {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.dash-bulk-result {
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
  margin-left: auto;
}
.dash-bulk-result.err {
  color: #d92534;
}

.resource-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 1024px) {
  .resource-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1536px) {
  .resource-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.resource-cards-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 64px 24px;
  color: rgba(17, 17, 16, 0.7);
}
.resource-cards-empty .resource-cards-empty-icon {
  font-size: 48px;
  opacity: 0.3;
  margin-bottom: 16px;
}

.resource-card {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(17, 17, 16, 0.05);
}
.resource-card:hover {
  border-color: rgba(17, 17, 16, 0.2);
  box-shadow: 0 4px 12px rgba(17, 17, 16, 0.08), 0 2px 4px rgba(17, 17, 16, 0.04);
}
.resource-card--online {
  border-color: rgba(22, 163, 74, 0.25);
}
.resource-card--online .resource-card-head {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.06) 0%, transparent 100%);
  border-bottom: 1px solid rgba(22, 163, 74, 0.12);
}
.resource-card--online .resource-host-status {
  background: #16a34a;
  box-shadow: 0 0 6px rgba(22, 163, 74, 0.4);
  animation: pulse-green 2s ease-in-out infinite;
}
.resource-card--offline {
  opacity: 0.7;
}
.resource-card--offline .resource-card-head {
  background: rgba(17, 17, 16, 0.04);
  border-bottom: 1px solid rgba(17, 17, 16, 0.1);
}
.resource-card--offline .resource-host-status {
  background: rgba(17, 17, 16, 0.7);
}
.resource-card--warning {
  border-color: rgba(217, 119, 6, 0.25);
}
.resource-card--warning .resource-card-head {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.06) 0%, transparent 100%);
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
}
.resource-card--warning .resource-host-status {
  background: #d97706;
  animation: pulse-green 2s ease-in-out infinite;
}

.resource-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(17, 17, 16, 0.12);
}

.resource-host-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.resource-host-info {
  flex: 1;
  min-width: 0;
}

.resource-hostname {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #000000;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 8px;
}

.resource-host-meta {
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  font-family: "DM Mono", ui-monospace, monospace;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.resource-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 1px 8px;
  background: rgba(17, 17, 16, 0.07);
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(17, 17, 16, 0.7);
}

.resource-host-ips {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 10px;
  color: rgba(17, 17, 16, 0.7);
  font-family: "DM Mono", ui-monospace, monospace;
  text-align: right;
  flex-shrink: 0;
}

.resource-instances {
  display: flex;
  flex-direction: column;
}

.resource-instance-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(17, 17, 16, 0.5);
  font-size: 11px;
  transition: background 0.15s ease;
}
.resource-instance-row:last-child {
  border-bottom: none;
}
.resource-instance-row:hover {
  background: rgba(17, 17, 16, 0.04);
}
.resource-instance-row--sub {
  padding-left: 40px;
}

.resource-instance-gateway-connector {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  color: rgba(17, 17, 16, 0.7);
  flex-shrink: 0;
  width: 18px;
  text-align: right;
}

.resource-instance-role {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.resource-instance-role--gateway {
  background: rgba(143, 214, 0, 0.12);
  color: #5a9e00;
}
.resource-instance-role--agent {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.resource-instance-role--unknown {
  background: rgba(17, 17, 16, 0.07);
  color: rgba(17, 17, 16, 0.7);
}

.resource-instance-name {
  font-family: "DM Mono", ui-monospace, monospace;
  color: #000000;
  font-weight: 500;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-instance-model {
  color: rgba(17, 17, 16, 0.7);
  font-family: "DM Mono", ui-monospace, monospace;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}

.resource-instance-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.resource-instance-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.resource-instance-dot--online {
  background: #16a34a;
}
.resource-instance-dot--offline {
  background: rgba(17, 17, 16, 0.7);
}

.resource-instance-status-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.resource-instance-status-label--online {
  color: #16a34a;
}

.resource-instance-status-label--offline {
  color: rgba(17, 17, 16, 0.7);
}

.resource-instance-time {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  color: rgba(17, 17, 16, 0.5);
  flex-shrink: 0;
  min-width: 56px;
  text-align: right;
}

.resource-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(17, 17, 16, 0.12);
  font-size: 10px;
  color: rgba(17, 17, 16, 0.7);
  font-family: "DM Mono", ui-monospace, monospace;
}

.resource-foot-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.resource-foot-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.resource-browser-search {
  padding: 8px;
}

.resource-browser-input {
  width: 100%;
  padding: 8px 12px;
  background: #fafafa;
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 4px;
  color: #000000;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  outline: none;
}
.resource-browser-input::placeholder {
  color: rgba(17, 17, 16, 0.5);
}
.resource-browser-input:focus {
  border-color: #8fd600;
  box-shadow: 0 0 0 3px rgba(143, 214, 0, 0.15);
}

.resource-browser-filters {
  display: flex;
  gap: 4px;
  padding: 0 8px 8px;
}
.resource-browser-filters .filter-btn {
  flex: 1;
  padding: 4px 8px;
  background: transparent;
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 4px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  color: rgba(17, 17, 16, 0.7);
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
}
.resource-browser-filters .filter-btn:hover {
  border-color: rgba(17, 17, 16, 0.2);
  color: #000000;
}
.resource-browser-filters .filter-btn.active {
  border-color: #8fd600;
  color: #8fd600;
  background: rgba(143, 214, 0, 0.08);
}
.resource-browser-filters .filter-btn--all.active {
  border-color: rgba(17, 17, 16, 0.7);
  color: #000000;
}
.resource-browser-filters .filter-btn--online.active {
  border-color: #16a34a;
  color: #16a34a;
}
.resource-browser-filters .filter-btn--offline.active {
  border-color: rgba(17, 17, 16, 0.7);
  color: rgba(17, 17, 16, 0.7);
}

.resource-compact-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
}

.resource-compact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.resource-compact-item:hover {
  background: rgba(17, 17, 16, 0.04);
}
.resource-compact-item.active {
  background: rgba(143, 214, 0, 0.08);
}

.resource-compact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.resource-compact-dot--online {
  background: #16a34a;
}
.resource-compact-dot--offline {
  background: rgba(17, 17, 16, 0.7);
}

.resource-compact-host {
  flex: 1;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: #000000;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-compact-count {
  font-size: 10px;
  color: rgba(17, 17, 16, 0.7);
  font-family: "DM Mono", ui-monospace, monospace;
  background: rgba(17, 17, 16, 0.07);
  padding: 1px 6px;
  border-radius: 9999px;
}

.event-feed {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  line-height: 1.7;
  padding: 8px;
  max-height: 400px;
  overflow-y: auto;
}

.event-feed-line {
  display: flex;
  gap: 8px;
  color: rgba(17, 17, 16, 0.7);
  padding: 2px 0;
  border-bottom: 1px solid rgba(17, 17, 16, 0.3);
}
.event-feed-line:last-child {
  border-bottom: none;
}

.event-feed-time {
  color: rgba(17, 17, 16, 0.6);
  flex-shrink: 0;
}

.event-feed-host {
  color: #000000;
  font-weight: 600;
  flex-shrink: 0;
}

.event-feed-type {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.event-feed-type--online {
  color: #16a34a;
}
.event-feed-type--offline {
  color: rgba(17, 17, 16, 0.7);
}
.event-feed-type--error {
  color: #d92534;
}
.event-feed-type--register {
  color: #8fd600;
}
.event-feed-type--model {
  color: #3b82f6;
}
.event-feed-type--chat {
  color: #000000;
}

.event-feed-msg {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(17, 17, 16, 0.7);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-left {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-right {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scale-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}
.animate-fade-in {
  animation: fade-in 250ms cubic-bezier(0, 0, 0.2, 1) both;
}

.animate-slide-up {
  animation: slide-up 250ms cubic-bezier(0, 0, 0.2, 1) both;
}

.animate-slide-down {
  animation: slide-down 250ms cubic-bezier(0, 0, 0.2, 1) both;
}

.animate-scale-in {
  animation: scale-in 250ms cubic-bezier(0, 0, 0.2, 1) both;
}

.stagger-1 {
  animation-delay: 50ms;
}

.stagger-2 {
  animation-delay: 100ms;
}

.stagger-3 {
  animation-delay: 150ms;
}

.stagger-4 {
  animation-delay: 200ms;
}

.stagger-5 {
  animation-delay: 250ms;
}

.stagger-6 {
  animation-delay: 300ms;
}

.stagger-7 {
  animation-delay: 350ms;
}

.stagger-8 {
  animation-delay: 400ms;
}

.stagger-9 {
  animation-delay: 450ms;
}

.stagger-10 {
  animation-delay: 500ms;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .hide-mobile {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .show-mobile {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .hide-tablet {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .show-tablet {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .text-mobile-center {
    text-align: center;
  }
  .text-mobile-left {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .flex-mobile-col {
    flex-direction: column;
  }
  .flex-mobile-center {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .p-mobile-0 {
    padding: 0 !important;
  }
  .p-mobile-2 {
    padding: 8px !important;
  }
  .p-mobile-4 {
    padding: 16px !important;
  }
  .m-mobile-0 {
    margin: 0 !important;
  }
  .m-mobile-2 {
    margin: 8px !important;
  }
  .m-mobile-4 {
    margin: 16px !important;
  }
}
@media (hover: none) {
  .hover-only {
    display: none;
  }
}
@media print {
  .no-print {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .card, .feature-card {
    border: 1px solid #ddd;
    box-shadow: none;
  }
}
.lp-section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.lp-section-head {
  text-align: center;
  margin-bottom: 64px;
}

.lp-section-label {
  display: inline-block;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  color: #8fd600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border: 1px solid rgba(143, 214, 0, 0.15);
  background: rgba(143, 214, 0, 0.05);
  margin-bottom: 16px;
}

.lp-section-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #000000;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.lp-section-desc {
  font-size: 14px;
  color: rgba(17, 17, 16, 0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.lp-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #ffffff;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  pointer-events: none;
}

.lp-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(17, 17, 16, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 17, 16, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, #000 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, #000 25%, transparent 100%);
}

.lp-hero::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(143, 214, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lp-hero-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  height: 52px;
}

.lp-hero-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-hero-mark {
  font-size: 20px;
  color: #8fd600;
}

.lp-hero-name {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #000000;
}

.lp-hero-badge {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 10px;
  border: 1px solid rgba(17, 17, 16, 0.12);
  color: rgba(17, 17, 16, 0.7);
  letter-spacing: 0.1em;
}

.lp-hero-nav {
  display: flex;
  gap: 24px;
}

.lp-hero-nav a {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-hero-nav a:hover {
  color: #8fd600;
}

.lp-hero-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 32px 0;
}

.lp-hero-content {
  animation: j-fade-up 0.6s cubic-bezier(0, 0, 0.2, 1) both;
}

.lp-hero-soc {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.lp-hero-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #000000;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-hero-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
}

.lp-hero-od {
  color: #000000;
}

.lp-hero-os {
  color: #000000;
}

.lp-hero-og {
  color: #8fd600;
  -webkit-text-stroke: 1.5px #000000;
}

.lp-hero-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(17, 17, 16, 0.7);
  margin: 0 0 32px;
  max-width: 480px;
}

.lp-hero-actions {
  display: flex;
  gap: 16px;
}

.lp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 12px 24px;
  text-decoration: none;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.lp-hero-btn-ghost {
  background: transparent;
  color: #000000;
  border: 1px solid rgba(17, 17, 16, 0.12);
}

.lp-hero-btn-ghost:hover {
  border-color: #8fd600;
  color: #8fd600;
}

.lp-hero-btn-primary {
  background: #000000;
  color: #ffffff;
}

.lp-hero-btn-primary:hover {
  background: #8fd600;
  color: #111110;
  transform: translateY(-1px);
}

.lp-hero-visual {
  width: 380px;
  justify-self: end;
  animation: j-scale-in 0.5s cubic-bezier(0, 0, 0.2, 1) 0.2s both;
}

.lp-hero-terminal {
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.lp-term-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #eaeaea;
  border-bottom: 1px solid #ddd;
}

.lp-term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
}

.lp-term-dot:first-child {
  background: #ff5f57;
}

.lp-term-dot:nth-child(2) {
  background: #febc2e;
}

.lp-term-dot:nth-child(3) {
  background: #28c840;
}

.lp-term-body {
  padding: 20px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.8;
  color: #444;
}

.lp-term-line {
  animation: j-fade-up 0.4s cubic-bezier(0, 0, 0.2, 1) calc(var(--d) * 0.2s) both;
}

.lp-term-prompt {
  color: #5a9e00;
  margin-right: 6px;
}

.lp-term-ok {
  color: #5a9e00;
  margin-right: 6px;
}

.lp-term-hl {
  color: #ff6200;
}

.lp-term-status {
  color: #5a9e00;
}

.lp-term-cursor {
  color: #5a9e00;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.lp-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 2;
}

.lp-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(17, 17, 16, 0.12);
  position: relative;
  overflow: hidden;
}

.lp-hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8fd600;
  animation: scroll-down 1.5s ease-in-out infinite;
}

@keyframes scroll-down {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
.lp-features {
  padding: 64px 0;
  background: #fafafa;
}

.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-feat-card {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 16, 0.12);
  padding: 32px;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-feat-card:hover {
  border-color: #8fd600;
  box-shadow: 0 0 0 4px rgba(143, 214, 0, 0.15);
}

.lp-feat-span-2 {
  grid-column: span 2;
}

.lp-feat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.lp-feat-head .lp-feat-icon {
  margin-bottom: 0;
}

.lp-feat-icon {
  font-size: 1.5rem;
  color: #8fd600;
  margin-bottom: 16px;
}

.lp-feat-card h3 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #000000;
}

.lp-feat-card p {
  font-size: 12px;
  color: rgba(17, 17, 16, 0.7);
  line-height: 1.65;
  margin: 0;
}

.lp-feat-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.lp-feat-detail {
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  line-height: 1.65;
  padding-left: 16px;
  border-left: 2px solid rgba(17, 17, 16, 0.12);
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-feat-card:hover .lp-feat-detail {
  border-left-color: #8fd600;
}

.lp-feat-detail-label {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.65rem;
  display: block;
  margin-bottom: 2px;
}

.lp-feat-subhead {
  text-align: center;
  margin: 48px 0 32px;
}

.lp-feat-sublabel {
  display: inline-block;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  color: rgba(17, 17, 16, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.lp-feat-subtitle {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.lp-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-tech-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 16, 0.12);
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-tech-card:hover {
  border-color: #8fd600;
}

.lp-tech-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #8fd600;
  margin-top: 2px;
}

.lp-tech-body h4 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 4px;
}

.lp-tech-body p {
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  line-height: 1.65;
  margin: 0;
}

.lp-tech-body code {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  padding: 1px 5px;
  background: #fafafa;
  border: 1px solid rgba(17, 17, 16, 0.12);
  color: #8fd600;
}

.lp-arch {
  padding: 64px 0;
  background: #ffffff;
}

.lp-arch-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.lp-arch-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 32px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 16, 0.12);
  min-width: 140px;
  text-align: center;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-arch-node:hover {
  border-color: #8fd600;
  box-shadow: 0 0 0 4px rgba(143, 214, 0, 0.15);
}

.lp-arch-jsoc {
  border-width: 2px;
  border-color: #8fd600;
}

.lp-arch-node-icon {
  font-size: 1.8rem;
  color: #8fd600;
}

.lp-arch-node-label {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}

.lp-arch-node-desc {
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
}

.lp-arch-node-port {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: #8fd600;
  padding: 2px 8px;
  background: rgba(143, 214, 0, 0.08);
}

.lp-arch-lines {
  display: flex;
  gap: 96px;
}

.lp-arch-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #8fd600, rgba(17, 17, 16, 0.12));
  position: relative;
}

.lp-arch-clients {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.lp-arch-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.lp-arch-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  background: #fafafa;
  border: 1px solid rgba(17, 17, 16, 0.12);
}

.lp-arch-feat-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lp-arch-feat-value {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #000000;
}

.lp-stats {
  padding: 64px 0;
  background: #fafafa;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 520px;
  margin: 0 auto;
}

.lp-stat-card {
  text-align: center;
  padding: 32px 16px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 16, 0.12);
}

.lp-stat-num {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #8fd600;
  line-height: 1;
  margin-bottom: 8px;
}

.lp-stat-label {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #000000;
  margin-bottom: 4px;
}

.lp-stat-sub {
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
}

.lp-cta {
  position: relative;
  padding: 64px 0;
  background: #ffffff;
  overflow: hidden;
}

.lp-cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(17, 17, 16, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 17, 16, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 80%);
}

.lp-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.lp-cta-text {
  flex: 1;
  max-width: 480px;
}

.lp-cta-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #000000;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.lp-cta-desc {
  font-size: 14px;
  color: rgba(17, 17, 16, 0.7);
  line-height: 1.65;
  margin: 0;
}

.lp-cta-panel {
  flex-shrink: 0;
  width: 380px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 16, 0.12);
  box-shadow: 0 8px 24px rgba(17, 17, 16, 0.1), 0 4px 8px rgba(17, 17, 16, 0.05);
  padding: 32px;
}

.lp-login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-login-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  text-align: center;
}

.lp-login-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-login-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lp-login-input {
  padding: 12px 16px;
  background: #fafafa;
  border: 1px solid rgba(17, 17, 16, 0.12);
  color: #000000;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  outline: none;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-login-input:focus {
  border-color: #8fd600;
  box-shadow: 0 0 0 3px rgba(143, 214, 0, 0.15);
}

.lp-login-error {
  color: #d92534;
  font-size: 11px;
  font-family: "DM Mono", ui-monospace, monospace;
  margin: 0;
  min-height: 1em;
}

.lp-login-btn {
  margin-top: 8px;
  padding: 12px 16px;
  font-size: 14px;
  background: #000000;
  color: #ffffff;
  border: none;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-login-btn:hover {
  background: #8fd600;
  color: #111110;
  transform: translateY(-1px);
}

.lp-footer {
  border-top: 1px solid rgba(17, 17, 16, 0.12);
  background: #fafafa;
  padding: 32px 0;
}

.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-footer-mark {
  color: #8fd600;
  font-size: 16px;
}

.lp-footer-name {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.lp-footer-badge {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.6rem;
  padding: 2px 8px;
  border: 1px solid rgba(17, 17, 16, 0.12);
  color: rgba(17, 17, 16, 0.7);
  letter-spacing: 0.1em;
}

.lp-footer-links {
  display: flex;
  gap: 24px;
}

.lp-footer-links a {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-footer-links a:hover {
  color: #8fd600;
}

.lp-footer-copy {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  display: flex;
  gap: 8px;
}

.lp-footer-sep {
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .lp-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-feat-span-2 {
    grid-column: span 2;
  }
  .lp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .lp-hero-main {
    padding: 32px 0;
    text-align: center;
  }
  .lp-hero-content {
    text-align: center;
  }
  .lp-hero-title {
    font-size: 32px;
    align-items: center;
  }
  .lp-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .lp-hero-actions {
    justify-content: center;
  }
  .lp-hero-visual {
    width: 100%;
    max-width: 360px;
    justify-self: center;
  }
  .lp-hero-nav {
    display: none;
  }
  .lp-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .lp-cta-text {
    max-width: 100%;
  }
  .lp-cta-panel {
    width: 100%;
    max-width: 380px;
  }
  .lp-arch-clients {
    flex-direction: column;
    align-items: center;
  }
  .lp-arch-lines {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .lp-arch-line {
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, #8fd600, rgba(17, 17, 16, 0.12));
  }
  .lp-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .lp-feat-grid {
    grid-template-columns: 1fr;
  }
  .lp-feat-span-2 {
    grid-column: span 1;
  }
  .lp-tech-grid {
    grid-template-columns: 1fr;
  }
  .lp-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lp-hero-scroll {
    display: none;
  }
}
.tty-section {
  background: #fafafa;
  padding: 64px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tty-box {
  width: 100%;
  max-width: 420px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.tty-error {
  color: #d92534;
  font-size: 12px;
  margin-bottom: 16px;
  padding: 8px 12px;
  background: rgba(217, 37, 52, 0.06);
  border-left: 2px solid #d92534;
}

.tty-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tty-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.tty-prompt {
  color: #5a9e00;
  white-space: nowrap;
  user-select: none;
}

.tty-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #000000;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  padding: 2px 0;
  caret-color: #8fd600;
}

.tty-input::placeholder {
  color: #bbb;
}

.tty-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #fafafa inset;
  -webkit-text-fill-color: #000000;
}

.tty-spacer {
  height: 8px;
}

.tty-submit-row {
  margin-top: 16px;
}

.tty-submit {
  background: transparent;
  border: 1px solid #ccc;
  color: #555;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  padding: 6px 20px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.15s ease;
}

.tty-submit:hover {
  border-color: #8fd600;
  color: #8fd600;
}

.tty-submit:active {
  background: rgba(143, 214, 0, 0.1);
}

.tty-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: #5a9e00;
  animation: tty-blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 2px;
}

@keyframes tty-blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.contact-overlay.open {
  opacity: 1;
  visibility: visible;
}

.contact-widget {
  width: 400px;
  background: #fafafa;
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #f0f0f0;
  border-bottom: 1px solid rgba(17, 17, 16, 0.12);
}

.contact-bar-title {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(17, 17, 16, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-close {
  background: none;
  border: none;
  color: rgba(17, 17, 16, 0.7);
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.15s;
}

.contact-close:hover {
  color: #8fd600;
}

.contact-body {
  padding: 20px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  color: #000000;
}

.contact-terminal {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 17, 16, 0.12);
}

.contact-line {
  color: #555;
  line-height: 1.8;
}

.contact-line .contact-prompt {
  color: #5a9e00;
}

.contact-system {
  color: #666;
  font-size: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.contact-row .contact-prompt {
  color: #5a9e00;
  white-space: nowrap;
  user-select: none;
  padding-top: 4px;
}

.contact-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #000000;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  padding: 4px 0;
  caret-color: #8fd600;
}

.contact-input::placeholder {
  color: #aaa;
}

.contact-textarea {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #000000;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  padding: 4px 0;
  caret-color: #8fd600;
  resize: none;
  line-height: 1.6;
}

.contact-textarea::placeholder {
  color: #aaa;
}

.contact-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.contact-btn {
  background: transparent;
  border: 1px solid #ccc;
  color: #555;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  padding: 6px 20px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.15s ease;
}

.contact-btn:hover {
  border-color: #8fd600;
  color: #8fd600;
}

.contact-btn:active {
  background: rgba(143, 214, 0, 0.1);
}

.contact-btn-ghost {
  border-color: #ddd;
  color: #888;
}

.contact-btn-ghost:hover {
  border-color: #bbb;
  color: #555;
}

.text-green {
  color: #8fd600;
}

.text-orange {
  color: #ff6200;
}

.text-red {
  color: #d92534;
}

.text-muted {
  color: rgba(17, 17, 16, 0.7);
}

.text-subtle {
  color: rgba(17, 17, 16, 0.07);
}

.text-xs {
  font-size: 11px;
}

.text-sm {
  font-size: 12px;
}

.text-base {
  font-size: 13px;
}

.text-md {
  font-size: 14px;
}

.text-lg {
  font-size: 16px;
}

.text-xl {
  font-size: 20px;
}

.text-2xl {
  font-size: 24px;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 4px;
}

.m-2 {
  margin: 8px;
}

.m-3 {
  margin: 12px;
}

.m-4 {
  margin: 16px;
}

.m-6 {
  margin: 24px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 4px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 4px;
}

.p-2 {
  padding: 8px;
}

.p-3 {
  padding: 12px;
}

.p-4 {
  padding: 16px;
}

.p-6 {
  padding: 24px;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-inline {
  display: inline;
}

.d-inline-flex {
  display: inline-flex;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-x-auto {
  overflow-x: auto;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*# sourceMappingURL=jarvis.css.map */
.dash-statusbar .status-dot {
  margin-right: 0;
}

.dash-statusbar strong {
  color: #000000;
  font-weight: 700;
  margin-right: 4px;
}

.resource-browser-search {
  padding: 4px 8px;
}

.ws-aside-header-actions {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.ws-aside-header-actions .filter-btn {
  background: none;
  border: 1px solid rgba(17, 17, 16, 0.12);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  color: rgba(17, 17, 16, 0.7);
  cursor: pointer;
  line-height: 1.4;
}

.ws-aside-header-actions .filter-btn.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.ws-aside-header-actions .filter-btn:hover {
  border-color: rgba(17, 17, 16, 0.4);
}
.app-shell .app-footer .status-dot {
  width: 6px;
  height: 6px;
  margin: 0;
}
.status-dot--offline {
  background: rgba(17, 17, 16, 0.2);
}

