/* ═══════════════════════════════════════════════════════════════
   CYBER REPORT — libreria condivisa
   Estetica standard per TUTTI i report TheBlackGoat.
   Glass card su dark · Neon teal · Terminal readout.

   Uso:
     <link rel="stylesheet" href="{{ url_for('static', filename='css/cyber-report.css') }}">
     <div class="rp-grid">
       <div class="rp-hero-card cyber"><div class="scanline"></div> ... </div>
       <div class="card cyber"> ... </div>
     </div>
   ═══════════════════════════════════════════════════════════════ */

/* ── Palette locale ──────────────────────────────────────────── */
.rp-grid {
  display: grid;
  gap: var(--space-6);
  --neon:        #5eead4;
  --neon-dim:    #2dd4bf;
  --cyan:        #22d3ee;
  --gold:        #fcd34d;
  --glass-bg:    rgba(10, 16, 30, 0.72);
  --glass-bd:    rgba(94, 234, 212, 0.18);
  --glass-bd-hi: rgba(94, 234, 212, 0.45);
  --on:          #e2e8f0;
  --on-mute:     #94a3b8;
  --on-dim:      #64748b;
}

/* ── Card base cyber ────────────────────────────────────────── */
.rp-grid > .cyber {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-lg);
  color: var(--on);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  animation: rp-in 380ms cubic-bezier(0.2, 0.9, 0.25, 1) forwards;
}
.rp-grid > .cyber:nth-child(1) { animation-delay: 0ms; }
.rp-grid > .cyber:nth-child(2) { animation-delay: 70ms; }
.rp-grid > .cyber:nth-child(3) { animation-delay: 140ms; }
.rp-grid > .cyber:nth-child(4) { animation-delay: 210ms; }
.rp-grid > .cyber:nth-child(5) { animation-delay: 280ms; }
.rp-grid > .cyber:nth-child(6) { animation-delay: 350ms; }
.rp-grid > .cyber:nth-child(7) { animation-delay: 420ms; }
.rp-grid > .cyber:nth-child(8) { animation-delay: 490ms; }
@keyframes rp-in { to { opacity: 1; transform: translateY(0); } }

/* Corner brackets (angoli neon) */
.rp-grid > .cyber::before,
.rp-grid > .cyber::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--neon);
  opacity: 0.55;
  pointer-events: none;
}
.rp-grid > .cyber::before {
  top: 10px; left: 10px;
  border-right: 0; border-bottom: 0;
}
.rp-grid > .cyber::after {
  bottom: 10px; right: 10px;
  border-left: 0; border-top: 0;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.rp-hero-card {
  padding: var(--space-10) var(--space-8) var(--space-6);
}
.rp-hero-card::before, .rp-hero-card::after { display: none; }

.rp-hero-card .scanline {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--neon) 25%, var(--cyan) 50%, var(--gold) 75%, transparent 100%);
  box-shadow: 0 0 12px var(--neon);
  animation: hero-scan 4s linear infinite;
}
@keyframes hero-scan {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(300px); opacity: 0.3; }
}

.rp-hero-overline {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: var(--weight-semibold);
  display: flex; align-items: center; gap: var(--space-2);
  margin-bottom: var(--space-3);
  text-shadow: 0 0 8px rgba(94, 234, 212, 0.45);
}
.rp-hero-overline::before {
  content: ">";
  color: var(--gold);
  font-weight: var(--weight-bold);
}

.rp-hero-title {
  font-family: var(--font-mono);
  font-size: clamp(var(--text-3xl), 4.2vw, 44px);
  font-weight: var(--weight-bold);
  color: #f1f5f9;
  letter-spacing: -0.5px;
  line-height: 1;
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-shadow: 0 0 24px rgba(94, 234, 212, 0.25);
  word-break: break-word;
}
.rp-hero-title .rp-flag {
  font-size: 0.85em; line-height: 1;
  filter: drop-shadow(0 0 10px rgba(94, 234, 212, 0.3));
}

.rp-hero-badges { display: flex; gap: var(--space-2); flex-wrap: wrap; }

/* ── Badge cyber ─────────────────────────────────────────────── */
.badge-cy {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  background: rgba(94, 234, 212, 0.08);
  border: 1px solid var(--glass-bd);
  color: var(--neon);
}
.badge-cy.warn {
  background: rgba(252, 211, 77, 0.08);
  border-color: rgba(252, 211, 77, 0.35);
  color: var(--gold);
}
.badge-cy.off {
  background: rgba(100, 116, 139, 0.08);
  border-color: rgba(100, 116, 139, 0.3);
  color: var(--on-mute);
}
.badge-cy.danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

/* ── Pulse dot ──────────────────────────────────────────────── */
.rp-dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  vertical-align: middle;
}
.rp-dot.ok {
  background: var(--neon);
  box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.6);
  animation: rp-pulse 1.8s infinite;
}
.rp-dot.off { background: var(--on-dim); }
@keyframes rp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(94, 234, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0); }
}

/* ── Toolbar ─────────────────────────────────────────────────── */
.rp-toolbar {
  display: flex; gap: var(--space-2); flex-wrap: wrap;
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px dashed var(--glass-bd);
}

/* ── Button cyber ────────────────────────────────────────────── */
.btn-cy {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: rgba(94, 234, 212, 0.08);
  color: var(--neon);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 120ms;
}
.btn-cy:hover {
  background: rgba(94, 234, 212, 0.18);
  color: #ccfbf1;
  border-color: var(--glass-bd-hi);
  box-shadow: 0 0 12px rgba(94, 234, 212, 0.2);
}
.btn-cy.primary {
  background: rgba(94, 234, 212, 0.18);
  border-color: var(--neon);
  color: #ccfbf1;
}
.btn-cy.primary:hover {
  background: rgba(94, 234, 212, 0.3);
  box-shadow: 0 0 18px rgba(94, 234, 212, 0.35);
}
.btn-cy.danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}
.btn-cy.danger:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}

/* ── Section header uniforme ─────────────────────────────────── */
.sec-header {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--glass-bd);
  background: rgba(94, 234, 212, 0.04);
  font-family: var(--font-mono);
}
.sec-header .sec-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(94, 234, 212, 0.12);
  color: var(--neon);
  border: 1px solid var(--glass-bd);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.sec-header h2 {
  margin: 0;
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: #f1f5f9;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sec-header small { color: var(--on-mute); font-size: 10.5px; letter-spacing: 0.5px; }
.sec-header .sec-count {
  margin-left: auto;
  font-family: var(--font-mono);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  background: rgba(94, 234, 212, 0.12);
  color: var(--neon);
  border: 1px solid var(--glass-bd);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
}
.sec-body { padding: var(--space-5); }

/* ── Stats grid (terminal readout) ───────────────────────────── */
.rp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
}
.rp-stat {
  background: rgba(10, 16, 30, 0.5);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  display: flex; align-items: flex-start; gap: var(--space-3);
  position: relative;
  transition: all 160ms;
  overflow: hidden;
}
.rp-stat::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: opacity 140ms;
}
.rp-stat:hover {
  border-color: var(--glass-bd-hi);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(94, 234, 212, 0.12);
}
.rp-stat:hover::before { opacity: 1; }
.rp-stat .stat-icon {
  width: 34px; height: 34px; min-width: 34px;
  border-radius: var(--radius-sm);
  background: rgba(94, 234, 212, 0.1);
  color: var(--neon);
  border: 1px solid var(--glass-bd);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.rp-stat .stat-body { flex: 1; min-width: 0; }
.rp-stat .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--on-mute);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: var(--weight-semibold);
  margin-bottom: 3px;
}
.rp-stat .lbl::before { content: "> "; color: var(--gold); }
.rp-stat .val {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: #f1f5f9;
  font-weight: var(--weight-semibold);
  word-break: break-word;
  line-height: 1.4;
}
.rp-stat .val small { color: var(--on-mute); font-weight: var(--weight-regular); }
.rp-stat .val .badge-cy { font-size: 10px; padding: 2px 8px; }

/* ── Module/platform grid ────────────────────────────────────── */
.plat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-3);
}
.plat-card {
  background: rgba(10, 16, 30, 0.55);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-2);
  position: relative;
  overflow: hidden;
  transition: all 180ms;
}
.plat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pc-color, var(--neon));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms;
}
.plat-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--pc-color, var(--neon)),
    0 0 20px rgba(94, 234, 212, 0.18);
}
.plat-card:hover::before { transform: scaleX(1); }

.plat-card .pc-head {
  display: flex; align-items: center; gap: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px dashed var(--glass-bd);
}
.plat-card .pc-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-bd);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px var(--pc-color, var(--neon)));
}
.plat-card .pc-titles { flex: 1; min-width: 0; }
.plat-card .pc-name {
  font-family: var(--font-mono);
  font-weight: var(--weight-semibold);
  color: #f1f5f9;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.2;
}
.plat-card .pc-cat {
  font-size: 10px;
  color: var(--on-mute);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  font-family: var(--font-mono);
}
.plat-card .pc-trust {
  color: var(--neon);
  font-size: 14px;
  filter: drop-shadow(0 0 6px rgba(94, 234, 212, 0.5));
}
.plat-card .pc-found {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: #ccfbf1;
  background: rgba(94, 234, 212, 0.1);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-bd);
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.plat-card .pc-about {
  font-size: var(--text-sm);
  color: var(--on-mute);
  font-style: italic;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--glass-bd);
}
.plat-card .pc-extras {
  display: grid; gap: 4px;
  font-size: var(--text-sm);
}
.plat-card .pc-extras .row {
  display: flex; gap: var(--space-2);
}
.plat-card .pc-extras .k {
  color: var(--on-mute);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  min-width: 82px;
  font-weight: var(--weight-semibold);
  font-family: var(--font-mono);
}
.plat-card .pc-extras .v {
  color: #f1f5f9;
  font-weight: var(--weight-medium);
  word-break: break-word;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
}

/* ── Key-value list (terminal) ──────────────────────────────── */
.cy-kv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.cy-kv .kv-row {
  display: grid;
  grid-template-columns: minmax(110px, 190px) 1fr;
  gap: var(--space-3);
  padding: 6px 0;
  border-bottom: 1px dashed var(--glass-bd);
  align-items: start;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
}
.cy-kv .kv-row:last-child { border-bottom: none; }
.cy-kv .kv-k {
  color: var(--neon);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: 0.8px;
  padding-top: 2px;
}
.cy-kv .kv-k::before { content: "› "; color: var(--gold); }
.cy-kv .kv-v {
  color: #f1f5f9;
  font-weight: var(--weight-medium);
  word-break: break-word;
  font-size: var(--text-xs);
}
@media (max-width: 620px) {
  .cy-kv .kv-row { grid-template-columns: 1fr; gap: 2px; }
}

/* ── Link cards ─────────────────────────────────────────────── */
.link-card {
  display: block;
  padding: var(--space-3);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
  text-decoration: none;
  transition: all 160ms;
  color: inherit;
  position: relative;
}
.link-card:last-child { margin-bottom: 0; }
.link-card:hover {
  border-color: var(--glass-bd-hi);
  background: rgba(94, 234, 212, 0.06);
  transform: translateX(3px);
  box-shadow: -3px 0 0 var(--neon), 0 4px 16px rgba(94, 234, 212, 0.18);
}
.link-card .lc-title {
  font-weight: var(--weight-semibold);
  color: #f1f5f9;
  font-size: var(--text-sm);
  margin-bottom: 3px;
  line-height: 1.3;
}
.link-card .lc-url {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--cyan);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.link-card .lc-url::before { content: "↳ "; color: var(--gold); }
.link-card .lc-excerpt {
  font-size: var(--text-sm);
  color: var(--on-mute);
  line-height: 1.5;
  margin-top: var(--space-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.link-card .lc-emails {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: var(--space-2);
}

/* ── Empty sources (pills compatte) ─────────────────────────── */
.rp-empty {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 10.5px;
}
.rp-empty .eitem {
  background: rgba(100, 116, 139, 0.1);
  border: 1px solid rgba(100, 116, 139, 0.25);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  color: var(--on-mute);
}
.rp-empty .eitem strong { color: #cbd5e1; }

/* ── Service link pill (brandizzata) ─────────────────────────── */
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px 3px 6px;
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: 999px;
  color: #cffafe !important;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none !important;
  transition: all 120ms;
  max-width: 100%;
  overflow: hidden;
}
.svc-link:hover {
  background: rgba(0, 217, 255, 0.18);
  border-color: #00d9ff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 217, 255, 0.2);
}
.svc-link .svc-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  font-size: 12px;
  flex-shrink: 0;
}
.svc-link .svc-lbl {
  font-weight: 600;
  color: #e5e7eb;
}
.svc-link .svc-tail {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #94a3b8;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 4px;
  border-left: 1px dashed rgba(148, 163, 184, 0.3);
  margin-left: 2px;
}

/* ── Thumbnail auto-embed per valori data:image / URL immagine ── */
.kv-img {
  display: inline-block;
  max-width: 160px;
  max-height: 160px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-bd);
  background: rgba(0, 0, 0, 0.3);
  vertical-align: middle;
  object-fit: cover;
}

/* ── Zoomable images (thumbnail → lightbox) ─────────────────── */
.rp-grid img:not(.no-zoom) {
  cursor: zoom-in;
  transition: filter 120ms, transform 120ms;
}
.rp-grid img:not(.no-zoom):hover {
  filter: brightness(1.08);
}

/* Lightbox overlay */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 8, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  animation: lb-in 160ms ease-out;
}
.lb-overlay[hidden] { display: none; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }

.lb-img {
  max-width: calc(100vw - 80px);
  max-height: calc(100vh - 120px);
  border-radius: var(--radius-md);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(94, 234, 212, 0.2),
    0 0 60px rgba(94, 234, 212, 0.15);
  cursor: zoom-out;
  user-select: none;
  transition: transform 180ms cubic-bezier(0.2, 0.9, 0.25, 1);
  animation: lb-pop 220ms cubic-bezier(0.2, 0.9, 0.25, 1);
}
@keyframes lb-pop {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-img.zoomed { cursor: zoom-in; transform: scale(1.6); }

.lb-close {
  position: fixed;
  top: calc(var(--topbar-h) + 16px);
  right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10, 16, 30, 0.85);
  border: 1px solid rgba(94, 234, 212, 0.35);
  color: var(--neon);
  font-size: 22px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: all 140ms;
}
.lb-close:hover {
  background: rgba(94, 234, 212, 0.2);
  border-color: var(--neon);
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(94, 234, 212, 0.35);
}

.lb-hint {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--on-mute);
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(10, 16, 30, 0.7);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-bd);
}
.lb-hint kbd {
  background: rgba(94, 234, 212, 0.15);
  color: var(--neon);
  padding: 1px 6px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 10px;
  border: 1px solid var(--glass-bd);
}

/* ── Workspace save form ─────────────────────────────────────── */
.ws-grid {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .ws-grid { grid-template-columns: 1fr 1fr; } }
.ws-grid .ws-sub {
  padding: var(--space-5);
  background: rgba(10, 16, 30, 0.5);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-md);
}
.ws-grid h3 {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  margin: 0 0 var(--space-3);
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex; align-items: center; gap: 8px;
}
.ws-grid .input-group { display: flex; gap: var(--space-2); }
.ws-grid .input-group input,
.ws-grid .input-group select {
  flex: 1;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--glass-bd);
  color: #f1f5f9;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  min-height: 40px;
}
.ws-grid .input-group input::placeholder { color: var(--on-dim); }
.ws-grid .input-group input:focus,
.ws-grid .input-group select:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 2px rgba(94, 234, 212, 0.15);
  outline: none;
}
.ws-grid .field-hint {
  font-family: var(--font-mono);
  color: var(--on-dim);
  font-size: 10.5px;
  margin-top: 6px;
}
.ws-grid .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--on-mute);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: block;
}
