/* Fonts loaded via <link> tags in index.html */

:root {
  color-scheme: dark;
  --bg: #060608;
  --surface: #0d0d10;
  --surface-2: #141418;
  --border: #1c1c22;
  --border-2: #252530;
  --text: #f0f0f4;
  --muted: #5a5a6e;
  --muted-2: #3a3a4a;
  --red: #ef3a3a;
  --red-dim: rgba(239,58,58,0.13);
  --red-border: rgba(239,58,58,0.22);
  --green: #22c55e;
  --green-dim: rgba(34,197,94,0.09);
  --green-border: rgba(34,197,94,0.20);
  --amber: #f59e0b;
  --amber-dim: rgba(245,158,11,0.09);
  --amber-border: rgba(245,158,11,0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: "Geist", "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 50% 32% at 50% 0%, rgba(239,58,58,0.08), transparent 72%),
    radial-gradient(ellipse 36% 26% at 12% 88%, rgba(239,58,58,0.05), transparent 78%),
    var(--bg);
}

code {
  padding: 0.18rem 0.45rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.8em;
  background: var(--surface-2);
  color: var(--text);
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 32px;
}

.hero {
  position: relative;
  margin-bottom: 12px;
  padding: 4px 0 0;
}

.hero-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 100%);
  height: 260px;
  background: radial-gradient(ellipse, rgba(239,58,58,0.11) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.85;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--red);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
  opacity: 0.45;
}

.eyebrow-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: normal;
}

.eyebrow-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

h1 {
  margin: 0 0 10px;
  max-width: 720px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--text);
}

h1 em {
  font-style: italic;
  color: var(--red);
}

.intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-stat-label,
.section-label {
  margin-bottom: 10px;
  color: var(--muted-2);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel {
  position: relative;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015), transparent 22%),
    var(--surface);
  box-shadow: 0 32px 90px rgba(0,0,0,0.46), 0 0 0 1px rgba(255,255,255,0.03);
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--border-2);
  opacity: 0.75;
}

.meta-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.meta-card-wide {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .meta-card-wide {
    grid-column: span 2;
  }
}

.meta-card {
  min-height: 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-2);
}

.label {
  margin-bottom: 8px;
  color: var(--muted-2);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.value {
  min-height: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
  word-break: break-word;
  font-family: "JetBrains Mono", monospace;
}

.mode-badge[data-mode="sign-only"] {
  color: var(--green);
}

.mode-badge[data-mode="broadcast"] {
  color: var(--red);
}

.danger-panel {
  margin-top: 14px;
  padding: 14px 16px 16px;
  border: 1px solid var(--red-border);
  border-radius: 14px;
  background: var(--red-dim);
}

.danger-legend {
  padding: 0 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.danger-copy {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.danger-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.checkbox-row input {
  margin-top: 3px;
  accent-color: var(--red);
  cursor: pointer;
}

/* ── Connect bar ────────────────────────────────────────────────── */

.connect-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-connect {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--red-border);
  border-radius: 10px;
  background: var(--red-dim);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background 120ms ease,
    border-color 120ms ease,
    box-shadow 120ms ease,
    transform 120ms ease;
}

.btn-connect:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 8px 22px rgba(239,58,58,0.22);
  transform: translateY(-1px);
}

.wallet-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.wallet-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wallet-meta-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.wallet-meta-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
}

.wallet-meta-sep {
  color: var(--muted-2);
  font-size: 14px;
  margin: 0 2px;
  align-self: center;
}

/* SignSafe status banner */
.signsafe-status {
  animation: fadeIn 0.4s ease;
}

.real-drain-warning {
  animation: pulse 2s infinite;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* ── Scenario grid ──────────────────────────────────────────────── */

.scenario-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 860px) {
  .scenario-grid {
    grid-template-columns: 1fr;
  }
}

.scenario-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-2);
}

.sc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sc-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 3px 8px;
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 6px;
  background: rgba(245,158,11,0.06);
}

.sc-verdict {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  padding: 3px 8px;
  border: 1px solid var(--red-border);
  border-radius: 6px;
  background: var(--red-dim);
}

.sc-title {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
}

.sc-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}

.sc-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.018);
}

.sc-signal-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}

.sc-run {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--red-border);
  border-radius: 10px;
  background: var(--red-dim);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: auto;
  transition:
    background 120ms ease,
    border-color 120ms ease,
    box-shadow 120ms ease,
    transform 120ms ease;
}

.sc-run svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.sc-run:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 8px 22px rgba(239,58,58,0.22);
  transform: translateY(-1px);
}

.sc-run:disabled {
  opacity: 0.45;
  cursor: wait;
  transform: none;
}

/* ── Broadcast details (advanced, collapsed) ────────────────────── */

.broadcast-details {
  margin-top: 16px;
}

.broadcast-summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.broadcast-summary::before {
  content: "▶";
  font-size: 9px;
  transition: transform 160ms ease;
}

.broadcast-details[open] .broadcast-summary::before {
  transform: rotate(90deg);
}

.broadcast-body {
  margin-top: 12px;
  padding: 14px 16px 16px;
  border: 1px solid var(--red-border);
  border-radius: 14px;
  background: var(--red-dim);
}

/* ── Scenario card reveal / face states ────────────────────────── */

.sc-face,
.sc-truth {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.scenario-card[data-revealed="true"] .sc-face {
  display: none;
}

.scenario-card[data-revealed="false"] .sc-truth {
  display: none;
}

/* Face layer — protocol header */

.sc-face-proto {
  display: flex;
  align-items: center;
  gap: 7px;
}

.sc-face-proto-icon {
  font-size: 17px;
  line-height: 1;
}

.sc-face-proto-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.sc-face-proto-badge {
  margin-left: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  padding: 2px 7px;
  border-radius: 4px;
}

.sc-face-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* Face layer — headline */

.sc-face-headline {
  font-family: "DM Serif Display", serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.sc-face-subhead {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: -4px;
}

/* Face layer — reward token display */

.sc-face-reward {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 11px 14px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 10px;
}

.sc-face-reward-amount {
  font-family: "DM Serif Display", serif;
  font-size: 30px;
  color: var(--green);
  letter-spacing: -0.03em;
}

.sc-face-reward-symbol {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.sc-face-reward-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--muted);
  margin-left: auto;
}

/* Face layer — bridge route display */

.sc-face-route {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(99,102,241,0.07);
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: 10px;
}

.sc-face-route-token {
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.sc-face-route-arrow {
  font-size: 16px;
  color: var(--muted);
}

.sc-face-route-fee {
  margin-left: auto;
  text-align: right;
}

.sc-face-route-fee-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}

.sc-face-route-fee-amount {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--text);
}

/* Face layer — stats strip */

.sc-face-stats {
  display: flex;
  gap: 8px;
}

.sc-face-stat {
  flex: 1;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.sc-face-stat-value {
  font-family: "DM Serif Display", serif;
  font-size: 16px;
  color: var(--green);
  letter-spacing: -0.02em;
}

.sc-face-stat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-top: 2px;
}

/* Face layer — trust badges */

.sc-face-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.sc-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Face layer — reassuring note */

.sc-face-note {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
  padding: 8px 10px;
  background: rgba(34,197,94,0.04);
  border-radius: 6px;
  border-left: 2px solid var(--green-border);
}

.sc-face-disclaimer {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--muted-2);
  text-align: center;
}

/* Truth layer — sardonic annotation */

.sc-sardonic {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: var(--red);
  padding: 8px 10px;
  background: var(--red-dim);
  border-radius: 6px;
  border-left: 2px solid var(--red-border);
  font-style: italic;
}

/* Reveal toggle button */

.sc-reveal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--amber-border);
  border-radius: 8px;
  background: var(--amber-dim);
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 120ms ease,
    border-color 120ms ease,
    box-shadow 120ms ease,
    color 120ms ease,
    transform 120ms ease;
  box-shadow: none;
}

.sc-reveal-btn:hover {
  background: rgba(245,158,11,0.16);
  border-color: var(--amber);
  box-shadow: 0 4px 14px rgba(245,158,11,0.12);
  transform: translateY(-1px);
}

.scenario-card[data-revealed="false"] .sc-reveal-label-on,
.scenario-card[data-revealed="true"] .sc-reveal-label-off {
  display: none;
}

.scenario-card[data-revealed="true"] .sc-reveal-btn {
  border-color: var(--border-2);
  background: transparent;
  color: var(--muted-2);
}

.scenario-card[data-revealed="true"] .sc-reveal-btn:hover {
  background: var(--surface-2);
  border-color: var(--muted-2);
  color: var(--muted);
  box-shadow: none;
  transform: translateY(-1px);
}

/* ── Old button-grid (kept for any residual use) ────────────────── */

.button-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  justify-content: center;
  margin-top: 14px;
}

button {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--red-border);
  border-radius: 10px;
  background: var(--red-dim);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition:
    transform 120ms ease,
    opacity 120ms ease,
    background 120ms ease,
    border-color 120ms ease,
    color 120ms ease,
    box-shadow 120ms ease;
}

button:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 24px rgba(239,58,58,0.18);
  transform: translateY(-1px);
}

button:disabled {
  opacity: 0.45;
  cursor: wait;
  transform: none;
}

/* Risk tier affordances (harness scenarios) */
.btn-tier-safe {
  border-color: var(--green-border);
  background: var(--green-dim);
  color: var(--text);
}

.btn-tier-safe:hover {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.15);
}

.btn-tier-mid {
  border-color: var(--amber-border);
  background: var(--amber-dim);
  color: var(--text);
}

.btn-tier-mid:hover {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.12);
}

.btn-tier-high {
  border-color: var(--red-border);
  background: var(--red-dim);
}

.btn-tier-critical {
  border-color: rgba(239, 58, 58, 0.55);
  background: rgba(239, 58, 58, 0.18);
  color: #fecaca;
}

.btn-tier-critical:hover {
  background: #b91c1c;
  border-color: #fecaca;
  box-shadow: 0 10px 28px rgba(185, 28, 28, 0.35);
}

.ghost {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
}

.ghost:hover {
  background: var(--surface-2);
  border-color: var(--muted);
  color: var(--text);
  box-shadow: none;
  transform: translateY(-1px);
}

.notes {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(20,20,24,0.55);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.notes summary {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

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

.notes summary::after {
  content: "Show";
  margin-left: 10px;
  color: var(--muted);
  font-size: 10px;
}

.notes[open] summary::after {
  content: "Hide";
}

.notes ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.notes li + li {
  margin-top: 6px;
}

.notes-audit {
  margin-top: 10px;
}

.audit-intro {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.audit-table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
  font-size: 11px;
  line-height: 1.45;
}

.audit-table th,
.audit-table td {
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--border);
}

.audit-table th {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(20,20,28,0.9);
}

.audit-table td {
  color: var(--muted);
}

.audit-table code {
  font-size: 0.95em;
}

@media (max-width: 900px) {
  .audit-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.log-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.log-header h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.025em;
}

.log-output {
  min-height: 220px;
  margin: 0;
  padding: 16px 18px;
  overflow: auto;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: #c9ccd4;
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.6;
  white-space: pre-wrap;
}

@media (max-width: 900px) {
  .meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .shell {
    width: min(100% - 20px, 1120px);
    padding-top: 20px;
  }

  .panel {
    padding: 18px;
    border-radius: 14px;
  }

  .meta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .button-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   SLIDE DECK — projector presentation mode
   New CSS vars
════════════════════════════════════════════════════════════ */
:root {
  --superteam-purple: #7c3aed;
  --superteam-purple-dim: rgba(124, 58, 237, 0.12);
  --superteam-orange: #f97316;
  --superteam-orange-dim: rgba(249, 115, 22, 0.10);
  --wormhole-blue: #6366f1;
  --wormhole-blue-dim: rgba(99, 102, 241, 0.10);
  --wormhole-blue-border: rgba(99, 102, 241, 0.25);
  --kamino-green: #00D18C;
  --kamino-green-dim: rgba(0, 209, 140, 0.08);
  --kamino-green-border: rgba(0, 209, 140, 0.22);
}

/* ── Shell ───────────────────────────────────────────────── */
.slide-shell {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 32% at 50% 0%, rgba(239,58,58,0.08), transparent 72%),
    radial-gradient(ellipse 36% 26% at 12% 88%, rgba(239,58,58,0.05), transparent 78%),
    var(--bg);
}

/* ── Slide deck ──────────────────────────────────────────── */
.slide-deck {
  position: relative;
  flex: 1;
  overflow: hidden;
  margin-top: 52px;
  margin-bottom: 64px;
}

/* ── Individual slide ────────────────────────────────────── */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.slide--active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.slide--prev {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

/* ── Presenter bar (top) ─────────────────────────────────── */
.presenter-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 16px;
  background: rgba(6, 6, 8, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.presenter-bar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.presenter-bar-icon {
  width: 20px;
  height: 20px;
}

.presenter-bar-name {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.presenter-bar-dot {
  color: var(--red);
  font-size: 9px;
  line-height: 1;
}

.presenter-attack-chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  white-space: nowrap;
  margin-left: 8px;
  vertical-align: middle;
}

.presenter-bar-title {
  flex: 1;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.presenter-bar-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-btn {
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid var(--border-2);
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  cursor: pointer;
  transition: color 120ms, border-color 120ms, background 120ms;
  line-height: 1;
}

.nav-btn:hover:not(:disabled) {
  color: var(--text);
  border-color: var(--muted);
  background: var(--surface-2);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.slide-counter {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  min-width: 40px;
  text-align: center;
}

/* ── Action bar (bottom) ─────────────────────────────────── */
.action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 14px;
  background: rgba(6, 6, 8, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.action-bar-btn {
  flex-shrink: 0;
}

.action-bar-wallet-info {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.action-bar-pubkey {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.action-bar-sep {
  color: var(--muted-2);
  font-size: 12px;
}

.action-bar-provider {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted-2);
  white-space: nowrap;
}

.action-bar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.action-bar-mode {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.action-bar-ghost {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--border-2);
  border-radius: 7px;
  background: transparent;
  color: var(--muted-2);
  font-size: 14px;
  cursor: pointer;
  transition: color 120ms, border-color 120ms, background 120ms;
}

.action-bar-ghost:hover {
  color: var(--text);
  border-color: var(--muted);
  background: var(--surface-2);
}

.btn-run-scenario {
  min-height: 40px;
  padding: 0 26px;
  border: 1px solid var(--red-border);
  border-radius: 10px;
  background: var(--red-dim);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 120ms, border-color 120ms, box-shadow 120ms, transform 120ms;
  flex-shrink: 0;
}

.btn-run-scenario:hover:not(:disabled) {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 6px 20px rgba(239, 58, 58, 0.25);
  transform: translateY(-1px);
}

.btn-run-scenario:disabled {
  opacity: 0.4;
  cursor: wait;
  transform: none;
}

/* ── Bait + Truth panel layout ───────────────────────────── */
.sc-bait {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Width & opacity transition for reveal split */
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease,
              filter 0.5s ease;
  width: 100%;
  opacity: 1;
  filter: none;
}

.sc-truth {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  background: var(--surface);
  border-left: 1px solid var(--red-border);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

/* After reveal: bait shrinks & dims, truth slides in */
.slide[data-revealed="true"] .sc-bait {
  width: 40%;
  opacity: 0.45;
  filter: brightness(0.55) saturate(0.4);
}

.slide[data-revealed="true"] .sc-truth {
  transform: translateX(0);
  opacity: 1;
}

/* ── Truth panel content ─────────────────────────────────── */
.sc-truth-inner {
  padding: 52px 56px;
}

.sc-verdict-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.sc-verdict-tag {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  padding: 5px 14px;
  border-radius: 7px;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.sc-truth-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sc-truth-bullets li {
  display: flex;
  gap: 14px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--text);
}

.sc-truth-bullets li::before {
  content: "→";
  color: var(--red);
  flex-shrink: 0;
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  margin-top: 1px;
}

.sc-truth-statement {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.04em;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-2);
}

/* ── Shared bait structure ───────────────────────────────── */
.bait-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 48px 0;
}

.bait-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bait-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.bait-brand {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.attack-type-chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 5px;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  white-space: nowrap;
  margin-right: auto;
}

.bait-verified {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 6px;
}

.bait-verified--green {
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
}

.bait-footer {
  padding: 0 48px 28px;
  margin-top: auto;
  width: 100%;
}

.bait-footer-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.03em;
}

/* ── Slide 0 / 4 centered layouts ───────────────────────── */
.slide-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 60px 80px;
  gap: 28px;
}

.slide-0-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slide-0-icon {
  width: 22px;
  height: 22px;
}

.slide-0-headline {
  font-family: "DM Serif Display", serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--text);
  margin: 0;
}

.slide-0-headline em {
  font-style: italic;
  color: var(--red);
}

.slide-0-sub {
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 680px;
  margin: 0;
}

.slide-0-chips {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.slide-0-chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 8px 20px;
  letter-spacing: 0.02em;
}

.slide-0-hint {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.07em;
  margin: 0;
  animation: pulse 2.5s ease-in-out infinite;
}

.slide-4-badge {
  font-size: 64px;
  line-height: 1;
}

.slide-4-headline {
  font-family: "DM Serif Display", serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
}

.slide-4-caught {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.slide-4-caught-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 18px 28px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 14px;
}

.slide-4-caught-item code {
  font-size: 14px;
  color: var(--amber);
}

.slide-4-caught-item span {
  font-size: 16px;
  color: var(--muted);
}

.slide-4-sub {
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   BAIT THEMES
═══════════════════════════════════════════════════════════ */

/* ── Superteam Drops (slide 1) ───────────────────────────── */
.bait-superteam {
  background: linear-gradient(160deg, #0f0b1c 0%, #110e22 100%);
  align-items: center;
  justify-content: space-between;
}

.bait-superteam-logo {
  background: var(--superteam-purple-dim);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: #a78bfa;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.bait-superteam .bait-header {
  max-width: 640px;
  width: 100%;
}

.bait-superteam-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.bait-superteam-wallet-chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 7px 16px;
}

.bait-superteam-epoch {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.bait-superteam-reward {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.bait-reward-amount {
  font-family: "DM Serif Display", serif;
  font-size: clamp(72px, 10vw, 112px);
  color: var(--superteam-orange);
  line-height: 1;
  letter-spacing: -0.04em;
}

.bait-reward-symbol {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  color: var(--superteam-orange);
  opacity: 0.85;
}

.bait-superteam-usd {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.bait-progress-wrap {
  width: min(440px, 80%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bait-progress-labels {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--muted-2);
}

.bait-progress-bar {
  height: 7px;
  background: var(--surface-2);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-2);
}

.bait-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--superteam-purple), var(--superteam-orange));
  border-radius: 3px;
}

.bait-superteam-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.bait-countdown-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bait-countdown-time {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 600;
  color: var(--superteam-orange);
  letter-spacing: 0.1em;
}

/* ── Wormhole Portal (slide 2) ───────────────────────────── */
.bait-wormhole {
  background: linear-gradient(160deg, #080814 0%, #0c0c20 100%);
  align-items: center;
  justify-content: space-between;
}

.bait-wormhole .bait-header {
  max-width: 640px;
  width: 100%;
}

.bait-wormhole-logo {
  font-size: 22px;
  background: var(--wormhole-blue-dim);
  border: 1px solid var(--wormhole-blue-border);
  width: 40px;
  height: 40px;
}

.bait-verified--wormhole {
  color: var(--wormhole-blue);
  background: var(--wormhole-blue-dim);
  border: 1px solid var(--wormhole-blue-border);
}

.bait-wormhole-bridge {
  display: flex;
  align-items: center;
  gap: 28px;
}

.bait-token-slot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.bait-token-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.bait-token-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--surface-2);
  border: 1px solid var(--wormhole-blue-border);
  border-radius: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  cursor: default;
  min-width: 140px;
  justify-content: center;
}

.bait-token-icon {
  color: var(--wormhole-blue);
  font-size: 18px;
}

.bait-eth-icon {
  color: #a5b4fc;
}

.bait-token-caret {
  color: var(--muted-2);
  font-size: 14px;
}

.bait-bridge-arrow {
  font-size: 36px;
  color: var(--wormhole-blue);
  line-height: 1;
  opacity: 0.7;
}

.bait-wormhole-fee-table {
  background: var(--surface-2);
  border: 1px solid var(--wormhole-blue-border);
  border-radius: 14px;
  padding: 18px 28px;
  width: min(520px, 88%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bait-fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  line-height: 1.5;
}

.bait-fee-label {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
}

.bait-fee-value {
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 500;
}

.bait-wormhole-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
}

.bait-stat {
  text-align: center;
}

.bait-stat-value {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.bait-stat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.bait-wormhole-guardians {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.bait-guardian-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--wormhole-blue);
  background: var(--wormhole-blue-dim);
  border: 1px solid var(--wormhole-blue-border);
  padding: 5px 14px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

/* ── Kamino Finance (slide 3) ────────────────────────────── */
.bait-kamino {
  background: linear-gradient(160deg, #060f0c 0%, #081512 100%);
  align-items: center;
  justify-content: space-between;
}

.bait-kamino .bait-header {
  max-width: 640px;
  width: 100%;
}

.bait-kamino-logo {
  font-size: 22px;
  background: var(--kamino-green-dim);
  border: 1px solid var(--kamino-green-border);
  width: 40px;
  height: 40px;
}

.bait-verified--kamino {
  color: var(--kamino-green);
  background: var(--kamino-green-dim);
  border: 1px solid var(--kamino-green-border);
}

.bait-kamino-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.bait-kamino-vault-name {
  font-family: "DM Serif Display", serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--kamino-green);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.bait-kamino-vault-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.bait-kamino-metrics {
  display: flex;
  align-items: center;
  gap: 0;
}

.bait-kamino-metric {
  text-align: center;
  padding: 0 52px;
}

.bait-kamino-divider {
  width: 1px;
  height: 80px;
  background: var(--border-2);
}

.bait-kamino-metric-value {
  font-family: "DM Serif Display", serif;
  font-size: clamp(52px, 7vw, 80px);
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.bait-kamino-metric--apy .bait-kamino-metric-value {
  color: var(--kamino-green);
}

.bait-kamino-metric-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════
   PRESENTER OVERLAY — right drawer
═══════════════════════════════════════════════════════════ */
.presenter-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.presenter-overlay:not([aria-hidden="true"]) {
  pointer-events: auto;
  opacity: 1;
}

.presenter-overlay-panel {
  width: min(480px, 90vw);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.presenter-overlay:not([aria-hidden="true"]) .presenter-overlay-panel {
  transform: translateX(0);
}

.presenter-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.presenter-overlay-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.presenter-overlay-close {
  min-height: auto;
  height: 28px;
  width: 28px;
  padding: 0;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 120ms, background 120ms;
}

.presenter-overlay-close:hover {
  color: var(--text);
  background: var(--surface-2);
}

.presenter-overlay-section {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.presenter-overlay-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
  display: block;
}

.presenter-overlay-wallet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 13px;
}

.presenter-overlay-log {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-bottom: none;
}

.presenter-overlay-log-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.presenter-overlay-log .log-output {
  flex: 1;
  min-height: 120px;
  font-size: 11px;
  margin: 0;
}

/* Signsafe status inside overlay */
.presenter-overlay-section.signsafe-status {
  background: rgba(34, 197, 94, 0.08);
  border-bottom: 1px solid rgba(34, 197, 94, 0.18);
  color: var(--green);
  font-size: 13px;
}

/* ══════════════════════════════════════════════════════════
   IN-BAIT CTA BUTTONS — decorative, non-interactive
═══════════════════════════════════════════════════════════ */
.bait-cta {
  font-family: "Geist", "Inter", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  padding: 14px 40px;
  letter-spacing: 0.01em;
  border: none;
  min-height: unset;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

.bait-cta:disabled {
  opacity: 0.45;
  cursor: wait;
  transform: none;
}

.bait-cta--superteam {
  background: linear-gradient(90deg, var(--superteam-purple), var(--superteam-orange));
  color: #fff;
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.25);
}

.bait-cta--superteam:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.38);
}

.bait-cta--wormhole {
  background: var(--wormhole-blue);
  color: #fff;
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.3);
  font-size: 20px;
  padding: 16px 56px;
}

.bait-cta--wormhole:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(99, 102, 241, 0.45);
}

.bait-cta--kamino {
  background: var(--kamino-green);
  color: #030f0a;
  box-shadow: 0 8px 28px rgba(0, 209, 140, 0.3);
}

.bait-cta--kamino:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 209, 140, 0.45);
}

/* ── Wormhole amount display ─────────────────────────────── */
.bait-wormhole-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 32px;
  background: var(--surface-2);
  border: 1px solid var(--wormhole-blue-border);
  border-radius: 12px;
  min-width: 160px;
}

.bait-amount-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.bait-amount-value {
  font-family: "DM Serif Display", serif;
  font-size: 36px;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.bait-amount-unit {
  font-family: "JetBrains Mono", monospace;
  font-size: 20px;
  color: var(--wormhole-blue);
}

.bait-amount-usd {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--muted-2);
}

/* ── Verdict badge — uppercase alarm style ───────────────── */
.sc-verdict-badge {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

