/* ============== FLOATING PLUMBING FACT CARD (replaced the neon Pipe Pete mascot) ============== */
.cbfact-wrap {
  position: fixed;
  /* Bottom-LEFT so it never collides with the "Ask the Brain" FAB (bottom-right). */
  left: 20px; right: auto; bottom: 20px;
  z-index: 60;
  max-width: 340px;
  animation: cbfact-in 0.4s ease;
}
@keyframes cbfact-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.cbfact-card {
  background: #0e1a2b;
  color: #eaf2ff;
  border: 1px solid rgba(74,179,255,0.35);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 12px 44px rgba(0,0,0,0.4);
}
.cbfact-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.cbfact-badge {
  font-family: var(--mono, JetBrains Mono, monospace);
  font-size: 11px; letter-spacing: 0.12em; font-weight: 700;
  color: #4ab3ff;
}
.cbfact-x {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5);
  font-size: 20px; line-height: 1; padding: 0 2px;
}
.cbfact-x:hover { color: #fff; }
.cbfact-body {
  margin: 0 0 10px;
  font-family: var(--sans, Inter, sans-serif);
  font-size: 14px; line-height: 1.5;
}
.cbfact-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 8px;
}
.cbfact-src {
  font-family: var(--mono, JetBrains Mono, monospace);
  font-size: 10px; letter-spacing: 0.03em;
  color: rgba(234,242,255,0.5);
  line-height: 1.3;
}
.cbfact-next {
  flex: 0 0 auto;
  background: none;
  border: 1px solid rgba(74,179,255,0.5);
  color: #4ab3ff;
  font-family: var(--mono, JetBrains Mono, monospace);
  font-size: 11px; letter-spacing: 0.05em;
  padding: 5px 10px; border-radius: 6px; cursor: pointer;
  white-space: nowrap; transition: background 0.15s;
}
.cbfact-next:hover { background: rgba(74,179,255,0.15); }
@media (max-width: 560px) {
  /* Sit ABOVE the fixed mobile action rail (~78px tall) so it never covers the source/Next button. */
  .cbfact-wrap { right: 12px; left: 12px; bottom: calc(90px + env(safe-area-inset-bottom, 0px)); max-width: none; }
}

/* ============== PLUNGER RAIN ============== */
.plunger-rain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  overflow: hidden;
}
.plunger-drop {
  position: absolute;
  top: -80px;
  animation: plunger-fall linear forwards;
}
@keyframes plunger-fall {
  to { transform: translateY(110vh) rotate(720deg); }
}
.plunger-banner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #2473c4;
  color: #0e1a2b;
  font-family: var(--serif, 'Archivo Black', sans-serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  padding: 24px 36px;
  border: 3px solid #0e1a2b;
  box-shadow: 8px 8px 0 #0e1a2b;
  text-align: center;
  animation: bubble-in 0.4s cubic-bezier(.5,1.7,.5,1);
}
.plunger-banner strong { background: #4ab3ff; padding: 2px 8px; }

/* ============== PLUMBER'S BRAIN AI ============== */
.pb-section {
  background: linear-gradient(180deg, #050810 0%, #0a1828 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.pb-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(74, 179, 255, 0.22), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(74, 179, 255, 0.14), transparent 60%);
  pointer-events: none;
}
.pb-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(80, 180, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 180, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.pb-section > .container { position: relative; z-index: 1; }

.pb-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.pb-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid #4ab3ff;
  background: rgba(74, 179, 255, 0.1);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: #4ab3ff;
  margin-bottom: 24px;
}
.pb-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ab3ff;
  box-shadow: 0 0 12px #4ab3ff;
  animation: pulse 1.4s infinite;
}
.pb-h {
  font-family: var(--serif);
  font-size: clamp(34px, 8vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 28px;
  overflow-wrap: break-word;
}
.pb-glow {
  color: #fff;
  text-shadow: 0 0 60px rgba(74, 179, 255, 0.5);
}
.pb-glow2 {
  -webkit-text-stroke: 2px #4ab3ff;
  color: transparent;
  text-shadow: 0 0 80px rgba(74, 179, 255, 0.7);
}
.pb-sub {
  font-size: 18px; line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 0 36px;
}
.pb-feats {
  display: grid; gap: 10px;
  margin-bottom: 32px;
}
.pb-feat {
  display: flex; gap: 14px; align-items: baseline;
  padding: 12px 0;
  border-top: 1px dashed rgba(255,255,255,0.15);
  font-size: 15px; line-height: 1.45;
  color: rgba(255,255,255,0.85);
}
.pb-feat:last-child { border-bottom: 1px dashed rgba(255,255,255,0.15); }
.pb-feat em { color: #4ab3ff; font-style: normal; }
.pb-feat-n {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: #4ab3ff;
  flex-shrink: 0; width: 24px;
}
.pb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.pb-cta { background: #4ab3ff !important; border-color: #4ab3ff !important; color: #050810 !important; }
.pb-cta:hover { background: #fff !important; border-color: #fff !important; }
.pb-hub-link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  padding: 0 18px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.pb-hub-link:hover {
  background: #fff;
  color: #050810;
}

/* Brain visual */
.pb-hero-right { position: relative; }
.pb-brain {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto 24px;
  display: grid; place-items: center;
}
.pb-brain-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74, 179, 255, 0.3);
  inset: 0;
  animation: pb-rotate 20s linear infinite;
}
.pb-brain-ring::before {
  content: ''; position: absolute;
  width: 8px; height: 8px;
  background: #4ab3ff;
  border-radius: 50%;
  top: -4px; left: 50%;
  box-shadow: 0 0 16px #4ab3ff;
}
.pb-brain-ring-2 {
  inset: 24px;
  border-color: rgba(74, 179, 255, 0.5);
  animation-duration: 14s;
  animation-direction: reverse;
}
.pb-brain-ring-2::before { background: #fff; box-shadow: 0 0 16px #fff; }
.pb-brain-ring-3 {
  inset: 48px;
  border-color: rgba(74, 179, 255, 0.7);
  animation-duration: 8s;
}
.pb-brain-ring-3::before { background: #4ab3ff; box-shadow: 0 0 20px #4ab3ff; }
@keyframes pb-rotate {
  to { transform: rotate(360deg); }
}
.pb-brain-core {
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(74, 179, 255, 0.18), rgba(5, 8, 16, 0.92) 70%);
  border: 1px solid rgba(74, 179, 255, 0.2);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}
.pb-brain-svg {
  width: 60%;
  filter: drop-shadow(0 0 24px rgba(74, 179, 255, 0.5));
  animation: pb-pulse-emoji 2.4s ease-in-out infinite;
}
.pb-brain-svg svg { width: 100%; height: auto; display: block; }
@keyframes pb-pulse-emoji {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 24px rgba(74, 179, 255, 0.5)); }
  50% { transform: scale(1.04); filter: drop-shadow(0 0 36px rgba(74, 179, 255, 0.9)); }
}
.pb-brain-label {
  font-family: var(--serif); font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-top: 8px;
}
.pb-brain-status {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: #50ff8a;
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 6px;
}
.pb-brain-status .dot { width: 6px; height: 6px; border-radius: 50%; background: #50ff8a; box-shadow: 0 0 8px #50ff8a; }

.pb-receipt {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.4);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  max-width: 420px; margin: 0 auto;
}
.pb-receipt-row {
  display: flex; justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}
.pb-receipt-row:last-child { border-bottom: none; }
.pb-receipt-row .v { color: #fff; }
.pb-receipt-row .ok { color: #50ff8a; }

/* Floating FAB */
.pb-fab {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 91;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ab3ff, #2473c4);
  border: 3px solid #050810;
  box-shadow: 6px 6px 0 #050810, 0 0 32px rgba(74, 179, 255, 0.5);
  cursor: pointer;
  display: grid; place-items: center;
  color: #fff;
  transition: transform 0.2s;
  padding: 6px;
}
.pb-fab:hover { transform: translateY(-3px) scale(1.04); }
.pb-fab-svg { width: 38px; height: auto; display: block; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
.pb-fab-text {
  font-family: var(--serif); font-size: 9px; line-height: 1.1;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.pb-fab-pulse {
  position: absolute; inset: -3px;
  border: 3px solid #4ab3ff;
  border-radius: 50%;
  animation: pb-fab-pulse 2s ease-out infinite;
}
@keyframes pb-fab-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Chat modal */
.pb-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: grid; place-items: center;
  padding: 20px;
  animation: bubble-in 0.2s ease;
}
.pb-chat {
  width: 100%; max-width: 560px;
  height: min(720px, 90vh);
  background: #050810;
  border: 2px solid #4ab3ff;
  display: flex; flex-direction: column;
  color: #fff;
  font-family: var(--sans, Inter, sans-serif);
}
.pb-chat-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(74, 179, 255, 0.2);
  background: linear-gradient(135deg, rgba(74, 179, 255, 0.18), rgba(36, 115, 196, 0.08));
}
.pb-chat-title { display: flex; align-items: center; gap: 12px; }
.pb-chat-icon {
  width: 38px; height: 42px;
  display: grid; place-items: center;
  filter: drop-shadow(0 0 10px rgba(74, 179, 255, 0.7));
}
.pb-chat-icon svg { width: 100%; height: 100%; }
.pb-chat-name { font-family: var(--serif); font-size: 18px; letter-spacing: 0.02em; }
.pb-chat-sub {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: #50ff8a;
  display: flex; align-items: center; gap: 6px;
}
.pb-pulse-tiny {
  width: 6px; height: 6px; border-radius: 50%;
  background: #50ff8a; box-shadow: 0 0 6px #50ff8a;
  animation: pulse 1.4s infinite;
}
.pb-chat-x {
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer;
  width: 32px; height: 32px;
  font-size: 20px; line-height: 1;
}
.pb-chat-x:hover { background: #4ab3ff; border-color: #4ab3ff; color: #050810; }

.pb-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex; flex-direction: column; gap: 14px;
}
.pb-msg { max-width: 85%; }
.pb-msg-me {
  align-self: flex-end;
  background: #4ab3ff;
  color: #050810;
  padding: 10px 14px;
  font-size: 14px; line-height: 1.45;
}
.pb-msg-pb {
  align-self: flex-start;
  border: 1px solid rgba(74, 179, 255, 0.2);
  background: rgba(74, 179, 255, 0.04);
  padding: 10px 14px;
}
.pb-msg-tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em;
  color: #4ab3ff;
  display: block;
  margin-bottom: 4px;
}
.pb-msg-text { font-size: 14px; line-height: 1.5; color: #fff; white-space: pre-wrap; }
.pb-msg-me .pb-msg-text { color: #050810; }
.pb-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.pb-source {
  border: 1px solid rgba(74, 179, 255, 0.35);
  color: #9bd6ff;
  padding: 5px 7px;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.pb-source:hover {
  background: #4ab3ff;
  color: #050810;
}

.pb-typing { display: inline-flex; gap: 4px; }
.pb-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ab3ff;
  animation: pb-bounce 1.2s infinite;
}
.pb-typing span:nth-child(2) { animation-delay: 0.15s; }
.pb-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes pb-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.pb-chat-quick {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 10px 18px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}
.pb-quick {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  cursor: pointer;
}
.pb-quick:hover { background: #4ab3ff; border-color: #4ab3ff; color: #050810; }
.pb-quick:disabled { opacity: 0.4; cursor: not-allowed; }

.pb-chat-input-row {
  display: flex; gap: 8px;
  padding: 12px 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pb-chat-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 12px 14px;
  font-family: var(--sans, Inter, sans-serif); font-size: 14px;
  outline: none;
}
.pb-chat-input:focus { border-color: #4ab3ff; }
.pb-chat-send {
  background: #4ab3ff; border: none;
  color: #050810;
  padding: 0 18px;
  font-family: var(--serif); font-size: 12px; letter-spacing: 0.06em;
  cursor: pointer;
}
.pb-chat-send:disabled { opacity: 0.4; cursor: not-allowed; }
.pb-chat-foot {
  padding: 10px 18px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.pb-chat-foot a { color: #4ab3ff; }

/* Escalation card — Brain doesn't guess */
.pb-escalate {
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px dashed rgba(74, 179, 255, 0.4);
  background: rgba(74, 179, 255, 0.06);
}
.pb-esc-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.pb-esc-btn {
  display: block; width: 100%;
  background: #4ab3ff; color: #050810; border: none;
  padding: 10px 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  font-weight: 700; cursor: pointer;
  margin-bottom: 6px;
}
.pb-esc-btn:hover { background: #fff; }
.pb-esc-call {
  display: block; text-align: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.pb-esc-call:hover { color: #4ab3ff; }
.pb-esc-sent {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: #50ff8a;
}

@media (max-width: 980px) {
  .pb-hero { grid-template-columns: 1fr; gap: 40px; }
  .pete-wrap { left: 12px; bottom: 12px; }
  .pete svg { width: 52px; height: 52px; }
  .pb-fab { width: 66px; height: 66px; right: 10px; bottom: 10px; box-shadow: 4px 4px 0 #050810, 0 0 20px rgba(74, 179, 255, 0.45); }
  .pb-fab-svg { width: 28px; }
  .pb-fab-emoji { font-size: 22px; }
  .pb-fab-text { font-size: 7px; }
}

/* On mobile the Brain lives in the bottom rail + there's a back-to-top button, so the
   floating Pete mascot and "Ask the Brain" fab are hidden to keep the corners clean. */
@media (max-width: 720px) {
  .pete-wrap,
  .pb-fab {
    display: none;
  }
}

/* ============== 🥊 SECOND OPINION (with photos) ============== */
.so-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 210;
  display: grid; place-items: center;
  padding: 20px;
  animation: bubble-in 0.2s ease;
}
.so-modal {
  width: 100%; max-width: 560px;
  max-height: 92vh; overflow-y: auto;
  background: #050810;
  border: 2px solid #4ab3ff;
  display: flex; flex-direction: column;
  color: #fff;
  font-family: var(--sans, Inter, sans-serif);
}
.so-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(74, 179, 255, 0.2);
  background: linear-gradient(135deg, rgba(74, 179, 255, 0.18), rgba(36, 115, 196, 0.08));
  position: sticky; top: 0; z-index: 2;
}
.so-head-title { display: flex; align-items: center; gap: 12px; }
.so-head-ico { font-size: 26px; line-height: 1; filter: drop-shadow(0 0 8px rgba(74,179,255,0.6)); }
.so-head-name { font-family: var(--serif); font-size: 18px; letter-spacing: 0.02em; }
.so-head-sub {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: #50ff8a; display: flex; align-items: center; gap: 6px;
}
.so-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.so-intro { font-size: 14px; line-height: 1.55; color: #cfe6fb; margin: 0; }
.so-intro strong { color: #fff; }

.so-uploads { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.so-drop {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border: 1px dashed rgba(74,179,255,0.5);
  background: rgba(74,179,255,0.05);
  padding: 18px 10px; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.so-drop:hover { background: rgba(74,179,255,0.14); border-color: #4ab3ff; }
.so-drop-ico { font-size: 24px; line-height: 1; }
.so-drop-t { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: #9bd6ff; }

.so-thumbs { display: flex; flex-wrap: wrap; gap: 8px; }
.so-thumb { position: relative; width: 64px; height: 64px; border: 1px solid rgba(74,179,255,0.35); }
.so-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.so-thumb-x {
  position: absolute; top: -8px; right: -8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #050810; border: 1px solid #4ab3ff; color: #fff;
  font-size: 13px; line-height: 1; cursor: pointer;
}
.so-thumb-x:hover { background: #4ab3ff; color: #050810; }
.so-hint { font-size: 11px; color: #7fae9a; }

.so-paste { border-top: 1px dashed rgba(255,255,255,0.12); padding-top: 10px; }
.so-paste summary { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: #9bd6ff; cursor: pointer; }
.so-textarea {
  width: 100%; margin-top: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; padding: 10px 12px;
  font-family: var(--sans, Inter, sans-serif); font-size: 13px; line-height: 1.5;
  outline: none; resize: vertical;
}
.so-textarea:focus { border-color: #4ab3ff; }

.so-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 460px) { .so-contact, .so-uploads { grid-template-columns: 1fr; } }

.so-err {
  border: 1px solid rgba(255,120,120,0.5); background: rgba(217,69,69,0.1);
  color: #ffb4b4; font-size: 13px; line-height: 1.45; padding: 10px 12px;
}
.so-submit {
  display: inline-flex; align-items: center; justify-content: center;
  background: #4ab3ff; border: none; color: #050810;
  padding: 14px 18px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; font-weight: 700;
  cursor: pointer; text-decoration: none; width: 100%;
}
.so-submit:hover { background: #6fc4ff; }
.so-submit:disabled { opacity: 0.4; cursor: not-allowed; }
.so-foot { font-size: 11px; line-height: 1.5; color: #7f93a8; }

/* Result */
.so-result { display: flex; flex-direction: column; gap: 12px; }
.so-verdict {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; font-weight: 700;
  padding: 8px 14px; border: 1px solid;
}
.so-verdict.so-beat    { color: #50ff8a; border-color: rgba(80,255,138,0.6); background: rgba(80,255,138,0.08); }
.so-verdict.so-fair    { color: #9bd6ff; border-color: rgba(74,179,255,0.6); background: rgba(74,179,255,0.08); }
.so-verdict.so-over    { color: #ffcf6f; border-color: rgba(255,207,111,0.6); background: rgba(255,207,111,0.08); }
.so-verdict.so-unclear { color: #cfe6fb; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.so-result-head { font-size: 14px; color: #cfe6fb; margin: 0; }
.so-result-body {
  font-size: 14px; line-height: 1.6; color: #fff; white-space: pre-wrap;
  border-left: 2px solid #4ab3ff; padding: 4px 0 4px 14px;
}
.so-result-follow { font-size: 13px; line-height: 1.5; color: #9bd6ff; }
.so-result-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.so-result-actions .so-submit { width: auto; flex: 1; }
.so-again {
  background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff;
  padding: 14px 16px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; cursor: pointer;
}
.so-again:hover { background: rgba(255,255,255,0.08); }
