/* Velaru Industrial Relay — global theme overlay (all product pages) */
:root {
  --ind-steel: #8b949e;
  --ind-amber: #f59e0b;
  --ind-hazard: #ef4444;
  --ind-grid: rgba(79, 209, 197, 0.06);
  --ind-glow: rgba(79, 209, 197, 0.35);
  --ind-panel: rgba(8, 11, 18, 0.92);
  --velaru-status-bar-height: 36px;
  --velaru-nav-sticky-height: 78px;
  --velaru-content-max: 1120px;
  --velaru-content-gutter: 20px;
}

html.industrial-active {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--velaru-status-bar-height) + var(--velaru-nav-sticky-height, 92px) + 16px);
}

html.industrial-active:has(body.funnel-calm) {
  scroll-padding-top: calc(var(--velaru-nav-sticky-height, 92px) + 12px);
}

body.industrial-active:not(.funnel-calm) {
  padding-top: var(--velaru-status-bar-height) !important;
}

/* ── Scanlines + grid ── */
.industrial-scanlines {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.45;
  mix-blend-mode: multiply;
}

.industrial-grid {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background-image:
    linear-gradient(var(--ind-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--ind-grid) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 20%, transparent 85%);
}

.industrial-vignette {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.industrial-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  opacity: 0.55;
}

.velaru-warm-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  font-size: 11px;
  color: #fde68a;
  background: rgba(251, 191, 36, 0.08);
  border-bottom: 1px solid rgba(251, 191, 36, 0.28);
  text-align: center;
  z-index: 120;
  position: relative;
}
.velaru-warm-banner button {
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: transparent;
  color: #fde68a;
  cursor: pointer;
}
.velaru-warm-banner button:hover {
  border-color: #fbbf24;
  color: #fff;
}

/* ── Status bar ── */
.industrial-status-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 36px;
  padding: 0 14px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ind-steel, #8b949e);
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.98), rgba(5, 7, 11, 0.88));
  border-bottom: 1px solid rgba(79, 209, 197, 0.22);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 0 40px rgba(79, 209, 197, 0.04);
  backdrop-filter: blur(12px);
}

.isb-left, .isb-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  min-width: 0;
}

#industrial-utc {
  max-width: min(320px, 42vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.isb-live { color: #34d399; font-weight: 600; }
.isb-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  margin-right: 6px;
  box-shadow: 0 0 8px #34d399;
  animation: indPulse 2s ease-in-out infinite;
}

.isb-sep { opacity: 0.35; }
.isb-marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.isb-marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: indMarquee 48s linear infinite;
  color: rgba(79, 209, 197, 0.75);
}

.isb-marquee-track span { color: var(--ind-amber, #f59e0b); }

.velaru-wire-banner {
  position: fixed;
  top: var(--ind-status-h, 28px);
  left: 0;
  right: 0;
  z-index: 9997;
  background: rgba(251, 191, 36, 0.12);
  border-bottom: 1px solid rgba(251, 191, 36, 0.35);
  padding: 6px 14px;
  font-size: 10px;
  line-height: 1.45;
}

.velaru-wire-banner-link {
  display: block;
  color: rgba(253, 230, 138, 0.95);
  text-decoration: none;
}

.velaru-wire-banner-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-right: 8px;
}

.velaru-wire-banner-link strong { color: #fff; font-weight: 600; }
.velaru-wire-banner-link em { font-style: normal; color: #4fd1c5; }

body.has-wire-banner .industrial-content,
body.has-wire-banner.funnel-surface > .wrap,
body.has-wire-banner.funnel-surface > .compliance-chrome {
  padding-top: 28px;
}

.badge-pending { background: rgba(148, 163, 184, 0.2); color: #94a3b8; }

#industrial-health.ok { color: #34d399; }
#industrial-health.warn { color: var(--ind-amber, #f59e0b); }

/* ── Language ribbon ── */
.industrial-lang-ribbon {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9995;
  height: 28px;
  overflow: hidden;
  background: rgba(5, 7, 11, 0.92);
  border-top: 1px solid rgba(129, 140, 248, 0.2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  color: rgba(129, 140, 248, 0.7);
  display: flex;
  align-items: center;
}

.industrial-lang-track {
  display: inline-flex;
  gap: 28px;
  padding-left: 100%;
  white-space: nowrap;
  animation: indLangScroll 120s linear infinite;
}

.industrial-lang-track em {
  font-style: normal;
  color: rgba(79, 209, 197, 0.5);
}

body.industrial-active { padding-bottom: 36px !important; }

/* ── Content frame ── */
.industrial-content {
  position: relative;
  z-index: 1;
}

.industrial-content::before,
.industrial-content::after {
  content: "";
  position: fixed;
  width: 24px;
  height: 24px;
  border-color: rgba(79, 209, 197, 0.35);
  border-style: solid;
  pointer-events: none;
  z-index: 9991;
  opacity: 0.6;
}

.industrial-content::before {
  top: 44px;
  left: 12px;
  border-width: 2px 0 0 2px;
}

.industrial-content::after {
  top: 44px;
  right: 12px;
  border-width: 2px 2px 0 0;
}

/* ── Nav (all pages — flex required or links run together) ── */
.velaru-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.velaru-nav a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  line-height: 1.2;
  font-size: 11px;
  color: #cbd5e1;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #1f2937;
  border-radius: 8px;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, transform 0.15s ease;
  touch-action: manipulation;
}

.velaru-nav a:active:not(.active) {
  transform: scale(0.98);
}

.velaru-nav a:hover {
  color: #4fd1c5;
  border-color: rgba(79, 209, 197, 0.35);
}

.velaru-nav a.active {
  color: #4fd1c5;
  border-color: rgba(79, 209, 197, 0.45);
  box-shadow: 0 0 16px rgba(79, 209, 197, 0.12);
}

/* ── Grouped nav shell ── */
.velaru-nav-shell {
  position: sticky;
  top: var(--velaru-status-bar-height, 36px);
  z-index: 9998;
  isolation: isolate;
  margin-bottom: 6px;
  padding: 6px 0 8px;
  background: rgba(3, 5, 8, 0.98);
  border-bottom: 1px solid rgba(79, 209, 197, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

body.funnel-calm .velaru-nav-shell {
  top: 0;
}

.velaru-nav-shell-inner {
  max-width: var(--velaru-content-max, 1120px);
  margin: 0 auto;
  padding: 0 var(--velaru-content-gutter, 20px);
}

.velaru-nav-primary {
  margin-bottom: 0;
}

.velaru-nav-shell .velaru-nav {
  margin-bottom: 0;
}

.velaru-nav-shell .velaru-nav-secondary {
  margin-top: 0;
}

/* ── Collapsible buyer drawer (hero-first first impression) ── */
.velaru-nav-buyer-wrap {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(79, 209, 197, 0.1);
}

.velaru-nav-buyer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(79, 209, 197, 0.14);
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  touch-action: manipulation;
}

.velaru-nav-buyer-wrap.has-active .velaru-nav-buyer-toggle {
  color: #4fd1c5;
  border-color: rgba(79, 209, 197, 0.35);
  box-shadow: 0 0 12px rgba(79, 209, 197, 0.1);
}

.velaru-nav-buyer-toggle:hover {
  color: #94a3b8;
  border-color: rgba(79, 209, 197, 0.28);
}

.velaru-nav-buyer-wrap.has-active .velaru-nav-buyer-toggle:hover {
  color: #4fd1c5;
}

.velaru-nav-buyer-wrap.is-open .velaru-nav-buyer-toggle {
  color: #4fd1c5;
  border-color: rgba(79, 209, 197, 0.32);
  box-shadow: 0 0 12px rgba(79, 209, 197, 0.08);
  margin-bottom: 6px;
}

.velaru-nav-buyer-chevron::after {
  content: "▾";
  color: #4fd1c5;
  font-size: 11px;
}

.velaru-nav-buyer-wrap.is-open .velaru-nav-buyer-chevron::after {
  content: "▴";
}

.velaru-nav-buyer-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: max-height 0.28s ease, opacity 0.2s ease, visibility 0.28s ease;
}

.velaru-nav-buyer-panel[hidden] {
  display: block;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
}

.velaru-nav-buyer-wrap.is-open .velaru-nav-buyer-panel {
  max-height: 42px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.velaru-nav-buyer-wrap.is-open .velaru-nav-buyer-panel[hidden] {
  max-height: 42px;
  opacity: 1;
  visibility: visible;
}

.velaru-nav-buyer-panel .velaru-nav-secondary {
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, black 6px, black calc(100% - 20px), transparent);
  padding-bottom: 2px;
  border-top: none;
  padding-top: 0;
  margin-bottom: 0 !important;
}

.velaru-nav-buyer-panel .velaru-nav-secondary::before {
  display: none;
}

.velaru-nav-buyer-panel .velaru-nav-secondary::-webkit-scrollbar {
  display: none;
}

.velaru-nav-buyer-panel .velaru-nav-secondary a {
  flex-shrink: 0;
  scroll-snap-align: start;
}

body.funnel-calm .wrap > .hero,
body.funnel-calm .wrap > section.hero {
  padding-top: 12px !important;
}

body.funnel-calm .velaru-nav-shell + .wrap {
  margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FIRST IMPRESSION RHYTHM — headline lands immediately below collapsed nav.
   Overrides per-page inline body/wrap padding on all funnel-calm surfaces.
   ═══════════════════════════════════════════════════════════════════════════ */
body.funnel-surface.funnel-calm {
  padding-top: 6px !important;
}

body.funnel-surface.funnel-calm .wrap,
body.funnel-surface.funnel-calm .content-shell {
  padding-top: 6px !important;
}

body.funnel-surface.funnel-calm .velaru-nav {
  margin-bottom: 0 !important;
}

body.funnel-surface.funnel-calm .velaru-nav-shell + h1,
body.funnel-surface.funnel-calm .velaru-nav-shell + .badge,
body.funnel-surface.funnel-calm .velaru-nav-shell + p.badge,
body.funnel-surface.funnel-calm .velaru-nav-shell + header,
body.funnel-surface.funnel-calm .velaru-nav-shell + .wrap,
body.funnel-surface.funnel-calm .velaru-nav-shell + .content-shell {
  margin-top: 0 !important;
}

body.funnel-surface.funnel-calm .velaru-nav-shell + header {
  padding-top: 0 !important;
  margin-bottom: 14px !important;
  padding-bottom: 14px !important;
}

body.funnel-surface.funnel-calm .wrap > .hero,
body.funnel-surface.funnel-calm .wrap > section.hero,
body.funnel-surface.funnel-calm .content-shell > h1:first-child {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.funnel-surface.funnel-calm h1:first-of-type {
  margin-top: 0;
}

body.funnel-surface.funnel-calm .hero-tag:first-child,
body.funnel-surface.funnel-calm .wrap > p:first-child {
  margin-top: 0;
}

.velaru-nav-secondary,
.velaru-nav-context {
  margin-bottom: 0;
  padding-top: 6px;
  border-top: 1px solid rgba(79, 209, 197, 0.1);
}

.velaru-nav-secondary::before,
.velaru-nav-context::before {
  content: attr(aria-label);
  display: block;
  width: 100%;
  flex-basis: 100%;
  pointer-events: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}

.velaru-nav-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
}

@media (max-width: 720px) {
  .velaru-nav-primary {
    gap: 4px;
  }
  .velaru-nav-primary a,
  .velaru-nav-secondary a {
    font-size: 10px;
    padding: 5px 8px;
  }
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  font-size: 11px;
  color: #cbd5e1;
  padding: 6px 12px;
  border: 1px solid #1f2937;
  border-radius: 8px;
  user-select: none;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: " ▾";
  font-size: 11px;
  opacity: 1;
  color: #4fd1c5;
}

.nav-dropdown summary {
  color: #cbd5e1;
}

.nav-dropdown[open] summary::after {
  content: " ▴";
}

.nav-dropdown summary:hover,
.nav-dropdown summary.active {
  color: #4fd1c5;
  border-color: rgba(79, 209, 197, 0.35);
}

.nav-dropdown summary.active {
  box-shadow: 0 0 16px rgba(79, 209, 197, 0.12);
}

.nav-dropdown-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(79, 209, 197, 0.28);
  border-radius: 10px;
  background: #0a0e14;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}

.nav-dropdown-panel a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 11px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.nav-dropdown-panel a:hover {
  color: #4fd1c5;
  border-color: rgba(79, 209, 197, 0.45);
  background: rgba(79, 209, 197, 0.08);
}

@media (min-width: 720px) {
  .nav-dropdown {
    position: relative;
  }
  .nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 9999;
    min-width: 188px;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .nav-dropdown-panel a {
    display: block;
    width: 100%;
  }
}

/* ── Breadcrumb ── */
.velaru-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #6b7280;
  margin: 0 0 14px;
  font-family: 'Space Grotesk', sans-serif;
}

.velaru-breadcrumb a {
  color: #4fd1c5;
  text-decoration: none;
}

.velaru-breadcrumb a:hover {
  text-decoration: underline;
}

.velaru-breadcrumb [aria-current="page"] {
  color: #9ca3af;
}

.velaru-breadcrumb .bc-sep {
  opacity: 0.45;
}

/* ── Compliance module sub-nav (same pills as primary nav) ── */
.compliance-chrome {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.compliance-subnav.velaru-nav {
  margin: 0 0 16px;
  padding-top: 8px;
  border-top: none;
  border-bottom: 1px solid rgba(79, 209, 197, 0.14);
  padding-bottom: 10px;
}

.compliance-subnav.velaru-nav::before {
  content: "Compliance";
}

.compliance-subnav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  padding: 8px 0 10px;
}

.compliance-subnav a {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: #cbd5e1;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #1f2937;
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.compliance-subnav a:hover {
  color: #4fd1c5;
  border-color: rgba(79, 209, 197, 0.35);
  background: transparent;
}

.compliance-subnav a.active {
  color: #4fd1c5;
  border-color: rgba(79, 209, 197, 0.45);
  box-shadow: 0 0 16px rgba(79, 209, 197, 0.12);
  background: transparent;
}

.compliance-cmd-hint {
  margin-left: auto;
  font-size: 9px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 3px;
}

.compliance-cmd-hint kbd {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 4px;
  border: 1px solid #1f2937;
  background: rgba(0, 0, 0, 0.35);
  color: #4fd1c5;
}

/* ── Command palette (Ctrl+K) ── */
.velaru-cmd-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 16px 16px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}

.velaru-cmd-overlay[hidden] {
  display: none;
}

.velaru-cmd-panel {
  width: min(560px, 100%);
  background: rgba(8, 12, 20, 0.98);
  border: 1px solid rgba(79, 209, 197, 0.35);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(79, 209, 197, 0.08);
  overflow: hidden;
}

.velaru-cmd-panel input {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid rgba(79, 209, 197, 0.2);
  background: transparent;
  color: #e5e7eb;
  outline: none;
}

.velaru-cmd-panel input::placeholder {
  color: #6b7280;
}

.velaru-cmd-results {
  max-height: min(360px, 50vh);
  overflow-y: auto;
  padding: 6px;
}

.velaru-cmd-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #e5e7eb;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  cursor: pointer;
  transition: background 0.15s;
}

.velaru-cmd-item:hover,
.velaru-cmd-item.active {
  background: rgba(79, 209, 197, 0.12);
}

.velaru-cmd-item b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: #4fd1c5;
  margin-bottom: 2px;
}

.velaru-cmd-item span {
  font-size: 10px;
  color: #6b7280;
}

.velaru-cmd-empty {
  padding: 20px;
  text-align: center;
  font-size: 11px;
  color: #6b7280;
}

.velaru-cmd-foot {
  padding: 8px 14px;
  font-size: 9px;
  color: #6b7280;
  border-top: 1px solid rgba(31, 41, 55, 0.8);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.velaru-cmd-foot kbd {
  font-family: inherit;
  padding: 1px 5px;
  border-radius: 4px;
  border: 1px solid #1f2937;
  color: #94a3b8;
}

@media (max-width: 720px) {
  .compliance-cmd-hint { display: none; }
  .compliance-subnav { top: calc(36px + var(--velaru-nav-sticky-height, 84px)); }
}

/* ── Nav industrial ── */
.velaru-nav.industrial-nav a,
.top-nav a {
  position: relative;
  overflow: hidden;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.25s, transform 0.15s;
}

.velaru-nav.industrial-nav a::before,
.top-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(79, 209, 197, 0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.velaru-nav.industrial-nav a:hover::before,
.top-nav a:hover::before {
  transform: translateX(100%);
}

.velaru-nav.industrial-nav a.active,
.top-nav a.active {
  box-shadow: 0 0 16px rgba(79, 209, 197, 0.15), inset 0 0 12px rgba(79, 209, 197, 0.06);
  border-color: rgba(79, 209, 197, 0.45) !important;
}

.top-nav {
  border-color: rgba(79, 209, 197, 0.18) !important;
  box-shadow: 0 0 32px rgba(79, 209, 197, 0.06);
}

/* ── Headings ── */
.industrial-active h1 {
  text-shadow: 0 0 40px rgba(79, 209, 197, 0.15);
  animation: indTitleGlow 4s ease-in-out infinite alternate;
}

/* ── Cards & panels ── */
.industrial-active .link-card,
.industrial-active .step,
.industrial-active .sdk-install-card,
.industrial-active .search-panel,
.industrial-active .domain-picker {
  position: relative;
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}

.industrial-active .link-card::after,
.industrial-active .step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, var(--accent, #4fd1c5), transparent);
  border-radius: 14px 0 0 14px;
  opacity: 0;
  transition: opacity 0.2s;
}

.industrial-active .link-card:hover,
.industrial-active .step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(79, 209, 197, 0.08);
}

.industrial-active .link-card:hover::after,
.industrial-active .step:hover::after {
  opacity: 1;
}

.industrial-active .link-card.primary {
  animation: indCardPulse 3s ease-in-out infinite;
}

.protocol-strip {
  border-style: solid !important;
  border-color: rgba(79, 209, 197, 0.28) !important;
  box-shadow: inset 0 0 20px rgba(79, 209, 197, 0.04);
}

/* ── Buttons ── */
.industrial-active .btn-primary,
.industrial-active .btn-teal {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(79, 209, 197, 0.2);
}

.industrial-active .btn-primary:hover,
.industrial-active .btn-teal:hover {
  box-shadow: 0 0 28px rgba(79, 209, 197, 0.4);
}

/* ── Footer ── */
.industrial-active footer,
.industrial-active .velaru-site-footer {
  border-top: 1px dashed rgba(79, 209, 197, 0.15);
  padding-top: 20px;
  margin-top: 36px;
  text-align: center;
}

.velaru-site-footer {
  color: var(--text-dim, #6b7280);
  font-size: 10px;
  line-height: 1.65;
}

.velaru-footer-tagline {
  margin: 0 0 14px;
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--text-dim, #6b7280);
  opacity: 0.9;
}

.velaru-footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}

.velaru-footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  row-gap: 4px;
}

.velaru-footer-row a {
  color: var(--accent, #4fd1c5);
  text-decoration: none;
  white-space: nowrap;
}

.velaru-footer-row a:hover {
  text-decoration: underline;
}

.velaru-footer-sep {
  color: rgba(107, 114, 128, 0.85);
  margin: 0 7px;
  user-select: none;
  pointer-events: none;
}

.industrial-footer-badge {
  display: block;
  width: fit-content;
  margin: 4px auto 0;
  padding: 5px 12px;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ind-amber, #f59e0b);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.06);
}

/* ── Registry table industrial ── */
.industrial-active .registry-table th {
  background: rgba(79, 209, 197, 0.04);
}

.industrial-active .registry-table tr:hover td {
  box-shadow: inset 0 0 24px rgba(79, 209, 197, 0.06);
}

/* ── Verify checklist ── */
.industrial-active .checklist {
  border-color: rgba(79, 209, 197, 0.2) !important;
}

/* ── Marketing industrial overlay ── */
body.marketing-industrial {
  --surface: #0a0e14;
  --paper: #f3f4f6;
  --paper-dim: #1f2937;
  --ink: #e5e7eb;
  --steel: #9ca3af;
  --verified: #4fd1c5;
  --stamp: #4fd1c5;
  background: #05070b !important;
  color: var(--ink) !important;
  padding-top: 36px;
  padding-bottom: 28px;
}

/* Buttons — explicit contrast (never inherit dark --paper as text) */
body.marketing-industrial .btn-primary {
  background: #4fd1c5 !important;
  color: #041412 !important;
  font-weight: 600 !important;
  border: none !important;
}

body.marketing-industrial .btn-ghost {
  color: #f3f4f6 !important;
  border: 1px solid rgba(229, 231, 235, 0.55) !important;
  background: rgba(255, 255, 255, 0.07) !important;
}

body.marketing-industrial .btn-ghost:hover {
  border-color: #4fd1c5 !important;
  background: rgba(79, 209, 197, 0.14) !important;
  opacity: 1 !important;
}

body.marketing-industrial .btn:hover {
  opacity: 1 !important;
}

body.marketing-industrial .badge-live-now {
  color: #041412 !important;
}

body.marketing-industrial .mishara-block .btn-mishara {
  background: #4fd1c5 !important;
  color: #041412 !important;
  font-weight: 600 !important;
}

body.marketing-industrial .std-badge {
  background: rgba(12, 16, 24, 0.92) !important;
  color: #b0bec9 !important;
  border-color: rgba(79, 209, 197, 0.28) !important;
}

body.marketing-industrial .close input,
body.marketing-industrial .close select,
body.marketing-industrial .close textarea {
  color: #f3f4f6 !important;
  border-color: rgba(229, 231, 235, 0.35) !important;
}

body.marketing-industrial footer a {
  color: #b0bec9 !important;
}

body.marketing-industrial footer a:hover {
  color: #4fd1c5 !important;
}

body.marketing-industrial .hero,
body.marketing-industrial section,
body.marketing-industrial footer {
  position: relative;
  z-index: 2;
}

body.marketing-industrial .hero {
  border-bottom: 1px solid rgba(79, 209, 197, 0.15);
}

body.marketing-industrial .surface-card,
body.marketing-industrial .deadline-table-wrap,
body.marketing-industrial .persona-card {
  background: rgba(12, 16, 24, 0.88) !important;
  border-color: rgba(79, 209, 197, 0.18) !important;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.25s;
}

body.marketing-industrial .persona-card:hover,
body.marketing-industrial .surface-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(79, 209, 197, 0.1);
}

body.marketing-industrial .stamp-box {
  border-color: rgba(245, 158, 11, 0.5) !important;
  background: rgba(245, 158, 11, 0.06) !important;
}

body.marketing-industrial h1,
body.marketing-industrial h2,
body.marketing-industrial h3 {
  font-family: 'Space Grotesk', sans-serif !important;
}

body.marketing-industrial .hero h1 {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #f3f4f6 !important;
}

body.marketing-industrial .hero h1 em {
  background: linear-gradient(90deg, #4fd1c5, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

body.marketing-industrial .hero {
  background:
    radial-gradient(ellipse 90% 70% at 10% -10%, rgba(79, 209, 197, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(129, 140, 248, 0.08), transparent 50%),
    #05070b !important;
  border-bottom: 1px solid rgba(79, 209, 197, 0.15);
}

body.marketing-industrial .section p {
  color: #d1d5db !important;
}

body.marketing-industrial .section .lede {
  color: #e5e7eb !important;
}

body.marketing-industrial .stat-row {
  background: rgba(79, 209, 197, 0.14);
  border-color: rgba(79, 209, 197, 0.22);
}

body.marketing-industrial .stat-cell {
  background: rgba(10, 14, 20, 0.96) !important;
}

body.marketing-industrial .stat-num {
  color: #f3f4f6 !important;
}

body.marketing-industrial .stat-lbl {
  color: #b0bec9 !important;
}

body.marketing-industrial .flaw-block {
  background: #0c1018 !important;
  border-left-color: rgba(79, 209, 197, 0.55) !important;
}

body.marketing-industrial .flaw-block .flaw-label {
  color: #4fd1c5 !important;
}

body.marketing-industrial .flaw-block p {
  color: rgba(229, 231, 235, 0.92) !important;
}

body.marketing-industrial .flaw-block strong {
  color: #ffffff !important;
}

body.marketing-industrial .precedent-card {
  background: rgba(12, 16, 24, 0.88) !important;
}

body.marketing-industrial .precedent-card h4 {
  color: #f3f4f6 !important;
}

body.marketing-industrial .precedent-card p {
  color: #b0bec9 !important;
}

body.marketing-industrial .precedent-era {
  color: #6b7280 !important;
}

body.marketing-industrial .section h2 {
  color: #f3f4f6 !important;
}

body.marketing-industrial .section-tag {
  color: #4fd1c5 !important;
}

body.marketing-industrial .surface-card h4 {
  color: #f3f4f6 !important;
}

body.marketing-industrial .surface-card p {
  color: #b0bec9 !important;
}

body.marketing-industrial .surface-link {
  color: #4fd1c5 !important;
}

body.marketing-industrial .deliver-list strong {
  color: #f3f4f6 !important;
}

body.marketing-industrial .deliver-list .sub {
  color: #b0bec9 !important;
}

body.marketing-industrial .deadline-table strong {
  color: #f3f4f6 !important;
}

body.marketing-industrial .deadline-table .desc {
  color: #b0bec9 !important;
}

body.marketing-industrial .deadline-table td:first-child {
  color: #9ca3af !important;
}

body.marketing-industrial .living-chain-section h2 {
  color: #f3f4f6 !important;
}

body.marketing-industrial .living-chain-section .section-lead {
  color: #b0bec9 !important;
}

body.marketing-industrial .living-chain-section .section-lead a {
  color: #4fd1c5 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.marketing-industrial .chain-stats {
  color: #9ca3af !important;
}

body.marketing-industrial .chain-stats strong {
  color: #4fd1c5 !important;
}

body.marketing-industrial .chain-link {
  color: #4fd1c5 !important;
  font-weight: 600 !important;
}

body.marketing-industrial .chain-loading {
  color: #b0bec9 !important;
}

body.marketing-industrial .chain-loading a {
  color: #4fd1c5 !important;
}

body.marketing-industrial .section {
  border-bottom-color: rgba(79, 209, 197, 0.1) !important;
}

body.marketing-industrial footer {
  color: #9ca3af !important;
}

/* ── Ultra infrastructure rails (maximalist / experimental) ── */
body.marketing-industrial.rails-active {
  --rail-line: rgba(79, 209, 197, 0.1);
  --panel: rgba(5, 8, 13, 0.94);
}

.rails-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(79, 209, 197, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(79, 209, 197, 0.04) 1px, transparent 1px);
  background-size: calc(100vw / 12) 100%, 100% 48px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 20%, black 15%, transparent 90%);
  opacity: 0.85;
}

body.marketing-industrial.rails-active .wrap {
  position: relative;
}

@media (min-width: 960px) {
  body.marketing-industrial.rails-active .wrap {
    border-left: 1px solid rgba(79, 209, 197, 0.1);
    border-right: 1px solid rgba(79, 209, 197, 0.1);
    padding-left: 32px;
    padding-right: 32px;
  }
}

body.marketing-industrial.rails-active .section {
  background: transparent !important;
  border-bottom: 1px solid rgba(79, 209, 197, 0.12) !important;
}

body.marketing-industrial.rails-active .section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 209, 197, 0.45), transparent);
  opacity: 0.55;
  pointer-events: none;
}

body.marketing-industrial.rails-active .section-tag {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace !important;
  letter-spacing: 0.16em !important;
  padding: 6px 12px !important;
  border: 1px solid rgba(79, 209, 197, 0.28) !important;
  background: rgba(79, 209, 197, 0.05) !important;
  box-shadow: 0 0 24px rgba(79, 209, 197, 0.07), inset 0 0 12px rgba(79, 209, 197, 0.04) !important;
}

body.marketing-industrial.rails-active .stat-row,
body.marketing-industrial.rails-active .surface-grid,
body.marketing-industrial.rails-active .precedent-grid,
body.marketing-industrial.rails-active .proof-path {
  background: transparent !important;
  border: 1px solid rgba(79, 209, 197, 0.22) !important;
  gap: 0 !important;
}

body.marketing-industrial.rails-active .stat-cell,
body.marketing-industrial.rails-active .surface-card,
body.marketing-industrial.rails-active .precedent-card,
body.marketing-industrial.rails-active .proof-step {
  position: relative;
  background: var(--panel) !important;
  border: 1px solid rgba(79, 209, 197, 0.14) !important;
  box-shadow: inset 0 0 48px rgba(79, 209, 197, 0.03), 0 0 20px rgba(0, 0, 0, 0.35) !important;
}

body.marketing-industrial.rails-active .stat-cell::after,
body.marketing-industrial.rails-active .surface-card::after,
body.marketing-industrial.rails-active .precedent-card::after,
body.marketing-industrial.rails-active .proof-step::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(79, 209, 197, 0.55);
  border-left: 2px solid rgba(79, 209, 197, 0.55);
  pointer-events: none;
  opacity: 0.7;
}

body.marketing-industrial.rails-active .stat-cell::before,
body.marketing-industrial.rails-active .surface-card::before,
body.marketing-industrial.rails-active .precedent-card::before,
body.marketing-industrial.rails-active .proof-step::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid rgba(129, 140, 248, 0.35);
  border-right: 2px solid rgba(129, 140, 248, 0.35);
  pointer-events: none;
  opacity: 0.7;
}

body.marketing-industrial.rails-active .precedent-card::after {
  background: none !important;
  opacity: 1 !important;
  inset: auto !important;
  transform: none !important;
}

body.marketing-industrial.rails-active .precedent-card:hover::after {
  opacity: 1 !important;
}

body.marketing-industrial.rails-active .live-trust-bar,
body.marketing-industrial.rails-active .verify-demo,
body.marketing-industrial.rails-active .chain-feed {
  border: 1px solid rgba(79, 209, 197, 0.28) !important;
  box-shadow: inset 0 0 40px rgba(79, 209, 197, 0.05), 0 0 32px rgba(0, 0, 0, 0.3) !important;
  background: rgba(4, 7, 11, 0.88) !important;
}

body.marketing-industrial.rails-active .living-chain-section {
  background: rgba(0, 0, 0, 0.45) !important;
  border-top: 1px solid rgba(79, 209, 197, 0.2);
  border-bottom: 1px solid rgba(79, 209, 197, 0.15);
}

body.marketing-industrial.rails-active .ticker-frame {
  border-top: 1px solid rgba(79, 209, 197, 0.28) !important;
  background: rgba(0, 0, 0, 0.55) !important;
}

body.marketing-industrial.rails-active .ticker-label {
  background: linear-gradient(90deg, #05070b 55%, transparent) !important;
  color: rgba(79, 209, 197, 0.65) !important;
}

body.marketing-industrial.rails-active .industrial-scanlines {
  opacity: 0.5;
}

body.marketing-industrial.rails-active .deliver-list li {
  border-top-color: rgba(79, 209, 197, 0.12) !important;
}

body.marketing-industrial.rails-active .deadline-table tr {
  border-bottom-color: rgba(79, 209, 197, 0.1) !important;
}

body.marketing-industrial.rails-active .std-badge {
  background: rgba(5, 8, 13, 0.9) !important;
  border-color: rgba(79, 209, 197, 0.2) !important;
}

@keyframes railPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 0 32px rgba(79, 209, 197, 0.04); }
  50% { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 0 52px rgba(79, 209, 197, 0.12); }
}

body.marketing-industrial.rails-active .industrial-status-bar {
  animation: railPulse 5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  body.marketing-industrial.rails-active .industrial-status-bar {
    animation: none !important;
  }
}

@keyframes indPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes indMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes indLangScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes indTitleGlow {
  from { filter: brightness(1); }
  to { filter: brightness(1.08); }
}

@keyframes indCardPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(79, 209, 197, 0); }
  50% { box-shadow: 0 0 20px rgba(79, 209, 197, 0.08); }
}

@keyframes indFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.industrial-active .industrial-content > *:not(.industrial-status-bar) {
  animation: indFadeUp 0.5s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .isb-marquee-track,
  .industrial-lang-track,
  .industrial-active h1,
  .industrial-active .link-card.primary,
  .isb-dot {
    animation: none !important;
  }
  .industrial-scanlines,
  .industrial-particles {
    display: none;
  }
}

@media (max-width: 720px) {
  .isb-marquee { display: none; }
  .industrial-content::before,
  .industrial-content::after { display: none; }
  .industrial-status-bar {
    font-size: 8px;
    gap: 8px;
    padding: 0 10px;
  }
}

/* ── Funnel surfaces (trust / verify / partners) ── */
body.funnel-surface {
  padding-top: 36px;
}

body.funnel-calm .isb-marquee,
body.funnel-calm .industrial-lang-ribbon,
body.funnel-calm .industrial-status-bar,
body.funnel-surface .industrial-scanlines,
body.funnel-surface .industrial-particles,
body.funnel-calm .industrial-scanlines,
body.funnel-calm .industrial-particles {
  display: none !important;
}

body.funnel-calm.industrial-active,
body.funnel-calm.funnel-surface {
  padding-top: 12px !important;
}

body.funnel-surface .industrial-content,
body.funnel-calm .industrial-content {
  z-index: 100;
  isolation: isolate;
}

body.funnel-surface .industrial-content::before,
body.funnel-surface .industrial-content::after,
body.funnel-calm .industrial-content::before,
body.funnel-calm .industrial-content::after {
  display: none !important;
}

body.funnel-surface .industrial-content a,
body.funnel-surface .industrial-content button,
body.funnel-calm .industrial-content a,
body.funnel-calm .industrial-content button {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

/* Site-wide interactive safety — keep CTAs above decorative layers */
.industrial-active .industrial-content {
  z-index: 100;
  isolation: isolate;
}

.industrial-active:not(.marketing-industrial) .industrial-scanlines,
.industrial-active:not(.marketing-industrial) .industrial-particles {
  display: none !important;
}

.industrial-active .industrial-content a,
.industrial-active .industrial-content button,
.industrial-active .industrial-content input:not([type="hidden"]),
.industrial-active .industrial-content select,
.industrial-active .industrial-content textarea,
.industrial-active .industrial-content summary,
.industrial-active .industrial-content .funnel-step,
.industrial-active .industrial-content a.card,
.industrial-active .industrial-content a.mod,
.industrial-active .industrial-content a.tab-item,
.industrial-active .industrial-content label[for] {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.industrial-active .btn,
.industrial-active .btn-primary,
.industrial-active .btn-ghost,
.industrial-active .btn-secondary,
.industrial-active .btn-teal,
.industrial-active .funnel-step,
.industrial-active a.card,
.industrial-active a.mod,
.industrial-active a.tab-item {
  cursor: pointer;
}

.card-actions,
.price-card-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.velaru-toast {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 30000;
  max-width: min(92vw, 520px);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(79, 209, 197, 0.45);
  background: rgba(8, 12, 20, 0.96);
  color: #e5e7eb;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

/* Cold storefront — no status bar chrome (/start path, demo, trust, verify) */
body.funnel-cold .industrial-status-bar,
body.funnel-cold .industrial-lang-ribbon,
body.funnel-cold .velaru-warm-banner {
  display: none !important;
}

body.funnel-cold.funnel-surface,
body.funnel-cold {
  padding-top: 16px !important;
}

body.funnel-cold .industrial-content {
  padding-top: 0;
}

.relay-ready-chip {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(100, 116, 139, 0.45);
  color: #94a3b8;
  background: transparent;
}

.relay-ready-chip.ready {
  border-color: rgba(52, 211, 153, 0.45);
  color: #34d399;
  background: rgba(52, 211, 153, 0.08);
}

.relay-ready-chip.warming {
  border-color: rgba(129, 140, 248, 0.4);
  color: #a5b4fc;
}

.funnel-surface .content-shell,
.funnel-surface .wrap {
  padding-top: 12px;
}

.funnel-surface h1,
.funnel-surface .hero-tag {
  scroll-margin-top: 56px;
  padding-top: 6px;
  line-height: 1.2;
}

.status-section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #64748b;
  margin: 0 0 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.infra-bar .infra-chip {
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #334155;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.infra-bar .infra-chip.ready {
  border-color: rgba(100, 116, 139, 0.5);
  color: #cbd5e1;
}

.infra-bar .infra-chip.warn {
  border-color: rgba(248, 113, 113, 0.4);
  color: #f87171;
}

.walkthrough-track {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.wt-step {
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px dashed #475569;
  color: #64748b;
  background: transparent;
}

.wt-step.done {
  border-style: solid;
  border-color: rgba(52, 211, 153, 0.45);
  color: #34d399;
  background: rgba(52, 211, 153, 0.06);
}

.verify-action {
  background: rgba(12, 16, 24, 0.92);
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
}

.verify-action input[type="text"] {
  width: 100%;
  background: #050505;
  border: 1px solid #334155;
  border-radius: 10px;
  color: #e5e7eb;
  font-family: inherit;
  font-size: 13px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.verify-action textarea {
  min-height: 100px;
  font-size: 12px;
}

.btn-verify-lg {
  width: 100%;
  padding: 14px 20px !important;
  font-size: 14px !important;
  margin-top: 12px !important;
  min-height: 48px;
}

@media (max-width: 720px) {
  .isb-left { gap: 6px; max-width: 62%; }
  #industrial-utc { max-width: min(240px, 58vw); font-size: 7px; line-height: 1.35; white-space: normal; }
  .isb-right { font-size: 8px; }
}

/* ── Path guides (what to click on each page) ── */
.path-guide {
  background: rgba(12, 16, 24, 0.88);
  border: 1px solid rgba(79, 209, 197, 0.28);
  border-radius: 14px;
  padding: 16px 18px 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  line-height: 1.55;
}
.path-guide a { color: #4fd1c5; text-decoration: none; }
.path-guide a:hover { text-decoration: underline; }
.pg-head { margin-bottom: 6px; }
.pg-kicker {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 4px;
}
.pg-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #e5e7eb;
}
.pg-intro {
  font-size: 12px;
  color: #9ca3af;
  margin: 0 0 10px;
  max-width: 640px;
}
.pg-steps {
  margin: 0 0 10px;
  padding-left: 20px;
  font-size: 12px;
  color: #d1d5db;
}
.pg-steps li { margin-bottom: 6px; }
.pg-steps li:last-child { margin-bottom: 0; }
.pg-next {
  font-size: 11px;
  color: #6b7280;
  padding-top: 10px;
  border-top: 1px dashed rgba(79, 209, 197, 0.2);
}
.pg-next a {
  font-weight: 600;
  margin-left: 4px;
}
.product-start-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 10px;
}
.pg-cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid #1f2937;
  color: #e5e7eb;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
}
.pg-cta:hover {
  border-color: rgba(79, 209, 197, 0.45);
  color: #4fd1c5;
}
.pg-cta-primary {
  background: linear-gradient(135deg, #4fd1c5, #38b8ac);
  color: #041412;
  border-color: transparent;
}
.pg-cta-primary:hover {
  color: #041412;
  box-shadow: 0 0 16px rgba(79, 209, 197, 0.25);
}
.links-tour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.links-tour-card {
  background: rgba(12, 16, 24, 0.92);
  border: 1px solid #1f2937;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 11px;
  color: #9ca3af;
}
.links-tour-card strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: #4fd1c5;
  margin-bottom: 6px;
}
.links-tour-card a { color: #4fd1c5; }
.links-tour-wide {
  grid-column: 1 / -1;
}
@media (max-width: 640px) {
  .links-tour-grid { grid-template-columns: 1fr; }
  .links-tour-wide { grid-column: auto; }
  .product-start-row .pg-cta { flex: 1 1 auto; text-align: center; }
  .nav-dropdown-panel {
    position: static;
    width: 100%;
  }
}

/* ── Marketing visitor nav (velaru.xyz) ── */
.marketing-visitor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 12px 14px;
  border: 1px solid rgba(79, 209, 197, 0.22);
  border-radius: 12px;
  background: rgba(12, 16, 24, 0.75);
  align-items: center;
}

.marketing-visitor-nav .mvn-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  margin-right: 4px;
}

.marketing-visitor-nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #9ca3af;
  text-decoration: none;
  padding: 6px 11px;
  border: 1px solid #1f2937;
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s;
}

.marketing-visitor-nav a:hover,
.marketing-visitor-nav a.mvn-primary {
  color: #4fd1c5;
  border-color: rgba(79, 209, 197, 0.4);
}

.marketing-visitor-nav a.mvn-primary {
  background: rgba(79, 209, 197, 0.08);
  font-weight: 600;
}

.visitor-path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}

.visitor-path-card {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.visitor-path-card:hover {
  border-color: rgba(79, 209, 197, 0.45);
  background: rgba(79, 209, 197, 0.06);
}

.visitor-path-card strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: #4fd1c5;
  margin-bottom: 6px;
}

.visitor-path-card span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .visitor-path-grid { grid-template-columns: 1fr; }
}

/* ── Legal summary modal (exhibit overlay) ── */
body.exhibit-modal-open .industrial-scanlines,
body.exhibit-modal-open .industrial-grid,
body.exhibit-modal-open .industrial-vignette,
body.exhibit-modal-open .industrial-particles,
body.exhibit-modal-open .industrial-content::before,
body.exhibit-modal-open .industrial-content::after,
body.exhibit-modal-open .orbital-hud,
body.exhibit-modal-open .aurora-field,
body.exhibit-modal-open .deep-space-canvas,
body.exhibit-modal-open .forge-overlay,
body.exhibit-modal-open .warp-flash {
  display: none !important;
}

.exhibit-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: calc(16px + env(safe-area-inset-top, 0px)) 12px calc(24px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.exhibit-overlay.open {
  display: flex !important;
}

body.exhibit-modal-open {
  overflow: hidden;
}

.exhibit-doc {
  width: min(720px, 100%);
  max-height: min(calc(100vh - 32px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)), 860px);
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #111;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 12px;
  line-height: 1.6;
  margin: 0 auto;
  flex-shrink: 0;
}

.exhibit-head-block {
  flex: 0 0 auto;
  padding: 22px 24px 12px;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}

.exhibit-body-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 12px 24px 16px;
}

.exhibit-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 2px solid #111;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: 700;
}

.exhibit-intro {
  font-size: 12px;
  color: #444;
  margin: 0 0 10px;
  line-height: 1.55;
}

.exhibit-section {
  margin: 12px 0;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.exhibit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-bottom: 8px;
  align-items: flex-start;
}

.exhibit-label {
  min-width: 130px;
  flex: 0 0 130px;
  font-weight: 600;
}

.exhibit-value {
  flex: 1 1 180px;
  min-width: 0;
  word-break: break-all;
  overflow-wrap: anywhere;
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 11px;
  line-height: 1.5;
}

.exhibit-actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 24px 18px;
  border-top: 1px solid #e5e7eb;
  background: #f8fafc;
}

.exhibit-actions button {
  font-family: 'JetBrains Mono', 'Segoe UI', sans-serif;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  padding: 10px 14px;
  flex: 1 1 auto;
  min-width: 120px;
}

.exhibit-btn-primary {
  background: linear-gradient(135deg, #4fd1c5, #38b8ac) !important;
  color: #041412 !important;
  border: none !important;
}

.exhibit-btn-secondary {
  background: #fff !important;
  border: 1px solid #cbd5e1 !important;
  color: #111827 !important;
}

.exhibit-btn-secondary:hover {
  border-color: #4fd1c5 !important;
  color: #0f766e !important;
}

@media (max-width: 640px) {
  .exhibit-overlay { padding-left: 8px; padding-right: 8px; }
  .exhibit-head-block, .exhibit-body-scroll, .exhibit-actions { padding-left: 16px; padding-right: 16px; }
  .exhibit-row { flex-direction: column; }
  .exhibit-label { min-width: 0; flex: none; }
  .exhibit-actions button { width: 100%; min-width: 0; }
}

html, body.industrial-active {
  overflow-x: hidden;
  max-width: 100%;
}

.industrial-content {
  max-width: 100%;
  overflow-x: hidden;
}

/* ── World-class message input ── */
.chat-input-stack textarea#msg {
  width: 100%;
  min-height: 132px;
  max-height: 360px;
  resize: vertical;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.55;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #1f2937;
  border-radius: 12px;
  color: #e5e7eb;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.chat-input-stack textarea#msg:focus {
  outline: none;
  border-color: #4fd1c5;
  box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.12);
}

.chat-input-hint {
  font-size: 11px;
  color: #6b7280;
  margin: 6px 0 0;
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.download-row a,
.download-row button {
  font-size: 12px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
}

.btn-dl-primary {
  background: linear-gradient(135deg, #4fd1c5, #38b8ac);
  color: #041412;
  border: none;
}

.btn-dl-secondary {
  background: transparent;
  border: 1px solid #1f2937;
  color: #e5e7eb;
}

.btn-dl-secondary:hover {
  border-color: rgba(79, 209, 197, 0.45);
  color: #4fd1c5;
}

/* ── Visual QA (all routes) ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, .hero-tag {
  scroll-margin-top: 56px;
}

pre, code, .payload, .install-cmd {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 720px) {
  .btn, .btn-primary, .btn-secondary, .btn-teal, .funnel-step, .pg-cta {
    min-height: 44px;
  }
}

body:not(.industrial-active) {
  color: #e5e7eb;
}

.velaru-footer-minimal .velaru-footer-links {
  font-size: 11px;
  margin: 0 0 10px;
  text-align: center;
  line-height: 1.8;
}

.velaru-footer-minimal .velaru-footer-links strong {
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 9px;
}

.velaru-footer-minimal .velaru-footer-links a {
  color: #4fd1c5;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.velaru-footer-minimal .velaru-footer-links a:hover {
  text-decoration: underline;
}

.velaru-footer-minimal .velaru-footer-tagline a {
  color: #4fd1c5;
  text-decoration: none;
  margin: 0 4px;
}

.velaru-footer-minimal .velaru-footer-tagline a:hover {
  text-decoration: underline;
}

/* Enterprise + funnel polish (Aug 2026) */
.funnel-step.primary {
  border-color: rgba(79, 209, 197, 0.42);
  background: linear-gradient(135deg, rgba(79, 209, 197, 0.1), rgba(12, 16, 24, 0.94));
  box-shadow: 0 0 0 1px rgba(79, 209, 197, 0.08);
}
.funnel-step:hover {
  box-shadow: 0 8px 32px rgba(79, 209, 197, 0.12);
}
.live-bar {
  box-shadow: inset 0 1px 0 rgba(79, 209, 197, 0.15);
}
.enterprise-proof-strip {
  margin: 20px 0;
  padding: 14px 16px;
  border: 1px solid rgba(129, 140, 248, 0.35);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.08), rgba(8, 12, 20, 0.6));
  font-size: 11px;
  color: #cbd5e1;
}
.enterprise-proof-strip a {
  color: #4fd1c5;
  font-weight: 600;
}

/* ── Proof instrument UI (verify ladder · custody seal · gate glyphs) ── */
:root {
  --vx-void: #05070b;
  --vx-panel: rgba(12, 16, 24, 0.92);
  --vx-frost: rgba(186, 230, 253, 0.12);
  --vx-bind: #fbbf24;
  --vx-proof: #4fd1c5;
  --vx-policy: #818cf8;
  --vx-muted: #64748b;
  --vx-danger: #f87171;
  --vx-hairline: #2a3050;
}

.vx-depth-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-muted);
  margin-bottom: 18px;
  font-family: 'Space Grotesk', sans-serif;
}

.vx-depth-rail span.active {
  color: var(--vx-proof);
}

.vx-depth-rail .vx-sep {
  opacity: 0.35;
}

.proof-ladder {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--vx-hairline);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(8, 11, 18, 0.85);
}

.proof-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--vx-hairline);
}

.proof-step:last-child {
  border-bottom: none;
}

.proof-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--vx-muted);
  line-height: 1;
  padding-top: 2px;
}

.proof-step.active .proof-step-num {
  color: var(--vx-proof);
}

.proof-step.done .proof-step-num {
  color: var(--vx-bind);
}

.proof-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #e5e7eb;
}

.proof-step p {
  margin: 0;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.5;
}

.proof-step-body {
  min-width: 0;
}

.vx-gate-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}

.vx-gate-glyph.allow {
  background: var(--vx-proof);
  box-shadow: 0 0 8px rgba(79, 209, 197, 0.45);
}

.vx-gate-glyph.block {
  background: transparent;
  border: 2px solid var(--vx-bind);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.35);
}

.vx-gate-glyph.tamper {
  background: transparent;
  border: 2px solid var(--vx-danger);
  border-style: dashed;
}

.vx-envelope-rings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 8px;
  min-height: 56px;
}

.vx-envelope-rings svg {
  width: 56px;
  height: 56px;
}

.vx-envelope-rings.active svg circle.outer {
  animation: vxRingPulse 1.2s ease-out;
}

@keyframes vxRingPulse {
  from { stroke-opacity: 0.35; }
  to { stroke-opacity: 1; }
}

.vx-freeze-flash {
  animation: vxFreezeFlash 0.14s ease-out;
}

@keyframes vxFreezeFlash {
  0% { filter: saturate(1); box-shadow: none; }
  50% { filter: saturate(0.65); box-shadow: 0 0 0 1px var(--vx-frost), inset 0 0 24px rgba(186, 230, 253, 0.06); }
  100% { filter: saturate(1); box-shadow: none; }
}

.vx-custody-seal {
  position: relative;
  margin-top: 14px;
  padding: 14px 16px 12px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.06), rgba(8, 11, 18, 0.9));
  overflow: hidden;
}

.vx-custody-seal::before {
  content: "CHAIN OF CUSTODY · STRANGER VERIFY";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 4px 10px;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vx-bind);
  background: repeating-linear-gradient(
    -45deg,
    rgba(251, 191, 36, 0.12),
    rgba(251, 191, 36, 0.12) 6px,
    rgba(251, 191, 36, 0.04) 6px,
    rgba(251, 191, 36, 0.04) 12px
  );
  border-bottom: 1px dashed rgba(251, 191, 36, 0.35);
}

.vx-custody-seal-inner {
  padding-top: 22px;
}

.vx-custody-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 9px;
  margin-top: 8px;
}

.vx-custody-table th,
.vx-custody-table td {
  padding: 5px 6px;
  border-bottom: 1px solid rgba(42, 48, 80, 0.8);
  text-align: left;
  vertical-align: top;
}

.vx-custody-table th {
  color: var(--vx-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 8px;
}

.vx-proof-stack {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  font-size: 11px;
}

.vx-proof-stack-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--vx-hairline);
  border-radius: 8px;
  background: rgba(5, 8, 12, 0.55);
}

.vx-proof-stack-row .k {
  color: var(--vx-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
  font-family: 'Space Grotesk', sans-serif;
}

.vx-proof-stack-row .v {
  color: #cbd5e1;
  line-height: 1.45;
}

.vx-verdict-panel {
  margin-top: 16px;
  border: 1px solid var(--vx-hairline);
  border-radius: 12px;
  overflow: hidden;
  font-size: 11px;
}

.vx-verdict-panel h4 {
  margin: 0;
  padding: 10px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(8, 11, 18, 0.95);
  border-bottom: 1px solid var(--vx-hairline);
  color: #e5e7eb;
}

.vx-verdict-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 640px) {
  .vx-verdict-cols { grid-template-columns: 1fr; }
}

.vx-verdict-col {
  padding: 12px 14px;
}

.vx-verdict-col.proves {
  border-right: 1px solid var(--vx-hairline);
  background: rgba(52, 211, 153, 0.04);
}

.vx-verdict-col.not {
  background: rgba(248, 113, 113, 0.04);
}

.vx-verdict-col h5 {
  margin: 0 0 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Space Grotesk', sans-serif;
}

.vx-verdict-col.proves h5 { color: var(--vx-proof); }
.vx-verdict-col.not h5 { color: #94a3b8; }

.vx-verdict-col ul {
  margin: 0;
  padding-left: 16px;
  color: #94a3b8;
  line-height: 1.55;
}

.vx-corrupt-demo {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 4px;
}

.vx-corrupt-demo button {
  font-family: inherit;
  font-size: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--vx-hairline);
  background: rgba(8, 11, 18, 0.9);
  color: #cbd5e1;
  cursor: pointer;
}

.vx-corrupt-demo button:hover {
  border-color: var(--vx-bind);
  color: var(--vx-bind);
}

body.verify-proof-ladder {
  max-width: 880px;
  font-variant-numeric: tabular-nums;
}

body.verify-proof-ladder .banner.pass {
  border-color: rgba(79, 209, 197, 0.45);
}

body.verify-proof-ladder .checklist {
  border-radius: 10px;
  border-color: var(--vx-hairline);
}

@media (prefers-reduced-motion: reduce) {
  .vx-freeze-flash,
  .vx-envelope-rings.active svg circle.outer {
    animation: none !important;
  }
}

/* ── Mobile spine (≤480px) — demo outbound ready ── */
@media (max-width: 480px) {
  :root {
    --velaru-content-gutter: 14px;
  }

  body.funnel-surface.funnel-calm {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .velaru-nav-shell-inner {
    padding: 0 10px;
  }

  .velaru-nav-primary {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
    mask-image: linear-gradient(90deg, transparent, black 4px, black calc(100% - 16px), transparent);
  }

  .velaru-nav-primary::-webkit-scrollbar {
    display: none;
  }

  .velaru-nav-primary a {
    flex-shrink: 0;
    scroll-snap-align: start;
    min-height: 36px;
    padding: 6px 10px;
  }

  .velaru-nav-buyer-toggle {
    min-height: 40px;
    padding: 8px 10px;
  }

  .velaru-footer-minimal {
    font-size: 9px;
    line-height: 1.55;
  }

  .velaru-footer-minimal p {
    margin: 4px 0;
  }
}
