:root {
  --bg-0: #04070f;
  --bg-1: #070d1a;
  --bg-2: #0b1427;
  --line: rgba(120, 200, 255, 0.12);
  --line-2: rgba(120, 200, 255, 0.22);
  --text: #d8e6ff;
  --text-dim: #7c92b5;
  --text-mute: #4a5e80;
  --accent-hue: 350;
  --accent: oklch(0.72 0.22 var(--accent-hue));
  --cyan: #7dd3fc;
  --amber: #ffb020;
  --danger: #ff3a6e;
  --success: #00e5a8;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  height: 100%;
  margin: 0;
}

body {
  background:
    radial-gradient(ellipse at 20% -10%, rgba(40, 80, 140, 0.18), transparent 60%),
    radial-gradient(ellipse at 120% 110%, rgba(255, 58, 110, 0.10), transparent 55%),
    var(--bg-0);
  color: var(--text);
  font-family: var(--sans);
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  height: auto;
  min-height: 100%;
}

/* Ambient grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(120, 200, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(120, 200, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}

.app {
  display: grid;
  grid-template-columns: 340px 1fr 380px;
  height: calc(100vh - 56px);
  margin-top: 56px;
  gap: 0;
  position: relative;
}

.app::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0px, rgba(0, 0, 0, 0.1) 1px, transparent 1px, transparent 2px);
  background-size: 100% 2px;
  pointer-events: none;
  z-index: 10001;
  opacity: 0.15;
}

.rail {
  border: 1px solid rgba(120, 200, 255, 0.25);
  background: linear-gradient(165deg, rgba(15, 25, 50, 0.65) 0%, rgba(8, 15, 30, 0.8) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(120, 200, 255, 0.3) transparent;
  margin: 12px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.7), inset 0 1px 2px rgba(255, 255, 255, 0.1), inset 0 0 20px rgba(125, 211, 252, 0.05);
}

.rail::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(125, 211, 252, 0.04) 0%, transparent 70%);
  animation: orbit 20s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rail-left {
  margin-right: 0;
}

.rail-right {
  margin-left: 0;
}

/* ===== Brand ===== */
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.3);
}

.brand-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #fff;
}

.brand-sub {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-top: 2px;
}

.data-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 3px 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  border-radius: 3px;
  text-transform: uppercase;
}

.data-status.live {
  color: var(--success);
  background: rgba(0, 229, 168, 0.08);
  border: 1px solid rgba(0, 229, 168, 0.3);
}

.data-status.offline {
  color: var(--amber);
  background: rgba(255, 176, 32, 0.08);
  border: 1px solid rgba(255, 176, 32, 0.3);
}

.data-status.connecting {
  color: var(--cyan);
  background: rgba(125, 211, 252, 0.06);
  border: 1px solid rgba(125, 211, 252, 0.25);
}

.data-status.err {
  color: var(--amber);
  background: rgba(255, 176, 32, 0.08);
  border: 1px solid rgba(255, 176, 32, 0.3);
}

.data-status.loading {
  color: var(--cyan);
  background: rgba(125, 211, 252, 0.06);
  border: 1px solid rgba(125, 211, 252, 0.25);
}

.last-update {
  font-family: var(--mono);
  font-size: 8.5px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.data-status .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ===== Stats grid ===== */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 22px;
}

.stat {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(15, 30, 55, 0.35);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stat:hover {
  background: rgba(15, 30, 55, 0.5);
  border-color: rgba(0, 229, 168, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.4), 0 0 15px -5px rgba(0, 229, 168, 0.15);
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--cyan);
}

.stat-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.stat-value {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 6px 0 4px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 15px rgba(125, 211, 252, 0.4), 0 0 30px rgba(125, 211, 252, 0.2);
}

.stat-live {
  border-color: rgba(255, 58, 110, 0.25);
  background: rgba(255, 58, 110, 0.04);
}

.stat-live-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff3a6e;
  margin-left: 6px;
  box-shadow: 0 0 6px #ff3a6e;
  vertical-align: middle;
  animation: pulseDot 1s infinite;
}

.stat-delta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--success);
}

.stat-delta.warn {
  color: var(--amber);
}

/* ===== Sections ===== */
.section {
  margin-bottom: 22px;
}

.section-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px dashed var(--line);
}

.muted {
  color: var(--text-mute);
}

/* ===== Attack type chips ===== */
.types {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.type-chip {
  position: relative;
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  color: var(--text);
  font-family: var(--sans);
  text-align: left;
  opacity: 0.45;
  transition: opacity .15s, background .15s;
  overflow: hidden;
}

.type-chip.on {
  opacity: 1;
  background: rgba(125, 211, 252, 0.04);
  border-color: var(--line);
}

.type-chip:hover {
  background: rgba(125, 211, 252, 0.06);
}

.type-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.type-label {
  font-size: 12px;
}

.type-pct {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  transition: color 0.4s ease;
}

.type-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: var(--w, 0%);
  background: var(--clr);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.55;
}

/* ===== Top list ===== */
.top-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-list li {
  position: relative;
  display: grid;
  grid-template-columns: 24px 32px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 6px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  transition: background .15s;
}

.top-list li:hover {
  background: rgba(125, 211, 252, 0.06);
}

.top-list li.active {
  background: rgba(255, 58, 110, 0.08);
  border: 1px solid rgba(255, 58, 110, 0.3);
}

.top-list .rank {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
}

.top-list .tc-code {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.06em;
}

.top-list .tc-name {
  color: var(--text);
  font-size: 12px;
}

.top-list .tc-val {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  text-align: right;
  min-width: 65px;
}

.tc-bar-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1.5px;
  background: rgba(125, 211, 252, 0.04);
  overflow: hidden;
}

.top-list .tc-bar {
  height: 100%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Stage ===== */
.stage {
  position: relative;
  overflow: hidden;
  user-select: none;
  cursor: grab;
}

.stage:active {
  cursor: grabbing;
}

.globe-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.globe-wrap svg {
  max-width: min(96vh, 900px);
  max-height: 96vh;
}

.hud {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  z-index: 3;
  pointer-events: none;
}

.hud>* {
  pointer-events: auto;
}

.hud-tl {
  top: 24px;
  left: 24px;
}

.hud-tr {
  top: 24px;
  right: 24px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.hud-bl {
  bottom: 24px;
  left: 24px;
  width: 380px;
}

.hud-br {
  bottom: 24px;
  right: 24px;
}

.hud-label {
  text-transform: uppercase;
  color: var(--text-mute);
  font-size: 10px;
  margin: 3px 0;
}

.hud-label b {
  color: var(--cyan);
  font-weight: 500;
}

.hud-btn {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(6, 12, 24, 0.7);
  color: var(--text);
  border: 1px solid var(--line-2);
  padding: 8px 14px;
  border-radius: 3px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.hud-btn.on {
  color: var(--cyan);
  border-color: rgba(125, 211, 252, 0.4);
}

.hud-btn:hover {
  background: rgba(125, 211, 252, 0.08);
}

/* Feed */
.feed {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 250px;
  overflow-y: auto;
  mask-image: linear-gradient(180deg, black 80%, transparent);
  padding-bottom: 20px;
  /* Space for the mask gradient so content isn't fully hidden at bottom */
}

.feed::-webkit-scrollbar {
  width: 4px;
}

.feed::-webkit-scrollbar-thumb {
  background: rgba(125, 211, 252, 0.15);
  border-radius: 4px;
}

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

.feed-row {
  display: grid;
  grid-template-columns: 70px 10px 90px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 10px;
  padding: 2px 0;
  animation: slideIn .3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
  }
}

.feed-time {
  color: var(--text-mute);
}

.feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.feed-type {
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.feed-route {
  color: #fff;
}

.feed-route .arrow {
  color: var(--danger);
  margin: 0 6px;
}

.src-tag {
  margin-left: 8px;
  padding: 1px 6px;
  font-size: 8.5px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  color: var(--cyan);
  letter-spacing: 0.1em;
}

/* Legend scale */
.legend-scale {
  text-align: right;
}

.scale-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  margin-bottom: 4px;
}

.scale-bar {
  width: 180px;
  height: 6px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  overflow: hidden;
}

.scale-bar span {
  display: block;
  height: 100%;
  width: 100%;
}

.scale-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 8.5px;
  color: var(--text-mute);
  margin-top: 3px;
  letter-spacing: 0.1em;
}

/* ===== Country detail ===== */
.country-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.country-flag {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 58, 110, 0.2), rgba(255, 58, 110, 0.05));
  border: 1px solid rgba(255, 58, 110, 0.4);
  border-radius: 4px;
  box-shadow: inset 0 0 20px rgba(255, 58, 110, 0.2);
}

.country-name {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.country-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.bignum {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  text-align: left;
}

.bignum-val {
  font-family: var(--mono);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--danger);
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 58, 110, 0.45);
}

.bignum-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 6px;
}

/* Breakdown */
.breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bd-row {
  display: grid;
  grid-template-columns: 10px 90px 40px 1fr;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.bd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.bd-label {
  font-size: 11px;
  color: var(--text);
}

.bd-val {
  font-family: var(--mono);
  font-size: 11px;
  color: #fff;
  text-align: right;
}

.bd-bar {
  height: 3px;
  background: rgba(120, 200, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.bd-bar i {
  display: block;
  height: 100%;
  transition: width .4s;
}

/* Origins */
.origins {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.origins li {
  display: grid;
  grid-template-columns: 28px 24px 28px 1fr auto;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}

.ori-from {
  color: var(--text);
}

.ori-arrow {
  color: var(--text-mute);
}

.ori-to {
  color: var(--danger);
}

.ori-type {
  font-size: 10px;
}

.ori-bars {
  font-size: 10px;
  letter-spacing: -1px;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tl-row {
  display: grid;
  grid-template-columns: 42px 8px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 11px;
}

.tl-date {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
}

.tl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.tl-title {
  color: var(--text);
}

.tl-region {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== Scrollbar ===== */
.rail::-webkit-scrollbar {
  width: 6px;
}

.rail::-webkit-scrollbar-thumb {
  background: rgba(120, 200, 255, 0.15);
  border-radius: 3px;
}

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

/* ===== Tweaks ===== */
.tweaks {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: rgba(6, 12, 24, 0.9);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.tweaks-title {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  padding-right: 16px;
  border-right: 1px solid var(--line);
}

.tweak-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tweak-row b {
  color: var(--cyan);
  font-weight: 500;
  min-width: 36px;
}

.tweak-row input[type=range] {
  width: 100px;
}

/* Watermark — embedded in rim, nearly invisible until hover */
.watermark {
  position: absolute;
  right: 18px;
  bottom: 6px;
  pointer-events: auto;
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.10);
  white-space: nowrap;
  z-index: 4;
  transition: color .5s, letter-spacing .5s;
  cursor: default;
  user-select: none;
}

.watermark::before {
  content: '╱╱';
  margin-right: 7px;
  color: rgba(125, 211, 252, 0.14);
  letter-spacing: 0;
}

.watermark:hover {
  color: rgba(125, 211, 252, 0.55);
  letter-spacing: 0.42em;
}

.watermark:hover::before {
  color: rgba(125, 211, 252, 0.7);
}

/* --- Ports under fire --- */
.ports {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.port-row {
  display: grid;
  grid-template-columns: 20px 56px 1fr auto;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(125, 211, 252, 0.02);
  border: 1px solid rgba(125, 211, 252, 0.06);
}

.port-row:hover {
  background: rgba(125, 211, 252, 0.06);
  border-color: rgba(125, 211, 252, 0.15);
}

.port-rank {
  color: var(--text-mute);
  font-size: 9px;
}

.port-num {
  color: var(--cyan);
  font-weight: 500;
}

.port-svc {
  color: var(--text-dim);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.port-hits {
  color: var(--text);
  font-size: 10px;
  text-align: right;
}

/* --- Signature button (replaces watermark) --- */
.signature {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px 7px 9px;
  background: rgba(10, 15, 28, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(125, 211, 252, 0.55);
  cursor: pointer;
  transition: all .35s ease;
}

.signature:hover {
  color: rgba(125, 211, 252, 0.95);
  border-color: rgba(125, 211, 252, 0.4);
  box-shadow: 0 0 18px rgba(125, 211, 252, 0.2);
  transform: translateY(-1px);
}

.signature svg {
  opacity: 0.7;
}

.signature:hover svg {
  opacity: 1;
}

/* --- Creator modal --- */
.creator-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 15, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 100;
  animation: fadeIn .2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.creator-card {
  position: relative;
  width: min(420px, 90vw);
  padding: 36px 32px 26px;
  background: linear-gradient(180deg, rgba(20, 26, 44, 0.98), rgba(10, 14, 26, 0.98));
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(125, 211, 252, 0.08);
  text-align: center;
  animation: cardIn .3s cubic-bezier(.2, .8, .2, 1);
}

@keyframes cardIn {
  from {
    transform: translateY(10px) scale(.98);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.creator-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--text-mute);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .2s;
}

.creator-close:hover {
  color: var(--text);
}

.creator-avatar {
  display: inline-block;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 18px rgba(125, 211, 252, 0.3));
}

.creator-name {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.creator-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 4px 0 16px;
}

.creator-bio {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
  margin-bottom: 22px;
  text-wrap: pretty;
}

.creator-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.creator-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(125, 211, 252, 0.06);
  border: 1px solid rgba(125, 211, 252, 0.18);
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .25s;
}

.creator-btn:hover {
  background: rgba(125, 211, 252, 0.14);
  border-color: rgba(125, 211, 252, 0.4);
  color: var(--text);
  transform: translateY(-1px);
}

.creator-btn.primary {
  background: rgba(125, 211, 252, 0.18);
  border-color: rgba(125, 211, 252, 0.4);
  color: var(--cyan);
}

.creator-btn.primary:hover {
  background: rgba(125, 211, 252, 0.28);
}

.creator-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(125, 211, 252, 0.08);
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-mute);
  letter-spacing: 0.15em;
  flex-wrap: wrap;
}

.creator-foot code {
  background: rgba(125, 211, 252, 0.06);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--text-dim);
}

/* --- Clickable feed rows --- */
.feed-row.feed-clickable {
  display: grid;
  grid-template-columns: 58px 10px 1fr auto 12px;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 7px 10px;
  background: rgba(125, 211, 252, 0.02);
  border: 1px solid rgba(125, 211, 252, 0.06);
  border-radius: 6px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 10.5px;
  cursor: pointer;
  text-align: left;
  transition: all .2s;
  animation: feedIn .35s cubic-bezier(.2, .8, .2, 1);
}

.feed-row.feed-clickable:hover {
  background: rgba(125, 211, 252, 0.10);
  border-color: rgba(125, 211, 252, 0.3);
  transform: translateX(2px);
  box-shadow: -3px 0 0 0 var(--cyan);
}

.feed-row.feed-clickable.cve:hover {
  box-shadow: -3px 0 0 0 var(--pink);
}

@keyframes feedIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feed-chev {
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1;
  transition: transform .2s, color .2s;
}

.feed-row.feed-clickable:hover .feed-chev {
  color: var(--cyan);
  transform: translateX(2px);
}

/* --- Lookup pill in feed header --- */
.lookup-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  margin-left: 10px;
  background: rgba(125, 211, 252, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 999px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all .2s;
}

.lookup-pill:hover {
  background: rgba(125, 211, 252, 0.25);
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.3);
}

/* --- Detail / Lookup modal (same frame) --- */
.det-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 15, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  z-index: 110;
  animation: fadeIn .2s ease;
  padding: 20px;
}

.det-card {
  position: relative;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: 34px 32px 26px;
  background: linear-gradient(180deg, rgba(18, 24, 42, 0.99), rgba(8, 12, 22, 0.99));
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(125, 211, 252, 0.06) inset;
  animation: cardIn .28s cubic-bezier(.2, .8, .2, 1);
}

.det-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.6), transparent);
}

.det-kind {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-transform: uppercase;
}

.det-title {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 18px;
  word-break: break-all;
}

.det-loading {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.15em;
  padding: 14px 0;
}

.det-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.det-field {
  padding: 10px 12px;
  background: rgba(125, 211, 252, 0.04);
  border: 1px solid rgba(125, 211, 252, 0.1);
  border-radius: 6px;
}

.det-field-label {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}

.det-field-value {
  font-size: 13px;
  color: var(--text);
  font-family: var(--mono);
}

.det-field.sev-critical .det-field-value {
  color: var(--pink);
}

.det-field.sev-high .det-field-value {
  color: var(--amber);
}

.det-field.sev-medium .det-field-value {
  color: var(--cyan);
}

.det-field.sev-low .det-field-value {
  color: var(--purple);
}

.det-block {
  margin-bottom: 16px;
}

.det-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}

.det-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
  text-wrap: pretty;
}

.det-code {
  display: block;
  padding: 10px 12px;
  background: rgba(3, 6, 15, 0.6);
  border: 1px solid rgba(125, 211, 252, 0.1);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  word-break: break-all;
}

.det-big {
  font-family: var(--mono);
  font-size: 28px;
  color: var(--pink);
  font-weight: 500;
}

.det-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.det-tag {
  padding: 3px 8px;
  background: rgba(255, 58, 110, 0.1);
  border: 1px solid rgba(255, 58, 110, 0.25);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--pink);
}

.det-refs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.det-ref {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(125, 211, 252, 0.03);
  border: 1px solid rgba(125, 211, 252, 0.08);
  border-radius: 5px;
  text-decoration: none;
  transition: all .2s;
  overflow: hidden;
}

.det-ref:hover {
  background: rgba(125, 211, 252, 0.1);
  border-color: rgba(125, 211, 252, 0.25);
}

.det-ref-src {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  padding: 2px 6px;
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.det-ref-url {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.warn-block {
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 58, 110, 0.08), rgba(255, 58, 110, 0.02));
  border: 1px solid rgba(255, 58, 110, 0.25);
  border-radius: 8px;
}

.warn-block .det-label {
  color: var(--pink);
}

/* --- Lookup form --- */
.lookup-form {
  display: flex;
  gap: 10px;
  margin: 14px 0 8px;
}

.lookup-input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(3, 6, 15, 0.6);
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: all .2s;
}

.lookup-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.15);
}

.lookup-submit {
  padding: 12px 18px;
  background: var(--cyan);
  color: #03060f;
  border: none;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: all .2s;
}

.lookup-submit:hover:not(:disabled) {
  box-shadow: 0 0 18px rgba(125, 211, 252, 0.5);
  transform: translateY(-1px);
}

.lookup-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.lookup-hint {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.lookup-samples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(125, 211, 252, 0.08);
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-mute);
  letter-spacing: 0.15em;
}

.lookup-sample {
  padding: 4px 8px;
  background: rgba(125, 211, 252, 0.06);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all .2s;
}

.lookup-sample:hover {
  background: rgba(125, 211, 252, 0.15);
  color: var(--text);
}

.lookup-result {
  margin-top: 18px;
  animation: fadeIn .25s;
}

.risk-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
}

.risk-banner.risk-high {
  background: linear-gradient(90deg, rgba(255, 58, 110, 0.18), rgba(255, 58, 110, 0.05));
  border: 1px solid rgba(255, 58, 110, 0.4);
}

.risk-banner.risk-low {
  background: linear-gradient(90deg, rgba(0, 229, 168, 0.14), rgba(0, 229, 168, 0.03));
  border: 1px solid rgba(0, 229, 168, 0.35);
}

.risk-banner.risk-err {
  background: linear-gradient(90deg, rgba(255, 176, 32, 0.12), rgba(255, 176, 32, 0.03));
  border: 1px solid rgba(255, 176, 32, 0.3);
}

.risk-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.risk-high .risk-dot {
  background: var(--pink);
  box-shadow: 0 0 14px var(--pink);
}

.risk-low .risk-dot {
  background: var(--success);
  box-shadow: 0 0 14px var(--success);
}

.risk-err .risk-dot {
  background: var(--amber);
  box-shadow: 0 0 14px var(--amber);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.risk-label {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text);
}

.risk-high .risk-label {
  color: var(--pink);
}

.risk-low .risk-label {
  color: var(--success);
}

.risk-err .risk-label {
  color: var(--amber);
}

.risk-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
}





/* ============================================================
   TOP NAV (fixed across all pages)
============================================================ */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 22px;
  gap: 24px;
  background: rgba(4, 8, 18, 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(125, 211, 252, 0.12);
  font-family: var(--mono);
}

.topnav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.brand-orb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: radial-gradient(circle at 35% 35%, rgba(125, 211, 252, 0.35), rgba(125, 211, 252, 0.05) 60%);
  border: 1px solid rgba(125, 211, 252, 0.35);
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.2);
  animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(125, 211, 252, 0.2);
  }

  50% {
    box-shadow: 0 0 30px rgba(125, 211, 252, 0.4);
  }
}

.brand-name {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--text);
  font-weight: 600;
}

.brand-sub {
  font-size: 8.5px;
  letter-spacing: 0.25em;
  color: var(--cyan);
  opacity: 0.7;
}

.topnav-links {
  display: flex;
  gap: 4px;
  justify-self: center;
}

.nav-link {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 6px;
  text-transform: uppercase;
  position: relative;
  transition: all .25s;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(125, 211, 252, 0.05);
}

.nav-link.active {
  color: var(--cyan);
  background: rgba(125, 211, 252, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 2px;
  height: 1.5px;
  background: var(--cyan);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--cyan);
}

.topnav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 229, 168, 0.08);
  border: 1px solid rgba(0, 229, 168, 0.25);
  color: var(--success);
}

.nav-status.connecting {
  color: var(--amber);
  background: rgba(255, 176, 32, 0.08);
  border-color: rgba(255, 176, 32, 0.25);
}

.nav-status.offline {
  color: var(--danger);
  background: rgba(255, 58, 110, 0.08);
  border-color: rgba(255, 58, 110, 0.25);
}

.nav-status .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: navPulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px currentColor;
}

@keyframes navPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: navPulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px currentColor;
}

/* ============================================================
   ENTERPRISE PAGE
============================================================ */
.ent {
  padding: 100px 60px 80px;
  max-width: 1280px;
  margin: 0 auto;
  color: var(--text);
}

.ent-hero {
  position: relative;
  padding: 60px 40px 80px;
  margin-bottom: 100px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  background: linear-gradient(180deg, rgba(14, 22, 44, 0.8), rgba(5, 9, 20, 0.6));
}

.ent-hero-glow {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 30% 40%, rgba(125, 211, 252, 0.18), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(255, 58, 110, 0.12), transparent 55%);
  pointer-events: none;
  animation: heroGlow 14s ease-in-out infinite;
}

@keyframes heroGlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-4%, 2%) scale(1.1);
  }
}

.ent-hero-content {
  position: relative;
  z-index: 1;
}

.ent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--cyan);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.2);
  margin-bottom: 28px;
}

.ent-h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 22px;
  text-wrap: balance;
}

.ent-gradient {
  background: linear-gradient(120deg, #7dd3fc, #a78bfa 40%, #ff3a6e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ent-sub {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-dim);
  margin-bottom: 36px;
  text-wrap: pretty;
}

.ent-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.ent-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
}

.ent-cta.primary {
  background: var(--cyan);
  color: #03060f;
  box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.5);
}

.ent-cta.primary:hover {
  background: #a6e2ff;
  box-shadow: 0 0 25px rgba(125, 211, 252, 0.5);
  transform: translateY(-1px);
}

.ent-cta.ghost {
  background: transparent;
  border-color: rgba(125, 211, 252, 0.3);
  color: var(--cyan);
}

.ent-cta.ghost:hover {
  background: rgba(125, 211, 252, 0.08);
  border-color: var(--cyan);
}

.ent-cta.full {
  width: 100%;
  justify-content: center;
}

.ent-cta.big {
  padding: 18px 34px;
  font-size: 13px;
}

.ent-live-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  max-width: 700px;
}

.ent-live-item {
  padding: 0 18px;
  border-right: 1px solid rgba(125, 211, 252, 0.08);
}

.ent-live-item:last-child {
  border-right: none;
}

.ent-live-item b {
  display: block;
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: -0.01em;
}

.ent-live-item span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.ent-section {
  margin-bottom: 100px;
}

.ent-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--cyan);
  margin-bottom: 14px;
  font-weight: 500;
}

.ent-h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 40px;
  max-width: 760px;
  text-wrap: balance;
}

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

@media (max-width: 900px) {
  .ent-grid-3 {
    grid-template-columns: 1fr;
  }
}

.fc {
  --fc-accent: #7dd3fc;
  padding: 28px 24px 24px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(14, 22, 44, 0.5), rgba(6, 10, 20, 0.3));
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.fc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--fc-accent), transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}

.fc:hover {
  border-color: var(--fc-accent);
  transform: translateY(-3px);
}

.fc:hover::before {
  opacity: 0.25;
}

.fc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--fc-accent);
  background: rgba(125, 211, 252, 0.08);
  margin-bottom: 20px;
}

.fc-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.fc-body {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 22px;
  text-wrap: pretty;
}

.fc-stat {
  padding-top: 18px;
  border-top: 1px solid rgba(125, 211, 252, 0.08);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.fc-stat-val {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--fc-accent);
  font-weight: 500;
}

.fc-stat-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.ent-workflow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}

.wf-step {
  flex: 1 1 180px;
  padding: 22px 20px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 12px;
  background: rgba(14, 22, 44, 0.4);
  transition: all .3s;
}

.wf-step:hover,
.wf-step.active {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.3), 0 20px 40px -20px rgba(125, 211, 252, 0.4);
}

.wf-step.active {
  background: rgba(125, 211, 252, 0.06);
}

.wf-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 12px;
}

.wf-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.wf-body {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
}

.wf-arrow {
  display: flex;
  align-items: center;
  color: var(--text-mute);
  font-size: 24px;
  padding: 0 4px;
}

@media (max-width: 900px) {
  .wf-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

.ent-pricing {
  text-align: center;
}

.ent-pricing .ent-h2 {
  margin-left: auto;
  margin-right: auto;
}

.price-toggle {
  display: inline-flex;
  background: rgba(14, 22, 44, 0.6);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 36px;
  gap: 2px;
}

.price-toggle button {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 6px;
  text-transform: uppercase;
  transition: all .2s;
}

.price-toggle button.on {
  background: var(--cyan);
  color: #03060f;
  font-weight: 600;
}

.price-toggle .save {
  margin-left: 6px;
  font-size: 9px;
  color: var(--success);
  letter-spacing: 0.1em;
}

.price-toggle button.on .save {
  color: #03060f;
}

.pc {
  position: relative;
  padding: 36px 28px 28px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 16px;
  background: rgba(14, 22, 44, 0.4);
  text-align: left;
  transition: all .3s;
}

.pc:hover {
  border-color: rgba(125, 211, 252, 0.3);
  transform: translateY(-3px);
}

.pc.featured {
  border-color: var(--cyan);
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.08), rgba(14, 22, 44, 0.6));
  box-shadow: 0 20px 60px -20px rgba(125, 211, 252, 0.3);
}

.pc-ribbon {
  position: absolute;
  top: -1px;
  right: 20px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  background: var(--cyan);
  color: #03060f;
  padding: 6px 14px;
  border-radius: 0 0 6px 6px;
  font-weight: 700;
}

.pc-tier {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--cyan);
  margin-bottom: 18px;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pc-currency {
  font-size: 20px;
  color: var(--text-dim);
}

.pc-val {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pc-per {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}

.pc-custom {
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
}

.pc-items {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 14px;
}

.pc-items svg {
  color: var(--cyan);
  flex-shrink: 0;
}

.ent-cta-strip .cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.1), rgba(255, 58, 110, 0.05));
  border: 1px solid rgba(125, 211, 252, 0.2);
  flex-wrap: wrap;
}

.ent-cta-strip .ent-h2 {
  margin-bottom: 12px;
}

/* ============================================================
   ANALYZER PAGE
============================================================ */
.an {
  padding: 100px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.an-hero {
  text-align: center;
  margin-bottom: 50px;
}

.an-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--cyan);
  margin-bottom: 16px;
}

.an-h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 20px;
}

.an-gradient {
  background: linear-gradient(120deg, #00e5a8, #7dd3fc 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.an-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dim);
  text-wrap: pretty;
}

.an-search {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
  padding: 6px 6px 6px 18px;
  background: rgba(14, 22, 44, 0.7);
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 12px;
  box-shadow: 0 20px 60px -30px rgba(125, 211, 252, 0.4);
  transition: border-color .2s, box-shadow .2s;
}

.an-search:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 20px 60px -20px rgba(125, 211, 252, 0.6);
}

.an-search-ico {
  color: var(--cyan);
  flex-shrink: 0;
}

.an-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  padding: 14px 8px;
}

.an-search input::placeholder {
  color: var(--text-mute);
}

.an-search button {
  background: var(--cyan);
  color: #03060f;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 700;
  padding: 14px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
}

.an-search button:hover:not(:disabled) {
  background: #a6e2ff;
}

.an-search button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.an-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}

.an-quick button {
  background: rgba(125, 211, 252, 0.06);
  border: 1px solid rgba(125, 211, 252, 0.15);
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
}

.an-quick button:hover {
  background: rgba(125, 211, 252, 0.15);
  color: var(--text);
}

.an-result {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.risk-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.risk-score-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
}

.risk-body {
  flex: 1;
}

.an-panel {
  padding: 24px;
  background: rgba(14, 22, 44, 0.5);
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 12px;
}

.an-section-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.an-count {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: auto;
}

.an-count.good {
  background: rgba(0, 229, 168, 0.12);
  color: var(--success);
}

.an-count.bad {
  background: rgba(255, 58, 110, 0.12);
  color: var(--danger);
}

.dnsbl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 6px;
}

.dnsbl-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  font-family: var(--mono);
  font-size: 11px;
}

.dnsbl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dnsbl-row.clean .dnsbl-dot {
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
}

.dnsbl-row.listed .dnsbl-dot {
  background: var(--danger);
  box-shadow: 0 0 8px var(--danger);
  animation: blPulse 1.4s ease-in-out infinite;
}

.dnsbl-row.error .dnsbl-dot {
  background: var(--text-mute);
}

@keyframes blPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.dnsbl-name {
  flex: 1;
  color: var(--text-dim);
}

.dnsbl-state {
  font-size: 9px;
  letter-spacing: 0.15em;
}

.dnsbl-row.clean .dnsbl-state {
  color: var(--success);
}

.dnsbl-row.listed .dnsbl-state {
  color: var(--danger);
  font-weight: 600;
}

.dnsbl-row.error .dnsbl-state {
  color: var(--text-mute);
}

.dshield-status {
  text-align: center;
  padding: 14px 0;
}

.dshield-status.bad {
  color: var(--danger);
}

.ds-big {
  font-family: var(--mono);
  font-size: 36px;
  font-weight: 500;
  color: var(--danger);
}

.ds-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.ds-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
}

.ds-clean {
  color: var(--success);
  font-size: 16px;
  font-family: var(--mono);
}

.dns-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dns-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: start;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
}

.dns-type {
  color: var(--cyan);
  font-weight: 600;
  padding: 4px 8px;
  background: rgba(125, 211, 252, 0.08);
  border-radius: 4px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.dns-values {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dns-values code {
  color: var(--text);
  word-break: break-all;
  font-size: 11px;
}

.an-history {
  margin-top: 32px;
  padding: 20px;
  background: rgba(14, 22, 44, 0.4);
  border-radius: 10px;
  border: 1px solid rgba(125, 211, 252, 0.08);
}

.an-history-row {
  display: grid;
  grid-template-columns: 90px 60px 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  cursor: pointer;
  border-radius: 6px;
  transition: background .2s;
}

.an-history-row:hover {
  background: rgba(125, 211, 252, 0.06);
}

.risk-chip {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-align: center;
}

.risk-chip.clean {
  background: rgba(0, 229, 168, 0.15);
  color: var(--success);
}

.risk-chip.caution {
  background: rgba(255, 176, 32, 0.15);
  color: var(--amber);
}

.risk-chip.suspicious,
.risk-chip.critical {
  background: rgba(255, 58, 110, 0.15);
  color: var(--danger);
}

.h-kind {
  color: var(--text-mute);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.h-query {
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.h-time {
  color: var(--text-mute);
  font-size: 9px;
}



/* ============================================================
   ENTERPRISE MODALS (demo form + checkout)
============================================================ */
.ent-modal {
  max-width: 560px;
  padding: 36px 32px 32px;
}

.ent-modal-sub {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.ent-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ent-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.ent-form label.full {
  grid-column: 1 / -1;
}

.ent-form input,
.ent-form select,
.ent-form textarea {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 8px;
  color: var(--text);
  padding: 11px 13px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  transition: border-color .15s;
}

.ent-form input:focus,
.ent-form select:focus,
.ent-form textarea:focus {
  border-color: var(--cyan);
}

.ent-form textarea {
  resize: vertical;
  min-height: 70px;
  font-family: var(--font);
}

.ent-form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.ent-form-sent {
  text-align: center;
  padding: 20px 0 4px;
}

.ent-form-sent-title {
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0 6px;
  color: var(--success);
}

.checkout-summary {
  margin: 18px 0 22px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(125, 211, 252, 0.1);
  border-radius: 10px;
}

.cs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-dim);
}

.cs-row b {
  color: var(--text);
  font-family: var(--mono);
}

.cs-row .free {
  color: var(--success);
}

.cs-row.total {
  font-size: 15px;
  padding-top: 10px;
}

.cs-row.total span,
.cs-row.total b {
  color: var(--text);
  font-weight: 600;
}

.cs-divider {
  height: 1px;
  background: rgba(125, 211, 252, 0.1);
  margin: 6px 0;
}

.cs-note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.checkout-lock {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  text-transform: uppercase;
}

/* ============================================================
   BLACKLIST PAGE
============================================================ */
.bl {
  padding: 100px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.bl-hero {
  text-align: center;
  margin-bottom: 40px;
}

.bl-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #ff3a6e;
  margin-bottom: 16px;
}

.bl-h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 18px;
}

.bl-gradient {
  background: linear-gradient(120deg, #ff3a6e, #ffb020 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bl-sub {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dim);
}

.bl-search {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 780px;
  margin: 0 auto;
  padding: 6px 6px 6px 6px;
  background: rgba(14, 22, 44, 0.7);
  border: 1px solid rgba(255, 58, 110, 0.25);
  border-radius: 12px;
  box-shadow: 0 20px 60px -30px rgba(255, 58, 110, 0.4);
  transition: border-color .2s, box-shadow .2s;
}

.bl-search:focus-within {
  border-color: #ff3a6e;
  box-shadow: 0 20px 60px -20px rgba(255, 58, 110, 0.5);
}

.bl-search-icon {
  color: #ff3a6e;
  padding: 0 8px 0 12px;
}

.bl-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  padding: 14px 4px;
}

.bl-search input::placeholder {
  color: var(--text-mute);
}

.bl-btn {
  background: #ff3a6e;
  color: #03060f;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  padding: 14px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
}

.bl-btn:hover:not(:disabled) {
  background: #ff5a86;
}

.bl-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bl-btn.stop {
  background: var(--amber);
}

.bl-samples {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-mute);
}

.bl-samples button {
  background: rgba(255, 58, 110, 0.08);
  border: 1px solid rgba(255, 58, 110, 0.18);
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
}

.bl-samples button:hover {
  background: rgba(255, 58, 110, 0.18);
  color: var(--text);
}

.bl-result {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bl-resultbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 20px 24px;
  background: rgba(14, 22, 44, 0.6);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 14px;
  flex-wrap: wrap;
}

.bl-rb-target {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bl-rb-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-mute);
}

.bl-rb-ip {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  flex-wrap: wrap;
}

.bl-rb-domain {
  color: var(--cyan);
}

.bl-rb-ip code {
  font-family: var(--mono);
  color: var(--text);
}

.bl-rb-err {
  color: var(--danger);
  font-size: 14px;
}

.bl-rb-stats {
  display: flex;
  gap: 24px;
}

.bl-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.bl-stat-val {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--c, var(--cyan));
  line-height: 1;
}

.bl-stat.big .bl-stat-val {
  font-size: 34px;
  animation: blPulseNum 1.2s ease-in-out infinite;
}

@keyframes blPulseNum {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.bl-stat-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  margin-top: 4px;
}

.bl-verdict {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-radius: 14px;
  border: 1px solid;
  flex-wrap: wrap;
}

.bl-verdict.bad {
  background: linear-gradient(90deg, rgba(255, 58, 110, 0.18), rgba(255, 58, 110, 0.06));
  border-color: rgba(255, 58, 110, 0.4);
  color: #ffd5e0;
}

.bl-verdict.good {
  background: linear-gradient(90deg, rgba(0, 229, 168, 0.15), rgba(0, 229, 168, 0.05));
  border-color: rgba(0, 229, 168, 0.35);
  color: #d5f5ea;
}

.bl-verdict-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
}

.bl-verdict.bad .bl-verdict-icon {
  color: #ff3a6e;
}

.bl-verdict.good .bl-verdict-icon {
  color: var(--success);
}

.bl-verdict-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.bl-verdict-sub {
  color: var(--text-dim);
  font-size: 13px;
}

.bl-export {
  margin-left: auto;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 58, 110, 0.3);
  color: #ff3a6e;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.bl-export:hover {
  background: rgba(255, 58, 110, 0.15);
}

.bl-table {
  background: rgba(14, 22, 44, 0.5);
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 14px;
  overflow: hidden;
}

.bl-table-head,
.bl-row {
  display: grid;
  grid-template-columns: 20px 1.4fr 0.8fr 1.2fr 0.8fr;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
}

.bl-table-head {
  background: rgba(0, 0, 0, 0.3);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--text-mute);
  text-transform: uppercase;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(125, 211, 252, 0.1);
}

.bl-row {
  font-family: var(--mono);
  font-size: 12px;
  border-bottom: 1px solid rgba(125, 211, 252, 0.05);
  transition: background .15s;
}

.bl-row:last-child {
  border-bottom: none;
}

.bl-row:hover {
  background: rgba(125, 211, 252, 0.04);
}

.bl-row-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-mute);
}

.bl-clean .bl-row-dot {
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
}

.bl-listed .bl-row-dot {
  background: var(--danger);
  box-shadow: 0 0 10px var(--danger);
  animation: blPulseNum 1.2s ease-in-out infinite;
}

.bl-checking .bl-row-dot {
  background: var(--cyan);
  animation: blPulseNum 1s ease-in-out infinite;
}

.bl-timeout .bl-row-dot {
  background: var(--amber);
}

.bl-row-name {
  color: var(--text);
  font-weight: 500;
}

.bl-row-cat {
  color: var(--text-mute);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bl-row-rec code {
  color: var(--text-dim);
  font-size: 11px;
}

.bl-row-rec .mute {
  color: var(--text-mute);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.bl-listed {
  background: rgba(255, 58, 110, 0.05);
}

.bl-listed .bl-row-name {
  color: #ffd5e0;
}

.bl-listed .bl-row-rec code {
  color: #ff3a6e;
}

.chip {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
}

.chip.good {
  background: rgba(0, 229, 168, 0.15);
  color: var(--success);
}

.chip.bad {
  background: rgba(255, 58, 110, 0.2);
  color: #ff6b8f;
}

.chip.pending {
  background: rgba(125, 211, 252, 0.12);
  color: var(--cyan);
}

.chip.warn {
  background: rgba(255, 176, 32, 0.15);
  color: var(--amber);
}

.bl-spinner {
  display: inline-flex;
  gap: 3px;
}

.bl-spinner span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blDots 1s ease-in-out infinite;
}

.bl-spinner span:nth-child(2) {
  animation-delay: 0.15s;
}

.bl-spinner span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes blDots {

  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.bl-empty {
  margin-top: 50px;
  padding: 30px 0;
}

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

@media (max-width: 760px) {
  .bl-empty-grid {
    grid-template-columns: 1fr;
  }
}

.bl-info {
  padding: 26px 22px;
  background: rgba(14, 22, 44, 0.4);
  border: 1px solid rgba(125, 211, 252, 0.1);
  border-radius: 12px;
  transition: all .25s;
}

.bl-info:hover {
  border-color: rgba(255, 58, 110, 0.3);
  transform: translateY(-2px);
}

.bl-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ff3a6e;
  background: rgba(255, 58, 110, 0.1);
  margin-bottom: 16px;
}

.bl-info-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.bl-info-body {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 800px) {

  .bl-table-head,
  .bl-row {
    grid-template-columns: 12px 1.2fr 0.8fr;
    gap: 10px;
    padding: 10px 14px;
  }

  .bl-row-cat,
  .bl-table-head>span:nth-child(3) {
    display: none;
  }

  .bl-row-rec,
  .bl-table-head>span:nth-child(4) {
    display: none;
  }
}

/* ============================================================
   v9 — Premium pass: legal modal, consent, button system,
   hash analyzer, Email Headers page
============================================================ */

/* Layer the legal modal above other modals (incl. demo / checkout) */
.det-modal.legal-modal-overlay {
  z-index: 200;
}

/* Legal modal — wide, readable, visually distinct from the action modals */
.det-card.legal-card {
  width: min(820px, 100%);
  max-height: 90vh;
  padding: 38px 44px 0;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(125, 211, 252, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(16, 22, 40, 0.99), rgba(6, 10, 20, 0.99));
  border: 1px solid rgba(125, 211, 252, 0.25);
}

.legal-card::before {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  height: 1.5px;
  opacity: 0.6;
}

.legal-card .creator-close {
  top: 16px;
  right: 18px;
}

.legal-doc {
  padding-bottom: 24px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.62;
  text-wrap: pretty;
}

.legal-doc h2.det-title {
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 4px 0 6px;
  background: linear-gradient(120deg, #d8e6ff, #7dd3fc 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-doc .legal-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(125, 211, 252, 0.12);
}

.legal-doc h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 26px 0 10px;
  padding-left: 14px;
  position: relative;
  letter-spacing: -0.005em;
}

.legal-doc h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--cyan), rgba(125, 211, 252, 0.2));
}

.legal-doc p {
  margin: 0 0 12px;
}

.legal-doc ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-doc li {
  margin-bottom: 8px;
}

.legal-doc b,
.legal-doc strong {
  color: var(--text);
  font-weight: 600;
}

.legal-doc a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px dashed rgba(125, 211, 252, 0.4);
  transition: all .15s;
}

.legal-doc a:hover {
  border-bottom-style: solid;
  color: #a6e2ff;
}

.legal-doc code {
  font-family: var(--mono);
  font-size: 12px;
  padding: 1px 6px;
  background: rgba(125, 211, 252, 0.08);
  border-radius: 4px;
  color: var(--cyan);
}

.legal-foot {
  position: sticky;
  bottom: 0;
  margin: 0 -44px;
  padding: 16px 44px 22px;
  background: linear-gradient(180deg, transparent, rgba(8, 12, 22, 0.95) 30%);
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(125, 211, 252, 0.10);
  backdrop-filter: blur(8px);
}

/* Custom scrollbar inside legal modal — matches palette */
.legal-card::-webkit-scrollbar {
  width: 8px;
}

.legal-card::-webkit-scrollbar-track {
  background: transparent;
}

.legal-card::-webkit-scrollbar-thumb {
  background: rgba(125, 211, 252, 0.18);
  border-radius: 4px;
}

.legal-card::-webkit-scrollbar-thumb:hover {
  background: rgba(125, 211, 252, 0.32);
}

/* ===== Consent block inside Demo / Checkout modals ===== */
.ent-consent {
  margin-top: 6px;
  padding: 16px 18px;
  background: rgba(3, 6, 15, 0.5);
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ent-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--text-dim) !important;
  line-height: 1.5;
  cursor: pointer;
}

.ent-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid rgba(125, 211, 252, 0.4);
  background: rgba(3, 6, 15, 0.6);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all .15s;
  display: grid;
  place-items: center;
}

.ent-check input[type="checkbox"]:hover {
  border-color: var(--cyan);
}

.ent-check input[type="checkbox"]:checked {
  background: var(--cyan);
  border-color: var(--cyan);
}

.ent-check input[type="checkbox"]:checked::after {
  content: '';
  width: 4px;
  height: 8px;
  border: solid #03060f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.ent-check span {
  flex: 1;
}

.ent-check a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px dashed rgba(125, 211, 252, 0.4);
}

.ent-check a:hover {
  border-bottom-style: solid;
}

.ent-legal-mini {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-mute);
  padding: 12px;
  background: rgba(125, 211, 252, 0.03);
  border-left: 2px solid rgba(125, 211, 252, 0.25);
  border-radius: 0 6px 6px 0;
  text-wrap: pretty;
}

.ent-legal-mini b {
  color: var(--text-dim);
}

.ent-legal-mini a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px dashed rgba(125, 211, 252, 0.4);
}

.ent-form-err {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  background: rgba(255, 58, 110, 0.08);
  border: 1px solid rgba(255, 58, 110, 0.3);
  border-left: 3px solid #ff3a6e;
  border-radius: 6px;
  color: #ff8aa6;
}

/* ===== Premium button system — overrides earlier .ent-cta rules ===== */
.ent-cta {
  position: relative;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .3s, background .25s, border-color .2s;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
}

.ent-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
  z-index: -1;
}

.ent-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
  pointer-events: none;
  z-index: 1;
}

.ent-cta:hover::after {
  left: 110%;
}

.ent-cta.primary {
  background: linear-gradient(135deg, #7dd3fc 0%, #a6e2ff 50%, #7dd3fc 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #03060f;
  border-color: rgba(125, 211, 252, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 0 0 0 rgba(125, 211, 252, 0.0),
    0 8px 24px -10px rgba(125, 211, 252, 0.4);
}

.ent-cta.primary::before {
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.4), transparent 60%);
}

.ent-cta.primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 0 30px rgba(125, 211, 252, 0.5),
    0 18px 36px -12px rgba(125, 211, 252, 0.55);
}

.ent-cta.primary:hover::before {
  opacity: 1;
}

.ent-cta.primary:active {
  transform: translateY(0);
  transition: transform .08s;
}

.ent-cta.ghost {
  background: rgba(125, 211, 252, 0.04);
  border-color: rgba(125, 211, 252, 0.28);
  color: var(--cyan);
  backdrop-filter: blur(6px);
}

.ent-cta.ghost:hover {
  background: rgba(125, 211, 252, 0.10);
  border-color: rgba(125, 211, 252, 0.6);
  color: #a6e2ff;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -16px rgba(125, 211, 252, 0.4);
}

.ent-cta.ghost:active {
  transform: translateY(0);
}

.ent-cta.full {
  width: 100%;
  justify-content: center;
}

.ent-cta.big {
  padding: 18px 36px;
  font-size: 12.5px;
  border-radius: 12px;
}

.ent-cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.ent-cta:disabled::after {
  display: none;
}

/* Price toggle — reskin for consistency */
.price-toggle {
  background: rgba(3, 6, 15, 0.6);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.6) inset;
}

.price-toggle button {
  border-radius: 8px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  transition: all .25s;
}

.price-toggle button.on {
  background: linear-gradient(135deg, #7dd3fc, #a6e2ff);
  color: #03060f;
  font-weight: 700;
  box-shadow: 0 6px 18px -10px rgba(125, 211, 252, 0.5);
}

/* Analyzer search button — match the new system */
.an-search button {
  background: linear-gradient(135deg, #7dd3fc, #a6e2ff);
  font-weight: 700;
  letter-spacing: 0.28em;
  border-radius: 9px;
  transition: all .2s;
}

.an-search button:hover:not(:disabled) {
  background: linear-gradient(135deg, #a6e2ff, #7dd3fc);
  box-shadow: 0 0 24px rgba(125, 211, 252, 0.4);
  transform: translateY(-1px);
}

/* ===== Hash analyzer — cracked / clean states ===== */
.hash-cracked {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(255, 58, 110, 0.10), rgba(255, 58, 110, 0.02));
  border: 1px solid rgba(255, 58, 110, 0.25);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.hash-cracked::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(255, 58, 110, 0.18), transparent 50%);
  pointer-events: none;
}

.hash-cracked-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.hash-cracked-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  color: rgba(255, 58, 110, 0.85);
  font-weight: 600;
}

.hash-cracked-plain {
  display: inline-block;
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 500;
  padding: 10px 14px;
  background: rgba(3, 6, 15, 0.7);
  border: 1px solid rgba(255, 58, 110, 0.4);
  border-radius: 6px;
  color: #ffd5e0;
  word-break: break-all;
  text-shadow: 0 0 12px rgba(255, 58, 110, 0.4);
  letter-spacing: 0.02em;
}

.hash-cracked-src {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
}

.hash-cracked-warn {
  position: relative;
  z-index: 1;
  font-size: 12px;
  line-height: 1.55;
  color: #ffb8c8;
  padding: 10px 14px;
  background: rgba(3, 6, 15, 0.4);
  border-left: 2px solid #ff3a6e;
  border-radius: 0 6px 6px 0;
  margin-top: 4px;
}

.hash-clean {
  padding: 4px 0;
}

.hash-clean-msg {
  font-size: 14px;
  color: var(--success);
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.hash-clean-sub {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-mute);
  text-wrap: pretty;
}

/* MalwareBazaar card */
.bazaar-card {
  padding: 4px 0;
}

.bazaar-tag {
  background: rgba(255, 176, 32, 0.10) !important;
  border-color: rgba(255, 176, 32, 0.3) !important;
  color: var(--amber) !important;
}

/* ============================================================
   EMAIL HEADERS PAGE
============================================================ */
.eh {
  padding: 100px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.eh-hero {
  text-align: center;
  margin-bottom: 24px;
}

.eh-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #b084ff;
  margin-bottom: 16px;
}

.eh-h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 20px;
}

.eh-gradient {
  background: linear-gradient(120deg, #b084ff 0%, #7dd3fc 50%, #00e5a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eh-sub {
  max-width: 660px;
  margin: 0 auto 36px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
  text-wrap: pretty;
}

.eh-sub code {
  font-family: var(--mono);
  font-size: 13px;
  padding: 1px 6px;
  background: rgba(176, 132, 255, 0.10);
  color: #c5a3ff;
  border-radius: 4px;
}

.eh-input-wrap {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}

.eh-textarea {
  width: 100%;
  min-height: 220px;
  padding: 18px 20px;
  background: rgba(3, 6, 15, 0.6);
  border: 1px solid rgba(176, 132, 255, 0.22);
  border-radius: 14px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.6;
  outline: none;
  resize: vertical;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 20px 60px -30px rgba(176, 132, 255, 0.4);
}

.eh-textarea::placeholder {
  color: var(--text-mute);
}

.eh-textarea:focus {
  border-color: #b084ff;
  box-shadow: 0 20px 60px -20px rgba(176, 132, 255, 0.55), 0 0 0 1px rgba(176, 132, 255, 0.25);
}

.eh-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Override primary button hue on email-headers page to match the purple/cyan vibe */
.eh .ent-cta.primary {
  background: linear-gradient(135deg, #b084ff 0%, #7dd3fc 100%);
  background-size: 200% 200%;
  border-color: rgba(176, 132, 255, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 8px 24px -10px rgba(176, 132, 255, 0.4);
}

.eh .ent-cta.primary:hover {
  background-position: 100% 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 0 30px rgba(176, 132, 255, 0.45),
    0 18px 36px -12px rgba(176, 132, 255, 0.55);
}

.eh .ent-cta.ghost {
  border-color: rgba(176, 132, 255, 0.3);
  color: #c5a3ff;
}

.eh .ent-cta.ghost:hover {
  background: rgba(176, 132, 255, 0.08);
  border-color: #b084ff;
  color: #d8c0ff;
}

.eh-result {
  margin-top: 36px;
}

/* Auth grid — three cards SPF / DKIM / DMARC */
.eh-auth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 760px) {
  .eh-auth-grid {
    grid-template-columns: 1fr;
  }
}

.eh-auth {
  padding: 18px 18px 16px;
  border-radius: 10px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  background: rgba(14, 22, 44, 0.4);
  position: relative;
  overflow: hidden;
}

.eh-auth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text-mute);
}

.eh-auth-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--text-mute);
  margin-bottom: 8px;
}

.eh-auth-status {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  color: var(--text);
}

.eh-auth-desc {
  font-size: 11.5px;
  color: var(--text-mute);
  line-height: 1.4;
}

.eh-auth-pass {
  background: rgba(0, 229, 168, 0.06);
  border-color: rgba(0, 229, 168, 0.3);
}

.eh-auth-pass::before {
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.eh-auth-pass .eh-auth-status {
  color: var(--success);
  text-shadow: 0 0 12px rgba(0, 229, 168, 0.4);
}

.eh-auth-pass .eh-auth-name {
  color: rgba(0, 229, 168, 0.9);
}

.eh-auth-fail {
  background: rgba(255, 58, 110, 0.06);
  border-color: rgba(255, 58, 110, 0.3);
}

.eh-auth-fail::before {
  background: #ff3a6e;
  box-shadow: 0 0 8px #ff3a6e;
}

.eh-auth-fail .eh-auth-status {
  color: #ff3a6e;
  text-shadow: 0 0 12px rgba(255, 58, 110, 0.4);
}

.eh-auth-fail .eh-auth-name {
  color: rgba(255, 58, 110, 0.9);
}

.eh-auth-neutral,
.eh-auth-other {
  background: rgba(255, 176, 32, 0.06);
  border-color: rgba(255, 176, 32, 0.3);
}

.eh-auth-neutral::before,
.eh-auth-other::before {
  background: var(--amber);
}

.eh-auth-neutral .eh-auth-status,
.eh-auth-other .eh-auth-status {
  color: var(--amber);
}

.eh-auth-neutral .eh-auth-name,
.eh-auth-other .eh-auth-name {
  color: rgba(255, 176, 32, 0.9);
}

.eh-auth-missing {
  opacity: 0.65;
}

.eh-auth-missing .eh-auth-status {
  color: var(--text-mute);
  font-size: 14px;
  letter-spacing: 0.2em;
}

.eh-code-wrap {
  white-space: pre-wrap !important;
  word-break: break-word !important;
  line-height: 1.55 !important;
  font-size: 11px !important;
}

/* Risk flags */
.eh-flags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eh-flag {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(3, 6, 15, 0.4);
  border: 1px solid rgba(125, 211, 252, 0.08);
  border-left: 3px solid var(--text-mute);
  border-radius: 0 8px 8px 0;
  align-items: center;
}

.eh-flag-sev {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-align: center;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(125, 211, 252, 0.08);
  color: var(--text-mute);
}

.eh-flag-body {}

.eh-flag-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.eh-flag-detail {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-dim);
  text-wrap: pretty;
}

.eh-sev-critical {
  border-left-color: #ff3a6e;
  background: rgba(255, 58, 110, 0.06);
}

.eh-sev-critical .eh-flag-sev {
  background: rgba(255, 58, 110, 0.18);
  color: #ff3a6e;
}

.eh-sev-critical .eh-flag-label {
  color: #ffd5e0;
}

.eh-sev-high {
  border-left-color: #ff7a4e;
  background: rgba(255, 122, 78, 0.05);
}

.eh-sev-high .eh-flag-sev {
  background: rgba(255, 122, 78, 0.15);
  color: #ff9c78;
}

.eh-sev-medium {
  border-left-color: var(--amber);
  background: rgba(255, 176, 32, 0.05);
}

.eh-sev-medium .eh-flag-sev {
  background: rgba(255, 176, 32, 0.15);
  color: var(--amber);
}

.eh-sev-low {
  border-left-color: var(--cyan);
  background: rgba(125, 211, 252, 0.04);
}

.eh-sev-low .eh-flag-sev {
  background: rgba(125, 211, 252, 0.12);
  color: var(--cyan);
}

/* Hop chain — vertical timeline */
.eh-hops {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eh-hop {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: stretch;
}

.eh-hop-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 14px;
}

.eh-hop-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cyan);
  background: rgba(3, 6, 15, 0.9);
  border: 1.5px solid rgba(125, 211, 252, 0.45);
  box-shadow: 0 0 14px rgba(125, 211, 252, 0.25);
  z-index: 2;
  position: relative;
}

.eh-hop-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.45) 0%, rgba(125, 211, 252, 0.12) 80%, transparent);
  margin-top: 4px;
  margin-bottom: -8px;
}

.eh-hop-card {
  margin-bottom: 16px;
  padding: 14px 16px;
  background: rgba(14, 22, 44, 0.45);
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 10px;
  transition: border-color .2s, transform .2s;
}

.eh-hop-card:hover {
  border-color: rgba(125, 211, 252, 0.3);
  transform: translateX(2px);
}

.eh-hop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.eh-hop-route {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12.5px;
}

.eh-hop-from {
  color: var(--text);
  font-weight: 500;
}

.eh-hop-arrow {
  color: var(--cyan);
  font-weight: 600;
}

.eh-hop-by {
  color: var(--text-dim);
}

.eh-delay {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}

.eh-delay.fast {
  color: var(--success);
  background: rgba(0, 229, 168, 0.10);
  border: 1px solid rgba(0, 229, 168, 0.3);
}

.eh-delay.mid {
  color: var(--amber);
  background: rgba(255, 176, 32, 0.10);
  border: 1px solid rgba(255, 176, 32, 0.3);
}

.eh-delay.slow {
  color: #ff3a6e;
  background: rgba(255, 58, 110, 0.10);
  border: 1px solid rgba(255, 58, 110, 0.3);
}

.eh-hop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.eh-hop-chip {
  font-family: var(--mono);
  font-size: 10.5px;
  padding: 4px 9px;
  background: rgba(3, 6, 15, 0.5);
  border: 1px solid rgba(125, 211, 252, 0.10);
  border-radius: 5px;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.eh-hop-chip b {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  font-weight: 600;
}

.eh-hop-chip code {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text);
}

.eh-meta-val {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text);
  word-break: break-all;
}

@media (max-width: 760px) {
  .eh {
    padding: 90px 18px 60px;
  }

  .eh-flag {
    grid-template-columns: 1fr;
  }

  .eh-flag-sev {
    justify-self: flex-start;
  }
}

/* ============================================================
   v10 — Engines grid CSS (was missing) + polish pass
============================================================ */

/* Multi-engine detection grid — row layout with proper spacing.
   This is the panel that shows e.g. "abuse.ch MalwareBazaar  Not in DB  CLEAN". */
.engines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(125, 211, 252, 0.06);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.10);
}

.engine-row {
  display: grid;
  grid-template-columns: 14px minmax(180px, 220px) 1fr 110px;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  background: rgba(8, 12, 22, 0.85);
  font-family: var(--mono);
  font-size: 12px;
  transition: background .15s;
}

.engine-row:hover {
  background: rgba(14, 22, 44, 0.95);
}

.eng-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-mute);
  flex-shrink: 0;
}

.eng-name {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eng-detail {
  color: var(--text-dim);
  font-size: 11.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eng-verdict {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  justify-self: end;
}

.engine-row.eng-malicious .eng-dot {
  background: #ff3a6e;
  box-shadow: 0 0 8px rgba(255, 58, 110, 0.6);
  animation: blPulse 1.4s ease-in-out infinite;
}

.engine-row.eng-malicious .eng-name {
  color: #ffd5e0;
}

.engine-row.eng-malicious .eng-detail {
  color: #ff8aa6;
}

.engine-row.eng-malicious .eng-verdict {
  background: rgba(255, 58, 110, 0.18);
  color: #ff3a6e;
}

.engine-row.eng-malicious {
  background: rgba(255, 58, 110, 0.05);
}

.engine-row.eng-clean .eng-dot {
  background: var(--success);
  box-shadow: 0 0 6px rgba(0, 229, 168, 0.5);
}

.engine-row.eng-clean .eng-verdict {
  background: rgba(0, 229, 168, 0.12);
  color: var(--success);
}

.engine-row.eng-unknown .eng-dot {
  background: var(--text-mute);
}

.engine-row.eng-unknown .eng-verdict {
  background: rgba(125, 211, 252, 0.08);
  color: var(--text-mute);
}

@media (max-width: 640px) {
  .engine-row {
    grid-template-columns: 14px 1fr 90px;
    gap: 10px;
    padding: 10px 12px;
  }

  .eng-detail {
    display: none;
  }
}

/* IOC rows (ThreatFox) — same treatment so no more pegado text */
.ioc-row {
  display: grid;
  grid-template-columns: minmax(120px, 140px) 1fr 80px 90px;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(8, 12, 22, 0.7);
  border: 1px solid rgba(125, 211, 252, 0.08);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  margin-bottom: 6px;
}

.ioc-type {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
}

.ioc-malware {
  color: var(--text);
  font-weight: 500;
}

.ioc-conf {
  font-size: 10px;
  color: var(--amber);
  text-align: center;
  padding: 3px 6px;
  background: rgba(255, 176, 32, 0.10);
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.ioc-date {
  color: var(--text-mute);
  font-size: 10px;
  text-align: right;
}

/* ===== Email-sec rows (SPF/DKIM/MTA-STS in domain analyzer) ===== */
.email-sec-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.esec-row {
  display: grid;
  grid-template-columns: 90px 1fr 100px;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(8, 12, 22, 0.6);
  border: 1px solid rgba(125, 211, 252, 0.08);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 11px;
}

.esec-name {
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cyan);
  font-size: 11px;
}

.esec-val {
  color: var(--text-dim);
  font-size: 10.5px;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.esec-badge {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
}

.esec-badge.good {
  background: rgba(0, 229, 168, 0.14);
  color: var(--success);
}

.esec-badge.warn {
  background: rgba(255, 176, 32, 0.14);
  color: var(--amber);
}

.esec-badge.mute {
  background: rgba(125, 211, 252, 0.08);
  color: var(--text-mute);
}

/* ===== Cert list ===== */
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cert-row {
  padding: 12px 14px;
  background: rgba(8, 12, 22, 0.6);
  border: 1px solid rgba(125, 211, 252, 0.08);
  border-radius: 8px;
  font-family: var(--mono);
}

.cert-cn {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}

.cert-issuer {
  font-size: 10.5px;
  color: var(--cyan);
  margin-bottom: 6px;
}

.cert-dates {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.cert-dates .arr {
  color: var(--text-mute);
}

.cert-sans {
  font-size: 10px;
  color: var(--text-mute);
  margin-top: 4px;
}

/* ===== Event list (RDAP entities & events) — fix any pegado text ===== */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 6px 10px;
  background: rgba(8, 12, 22, 0.4);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
}

.event-action {
  color: var(--cyan);
  letter-spacing: 0.05em;
}

.event-date {
  color: var(--text-dim);
}

/* ===== Risk banner — make sure layout breathes ===== */
.risk-banner {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border-radius: 12px;
  background: rgba(14, 22, 44, 0.5);
  border: 1px solid rgba(125, 211, 252, 0.12);
}

.risk-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
}

.risk-banner.risk-high {
  background: linear-gradient(180deg, rgba(255, 58, 110, 0.10), rgba(255, 58, 110, 0.02));
  border-color: rgba(255, 58, 110, 0.3);
}

.risk-banner.risk-high .risk-dot {
  background: #ff3a6e;
  box-shadow: 0 0 12px #ff3a6e;
  animation: blPulse 1.6s ease-in-out infinite;
}

.risk-banner.risk-low {
  background: linear-gradient(180deg, rgba(0, 229, 168, 0.08), rgba(0, 229, 168, 0.02));
  border-color: rgba(0, 229, 168, 0.3);
}

.risk-banner.risk-err {
  background: linear-gradient(180deg, rgba(255, 176, 32, 0.08), rgba(255, 176, 32, 0.02));
  border-color: rgba(255, 176, 32, 0.3);
}

.risk-banner.risk-err .risk-dot {
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
}

.risk-label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.risk-sub {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.risk-banner.risk-high .risk-label {
  color: #ffd5e0;
}

.risk-banner.risk-low .risk-label {
  color: #b3f5db;
}

/* ===== Email Headers polish — better default font, fix layout on small screens ===== */
.eh-hop-card {
  min-width: 0;
}

.eh-hop-route {
  min-width: 0;
}

.eh-hop-from,
.eh-hop-by {
  word-break: break-all;
  max-width: 100%;
}

.eh-textarea {
  font-feature-settings: 'liga' 0;
}

/* ===== det-field improvements (used everywhere) ===== */
.det-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.det-field-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.det-field-value {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text);
  word-break: break-word;
}

/* ===== Demo modal — bigger, less cramped, better grid ===== */
.det-modal {
  padding: 30px 20px;
}

.ent-modal {
  width: min(640px, 100%);
  padding: 38px 36px 30px;
}

.ent-modal-sub {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 4px 0 24px;
}

.ent-form {
  gap: 16px;
}

.ent-form label {
  font-size: 10px;
  letter-spacing: 0.22em;
}

.ent-form input,
.ent-form select,
.ent-form textarea {
  padding: 12px 14px;
  font-size: 13px;
  border-radius: 8px;
  background: rgba(3, 6, 15, 0.6);
  border: 1px solid rgba(125, 211, 252, 0.18);
  transition: border-color .15s, box-shadow .15s;
}

.ent-form input:focus,
.ent-form select:focus,
.ent-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.08);
}

/* Close button — visible on all modals */
.creator-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(125, 211, 252, 0.06);
  border: 1px solid rgba(125, 211, 252, 0.15);
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .2s;
  z-index: 10;
}

.creator-close:hover {
  background: rgba(255, 58, 110, 0.12);
  border-color: rgba(255, 58, 110, 0.4);
  color: #ff8aa6;
}

/* ============================================================
   v11 — Analyzer tabs + Crypto Toolkit + live ticker
============================================================ */

/* Analyzer top-level tab system */
.an-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  margin: 0 auto 40px;
  max-width: 1200px;
}

.an-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(14, 22, 44, 0.5);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 10px 10px 0 0;
  color: var(--text-mute);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: all .2s;
  border-bottom: none;
  position: relative;
  top: 1px;
}

.an-tab:hover {
  color: var(--cyan);
  border-color: rgba(125, 211, 252, 0.3);
}

.an-tab.on {
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.12), transparent);
  color: var(--cyan);
  border-color: rgba(125, 211, 252, 0.4);
}

.an-tab.on::before {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.an-tab svg {
  stroke: currentColor;
}

/* ===== Crypto Toolkit ===== */
.ct {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 24px 80px;
}

.ct-hero {
  text-align: center;
  margin-bottom: 30px;
}

.ct-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: #b084ff;
  margin-bottom: 14px;
}

.ct-h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 18px;
}

.ct-gradient {
  background: linear-gradient(120deg, #b084ff, #7dd3fc 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ct-sub {
  max-width: 680px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dim);
  text-wrap: pretty;
}

/* Tool selector — grid of cards */
.ct-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.ct-tab {
  text-align: left;
  padding: 14px 16px;
  background: rgba(14, 22, 44, 0.4);
  border: 1px solid rgba(125, 211, 252, 0.10);
  border-radius: 10px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}

.ct-tab:hover {
  border-color: rgba(125, 211, 252, 0.3);
  background: rgba(14, 22, 44, 0.65);
  transform: translateY(-1px);
}

.ct-tab.on {
  border-color: var(--cyan);
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.10), rgba(125, 211, 252, 0.02));
  box-shadow: 0 0 24px -8px rgba(125, 211, 252, 0.4);
}

.ct-tab-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
  margin-bottom: 3px;
}

.ct-tab.on .ct-tab-label {
  color: var(--cyan);
}

.ct-tab-desc {
  font-size: 11px;
  color: var(--text-mute);
  font-family: var(--mono);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* Tool panels */
.ct-panel {
  padding: 28px 28px 26px;
  background: rgba(14, 22, 44, 0.35);
  border: 1px solid rgba(125, 211, 252, 0.10);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.ct-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ct-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  font-weight: 600;
  text-transform: uppercase;
}

.ct-input,
.ct-textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(3, 6, 15, 0.65);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
}

.ct-input:focus,
.ct-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.10);
}

.ct-mono {
  font-family: var(--mono);
}

.ct-pill {
  display: inline-block;
  margin: 0 4px 4px 0;
  padding: 6px 12px;
  background: rgba(3, 6, 15, 0.5);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 20px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all .15s;
}

.ct-pill:hover {
  color: var(--cyan);
  border-color: rgba(125, 211, 252, 0.4);
}

.ct-pill.on {
  background: linear-gradient(135deg, #7dd3fc, #a6e2ff);
  color: #03060f;
  border-color: var(--cyan);
  font-weight: 600;
}

.ct-encoding {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ct-mini-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  margin-right: 4px;
}

.ct-mini-btn {
  align-self: flex-start;
  padding: 5px 10px;
  background: transparent;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 5px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all .15s;
}

.ct-mini-btn:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.ct-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ct-info {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-dim);
  padding: 12px 14px;
  background: rgba(125, 211, 252, 0.04);
  border-left: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 0 6px 6px 0;
  text-wrap: pretty;
}

.ct-info b {
  color: var(--text);
  font-weight: 600;
}

.ct-error {
  font-family: var(--mono);
  font-size: 12px;
  padding: 10px 14px;
  background: rgba(255, 58, 110, 0.08);
  border: 1px solid rgba(255, 58, 110, 0.3);
  border-left: 3px solid #ff3a6e;
  border-radius: 6px;
  color: #ff8aa6;
}

/* Hash output rows */
.ct-output-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-hash-row {
  display: grid;
  grid-template-columns: 110px 1fr 70px;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(3, 6, 15, 0.4);
  border: 1px solid rgba(125, 211, 252, 0.10);
  border-radius: 8px;
  font-family: var(--mono);
}

.ct-hash-meta {}

.ct-hash-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
}

.ct-hash-bits {
  font-size: 10px;
  color: var(--text-mute);
  margin-top: 2px;
}

.ct-hash-val {
  font-size: 11.5px;
  color: var(--text);
  word-break: break-all;
  letter-spacing: 0.02em;
}

.ct-copy {
  padding: 6px 10px;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 5px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all .15s;
}

.ct-copy:hover {
  background: var(--cyan);
  color: #03060f;
}

.ct-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  padding-top: 6px;
}

.ct-meta b {
  color: var(--text);
}

/* Encoding op grid */
.ct-op-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Password tool */
.ct-pwd-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ct-pwd-input {
  flex: 1;
}

.ct-pwd-eye {
  width: 38px;
  height: 38px;
  padding: 0;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 6px;
  color: var(--text-dim);
  font-size: 16px;
  cursor: pointer;
}

.ct-pwd-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ct-pwd-analysis {
  padding: 16px;
  background: rgba(3, 6, 15, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(125, 211, 252, 0.10);
}

.ct-pwd-meter {
  height: 8px;
  background: rgba(3, 6, 15, 0.6);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 12px;
}

.ct-pwd-bar {
  height: 100%;
  border-radius: 99px;
  transition: width .35s, background .35s;
  background: var(--text-mute);
}

.level-very-weak .ct-pwd-bar,
.ct-pwd-meter.level-very-weak .ct-pwd-bar {
  background: #ff3a6e;
}

.level-weak .ct-pwd-bar,
.ct-pwd-meter.level-weak .ct-pwd-bar {
  background: #ff7a4e;
}

.level-fair .ct-pwd-bar,
.ct-pwd-meter.level-fair .ct-pwd-bar {
  background: var(--amber);
}

.level-strong .ct-pwd-bar,
.ct-pwd-meter.level-strong .ct-pwd-bar {
  background: var(--cyan);
}

.level-very-strong .ct-pwd-bar,
.ct-pwd-meter.level-very-strong .ct-pwd-bar {
  background: var(--success);
}

.ct-pwd-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-dim);
}

.ct-pwd-stats b {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  margin-bottom: 3px;
  font-weight: 600;
  text-transform: uppercase;
}

.ct-pwd-stats span.level-very-weak {
  color: #ff3a6e;
  font-weight: 700;
}

.ct-pwd-stats span.level-weak {
  color: #ff7a4e;
  font-weight: 700;
}

.ct-pwd-stats span.level-fair {
  color: var(--amber);
  font-weight: 700;
}

.ct-pwd-stats span.level-strong {
  color: var(--cyan);
  font-weight: 700;
}

.ct-pwd-stats span.level-very-strong {
  color: var(--success);
  font-weight: 700;
}

.ct-breach {
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.55;
}

.ct-breach-title {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}

.ct-breach-clean {
  background: rgba(0, 229, 168, 0.06);
  border: 1px solid rgba(0, 229, 168, 0.3);
  color: var(--text-dim);
}

.ct-breach-clean .ct-breach-title {
  color: var(--success);
}

.ct-breach-bad {
  background: rgba(255, 58, 110, 0.08);
  border: 1px solid rgba(255, 58, 110, 0.3);
  color: #ffb8c8;
}

.ct-breach-bad .ct-breach-title {
  color: #ff3a6e;
}

/* Hash reverse tool result rows */
.ct-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-result-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 12px 14px;
  background: rgba(3, 6, 15, 0.4);
  border: 1px solid rgba(125, 211, 252, 0.10);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 12px;
}

.ct-result-name {
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

.ct-result-detail {
  color: var(--text-dim);
  word-break: break-word;
}

.ct-good {
  color: var(--success);
}

.ct-bad {
  color: #ff3a6e;
  font-weight: 600;
}

.ct-mute {
  color: var(--text-mute);
}

.ct-detect {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
}

.ct-detected b {
  color: var(--cyan);
}

.ct-detect-bad {
  color: #ff8aa6;
}

@media (max-width: 720px) {
  .ct-result-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ct-hash-row {
    grid-template-columns: 80px 1fr 60px;
  }
}

/* ===== Live ticker animation on the bignum =====
   Subtle pulse when the value increments. */
.bignum-val {
  transition: text-shadow .3s, color .3s;
}

.bignum-val.tick-pulse {
  animation: tickFlash 0.4s ease-out;
}

@keyframes tickFlash {
  0% {
    text-shadow: 0 0 0 rgba(255, 58, 110, 0);
  }

  40% {
    text-shadow: 0 0 22px rgba(255, 58, 110, 0.55);
  }

  100% {
    text-shadow: 0 0 0 rgba(255, 58, 110, 0);
  }
}

/* ============================================================
   v11 — Language switcher · Chatbot · Blacklist queue
============================================================ */

/* === Language switcher in TopNav === */
.lang-switcher {
  position: relative;
  margin-right: 8px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(125, 211, 252, 0.06);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 6px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all .15s;
}

.lang-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.lang-current {
  font-weight: 700;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: rgba(11, 20, 39, 0.98);
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: inherit;
  font-size: 12.5px;
  text-align: left;
  cursor: pointer;
  transition: background .15s;
}

.lang-item:hover {
  background: rgba(125, 211, 252, 0.08);
  color: var(--text);
}

.lang-item.on {
  background: rgba(125, 211, 252, 0.12);
  color: var(--cyan);
}

.lang-code {
  display: inline-block;
  min-width: 28px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lang-name {
  font-size: 12.5px;
}

/* === Chatbot widget === */
.chatbot-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #7dd3fc, #b084ff);
  color: #03060f;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.35), 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 9000;
  transition: transform .2s, box-shadow .2s;
}

.chatbot-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(125, 211, 252, 0.5);
}

.chatbot-fab.open {
  background: rgba(11, 20, 39, 0.95);
  color: var(--cyan);
  border: 1px solid rgba(125, 211, 252, 0.3);
}

.chatbot-panel {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 130px);
  background: rgba(11, 20, 39, 0.98);
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
  z-index: 9001;
  backdrop-filter: blur(10px);
  animation: chatSlideIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes chatSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chatbot-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.08), transparent);
  border-bottom: 1px solid rgba(125, 211, 252, 0.15);
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.chatbot-mode {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
}

.chatbot-mode.demo {
  background: rgba(176, 132, 255, 0.18);
  color: #b084ff;
}

.chatbot-mode.live {
  background: rgba(0, 229, 168, 0.18);
  color: var(--success);
}

.chatbot-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-top: 4px;
}

.chatbot-close {
  background: transparent;
  border: none;
  color: var(--text-mute);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all .15s;
}

.chatbot-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.chatbot-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(125, 211, 252, 0.2) transparent;
}

.chatbot-msgs::-webkit-scrollbar {
  width: 6px;
}

.chatbot-msgs::-webkit-scrollbar-thumb {
  background: rgba(125, 211, 252, 0.2);
  border-radius: 3px;
}

.chatbot-msg {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  animation: msgSlideIn 0.2s ease-out;
}

@keyframes msgSlideIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-msg.user {
  justify-content: flex-end;
}

.chatbot-avatar {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #7dd3fc, #b084ff);
  color: #03060f;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  word-wrap: break-word;
  text-wrap: pretty;
}

.chatbot-msg.bot .chatbot-bubble {
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.12);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.chatbot-msg.user .chatbot-bubble {
  background: linear-gradient(135deg, #7dd3fc, #a6e2ff);
  color: #03060f;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}

.chatbot-typing {
  display: flex;
  gap: 4px;
  padding: 14px 16px !important;
}

.stat-live-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
}

.premium-glow {
  text-shadow: 0 0 15px rgba(125, 211, 252, 0.5), 0 0 5px rgba(125, 211, 252, 0.3);
}

.det-live-dot {
  width: 10px;
  height: 10px;
  background: #ff3a6e;
  border-radius: 50%;
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
  box-shadow: 0 0 12px #ff3a6e;
}

.chatbot-typing span {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  display: inline-block;
  animation: typingDot 1.4s infinite;
}

.chatbot-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chatbot-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {

  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.chatbot-input {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(125, 211, 252, 0.15);
  background: rgba(3, 6, 15, 0.4);
}

.chatbot-input input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(3, 6, 15, 0.6);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 20px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.chatbot-input input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.10);
}

.chatbot-input button {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #7dd3fc, #a6e2ff);
  color: #03060f;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}

.chatbot-input button:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(125, 211, 252, 0.4);
}

.chatbot-input button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(125, 211, 252, 0.2);
  color: var(--text-mute);
}

@media (max-width: 460px) {
  .chatbot-panel {
    width: calc(100vw - 16px);
    right: 8px;
    bottom: 80px;
  }

  .chatbot-fab {
    bottom: 16px;
    right: 16px;
  }
}

/* === Blacklist · Live Threat Queue === */
.bl-queue {
  margin-top: 30px;
  padding: 24px 26px 28px;
  background: rgba(14, 22, 44, 0.45);
  border: 1px solid rgba(255, 58, 110, 0.18);
  border-radius: 14px;
}

.bl-queue-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}

.bl-queue-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #ff3a6e;
  font-weight: 700;
  margin-bottom: 6px;
}

.bl-queue-sub {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 580px;
  text-wrap: pretty;
}

.bl-queue-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 58, 110, 0.10);
  border: 1px solid rgba(255, 58, 110, 0.3);
  border-radius: 99px;
  font-family: var(--mono);
  font-size: 11px;
  color: #ffb8c8;
  white-space: nowrap;
}

.bl-queue-count b {
  color: #ff3a6e;
  font-size: 13px;
  font-weight: 700;
}

.bl-queue-pulse {
  width: 8px;
  height: 8px;
  background: #ff3a6e;
  border-radius: 50%;
  animation: queuePulse 1.5s infinite;
  box-shadow: 0 0 8px #ff3a6e;
}

@keyframes queuePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.bl-queue-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 22px;
  padding: 16px 18px;
  background: rgba(3, 6, 15, 0.4);
  border-radius: 10px;
  border: 1px solid rgba(125, 211, 252, 0.10);
}

.bl-stat-block {}

.bl-stat-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 8px;
}

.bl-stat-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bl-stat-row {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
}

.bl-stat-country,
.bl-stat-family {
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.bl-stat-bar {
  background: rgba(125, 211, 252, 0.06);
  border-radius: 99px;
  height: 6px;
  overflow: hidden;
}

.bl-stat-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), #b084ff);
  border-radius: 99px;
  transition: width 0.6s;
}

.bl-stat-bar i.bad {
  background: linear-gradient(90deg, #ff3a6e, #ff7a4e);
}

.bl-stat-num {
  color: var(--text-mute);
  text-align: right;
}

.bl-queue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}

.bl-queue-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(3, 6, 15, 0.5);
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
  font-family: inherit;
}

.bl-queue-item:hover {
  border-color: var(--cyan);
  background: rgba(125, 211, 252, 0.06);
  transform: translateY(-1px);
}

.bl-queue-ip {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.bl-queue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.bl-queue-flag {
  padding: 2px 6px;
  background: rgba(125, 211, 252, 0.10);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 3px;
  color: var(--cyan);
  font-weight: 600;
}

.bl-queue-reports {
  padding: 2px 6px;
  background: rgba(255, 176, 32, 0.10);
  color: var(--amber);
  border-radius: 3px;
}

.bl-queue-family {
  padding: 2px 6px;
  background: rgba(255, 58, 110, 0.10);
  color: #ff3a6e;
  border-radius: 3px;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .bl-queue-head {
    flex-direction: column;
    gap: 12px;
  }

  .bl-queue-stats {
    grid-template-columns: 1fr;
  }

  .bl-queue-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   v11 — Legal & billing — compliance, legal tabs, config banner
============================================================ */

/* Operator-not-configured banner at top of Enterprise page */
.ent-config-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 90px auto 0;
  max-width: 1080px;
  padding: 14px 20px;
  background: linear-gradient(180deg, rgba(255, 176, 32, 0.10), rgba(255, 176, 32, 0.04));
  border: 1px solid rgba(255, 176, 32, 0.35);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
}

.ent-config-banner b {
  color: var(--amber);
}

.ent-config-banner code {
  background: rgba(0, 0, 0, 0.25);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 11.5px;
  color: var(--text);
}

.ent-config-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

/* Compliance posture grid */
.ent-compliance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.ent-compliance-item {
  padding: 16px 18px;
  background: rgba(14, 22, 44, 0.45);
  border: 1px solid rgba(125, 211, 252, 0.10);
  border-radius: 10px;
}

.ent-compliance-item.ok {
  border-color: rgba(0, 229, 168, 0.3);
}

.ent-compliance-item.pending {
  border-color: rgba(124, 146, 181, 0.18);
  background: rgba(14, 22, 44, 0.25);
}

.ent-compliance-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ent-compliance-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-mute);
  flex-shrink: 0;
}

.ent-compliance-dot.on {
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.ent-compliance-label {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text);
  flex: 1;
}

.ent-compliance-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 700;
  background: rgba(124, 146, 181, 0.15);
  color: var(--text-mute);
}

.ent-compliance-tag.on {
  background: rgba(0, 229, 168, 0.15);
  color: var(--success);
}

.ent-compliance-tag.pending {
  background: rgba(124, 146, 181, 0.12);
  color: var(--text-mute);
}

.ent-compliance-body {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-dim);
  text-wrap: pretty;
}

/* Fineprint helper */
.ent-fineprint {
  font-size: 11.5px;
  color: var(--text-mute);
  text-align: center;
  line-height: 1.55;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* Checkbox row variant (for "I am business" toggle) */
.ent-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(125, 211, 252, 0.04);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
}

.ent-check-row input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Warning note inside checkout-summary */
.cs-note.cs-warn {
  background: rgba(255, 176, 32, 0.08);
  border-left: 2px solid var(--amber);
  padding: 10px 12px;
  border-radius: 0 5px 5px 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.5;
}

.cs-note.cs-warn b {
  color: var(--amber);
}

/* Legal modal — wider, with tabs */
.legal-card-wide {
  max-width: 920px !important;
  width: calc(100vw - 48px);
}

.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(125, 211, 252, 0.15);
}

.legal-tab {
  padding: 8px 14px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--text-mute);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all .15s;
}

.legal-tab:hover {
  color: var(--cyan);
  background: rgba(125, 211, 252, 0.05);
}

.legal-tab.on {
  background: rgba(125, 211, 252, 0.10);
  border-color: rgba(125, 211, 252, 0.3);
  color: var(--cyan);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 12.5px;
  font-family: var(--mono);
}

.legal-table th,
.legal-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(125, 211, 252, 0.10);
  vertical-align: top;
}

.legal-table th {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  font-weight: 600;
  text-transform: uppercase;
}

.legal-table td b {
  color: var(--text);
}

.legal-table td a {
  color: var(--cyan);
}

.legal-warn {
  padding: 14px 18px;
  background: rgba(255, 176, 32, 0.08);
  border: 1px solid rgba(255, 176, 32, 0.3);
  border-left: 3px solid var(--amber);
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 8px 0;
}

.legal-warn b {
  color: var(--amber);
  display: block;
  margin-bottom: 4px;
}

.legal-warn code {
  background: rgba(0, 0, 0, 0.3);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 11.5px;
  color: var(--text);
}

.legal-info-box {
  padding: 14px 18px;
  background: rgba(125, 211, 252, 0.06);
  border-left: 3px solid var(--cyan);
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 12px 0 18px;
}

.legal-info-box b {
  color: var(--cyan);
}

@media (max-width: 720px) {
  .ent-compliance {
    grid-template-columns: 1fr;
  }

  .legal-tabs {
    font-size: 10px;
  }

  .legal-tab {
    padding: 6px 10px;
    font-size: 10px;
  }

  .legal-table {
    font-size: 11px;
  }
}

/* Legal footer — always visible, LSSI Art. 10 compliance */
.legal-footer {
  margin-top: auto;
  padding: 18px 20px 24px;
  border-top: 1px solid rgba(125, 211, 252, 0.08);
  background: rgba(3, 6, 15, 0.4);
}

.legal-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

.legal-footer-id {
  margin-left: 4px;
}

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

.legal-footer-links a {
  color: var(--text-mute);
  text-decoration: none;
  transition: color .15s;
}

.legal-footer-links a:hover {
  color: var(--cyan);
}

@media (max-width: 600px) {
  .legal-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-footer-links {
    gap: 14px;
    font-size: 10.5px;
  }
}

/* =========================================================================
   v13 — ADDITIONS
   New components: BlacklistExplainer, Hash-reverse source dots,
   Enterprise services grid, capability cards, portfolio banner.
   ========================================================================= */

/* ----- Hash-reverse source indicator dots ------------------------------ */
.ct-source-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}

.ct-source-dot.ok {
  background: #00e5a8;
  box-shadow: 0 0 8px rgba(0, 229, 168, 0.5);
}

.ct-source-dot.info {
  background: #7dd3fc;
  box-shadow: 0 0 8px rgba(125, 211, 252, 0.4);
}

.ct-source-dot.warn {
  background: #ffb020;
  box-shadow: 0 0 8px rgba(255, 176, 32, 0.5);
}

.ct-result-name {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ct-vt-link {
  color: #7dd3fc;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 1px dashed rgba(125, 211, 252, 0.4);
  padding-bottom: 1px;
  transition: color 120ms, border-color 120ms;
}

.ct-vt-link:hover {
  color: #b6e6ff;
  border-color: rgba(125, 211, 252, 0.8);
}

/* ----- Blacklist Explainer (educational section) ----------------------- */
.bl-explain {
  margin: 56px 0 32px;
  padding: 48px 36px;
  background:
    radial-gradient(circle at 12% 0%, rgba(125, 211, 252, 0.08), transparent 50%),
    radial-gradient(circle at 88% 100%, rgba(176, 132, 255, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(20, 28, 48, 0.5) 0%, rgba(14, 20, 36, 0.6) 100%);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.bl-explain::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.bl-explain-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b084ff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.bl-explain-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 36px;
  color: #f4f7ff;
  position: relative;
  z-index: 1;
}

.bl-explain-gradient {
  background: linear-gradient(135deg, #7dd3fc 0%, #b084ff 50%, #ff90c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bl-explain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.bl-explain-card {
  background: rgba(10, 16, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 28px 24px 26px;
  transition: transform 200ms, border-color 200ms, background 200ms;
}

.bl-explain-card:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.35);
  background: rgba(14, 22, 40, 0.7);
}

.bl-explain-num {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  color: #7dd3fc;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  opacity: 0.85;
}

.bl-explain-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f4f7ff;
  margin: 0 0 12px;
}

.bl-explain-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #c0c8d8;
  margin: 0;
}

.bl-explain-h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f4f7ff;
  margin: 0 0 18px;
}

.bl-explain-results {
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}

.bl-explain-result-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bl-explain-result-row {
  display: grid;
  grid-template-columns: auto 90px 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(10, 16, 28, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 16px;
}

.bl-explain-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.bl-explain-dot-clean {
  background: #00e5a8;
  box-shadow: 0 0 10px rgba(0, 229, 168, 0.6);
}

.bl-explain-dot-listed {
  background: #ff3a6e;
  box-shadow: 0 0 10px rgba(255, 58, 110, 0.6);
}

.bl-explain-dot-pending {
  background: #7dd3fc;
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.6);
  animation: pulseDot 1.4s ease-in-out infinite;
}

.bl-explain-dot-warn {
  background: #ffb020;
  box-shadow: 0 0 10px rgba(255, 176, 32, 0.6);
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.bl-explain-chip {
  display: inline-block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.bl-explain-chip.chip-clean {
  color: #00e5a8;
  background: rgba(0, 229, 168, 0.1);
  border: 1px solid rgba(0, 229, 168, 0.3);
}

.bl-explain-chip.chip-listed {
  color: #ff3a6e;
  background: rgba(255, 58, 110, 0.1);
  border: 1px solid rgba(255, 58, 110, 0.3);
}

.bl-explain-chip.chip-pending {
  color: #7dd3fc;
  background: rgba(125, 211, 252, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.3);
}

.bl-explain-chip.chip-warn {
  color: #ffb020;
  background: rgba(255, 176, 32, 0.1);
  border: 1px solid rgba(255, 176, 32, 0.3);
}

.bl-explain-result-body {
  font-size: 14px;
  color: #c0c8d8;
  line-height: 1.5;
}

.bl-explain-remove {
  position: relative;
  z-index: 1;
}

.bl-explain-ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: removestep;
}

.bl-explain-ol li {
  counter-increment: removestep;
  background: rgba(10, 16, 28, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px 20px 16px 56px;
  margin-bottom: 10px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.55;
  color: #d0d6e2;
}

.bl-explain-ol li::before {
  content: counter(removestep, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  color: #b084ff;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .bl-explain {
    padding: 32px 22px;
  }

  .bl-explain-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bl-explain-result-row {
    grid-template-columns: auto 1fr;
  }

  .bl-explain-result-row>.bl-explain-chip {
    grid-column: 2;
  }

  .bl-explain-result-row>.bl-explain-result-body {
    grid-column: 1 / -1;
    padding-top: 4px;
  }
}

/* ----- Enterprise: portfolio banner ------------------------------------ */
.ent-portfolio-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 36px;
  max-width: 980px;
  padding: 16px 26px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 229, 168, 0.12) 0%, transparent 70%),
    linear-gradient(90deg,
      rgba(176, 132, 255, 0.14) 0%,
      rgba(125, 211, 252, 0.14) 50%,
      rgba(0, 229, 168, 0.14) 100%);
  border: 1px solid rgba(0, 229, 168, 0.40);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: #d6f5e8;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(0, 229, 168, 0.10),
    0 12px 40px rgba(0, 229, 168, 0.10);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ent-portfolio-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 229, 168, 0.08) 50%,
      transparent 100%);
  animation: bannerSheen 4s ease-in-out infinite;
  z-index: -1;
}

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

  100% {
    transform: translateX(100%);
  }
}

.ent-portfolio-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00e5a8;
  box-shadow:
    0 0 12px rgba(0, 229, 168, 0.9),
    0 0 24px rgba(0, 229, 168, 0.4);
  animation: pulseDot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

/* ----- Enterprise: capability grid (6-card) ---------------------------- */
.ent-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.ent-cap-card {
  background: linear-gradient(180deg, rgba(20, 28, 48, 0.55) 0%, rgba(14, 20, 36, 0.65) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 32px 28px 30px;
  position: relative;
  transition: transform 220ms, border-color 220ms, box-shadow 220ms;
  display: flex;
  flex-direction: column;
}

.ent-cap-card:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.35);
  box-shadow: 0 24px 80px rgba(125, 211, 252, 0.08);
}

.ent-cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(125, 211, 252, 0.10);
  color: #7dd3fc;
  border: 1px solid rgba(125, 211, 252, 0.25);
}

.ent-cap-icon.icon-pulse {
  background: rgba(255, 58, 110, 0.10);
  color: #ff8aa8;
  border-color: rgba(255, 58, 110, 0.25);
}

.ent-cap-icon.icon-globe {
  background: rgba(0, 229, 168, 0.10);
  color: #00e5a8;
  border-color: rgba(0, 229, 168, 0.25);
}

.ent-cap-icon.icon-lock {
  background: rgba(176, 132, 255, 0.10);
  color: #b084ff;
  border-color: rgba(176, 132, 255, 0.25);
}

.ent-cap-icon.icon-flow {
  background: rgba(255, 176, 32, 0.10);
  color: #ffb020;
  border-color: rgba(255, 176, 32, 0.25);
}

.ent-cap-icon.icon-wave {
  background: rgba(255, 144, 200, 0.10);
  color: #ff90c8;
  border-color: rgba(255, 144, 200, 0.25);
}

.ent-cap-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f4f7ff;
  margin: 0 0 12px;
  line-height: 1.25;
}

.ent-cap-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: #b8c0d2;
  margin: 0;
}

/* ----- Enterprise: services grid (3-card replaces pricing) ------------ */
.ent-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 24px;
}

.ent-service-card {
  background: linear-gradient(180deg, rgba(20, 28, 48, 0.65) 0%, rgba(14, 20, 36, 0.75) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 200ms, border-color 200ms;
}

.ent-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.3);
}

.ent-service-card.featured {
  background:
    linear-gradient(180deg, rgba(125, 211, 252, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(20, 28, 48, 0.7) 0%, rgba(14, 20, 36, 0.85) 100%);
  border: 1px solid rgba(125, 211, 252, 0.4);
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.15),
    0 24px 80px rgba(125, 211, 252, 0.10);
  transform: translateY(-4px);
}

.ent-service-card.featured::before {
  content: 'MOST COMMON';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0a0f1a;
  background: linear-gradient(90deg, #7dd3fc 0%, #b084ff 100%);
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.ent-service-name {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #b084ff;
  margin-bottom: 14px;
}

.ent-service-price {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f4f7ff;
  margin-bottom: 18px;
  line-height: 1.05;
}

.ent-service-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: #b8c0d2;
  margin: 0 0 20px;
}

.ent-service-items {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ent-service-items li {
  font-size: 13.5px;
  color: #c8d0de;
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.ent-service-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #00e5a8;
  font-weight: 700;
  font-size: 14px;
}

.ent-service-card .ent-cta {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1000px) {
  .ent-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ent-services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .ent-service-card.featured {
    transform: none;
  }
}

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

  .ent-portfolio-banner {
    font-size: 11px;
    padding: 12px 18px;
  }
}

/* =========================================================================
   v14 — Feed-mode pill states (honest labelling: live / mixed / reference)
   ========================================================================= */
.nav-status-live {
  color: var(--accent);
  background: rgba(0, 229, 168, 0.08);
  border-color: rgba(0, 229, 168, 0.25);
}

.nav-status-mixed {
  color: #7dd3fc;
  background: rgba(125, 211, 252, 0.10);
  border-color: rgba(125, 211, 252, 0.30);
}

.nav-status-reference {
  color: #b084ff;
  background: rgba(176, 132, 255, 0.10);
  border-color: rgba(176, 132, 255, 0.30);
}

.nav-status-connecting {
  color: var(--amber);
  background: rgba(255, 176, 32, 0.08);
  border-color: rgba(255, 176, 32, 0.25);
}

.nav-status-mixed .pulse,
.nav-status-reference .pulse {
  animation: pulseDot 2s ease-in-out infinite;
}

.nav-status-mixed .pulse {
  background: #7dd3fc;
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.6);
}

.nav-status-reference .pulse {
  background: #b084ff;
  box-shadow: 0 0 10px rgba(176, 132, 255, 0.6);
}

.data-status-live {
  color: var(--accent);
}

.data-status-mixed {
  color: #7dd3fc;
}

.data-status-reference {
  color: #b084ff;
}

.data-status-connecting {
  color: var(--amber);
}

/* =========================================================================
   v14 — About Me redesign: hero with orbs, story timeline, skills tags,
   project cards (featured variant), education timeline, contact card.
   ========================================================================= */

/* ----- About hero with animated background ---------------------------- */
.abt-hero {
  position: relative;
  padding: 80px 48px 60px;
  margin-bottom: 36px;
  background: linear-gradient(180deg, rgba(14, 20, 36, 0.4) 0%, rgba(8, 12, 22, 0.7) 100%);
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
}

.abt-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.abt-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.abt-hero-orb.orb-1 {
  width: 480px;
  height: 480px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, #b084ff 0%, transparent 70%);
  animation: orbDrift 18s ease-in-out infinite;
}

.abt-hero-orb.orb-2 {
  width: 380px;
  height: 380px;
  bottom: -140px;
  left: -80px;
  background: radial-gradient(circle, #7dd3fc 0%, transparent 70%);
  animation: orbDrift 22s ease-in-out infinite reverse;
}

@keyframes orbDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, 30px) scale(1.05);
  }

  66% {
    transform: translate(-30px, -20px) scale(0.95);
  }
}

.abt-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, black 0%, transparent 80%);
}

.abt-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* ----- Portrait with dynamic ring + glow ------------------------------ */
.abt-portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.abt-portrait-frame {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
}

.abt-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 2;
  border: 3px solid rgba(255, 255, 255, 0.08);
}

.abt-portrait-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      #7dd3fc 0%, #b084ff 25%, #ff90c8 50%, #00e5a8 75%, #7dd3fc 100%);
  z-index: 1;
  animation: ringSpin 8s linear infinite;
  opacity: 0.85;
}

.abt-portrait-glow {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(125, 211, 252, 0.35) 0%,
      rgba(176, 132, 255, 0.18) 40%,
      transparent 70%);
  filter: blur(20px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes ringSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.abt-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 229, 168, 0.10);
  border: 1px solid rgba(0, 229, 168, 0.30);
  border-radius: 100px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #00e5a8;
  text-transform: uppercase;
  white-space: nowrap;
}

.abt-status .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e5a8;
  box-shadow: 0 0 10px rgba(0, 229, 168, 0.7);
  animation: pulseDot 1.6s ease-in-out infinite;
}

/* ----- Hero intro / bio ----------------------------------------------- */
.abt-intro {
  flex: 1;
  min-width: 0;
}

.abt-intro .abt-eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b084ff;
  margin-bottom: 18px;
}

.abt-h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: #f4f7ff;
}

.abt-h1-accent {
  background: linear-gradient(135deg, #7dd3fc 0%, #b084ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-tag {
  font-size: 19px;
  font-weight: 500;
  color: #d8dcec;
  margin-bottom: 18px;
  line-height: 1.4;
  max-width: 580px;
}

.abt-bio {
  font-size: 15.5px;
  line-height: 1.65;
  color: #b0b8ca;
  margin: 0 0 28px;
  max-width: 620px;
}

.abt-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.abt-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 160ms, background 160ms, border-color 160ms, box-shadow 160ms;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.abt-cta.primary {
  background: linear-gradient(135deg, #7dd3fc 0%, #b084ff 100%);
  color: #0a0f1a;
  font-weight: 700;
}

.abt-cta.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(125, 211, 252, 0.25);
}

.abt-cta.ghost {
  background: rgba(20, 28, 48, 0.5);
  color: #c8d0de;
  border-color: rgba(255, 255, 255, 0.10);
}

.abt-cta.ghost:hover {
  border-color: rgba(125, 211, 252, 0.4);
  background: rgba(20, 28, 48, 0.7);
  color: #f4f7ff;
}

.abt-cta.big {
  padding: 14px 26px;
  font-size: 14.5px;
}

/* ----- About sections ------------------------------------------------- */
.abt-section {
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.abt-section .abt-eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b084ff;
  margin-bottom: 14px;
}

.abt-h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f4f7ff;
  margin: 0 0 28px;
}

.abt-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #b0b8ca;
  margin: 0 0 24px;
  max-width: 720px;
}

/* ----- Live telemetry cards ------------------------------------------- */
.abt-live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.abt-live-card {
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(20, 28, 48, 0.55) 0%, rgba(14, 20, 36, 0.65) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  transition: transform 200ms, border-color 200ms;
}

.abt-live-card:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.3);
}

.abt-live-val {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f4f7ff;
  line-height: 1.05;
  margin-bottom: 8px;
  font-family: 'Geist Mono', ui-monospace, monospace;
}

.abt-live-val.ok {
  color: #00e5a8;
}

.abt-live-lbl {
  font-size: 13.5px;
  color: #c0c8d8;
  margin-bottom: 10px;
}

.abt-live-src {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd3fc;
}

/* ----- Story / biography paragraphs ----------------------------------- */
.abt-story {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.abt-story-p {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  margin: 0;
  padding: 22px 26px;
  background: rgba(20, 28, 48, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: border-color 160ms, background 160ms;
}

.abt-story-p:hover {
  border-color: rgba(125, 211, 252, 0.25);
  background: rgba(20, 28, 48, 0.55);
}

.abt-story-num {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 14px;
  font-weight: 700;
  color: #7dd3fc;
  letter-spacing: 0.05em;
  padding-top: 4px;
}

.abt-story-text {
  font-size: 15px;
  line-height: 1.6;
  color: #c8d0de;
}

/* ----- Skills grid ---------------------------------------------------- */
.abt-skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.abt-skill-card {
  padding: 26px 26px 22px;
  background: linear-gradient(180deg, rgba(20, 28, 48, 0.55) 0%, rgba(14, 20, 36, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  transition: transform 200ms, border-color 200ms;
}

.abt-skill-card:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 132, 255, 0.3);
}

.abt-skill-title {
  font-size: 16px;
  font-weight: 700;
  color: #f4f7ff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.abt-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.abt-skill-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 8px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  font-weight: 500;
  color: #c8e0ff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 140ms, border-color 140ms, transform 140ms;
}

.abt-skill-tag:hover {
  background: rgba(125, 211, 252, 0.15);
  border-color: rgba(125, 211, 252, 0.4);
  transform: translateY(-1px);
}

/* ----- Projects ------------------------------------------------------- */
.abt-projects {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.abt-project {
  padding: 32px 30px;
  background: linear-gradient(180deg, rgba(20, 28, 48, 0.55) 0%, rgba(14, 20, 36, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  transition: transform 200ms, border-color 200ms;
}

.abt-project:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.3);
}

.abt-project.featured {
  background:
    linear-gradient(180deg, rgba(125, 211, 252, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(20, 28, 48, 0.7) 0%, rgba(14, 20, 36, 0.85) 100%);
  border-color: rgba(125, 211, 252, 0.4);
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.12), 0 24px 80px rgba(125, 211, 252, 0.08);
}

.abt-project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.abt-project-tag {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #b084ff;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(176, 132, 255, 0.10);
  border: 1px solid rgba(176, 132, 255, 0.25);
  border-radius: 6px;
}

.abt-project.featured .abt-project-tag {
  color: #0a0f1a;
  background: linear-gradient(90deg, #7dd3fc 0%, #b084ff 100%);
  border-color: transparent;
}

.abt-project-year {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: #8a93a8;
  letter-spacing: 0.05em;
}

.abt-project-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f4f7ff;
  margin: 0 0 12px;
}

.abt-project-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: #b8c0d2;
  margin: 0 0 18px;
}

.abt-project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.abt-project-stack span {
  display: inline-block;
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: #c0c8d8;
  letter-spacing: 0.02em;
}

.abt-project-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 13.5px;
  font-weight: 600;
  color: #7dd3fc;
  text-decoration: none;
  border-bottom: 1px dashed rgba(125, 211, 252, 0.4);
  padding-bottom: 1px;
  transition: color 120ms, border-color 120ms;
}

.abt-project-link:hover {
  color: #b6e6ff;
  border-color: rgba(125, 211, 252, 0.8);
}

/* ----- Education timeline -------------------------------------------- */
.abt-education {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abt-edu-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: rgba(20, 28, 48, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: border-color 160ms, background 160ms;
}

.abt-edu-item:hover {
  border-color: rgba(125, 211, 252, 0.3);
  background: rgba(20, 28, 48, 0.55);
}

.abt-edu-bullet {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.10);
  border: 1px solid rgba(125, 211, 252, 0.3);
  color: #7dd3fc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-edu-degree {
  font-size: 15.5px;
  font-weight: 600;
  color: #f4f7ff;
  margin-bottom: 4px;
}

.abt-edu-meta {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: #8a93a8;
  letter-spacing: 0.04em;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.abt-edu-dot {
  color: #555;
}

/* ----- Contact CTA card ---------------------------------------------- */
.abt-contact {
  padding: 0 0 56px;
}

.abt-contact-card {
  position: relative;
  padding: 56px 48px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(20, 28, 48, 0.7) 0%, rgba(14, 20, 36, 0.9) 100%);
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  margin: 0 24px;
}

.abt-contact-glow {
  position: absolute;
  width: 600px;
  height: 200px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(176, 132, 255, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.abt-contact-card .abt-eyebrow,
.abt-contact-card .abt-h2,
.abt-contact-card .abt-sub,
.abt-contact-card .abt-contact-response,
.abt-contact-card .abt-contact-ctas {
  position: relative;
  z-index: 1;
}

.abt-contact-card .abt-sub {
  margin: 0 auto 8px;
  text-align: center;
}

.abt-contact-response {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #00e5a8;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.abt-contact-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- Responsive ---------------------------------------------------- */
@media (max-width: 880px) {
  .abt-hero {
    padding: 48px 28px;
  }

  .abt-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    justify-items: center;
  }

  .abt-intro {
    text-align: center;
  }

  .abt-tag,
  .abt-bio {
    margin-left: auto;
    margin-right: auto;
  }

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

  .abt-live-grid {
    grid-template-columns: 1fr;
  }

  .abt-skills-grid {
    grid-template-columns: 1fr;
  }

  .abt-contact-card {
    padding: 40px 24px;
    margin: 0 16px;
  }
}

@media (max-width: 600px) {
  .abt-portrait-frame {
    width: 160px;
    height: 160px;
  }

  .abt-h1 {
    font-size: 38px;
  }

  .abt-story-p {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .abt-edu-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .abt-edu-bullet {
    display: none;
  }
}

/* =========================================================================
   v15 — Real-time accumulator UI
   Banner showing global total, per-country bignum source label, etc.
   ========================================================================= */

/* ----- Global accumulator banner (top of left rail) ------------------- */
.accum-banner {
  position: relative;
  margin: 0 0 16px;
  padding: 22px 22px 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 229, 168, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8, 18, 28, 0.85) 0%, rgba(6, 12, 20, 0.95) 100%);
  border: 1px solid rgba(0, 229, 168, 0.30);
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
}

.accum-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 28px,
      rgba(0, 229, 168, 0.04) 28px, rgba(0, 229, 168, 0.04) 29px);
  pointer-events: none;
  z-index: 0;
}

.accum-banner-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.accum-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e5a8;
  box-shadow: 0 0 12px rgba(0, 229, 168, 0.7);
  animation: accumPulse 1.4s ease-in-out infinite;
}

@keyframes accumPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.8);
  }
}

.accum-banner-eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #00e5a8;
  text-transform: uppercase;
}

.accum-banner-val {
  position: relative;
  z-index: 1;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f4f7ff;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #00e5a8 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}

.accum-banner-label {
  position: relative;
  z-index: 1;
  font-size: 12px;
  line-height: 1.4;
  color: #a8b0c4;
}

.accum-banner-meta {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10.5px;
  color: #6a7388;
  letter-spacing: 0.04em;
}

/* ----- Per-country bignum source attribution -------------------------- */
.bignum-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #00e5a8;
  text-transform: uppercase;
  opacity: 0.85;
}

/* =========================================================================
   v15 — Creator card v2 + Intensity legend v2 + Signature v2
   ========================================================================= */

/* ===== CREATOR CARD V2 ================================================ */
.creator-card-v2 {
  width: min(420px, 92vw);
  max-height: min(720px, 92vh);
  padding: 22px 26px 20px;
  background: linear-gradient(180deg, rgba(20, 26, 44, 0.98), rgba(8, 12, 22, 0.98));
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 22px;
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(125, 211, 252, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  isolation: isolate;
  /* Override the legacy .creator-card rules that the className composition
     also applies — the v2 layout owns its own padding and width. */
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.creator-card-v2>.creator-status,
.creator-card-v2>.creator-avatar-v2 {
  align-self: center;
}

.creator-aurora {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 240px;
  background:
    radial-gradient(ellipse at center,
      rgba(125, 211, 252, 0.18) 0%,
      rgba(176, 132, 255, 0.10) 35%,
      transparent 70%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
  animation: creatorAurora 6s ease-in-out infinite;
}

@keyframes creatorAurora {

  0%,
  100% {
    opacity: 0.85;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

.creator-card-v2>* {
  position: relative;
  z-index: 1;
}

/* Status pill */
.creator-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 5px 12px;
  background: rgba(0, 229, 168, 0.08);
  border: 1px solid rgba(0, 229, 168, 0.30);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #00e5a8;
  text-transform: uppercase;
}

.creator-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e5a8;
  box-shadow: 0 0 10px rgba(0, 229, 168, 0.7);
  animation: pulseDot 1.6s ease-in-out infinite;
}

/* Avatar — portrait with rotating ring */
.creator-avatar-v2 {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  filter: none;
}

.creator-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      #7dd3fc 0%, #b084ff 25%, #ff90c8 50%, #00e5a8 75%, #7dd3fc 100%);
  z-index: 0;
  animation: creatorRingSpin 8s linear infinite;
  opacity: 0.85;
}

@keyframes creatorRingSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.creator-avatar-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #1e3a5f 0%, #0a1426 100%);
  border: 2px solid rgba(10, 14, 22, 0.95);
}

.creator-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.creator-avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: #7dd3fc;
  letter-spacing: 0.04em;
}

/* Name + role */
.creator-card-v2 .creator-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f4f7ff;
  margin-bottom: 5px;
  font-family: 'Inter', system-ui, sans-serif;
}

.creator-card-v2 .creator-role {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b084ff;
  margin: 0 0 18px;
}

/* Verifiable credentials strip */
.creator-creds {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 14px;
  margin: 0 -4px 18px;
  background: rgba(125, 211, 252, 0.04);
  border: 1px solid rgba(125, 211, 252, 0.10);
  border-radius: 12px;
}

.creator-cred {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.creator-cred-val {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  color: #f4f7ff;
  letter-spacing: -0.01em;
  line-height: 1;
}

.creator-cred-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a7388;
  white-space: nowrap;
}

.creator-cred-sep {
  width: 1px;
  height: 24px;
  background: rgba(125, 211, 252, 0.15);
}

/* Bio */
.creator-card-v2 .creator-bio {
  font-size: 13px;
  line-height: 1.55;
  color: #c0c8d8;
  margin-bottom: 18px;
  text-align: center;
  text-wrap: pretty;
}

/* Buttons grid */
.creator-links-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.creator-btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  color: #d8dcec;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms, background 160ms, border-color 160ms, color 160ms;
  position: relative;
}

.creator-btn-v2 .creator-btn-arrow {
  font-size: 10px;
  opacity: 0.4;
  transition: opacity 160ms, transform 160ms;
}

.creator-btn-v2:hover {
  transform: translateY(-1px);
  background: rgba(125, 211, 252, 0.10);
  border-color: rgba(125, 211, 252, 0.30);
  color: #f4f7ff;
}

.creator-btn-v2:hover .creator-btn-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.creator-btn-v2.primary {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.20) 0%, rgba(176, 132, 255, 0.20) 100%);
  border-color: rgba(125, 211, 252, 0.40);
  color: #b6e6ff;
}

.creator-btn-v2.primary:hover {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.30) 0%, rgba(176, 132, 255, 0.30) 100%);
  color: #f4f7ff;
  box-shadow: 0 8px 22px rgba(125, 211, 252, 0.18);
}

/* Data sources footer v2 */
.creator-foot-v2 {
  display: block;
  padding: 14px 0 0;
  border-top: 1px solid rgba(125, 211, 252, 0.12);
  text-align: left;
}

.creator-foot-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #6a7388;
  margin-bottom: 8px;
  text-align: center;
}

.creator-foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: #8a93a8;
  letter-spacing: 0.02em;
}

.creator-foot-grid span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.creator-foot-grid b {
  color: #7dd3fc;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.04em;
}

@media (max-width: 540px) {
  .creator-creds {
    gap: 8px;
    padding: 10px 8px;
  }

  .creator-cred-val {
    font-size: 16px;
  }

  .creator-cred-lbl {
    font-size: 8.5px;
  }

  .creator-links-v2 {
    grid-template-columns: 1fr;
  }

  .creator-foot-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== INTENSITY LEGEND V2 ============================================ */
.legend-scale-v2 {
  text-align: left;
  min-width: 240px;
}

.scale-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 12px;
}

.legend-scale-v2 .scale-label {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #b084ff;
  text-transform: uppercase;
  margin-bottom: 0;
}

.scale-unit {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #6a7388;
  text-transform: lowercase;
}

.scale-bar-v2 {
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.scale-bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  position: relative;
}

.scale-bar-fill::after {
  /* Subtle scanline animation suggesting live activity */
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
      transparent 0,
      transparent 12px,
      rgba(255, 255, 255, 0.06) 12px,
      rgba(255, 255, 255, 0.06) 13px);
  pointer-events: none;
  animation: scanlineDrift 4s linear infinite;
}

@keyframes scanlineDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(13px);
  }
}

.scale-bar-marker {
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 2px;
  pointer-events: none;
}

.scale-bar-marker-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: #f4f7ff;
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(244, 247, 255, 0.6);
}

.scale-ticks-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.scale-ticks-v2>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  text-align: center;
}

.scale-tick-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: #c8d0de;
  letter-spacing: 0.02em;
}

.scale-tick-lbl {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: #6a7388;
  text-transform: uppercase;
}

.scale-tick-crit {
  color: #ff3a6e;
}

/* ===== SIGNATURE V2 ================================================== */
.signature-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px 5px 5px;
  background: rgba(10, 15, 28, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(125, 211, 252, 0.20);
  border-radius: 100px;
  cursor: pointer;
  transition: transform 220ms, border-color 220ms, box-shadow 220ms, background 220ms;
  text-align: left;
  isolation: isolate;
  font-family: inherit;
}

.signature-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(125, 211, 252, 0.10) 0%,
      rgba(176, 132, 255, 0.10) 100%);
  border-radius: 100px;
  opacity: 0;
  transition: opacity 220ms;
  z-index: -1;
}

.signature-glow {
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  background: linear-gradient(135deg,
      rgba(125, 211, 252, 0.40) 0%,
      rgba(176, 132, 255, 0.40) 100%);
  filter: blur(10px);
  opacity: 0;
  transition: opacity 220ms;
  z-index: -2;
}

.signature-v2:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(10, 15, 28, 0.85);
}

.signature-v2:hover::before {
  opacity: 1;
}

.signature-v2:hover .signature-glow {
  opacity: 0.6;
}

.signature-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7dd3fc 0%, #b084ff 100%);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.signature-avatar-mono {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0a0f1a;
  z-index: 1;
}

.signature-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.signature-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #f4f7ff;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.signature-role {
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.16em;
  color: rgba(125, 211, 252, 0.65);
  text-transform: uppercase;
  transition: color 220ms;
  line-height: 1.05;
}

.signature-v2:hover .signature-role {
  color: #7dd3fc;
}

@media (max-width: 640px) {
  .signature-v2 {
    padding: 4px 10px 4px 4px;
    gap: 6px;
  }

  .signature-avatar {
    width: 20px;
    height: 20px;
  }

  .signature-avatar-mono {
    font-size: 9px;
  }

  .signature-name {
    font-size: 11px;
  }

  .signature-role {
    font-size: 7px;
  }
}

@media (max-width: 640px) {
  .legend-scale-v2 {
    min-width: 200px;
  }
}

/* =========================================================================
   v18 — Estimated mode for accumulator (when Worker not deployed)
   Visually distinct from real-live mode so users always know.
   ========================================================================= */
.accum-banner.accum-estimated {
  background:
    radial-gradient(circle at 0% 0%, rgba(176, 132, 255, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8, 18, 28, 0.85) 0%, rgba(6, 12, 20, 0.95) 100%);
  border-color: rgba(176, 132, 255, 0.30);
}

.accum-banner.accum-estimated::before {
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 28px,
      rgba(176, 132, 255, 0.04) 28px, rgba(176, 132, 255, 0.04) 29px);
}

.accum-banner.accum-estimated .accum-banner-dot {
  background: #b084ff;
  box-shadow: 0 0 12px rgba(176, 132, 255, 0.7);
}

.accum-banner.accum-estimated .accum-banner-eyebrow {
  color: #b084ff;
}

.accum-banner.accum-estimated .accum-banner-val {
  background: linear-gradient(135deg, #b084ff 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bignum-source.estimated {
  color: #b084ff;
}

/* =========================================================================
   v18 — Hash verdict KDF variant + small visual polish
   ========================================================================= */
.ct-verdict-kdf-skipped {
  background:
    radial-gradient(circle at 0% 0%, rgba(125, 211, 252, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8, 18, 28, 0.85) 0%, rgba(6, 12, 20, 0.95) 100%);
  border-color: rgba(125, 211, 252, 0.35);
}

.ct-verdict-kdf-skipped .ct-verdict-icon {
  color: #7dd3fc;
}

.ct-verdict-kdf-skipped .ct-verdict-tag {
  color: #7dd3fc;
}

/* =========================================================================
   v22 — Hash Reverse demo disclaimer + KDF detect hint
   ========================================================================= */
.ct-demo-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 18px;
  padding: 14px 18px;
  background: linear-gradient(90deg,
      rgba(176, 132, 255, 0.08) 0%,
      rgba(125, 211, 252, 0.06) 100%);
  border: 1px solid rgba(176, 132, 255, 0.25);
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.55;
  color: #c8c8e0;
}

.ct-demo-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(176, 132, 255, 0.15);
  color: #b084ff;
  border: 1px solid rgba(176, 132, 255, 0.30);
}

.ct-demo-body {
  flex: 1;
}

.ct-demo-body b {
  color: #e6dcff;
  font-weight: 600;
}

.ct-detect-kdf {
  color: #7dd3fc;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.hc-beta-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(255, 176, 32, 0.1);
  border: 1px solid rgba(255, 176, 32, 0.3);
  border-radius: 4px;
  color: #ffb020;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

/* Initial loader overlay */
.initial-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-0);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.loader-glitch {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-transform: uppercase;
  animation: flicker 2s infinite;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(125, 211, 252, 0.1);
  position: relative;
  overflow: hidden;
}

.loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: loadProgress 2s ease-in-out infinite;
}

@keyframes loadProgress {
  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }
}

/* =========================================================================
   v23 — Live attackers list (per-country panel)
   The bullet-list look was unstyled — give it a proper rank-IP-hits row
   that reads as a leaderboard.
   ========================================================================= */
.live-attackers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.live-attackers li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(125, 211, 252, 0.04);
  border: 1px solid rgba(125, 211, 252, 0.10);
  border-radius: 8px;
  transition: background 140ms, border-color 140ms;
}

.live-attackers li:hover {
  background: rgba(125, 211, 252, 0.08);
  border-color: rgba(125, 211, 252, 0.25);
}

.la-rank {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #b084ff;
  min-width: 28px;
  text-align: center;
  padding: 2px 6px;
  background: rgba(176, 132, 255, 0.10);
  border-radius: 4px;
}

.la-ip {
  font-family: var(--mono);
  font-size: 12.5px;
  color: #d8dcec;
  letter-spacing: 0;
  background: none;
  padding: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.la-reports {
  font-family: var(--mono);
  font-size: 11.5px;
  color: #ff8aa8;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.la-reports::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 6px currentColor;
}

/* v24 — signature placed in its own bottom-left HUD (red-circle area
   in user reference: just above the threat-intensity legend). */
.hud-bl-sig {
  position: absolute;
  left: 24px;
  bottom: 110px;
  z-index: 4;
}

@media (max-width: 900px) {
  .hud-bl-sig {
    bottom: 150px;
    left: 16px;
  }
}

/* Animated arcs */
.animated-arc {
  stroke-dasharray: 15 85;
  animation: arc-flow linear infinite;
}

@keyframes arc-flow {
  0% {
    stroke-dashoffset: 100;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* Premium Annual Card */
.premium-annual-card {
  position: relative;
  background: rgba(10, 21, 40, 0.6);
  border: 1px solid rgba(120, 200, 255, 0.15);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.premium-annual-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(125, 211, 252, 0.1), transparent 60%);
  pointer-events: none;
}

.premium-annual-content {
  position: relative;
  z-index: 1;
}

.premium-annual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.premium-annual-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #7dd3fc;
}

.premium-annual-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #ff3a6e;
  background: rgba(255, 58, 110, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 58, 110, 0.3);
}

.premium-annual-body {
  margin-bottom: 16px;
}

.premium-annual-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.premium-annual-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.premium-annual-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffb020;
  box-shadow: 0 0 8px #ffb020;
  animation: premium-pulse 2s infinite;
}

@keyframes premium-pulse {
  0% {
    opacity: 1;
    box-shadow: 0 0 8px #ffb020;
  }

  50% {
    opacity: 0.3;
    box-shadow: 0 0 2px #ffb020;
  }

  100% {
    opacity: 1;
    box-shadow: 0 0 8px #ffb020;
  }
}

.premium-annual-footer {
  font-size: 11px;
  color: #7dd3fc;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.premium-annual-live-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #7dd3fc;
  margin-right: 6px;
  box-shadow: 0 0 6px #7dd3fc;
}

.premium-annual-source {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 10px;
}

.premium-annual-source.estimated {
  color: rgba(255, 176, 32, 0.5);
}

/* =========================================================================
   PREMIUM HASH CRACKER (Decryption Engine)
   ========================================================================= */
.hc-container {
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--mono);
}

.hc-hero {
  text-align: center;
  margin-bottom: 30px;
}

.hc-glitch-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(176, 132, 255, 0.8), 0 0 20px rgba(176, 132, 255, 0.4);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.hc-sub {
  color: #8a93a8;
  font-size: 13px;
  letter-spacing: 1px;
}

.hc-input-box {
  background: rgba(10, 15, 28, 0.8);
  border: 1px solid rgba(176, 132, 255, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(176, 132, 255, 0.05);
}

.hc-input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: #b084ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hc-badge-algo {
  background: rgba(176, 132, 255, 0.15);
  padding: 4px 8px;
  border-radius: 4px;
  color: #e6dcff;
}

.hc-input-wrapper {
  display: flex;
  gap: 12px;
}

.hc-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(176, 132, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--mono);
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.hc-input:focus {
  border-color: rgba(176, 132, 255, 0.8);
  box-shadow: 0 0 15px rgba(176, 132, 255, 0.2);
}

.hc-btn {
  background: linear-gradient(135deg, rgba(176, 132, 255, 0.2), rgba(125, 211, 252, 0.2));
  border: 1px solid rgba(176, 132, 255, 0.5);
  border-radius: 8px;
  padding: 0 24px;
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hc-btn:not(:disabled):hover {
  background: linear-gradient(135deg, rgba(176, 132, 255, 0.4), rgba(125, 211, 252, 0.4));
  box-shadow: 0 0 20px rgba(176, 132, 255, 0.4);
}

.hc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hc-btn.cracking {
  background: transparent;
  border-color: #00e5a8;
  color: #00e5a8;
  animation: hc-pulse 1.5s infinite;
}

@keyframes hc-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 229, 168, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 229, 168, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 168, 0);
  }
}

.hc-matrix-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #00e5a8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hc-matrix-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 229, 168, 0.1);
  border-top-color: #00e5a8;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: hc-spin 1s linear infinite;
}

@keyframes hc-spin {
  100% {
    transform: rotate(360deg);
  }
}

.hc-matrix-text {
  font-size: 24px;
  color: #00e5a8;
  letter-spacing: 8px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #00e5a8;
}

.hc-matrix-log {
  color: rgba(0, 229, 168, 0.6);
  font-size: 11px;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.8;
}

.hc-result-box {
  background: rgba(10, 15, 28, 0.9);
  border-radius: 12px;
  border: 1px solid transparent;
  overflow: hidden;
  animation: hc-reveal 0.5s ease-out;
}

@keyframes hc-reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hc-result-header {
  padding: 16px 20px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hc-result-body {
  padding: 30px 20px;
  text-align: center;
}

.hc-cracked-value {
  font-size: 32px;
  color: #00e5a8;
  text-shadow: 0 0 20px rgba(0, 229, 168, 0.4);
  margin-bottom: 10px;
}

.hc-cracked-sub {
  color: rgba(0, 229, 168, 0.6);
  font-size: 12px;
}

/* Status variants */
.hc-result-box.cracked {
  border-color: #00e5a8;
  box-shadow: 0 0 30px rgba(0, 229, 168, 0.1);
}

.hc-result-box.cracked .hc-result-header {
  background: rgba(0, 229, 168, 0.1);
  color: #00e5a8;
}

.hc-result-box.malware {
  border-color: #ff3a6e;
  box-shadow: 0 0 30px rgba(255, 58, 110, 0.1);
}

.hc-result-box.malware .hc-result-header {
  background: rgba(255, 58, 110, 0.1);
  color: #ff3a6e;
}

.hc-malware-alert {
  color: #ff3a6e;
  font-size: 16px;
  margin-bottom: 10px;
}

.hc-result-box.legit {
  border-color: #7dd3fc;
  box-shadow: 0 0 30px rgba(125, 211, 252, 0.1);
}

.hc-result-box.legit .hc-result-header {
  background: rgba(125, 211, 252, 0.1);
  color: #7dd3fc;
}

.hc-legit-alert {
  color: #7dd3fc;
  font-size: 16px;
}

.hc-result-box.unknown {
  border-color: rgba(255, 255, 255, 0.2);
}

.hc-result-box.unknown .hc-result-header {
  background: rgba(255, 255, 255, 0.05);
  color: #8a93a8;
}

.hc-unknown-alert {
  color: #8a93a8;
  font-size: 14px;
}

.hc-result-box.kdf-skipped {
  border-color: #b084ff;
  box-shadow: 0 0 30px rgba(176, 132, 255, 0.1);
}

.hc-result-box.kdf-skipped .hc-result-header {
  background: rgba(176, 132, 255, 0.1);
  color: #b084ff;
}

.hc-kdf-alert {
  color: #b084ff;
  font-size: 14px;
  line-height: 1.6;
}

/* Source audit log — shows which databases were queried */
.hc-sources-log {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.2);
}

.hc-sources-title {
  font-size: 10px;
  letter-spacing: 2px;
  color: #8a93a8;
  font-weight: 700;
  margin-bottom: 10px;
}

.hc-source-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hc-source-row:last-child {
  border-bottom: none;
}

.hc-source-row.hit {
  color: #00e5a8;
}

.hc-source-row.err {
  color: rgba(255, 176, 32, 0.6);
}

.hc-source-status {
  width: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.hc-source-row.hit .hc-source-status {
  color: #00e5a8;
}

.hc-source-name {
  flex: 1;
  font-weight: 600;
}

.hc-source-tag {
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* =========================================================================
   PREMIUM IP ANALYZER (UI Overrides)
   ========================================================================= */
.risk-banner {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.risk-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  animation: hc-spin 20s linear infinite;
  pointer-events: none;
}

.risk-banner.risk-high {
  background: linear-gradient(135deg, rgba(255, 58, 110, 0.2), rgba(30, 10, 15, 0.9));
  border: 1px solid rgba(255, 58, 110, 0.4);
}

.risk-banner.risk-low {
  background: linear-gradient(135deg, rgba(0, 229, 168, 0.15), rgba(10, 20, 15, 0.9));
  border: 1px solid rgba(0, 229, 168, 0.3);
}

.engines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.engine-row {
  background: rgba(10, 15, 28, 0.6);
  border: 1px solid rgba(125, 211, 252, 0.1);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.engine-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.08);
  border-color: rgba(125, 211, 252, 0.3);
}

.engine-row.eng-malicious {
  background: rgba(255, 58, 110, 0.05);
  border-color: rgba(255, 58, 110, 0.2);
}

.engine-row.eng-malicious:hover {
  border-color: rgba(255, 58, 110, 0.5);
  box-shadow: 0 8px 24px rgba(255, 58, 110, 0.15);
}

.eng-name {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.eng-detail {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eng-verdict {
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.eng-verdict.v-malicious {
  background: rgba(255, 58, 110, 0.15);
  color: #ff3a6e;
  box-shadow: 0 0 10px rgba(255, 58, 110, 0.2);
}

.eng-verdict.v-clean {
  background: rgba(0, 229, 168, 0.15);
  color: #00e5a8;
}

.an-panel {
  background: rgba(10, 15, 28, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 24px;
}

/* Chatbot Quick Chips */
.chatbot-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 4px;
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chatbot-quick-chips button {
  background: rgba(125, 211, 252, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.3);
  color: #7dd3fc;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.chatbot-quick-chips button:hover {
  background: rgba(125, 211, 252, 0.2);
  border-color: #7dd3fc;
  transform: translateY(-1px);
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cinematic Analyzer Loading */
.an-cinematic-loading {
  background: rgba(10, 15, 28, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 12px;
  box-shadow: 0 0 32px rgba(125, 211, 252, 0.1);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  animation: slideUpFade 0.3s ease forwards;
}

.an-loading-text {
  font-family: var(--mono);
  font-size: 13px;
  color: #7dd3fc;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  width: 100%;
  max-width: 400px;
}

.an-loading-text div {
  opacity: 0;
  animation: matrixLineIn 0.1s forwards;
}

.an-loading-text div:nth-child(1) {
  animation-delay: 0.1s;
}

.an-loading-text div:nth-child(2) {
  animation-delay: 0.6s;
}

.an-loading-text div:nth-child(3) {
  animation-delay: 1.1s;
}

.an-loading-text div:nth-child(4) {
  animation-delay: 1.6s;
}

@keyframes matrixLineIn {
  to {
    opacity: 1;
  }
}