/* =========================================================
   Aube Research & Analytics — Component styles
   ========================================================= */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.75rem 1.25rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px) scale(1.015);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}
.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover svg:last-child {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--accent);
  color: #06090b;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 8px 20px -8px rgba(61, 220, 151, 0.45);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 10px 26px -6px rgba(61, 220, 151, 0.55);
}

.btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.01);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-lg {
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
}
.btn-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.85rem;
  color: var(--accent);
  transition: gap 0.2s ease;
}
.text-link:hover {
  gap: 0.625rem;
}
.text-link svg {
  width: 1rem;
  height: 1rem;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}

/* Stronger frosted glass than the generic .glass utility — the navbar sits over
   scrolling content and needs to stay legible at all times. */
.navbar.glass {
  background: rgba(6, 9, 11, 0.82);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset, 0 12px 30px -18px rgba(0, 0, 0, 0.6);
}

.navbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar__logo-link {
  display: inline-flex;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-item__trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-radius: 0.375rem;
  transition: color 0.2s ease;
}
.nav-item__trigger:hover,
.nav-item.is-open .nav-item__trigger {
  color: var(--text);
}
.nav-item__trigger svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s ease;
}
.nav-item.is-open .nav-item__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  pointer-events: none;
}
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown__inner {
  border-radius: 0.75rem;
  padding: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.nav-dropdown__item {
  display: block;
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  transition: background-color 0.2s ease;
}
.nav-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.nav-dropdown__item-title {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}
.nav-dropdown__item-desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.125rem;
}

.navbar__actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.navbar__login {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  transition: color 0.2s ease;
}
.navbar__login:hover {
  color: var(--text);
}

.navbar__toggle {
  display: inline-flex;
  color: var(--text);
  padding: 0.5rem;
}
.navbar__toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.navbar__mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.navbar.is-mobile-open .navbar__mobile {
  display: block;
}

.navbar__mobile-inner {
  padding: 1rem var(--gutter) 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.navbar__mobile-link {
  padding: 0.625rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.navbar__mobile-link:hover {
  color: var(--text);
}

.navbar__mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

.navbar__mobile-cta {
  margin-top: 0.5rem;
  justify-content: center;
  padding: 0.75rem;
}

@media (min-width: 1024px) {
  .navbar__links {
    display: flex;
  }
  .navbar__actions {
    display: flex;
  }
  .navbar__toggle {
    display: none;
  }
  .navbar__mobile {
    display: none !important;
  }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.logo__mark {
  flex-shrink: 0;
}
.logo__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
}
.logo__sub {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 0.125rem;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--panel);
}
.footer__inner {
  padding-block: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.footer__brand {
  grid-column: span 2;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
  margin-top: 1rem;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer__social-link:hover {
  color: var(--accent);
  border-color: var(--accent-line);
}
.footer__social-link svg {
  width: 1rem;
  height: 1rem;
}
.footer__col-title {
  margin-bottom: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: var(--text);
}
.footer__bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted-dim);
}
.footer__legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__legal a:hover {
  color: var(--muted);
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .footer__bottom {
    flex-direction: row;
  }
}

/* ---------- Cards ---------- */
.card {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: rgba(16, 23, 26, 0.3);
  padding: 1.5rem;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.card--link:hover,
.card--interactive:hover {
  border-color: var(--accent-line);
}
.card--muted-hover:hover {
  border-color: var(--accent-line);
  background: rgba(16, 23, 26, 0.5);
}

.icon-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(61, 220, 151, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.icon-badge svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover .icon-badge svg,
.icon-badge:hover svg {
  animation: icon-pulse 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.icon-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}
.icon-badge--lg {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}
.icon-badge--lg svg {
  width: 1.5rem;
  height: 1.5rem;
}
.icon-badge--neutral {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
}
.icon-badge--neutral svg {
  color: var(--muted);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: rgba(16, 23, 26, 0.4);
  padding: 1.25rem;
}
.stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1;
}
.stat-card__label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.375rem;
  line-height: 1.3;
}
.stat-card__value--text {
  font-size: 1.05rem;
  line-height: 1.25;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}
.card-title-row svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted-dim);
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.card--link:hover .card-title-row svg {
  color: var(--accent);
}

/* ---------- Forms ---------- */
.field {
  display: flex;
  flex-direction: column;
}
.field__label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.field__input,
.field__textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.field__input::placeholder,
.field__textarea::placeholder {
  color: var(--muted-dim);
}
.field__input:focus,
.field__textarea:focus {
  border-color: rgba(61, 220, 151, 0.4);
  outline: none;
}
select.field__input {
  background: rgba(10, 14, 16, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  color-scheme: dark;
  cursor: pointer;
}
select.field__input option {
  background-color: #0a0e10;
  color: #edf2f1;
}
.field__textarea {
  resize: none;
}
.field-row {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Cursor spotlight (very soft, follows pointer) ---------- */
.cursor-spotlight {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    600px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(61, 220, 151, 0.06),
    rgba(61, 220, 151, 0.02) 35%,
    transparent 60%
  );
}
.cursor-spotlight.is-active {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce), (hover: none) {
  .cursor-spotlight {
    display: none;
  }
}

/* ---------- Form success / error states ---------- */
.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success .icon-badge svg {
  color: var(--accent);
}
.form-success p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  max-width: 380px;
  margin-inline: auto;
}
.form-error {
  font-size: 0.8rem;
  color: #f87171;
  margin-top: -0.5rem;
}

/* ---------- Page header ---------- */
.page-header {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header__inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
}
.page-header__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 1.25rem;
  max-width: 760px;
  margin-inline: auto;
}
.page-header__desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 1.25rem;
  max-width: 560px;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .page-header__title {
    font-size: 2.8rem;
  }
  .page-header__inner {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding-block: 1rem;
  font-size: 0.8rem;
  color: var(--muted-dim);
}
.breadcrumbs a {
  color: var(--muted);
  transition: color 0.2s ease;
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.breadcrumbs__sep {
  margin: 0 0.5rem;
  color: var(--muted-dim);
}

/* ---------- Section heading patterns ---------- */
.section-head {
  max-width: 600px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}

/* ---------- Workspace preview widget ---------- */
.workspace {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-strong);
}
.workspace__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}
.workspace__dots {
  display: flex;
  gap: 0.375rem;
}
.workspace__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.workspace__path {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-left: 0.5rem;
}
.workspace__user {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted-dim);
}
.dot-live {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}
.workspace__body {
  display: flex;
}
.workspace__sidebar {
  display: none;
  width: 210px;
  flex-shrink: 0;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.75rem;
  border-right: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.1);
}
.workspace__sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.workspace__sidebar-item svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}
.workspace__sidebar-item.is-active {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(61, 220, 151, 0.2);
}
.workspace__main {
  flex: 1;
  min-width: 0;
  padding: 1.25rem;
}
.workspace__main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.workspace__main-head h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.workspace__main-head span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted-dim);
}
.workspace__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.workspace__tile {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.75rem 0.875rem;
}
.workspace__tile-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted-dim);
  margin-bottom: 0.25rem;
}
.workspace__tile-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
}
.workspace__table {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.workspace__table-head,
.workspace__table-row {
  display: grid;
  grid-template-columns: 70px 1fr 100px 84px;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0.875rem;
}
.workspace__table-head {
  background: rgba(0, 0, 0, 0.25);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.workspace__table-row {
  border-top: 1px solid var(--border);
  transition: background-color 0.2s ease;
}
.workspace__table-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.workspace__case {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted-dim);
}
.workspace__title-cell {
  min-width: 0;
}
.workspace__title-cell div:first-child {
  font-size: 0.76rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.workspace__title-cell div:last-child {
  font-size: 0.68rem;
  color: var(--muted-dim);
}
.workspace__cpc {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--muted);
}
.workspace__status {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  padding: 0.25rem 0.375rem;
  border-radius: 0.25rem;
  border: 1px solid;
  text-align: center;
}
.status-review {
  color: #fcd34d;
  background: rgba(252, 211, 77, 0.1);
  border-color: rgba(252, 211, 77, 0.25);
}
.status-classified {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: rgba(61, 220, 151, 0.25);
}
.status-qa {
  color: #7dd3fc;
  background: rgba(125, 211, 252, 0.1);
  border-color: rgba(125, 211, 252, 0.25);
}
.workspace__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.workspace__col-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.625rem;
}
.cluster-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.cluster-row span:first-child {
  font-size: 0.72rem;
  color: var(--muted);
  width: 112px;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bar-track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: rgba(61, 220, 151, 0.7);
}
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  margin-bottom: 0.625rem;
}
.summary-row span:last-child {
  font-family: var(--font-mono);
}

@media (min-width: 640px) {
  .workspace__user {
    display: flex;
  }
}
@media (min-width: 768px) {
  .workspace__sidebar {
    display: flex;
  }
}

/* ---------- Hero visual (SVG node diagram) ---------- */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1rem;
}
.hero-visual__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: radial-gradient(ellipse 48% 48% at 50% 50%, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 48% 48% at 50% 50%, black 55%, transparent 100%);
}
.hero-visual__nodes {
  position: relative;
  width: 100%;
  height: 100%;
}
.node-card {
  position: absolute;
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  width: 168px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.node-card.is-active {
  opacity: 1;
  transform: scale(1);
  animation: node-pulse-ring 1.1s ease-out;
}
.node-card__code {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--accent);
}
.node-card__label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.125rem;
}
.node-card--1 {
  top: 6%;
  left: 8%;
}
.node-card--2 {
  top: 2%;
  right: 4%;
}
.node-card--3 {
  top: 42%;
  right: 2%;
}
.node-card--4 {
  bottom: 22%;
  left: 2%;
}
.node-card--5 {
  bottom: 10%;
  left: 16%;
}
.node-card--6 {
  bottom: 6%;
  right: 12%;
}

/* Radar sweep + discovery lines */
.radar-sweep {
  transform-origin: 0 0;
  animation: radar-spin 6.5s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .radar-sweep {
    animation: none;
  }
}
.claim-map-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 268px;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.claim-map-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.claim-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.claim-row span:last-child {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted-dim);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}
.claim-map-card__footer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted-dim);
}

@media (min-width: 480px) {
  .node-card--3 {
    right: 3%;
  }
}
