@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --b-bg: #0c0c0c;
  --b-bg-2: #161514;
  --b-panel: rgba(240,232,216,.04);
  --b-panel-2: rgba(240,232,216,.08);
  --b-line: rgba(240,232,216,.1);
  --b-line-strong: rgba(240,232,216,.18);
  --b-blue: #c41521;
  --b-blue2: #2B0D10;
  --b-blue-dark: #9f101a;
  --b-cyan: #e0a52c;
  --b-text: #f1ece0;
  --b-text-dim: #8c8478;
  --b-text-faint: #665f56;
  --b-text-strong: #fffaf0;
  --b-ok: #48bb78;
  --b-danger: #c41521;
  --b-warn: #e0a52c;
  --b-blue-rgb: 196,21,33;
  --b-cyan-rgb: 224,165,44;
  --b-warn-rgb: 224,165,44;
  --b-ok-rgb: 72,187,120;
  --b-radius: 10px;
  --b-radius-sm: 7px;
  --b-shadow: 0 18px 50px -28px rgba(0,0,0,.7);
  --b-font-display: 'Poppins',sans-serif;
  --b-font-head: 'Poppins',sans-serif;
  --b-font-body: 'Poppins',sans-serif;
  --b-topbar-height: 70px;
  --b-topbar-height2: 40px;
  --b-sidebar-width: 260px;
}

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

html,
body {
  min-height: 100%;
  background: var(--b-bg);
}

body {
  overflow-x: hidden;
}

::selection {
  color: #1a0000;
  background: var(--b-blue);
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  padding: 1px 6px;
  color: var(--b-cyan);
  font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size: .88em;
  background: rgba(255,255,255,.06);
  border-radius: 5px;
}

.b-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--b-text);
  font-family: var(--b-font-body);
  line-height: 1.55;
  background:
    radial-gradient(900px 500px at 80% -10%,rgba(var(--b-blue-rgb),.04),transparent 60%),
    radial-gradient(700px 500px at -10% 20%,rgba(var(--b-blue-rgb),.03),transparent 60%),
    linear-gradient(180deg,var(--b-bg) 0%,var(--b-bg-2) 100%);
}

.b-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%,#000 30%,transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%,#000 30%,transparent 80%);
}

.b-link {
  color: var(--b-cyan);
  text-decoration: underline;
}

.b-mono {
  color: var(--b-text-dim);
  font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size: .88em;
}

.b-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--b-topbar-height);
  background: rgba(8,8,8,.96);
  border-bottom: 1px solid var(--b-line);
  backdrop-filter: blur(14px) saturate(160%);
}

.b-topbar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--b-topbar-height);
  padding: 0 24px;
  gap: 14px;
}

.b-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.b-brand-mark {
  display: inline-flex;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
}

.b-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b-brand-mark-sm {
  width: 24px;
  height: 24px;
}

.b-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1;
}

.b-brand-name {
  overflow: hidden;
  color: var(--b-text-strong);
  font-family: var(--b-font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.b-brand-name-sm {
  color: var(--b-text-strong);
  font-family: var(--b-font-display);
  font-size: .82rem;
  font-weight: 700;
}

.b-brand-sub {
  margin-top: 2px;
  color: var(--b-cyan);
  font-family: var(--b-font-head);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.b-user {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  margin-left: auto;
  gap: 10px;
}

.b-user-email {
  color: var(--b-text-dim);
  font-size: .86rem;
}

.b-lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 34px;
  padding: 0 12px;
  color: var(--b-text);
  font-family: var(--b-font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--b-line);
  border-radius: var(--b-radius-sm);
  transition: .15s;
}

.b-lang-switch:hover {
  color: var(--b-text-strong);
  background: rgba(255,255,255,.07);
  border-color: var(--b-line-strong);
}

.b-logout-form {
  margin: 0;
}

.b-sidebar-toggle {
  display: none;
  flex: 0 0 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 8px;
  color: var(--b-text-strong);
  cursor: pointer;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--b-line);
  border-radius: var(--b-radius-sm);
  gap: 4px;
}

.b-sidebar-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease,opacity .2s ease;
}

.b-sidebar-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.b-sidebar-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.b-sidebar-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.b-shell {
  display: flex;
  flex: 1 0 auto;
  width: 100%;
  min-height: 100vh;
  padding-top: var(--b-topbar-height2);
  position: relative;
  z-index: 2;
}

.b-main {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  min-height: calc(100vh - var(--b-topbar-height));
  margin: 0;
  padding: var(--b-topbar-height) 36px 48px;
  overflow-x: hidden;
  position: relative;
  z-index: 2;
}

.b-main-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - var(--b-topbar-height));
  margin: 0;
  padding: 40px 24px;
  padding-top: var(--b-topbar-height) !important;
  position: relative;
  z-index: 2;
}

.b-page {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  gap: 24px;
}

.b-page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--b-line);
  gap: 18px;
}

.b-eyebrow {
  display: block;
  margin-bottom: 6px;
  color: var(--b-warn);
  font-family: var(--b-font-head);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.b-page-head h1 {
  color: var(--b-text-strong);
  font-family: var(--b-font-display);
  font-size: clamp(1.5rem,2.4vw,2rem);
  font-weight: 800;
  line-height: 1.1;
}

.b-page-meta {
  margin-top: 5px;
  color: var(--b-text-dim);
  font-size: .92rem;
}

.b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-family: var(--b-font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--b-radius-sm);
  gap: 8px;
  transition: .18s;
}

.b-btn-primary {
  color: var(--b-text-strong);
  background: var(--b-blue);
  box-shadow: 0 6px 20px -8px rgba(var(--b-blue-rgb),.28);
}

.b-btn-primary:hover {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -8px rgba(var(--b-blue-rgb),.34);
}

.b-btn-ghost {
  color: var(--b-text);
  background: rgba(255,255,255,.03);
  border-color: var(--b-line);
}

.b-btn-ghost:hover {
  color: var(--b-text-strong);
  background: rgba(255,255,255,.06);
  border-color: var(--b-line-strong);
}

.b-btn-block {
  justify-content: center;
  width: 100%;
}

.b-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.b-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--b-panel);
  border: 1px solid var(--b-line);
  border-radius: var(--b-radius);
  gap: 16px;
}

.b-card h2 {
  color: var(--b-text-strong);
  font-family: var(--b-font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.b-card h3 {
  color: var(--b-text);
  font-family: var(--b-font-head);
  font-size: 1rem;
  font-weight: 600;
}

.b-stats {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}

.b-stat {
  padding: 18px;
  background: var(--b-panel);
  border: 1px solid var(--b-line);
  border-radius: var(--b-radius-sm);
}

.b-stat-label {
  margin-bottom: 8px;
  color: var(--b-text-faint);
  font-family: var(--b-font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.b-stat-value {
  color: var(--b-text-strong);
  font-family: var(--b-font-display);
  font-size: 1.8rem;
  font-weight: 800;
}

.b-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-family: var(--b-font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  white-space: nowrap;
  border-radius: 100px;
}

.b-pill-active,
.b-pill-ok {
  color: var(--b-ok);
  background: rgba(var(--b-ok-rgb),.1);
  border: 1px solid rgba(var(--b-ok-rgb),.25);
}

.b-pill-warn {
  color: var(--b-warn);
  background: rgba(var(--b-warn-rgb),.1);
  border: 1px solid rgba(var(--b-warn-rgb),.25);
}

.b-pill-danger {
  color: var(--b-danger);
  background: rgba(var(--b-blue-rgb),.1);
  border: 1px solid rgba(var(--b-blue-rgb),.25);
}

.b-pill-dim {
  color: var(--b-text-dim);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--b-line);
}

.b-badge-app {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  color: var(--b-cyan);
  font-family: var(--b-font-head);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: middle;
  background: rgba(var(--b-cyan-rgb),.1);
  border: 1px solid rgba(var(--b-cyan-rgb),.25);
  border-radius: 100px;
  gap: 4px;
}

.b-badge-app svg {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
}

.b-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 40px 24px;
  text-align: center;
  gap: 16px;
}

.b-empty h1 {
  margin-bottom: 0;
  color: var(--b-line-strong);
  font-family: var(--b-font-display);
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}

.b-empty p {
  max-width: 340px;
  color: var(--b-text-dim);
  font-size: 1rem;
  line-height: 1.65;
}

.b-footer {
  width: 100%;
  padding: 22px 36px;
  border-top: 1px solid var(--b-line);
  position: relative;
  z-index: 2;
}

.b-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  gap: 14px;
  color: var(--b-text-faint);
  font-size: .82rem;
}

.b-footer-links {
  display: flex;
  gap: 18px;
}

.b-footer-links a {
  color: var(--b-text-faint);
  transition: color .15s ease;
}

.b-footer-links a:hover {
  color: var(--b-text-dim);
}

.b-hero-home {
  padding: 8px 0 24px;
}

.b-hero-home-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 56px;
}

.b-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 18px;
}

.b-hero-copy h1 {
  color: var(--b-text-strong);
  font-family: var(--b-font-display);
  font-size: clamp(2.1rem,4.4vw,3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.b-hero-copy h1 span {
  color: var(--b-cyan);
}

.b-hero-copy p {
  max-width: 480px;
  color: var(--b-text-dim);
  font-size: 1.05rem;
  line-height: 1.65;
}

.b-hero-inline-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6px;
  gap: 28px;
}

.b-hero-inline-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.b-hero-inline-stat strong {
  color: var(--b-text-strong);
  font-family: var(--b-font-display);
  font-size: 1.4rem;
  font-weight: 800;
}

.b-hero-inline-stat span {
  color: var(--b-text-faint);
  font-family: var(--b-font-head);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.b-hero-panel {
  position: relative;
  padding: 22px;
  background: rgba(10,10,10,.7);
  border: 1px solid var(--b-line-strong);
  border-radius: var(--b-radius);
  box-shadow: var(--b-shadow);
  overflow: hidden;
}

.b-hero-panel-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  z-index: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle,rgba(var(--b-blue-rgb),.35),transparent 70%);
  pointer-events: none;
}

.b-hero-panel-head {
  display: flex;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--b-line);
  position: relative;
  z-index: 1;
  gap: 7px;
}

.b-hero-panel-dot {
  width: 9px;
  height: 9px;
  background: var(--b-line-strong);
  border-radius: 50%;
}

.b-hero-panel-dot:nth-child(1) {
  background: var(--b-blue);
}

.b-hero-panel-dot:nth-child(2) {
  background: var(--b-warn);
}

.b-hero-panel-dot:nth-child(3) {
  background: var(--b-ok);
}

.b-hero-panel-title {
  margin-left: 8px;
  color: var(--b-text-faint);
  font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size: .78rem;
}

.b-hero-panel-body {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  gap: 12px;
}

.b-hero-panel-label {
  color: var(--b-text-faint);
  font-family: var(--b-font-head);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.b-hero-platforms {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6px;
  gap: 8px;
}

.b-hero-platform {
  padding: 6px 12px;
  color: var(--b-text);
  font-family: var(--b-font-head);
  font-size: .8rem;
  font-weight: 600;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--b-line);
  border-radius: 100px;
}

.b-hero-panel-langs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.b-hero-lang-row {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--b-text);
  font-size: .86rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--b-line);
  border-radius: var(--b-radius-sm);
  gap: 10px;
}

.b-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.b-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
  gap: 12px;
}

.b-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 16px;
  gap: 32px;
}

.b-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  gap: 10px;
}

.b-section-head h2 {
  color: var(--b-text-strong);
  font-family: var(--b-font-display);
  font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 800;
}

.b-section-head p {
  color: var(--b-text-dim);
  font-size: .98rem;
  line-height: 1.6;
}

.b-features {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.b-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--b-blue);
  background: var(--b-blue2);
  border: 1px solid rgba(var(--b-blue-rgb),.3);
  border-radius: var(--b-radius-sm);
}

.b-network-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 24px;
}

.b-network-stats {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  width: 100%;
  max-width: 900px;
  gap: 16px;
}

.b-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 24px;
  text-align: center;
  background: linear-gradient(160deg,rgba(var(--b-blue-rgb),.1),rgba(255,255,255,.02));
  border: 1px solid var(--b-line-strong);
  border-radius: var(--b-radius);
  gap: 16px;
}

.b-cta h2 {
  color: var(--b-text-strong);
  font-family: var(--b-font-display);
  font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 800;
}

.b-cta p {
  max-width: 480px;
  color: var(--b-text-dim);
  font-size: 1rem;
}

.b-tools-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.b-tool-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--b-panel);
  border: 1px solid var(--b-line);
  border-radius: var(--b-radius);
  gap: 14px;
  transition: .2s;
  position: relative;
  overflow: hidden;
}

.b-tool-card.is-active {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.b-tool-card.is-active:hover {
  transform: translateY(-3px);
  border-color: var(--b-line-strong);
  background: var(--b-panel-2);
  box-shadow: var(--b-shadow);
}

.b-tool-card.is-soon {
  opacity: .62;
}

.b-tool-card.is-soon::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.b-tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--b-blue);
  background: var(--b-blue2);
  border: 1px solid rgba(var(--b-blue-rgb),.3);
  border-radius: var(--b-radius-sm);
}

.b-tool-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--b-text-strong);
  font-family: var(--b-font-display);
  font-size: 1.08rem;
  font-weight: 700;
}

.b-tool-card p {
  color: var(--b-text-dim);
  font-size: .92rem;
  line-height: 1.6;
  flex: 1 0 auto;
}

.b-tool-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.b-tool-arrow {
  color: var(--b-cyan);
  font-family: var(--b-font-head);
  font-size: .84rem;
  font-weight: 600;
}

.b-flag {
  display: inline-block;
  flex-shrink: 0;
  width: 22px;
  height: 16px;
  object-fit: cover;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--b-line);
  border-radius: 3px;
}

.b-flag-lg {
  display: block;
  flex-shrink: 0;
  width: 52px;
  height: 36px;
  object-fit: cover;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  box-shadow: var(--b-shadow);
}

.b-about {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 48px;
}

.b-about-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.b-about-text h2 {
  color: var(--b-text-strong);
  font-family: var(--b-font-display);
  font-size: clamp(1.5rem,3vw,2.1rem);
  font-weight: 800;
  line-height: 1.15;
}

.b-about-text p {
  color: var(--b-text-dim);
  font-size: .98rem;
  line-height: 1.7;
}

.b-about-list {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  gap: 10px;
  list-style: none;
}

.b-about-list li {
  position: relative;
  padding-left: 22px;
  color: var(--b-text);
  font-size: .94rem;
}

.b-about-list li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--b-blue);
  border-radius: 50%;
}

.b-about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  background: var(--b-panel);
  border: 1px solid var(--b-line);
  border-radius: var(--b-radius);
  gap: 8px;
}

.b-about-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.b-about-connector {
  width: 2px;
  height: 40px;
  margin: 4px 0;
  background: linear-gradient(180deg,var(--b-blue),var(--b-cyan));
  opacity: .5;
}

.b-callout {
  display: flex;
  align-items: flex-start;
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--b-panel);
  border: 1px solid var(--b-line);
  border-radius: var(--b-radius);
  gap: 16px;
}

.b-callout-icon {
  display: inline-flex;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--b-cyan);
  background: rgba(var(--b-cyan-rgb),.1);
  border: 1px solid rgba(var(--b-cyan-rgb),.25);
  border-radius: var(--b-radius-sm);
}

.b-callout-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.b-callout-body h3 {
  color: var(--b-text-strong);
  font-family: var(--b-font-display);
  font-size: 1.02rem;
  font-weight: 700;
}

.b-callout-body p {
  color: var(--b-text-dim);
  font-size: .92rem;
  line-height: 1.65;
}

.b-site-card {
  gap: 12px;
}

.b-site-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.b-site-features {
  display: flex;
  flex-direction: column;
  margin: 2px 0;
  gap: 7px;
  list-style: none;
}

.b-site-features li {
  position: relative;
  padding-left: 16px;
  color: var(--b-text-dim);
  font-size: .86rem;
}

.b-site-features li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--b-cyan);
  border-radius: 50%;
}

.b-flag-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 16px;
  color: var(--b-text-faint);
  font-size: .68rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--b-line);
  border-radius: 3px;
}

.b-langdd {
  position: relative;
}

.b-langdd-toggle {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  color: var(--b-text);
  font-family: var(--b-font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--b-line);
  border-radius: var(--b-radius-sm);
  gap: 8px;
  transition: .15s;
}

.b-langdd-toggle:hover {
  color: var(--b-text-strong);
  background: rgba(255,255,255,.07);
  border-color: var(--b-line-strong);
}

.b-langdd-toggle svg {
  flex-shrink: 0;
  color: var(--b-text-faint);
  transition: transform .18s ease;
}

.b-langdd.is-open .b-langdd-toggle svg {
  transform: rotate(180deg);
}

.b-langdd-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  min-width: 168px;
  padding: 6px;
  background: rgba(10,10,10,.98);
  border: 1px solid var(--b-line-strong);
  border-radius: var(--b-radius-sm);
  box-shadow: var(--b-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  gap: 2px;
}

.b-langdd.is-open .b-langdd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.b-langdd-item {
  display: flex;
  align-items: center;
  padding: 9px 10px;
  color: var(--b-text-dim);
  font-family: var(--b-font-head);
  font-size: .86rem;
  font-weight: 500;
  border-radius: 6px;
  gap: 10px;
  transition: .12s;
}

.b-langdd-item:hover {
  color: var(--b-text-strong);
  background: rgba(255,255,255,.06);
}

.b-langdd-item.is-active {
  color: var(--b-text-strong);
  background: rgba(var(--b-blue-rgb),.12);
}

@media (max-width: 940px) {
  :root {
    --b-topbar-height: 70px;
  }

  .b-topbar-inner {
    padding: 0 14px;
  }

  .b-hero-home-inner {
    grid-template-columns: minmax(0,1fr);
    gap: 32px;
  }

  .b-hero-copy {
    align-items: center;
    text-align: center;
  }

  .b-hero-copy p {
    max-width: 560px;
  }

  .b-hero-actions {
    justify-content: center;
  }

  .b-hero-inline-stats {
    justify-content: center;
  }

  .b-main {
    min-height: calc(100vh - var(--b-topbar-height));
    padding: var(--b-topbar-height) 16px 36px;
  }

  .b-main-centered {
    min-height: calc(100vh - var(--b-topbar-height));
    padding: 28px 16px;
    padding-top: var(--b-topbar-height) !important;
  }

  .b-footer {
    padding: 18px 16px;
  }

  .b-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .b-stats,
  .b-features,
  .b-network-stats,
  .b-tools-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 520px) {
  .b-brand-name {
    font-size: .82rem;
  }

  .b-stats,
  .b-features,
  .b-network-stats,
  .b-tools-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .b-empty h1 {
    font-size: 3.6rem;
  }

  .b-langdd-toggle span {
    display: none;
  }

  .b-about {
    grid-template-columns: minmax(0,1fr);
    gap: 28px;
  }

  .b-about-visual {
    flex-direction: row;
    justify-content: center;
  }

  .b-about-connector {
    width: 40px;
    height: 2px;
    margin: 0 4px;
  }

  .b-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}