:root {
  --bg: #09090b;
  --bg-2: #0e0e11;
  --surface: #131316;
  --surface-2: #17171c;
  --border: #24242b;
  --border-2: #2e2e38;
  --text: #f4f4f5;
  --text-2: #a1a1aa;
  --text-3: #71717a;
  --text-4: #52525b;

  /* Benvox purple — Nubank-inspired */
  --brand: #7c3aed;
  --brand-2: #8b5cf6;
  --brand-3: #5b21b6;
  --brand-glow: rgba(124, 58, 237, 0.35);

  --wa-green: #25D366;
  --wa-bubble-out: #005C4B;
  --wa-bubble-in: #1F2C33;
  --wa-bg: #0B141A;
  --wa-header: #1F2C33;

  --success: #10B981;
  --warn: #F59E0B;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  --shadow-soft: 0 1px 0 rgba(255,255,255,0.04) inset, 0 20px 60px -20px rgba(0,0,0,0.6);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 80px -30px rgba(0,0,0,0.8);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ——— Ambient background ——— */
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 75% 30%, rgba(124, 58, 237, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 30% at 15% 80%, rgba(109, 40, 217, 0.12), transparent 60%);
}
/* Grid xadrez removido — bg fica limpo, só o glow radial do ::before */

.hero-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-topbar {
  padding: 28px 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-logo {
  height: 22px;
  opacity: 0.95;
}
.hero-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-3);
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.01em;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.15);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.15); }
  50% { box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.05); }
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: center;
  padding: 40px 40px 48px;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}

/* ——— LEFT ——— */
.left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 600px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(124,58,237,0.08), rgba(124,58,237,0.02));
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--text-2);
  letter-spacing: 0.02em;
  width: fit-content;
}
.eyebrow-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brand-2), var(--brand-3));
  display: grid; place-items: center;
  font-size: 10px;
}

h1.headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}
h1.headline .hl-part {
  display: block;
  text-wrap: balance;
}
h1.headline .hl-part + .hl-part { margin-top: 2px; }
h1.headline .em {
  font-family: inherit;
  font-weight: 700;
  font-style: italic;
  color: var(--brand);
  letter-spacing: -0.02em;
}
h1.headline .u {
  position: relative;
  white-space: nowrap;
}
h1.headline .u::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.12em;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 2px;
  opacity: 0.85;
}

.sub {
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 540px;
  letter-spacing: -0.005em;
}
.sub strong {
  color: var(--text);
  font-weight: 500;
}

/* Pitch-line — posicionamento "é um funcionário, não chatbot" alto na
   estrutura, entre a sub e o CTA. Estilo pull-quote com barra roxa. */
.pitch-line {
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  letter-spacing: -0.003em;
  margin: 0;
  padding: 12px 16px;
  max-width: 540px;
  border-left: 3px solid var(--brand);
  background: linear-gradient(90deg, rgba(124,58,237,0.08), rgba(124,58,237,0.01) 80%);
  border-radius: 0 8px 8px 0;
}
.pitch-line strong { color: var(--text); font-weight: 600; }

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 0 0 1px rgba(124,58,237,0.4),
    0 10px 30px -8px rgba(124,58,237,0.45);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 0 0 1px rgba(124,58,237,0.5),
    0 14px 40px -8px rgba(124,58,237,0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { background: var(--surface); border-color: #3a3a46; }

/* Microcopy + link abaixo do CTA primário */
.cta-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-3);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.003em;
}
.cta-meta .cta-sep { color: var(--text-4); }
.cta-meta .cta-link {
  color: var(--text-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 160ms;
}
.cta-meta .cta-link:hover { color: var(--brand); }

.trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
  letter-spacing: -0.002em;
}
.badge svg { flex-shrink: 0; width: 16px; height: 16px; }
.badge .badge-logo {
  height: 18px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
/* Meta badge — só logo (que já carrega o caption "Meta Business Partner"
   embutido). Não vem acompanhado de texto. */
.badge.badge-meta { padding: 0; gap: 0; }
.badge .badge-meta-logo {
  height: 26px;
  width: auto;
  flex-shrink: 0;
  display: block;
  opacity: 0.92;
}
[data-theme="light"] .badge .badge-meta-logo {
  filter: brightness(0.7);
}
/* Meta blue placeholder mark — usado no badge "Meta Business Partner"
   até dropar o asset oficial em /logos/meta-business-partner.png */
.badge-meta-mark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #0064E0 0%, #1877F2 100%);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.dot-sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--text-4);
}

/* Trust channels — sub-linha de canais ativos abaixo dos badges */
.trust-channels {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.trust-channels .ch-label {
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-right: 2px;
}
.trust-channels > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ch-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--text-3);
}
.ch-bullet[data-ch="wa"]    { background: #25D366; }
.ch-bullet[data-ch="ig"]    { background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%); }
.ch-bullet[data-ch="email"] { background: #4285F4; }
.ch-bullet[data-ch="web"]   { background: var(--brand); }
.ch-bullet[data-ch="voice"] { background: #ec4899; }

.logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.logos-label {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10.5px;
  color: var(--text-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 6px;
}
.logo-chip {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: -0.005em;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,0.015);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-chip .chip-seg {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-left: 8px;
  border-left: 1px solid var(--border);
  font-weight: 400;
}
.logo-chip.more {
  background: transparent;
  border-style: dashed;
  color: var(--text-3);
}

.testimonial {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
  max-width: 520px;
}
.testimonial .avatar-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.testimonial .avatar-initials {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  color: #fff;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F59E0B, #DC2626);
  flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}
.testimonial-text {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-2);
  letter-spacing: -0.005em;
}
.testimonial-text em { color: var(--text); font-style: normal; }
.testimonial-meta {
  font-size: 11.5px;
  color: var(--text-4);
  margin-top: 4px;
  font-family: 'Geist Mono', ui-monospace, monospace;
}

/* ——— RIGHT (split product stage) ——— */
.stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.scenario-rail {
  position: absolute;
  top: -50px; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: nowrap;
  z-index: 3;
}
.scenario-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-2);
  font-size: 11.5px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.003em;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.scenario-chip:hover { border-color: var(--border-2); color: var(--text); }
.scenario-chip.active {
  background: linear-gradient(180deg, rgba(124,58,237,0.16), rgba(124,58,237,0.06));
  border-color: rgba(124,58,237,0.5);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(124,58,237,0.25), 0 0 24px -6px rgba(124,58,237,0.4);
}
.chip-ico {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: rgba(124,58,237,0.18);
  display: grid; place-items: center;
  font-size: 9.5px;
}

/* Demo terminou: empurra o olho pros outros cenários. Cada chip inativo
   ganha pulso + um pointer 👆 fazendo bounce ao lado. Reseta quando o
   visitante troca de aba. */
.stage.demo-ended .scenario-chip:not(.active) {
  animation: chip-nudge 2s ease-in-out infinite;
  position: relative;
}
.stage.demo-ended .scenario-chip:not(.active)::after {
  content: "👆";
  position: absolute;
  left: 50%;
  bottom: -20px;
  font-size: 15px;
  animation: hand-bounce 1.3s ease-in-out infinite;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}
.stage.demo-ended .scenario-chip:not(.active):hover {
  animation: none;
}
.stage.demo-ended .scenario-chip:not(.active):hover::after {
  animation: none;
  opacity: 0;
  transition: opacity 160ms;
}
/* Dark — glow roxo no entorno da borda */
@keyframes chip-nudge {
  0%, 100% {
    border-color: var(--border);
    box-shadow: 0 0 0 0 rgba(124,58,237,0);
  }
  50% {
    border-color: rgba(124,58,237,0.6);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.15), 0 0 22px -4px rgba(124,58,237,0.5);
  }
}
/* Light — background flash + borda roxa forte (o glow sozinho fica discreto
   demais sobre fundo claro). */
[data-theme="light"] .stage.demo-ended .scenario-chip:not(.active) {
  animation: chip-nudge-light 2s ease-in-out infinite;
}
@keyframes chip-nudge-light {
  0%, 100% {
    background: #fbf8f1;
    border-color: rgba(26,25,23,0.18);
    box-shadow: none;
  }
  50% {
    background: rgba(124,58,237,0.14);
    border-color: rgba(124,58,237,0.7);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1), 0 6px 18px -4px rgba(124,58,237,0.35);
  }
}
@keyframes hand-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 4px); }
}
/* Desync leve entre os chips pra não pulsar em bloco */
.stage.demo-ended .scenario-chip:nth-of-type(2) { animation-delay: 0.25s; }
.stage.demo-ended .scenario-chip:nth-of-type(3) { animation-delay: 0.5s; }
.stage.demo-ended .scenario-chip:nth-of-type(4) { animation-delay: 0.75s; }
.stage.demo-ended .scenario-chip:nth-of-type(5) { animation-delay: 1.0s; }
.stage.demo-ended .scenario-chip:nth-of-type(6) { animation-delay: 1.25s; }
.stage.demo-ended .scenario-chip:nth-of-type(2)::after { animation-delay: 0.2s; }
.stage.demo-ended .scenario-chip:nth-of-type(3)::after { animation-delay: 0.45s; }
.stage.demo-ended .scenario-chip:nth-of-type(4)::after { animation-delay: 0.7s; }
.stage.demo-ended .scenario-chip:nth-of-type(5)::after { animation-delay: 0.95s; }
.stage.demo-ended .scenario-chip:nth-of-type(6)::after { animation-delay: 1.2s; }

/* Connector line draw-in. Keyed by running id so redraws each step. */
@keyframes connector-draw {
  to { stroke-dashoffset: 0; }
}
/* Stage precisa ser o plano de coordenadas pro SVG da linha */
.stage { position: relative; }

/* phone — titanium frame + dynamic island + side buttons */
.phone {
  position: relative;
  border-radius: 44px;
  padding: 7px;
  /* Titanium multi-stop gradient (same reading as the video-generator template) */
  background: linear-gradient(155deg,
    #6a6a6e 0%, #a0a0a4 6%, #d0d0d4 12%, #f0f0f0 16%,
    #d8d8dc 22%, #a8a8ac 30%, #707074 40%, #505054 48%,
    #404044 52%, #505054 56%, #707074 64%, #a0a0a4 72%,
    #d0d0d4 80%, #f0f0f0 85%, #b8b8bc 92%, #7a7a7e 100%);
  border: none;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(0,0,0,0.25),
    0 30px 80px rgba(0,0,0,0.5),
    0 10px 30px rgba(0,0,0,0.25);
}
.phone-screen {
  background: var(--wa-bg);
  border-radius: 37px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 620px;
  position: relative;
}
/* Dynamic Island — pílula centralizada no topo */
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 20px;
  background: #000;
  border-radius: 11px;
  z-index: 100;
}
/* Side buttons (metallic strips that peek out of the frame edge) */
.phone-btn {
  position: absolute;
  background: linear-gradient(90deg, #6b6b6f 0%, #bcbcc0 35%, #e8e8ec 55%, #b8b8bc 75%, #77777b 100%);
  z-index: 50;
}
.phone-btn.btn-silent   { left: -3px; top: 86px;  width: 4px; height: 26px; border-radius: 2px 0 0 2px; box-shadow: -1px 0 3px rgba(0,0,0,0.35); }
.phone-btn.btn-vol-up   { left: -4px; top: 126px; width: 5px; height: 58px; border-radius: 3px 0 0 3px; box-shadow: -1px 0 3px rgba(0,0,0,0.35); }
.phone-btn.btn-vol-down { left: -4px; top: 196px; width: 5px; height: 58px; border-radius: 3px 0 0 3px; box-shadow: -1px 0 3px rgba(0,0,0,0.35); }
.phone-btn.btn-power    { right: -4px; top: 148px; width: 5px; height: 82px; border-radius: 0 3px 3px 0; box-shadow: 1px 0 3px rgba(0,0,0,0.35); }

/* Status bar gets a little more headroom so its content sits next to the notch */
.phone-status {
  padding-top: 4px;
}
.phone-status {
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: #fff;
  background: #0B141A;
}
.phone-status svg { opacity: 0.9; }

.wa-header {
  height: 56px;
  background: var(--wa-header);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.wa-back { color: rgba(255,255,255,0.7); font-size: 20px; line-height: 1; }
.wa-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  display: grid; place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  flex-shrink: 0;
}
.wa-avatar::after {
  content: "";
  position: absolute;
  right: -1px; bottom: -1px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--wa-green);
  border: 2px solid var(--wa-header);
}
.wa-name {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.wa-name small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-top: 1px;
}
.wa-header-icons {
  margin-left: auto;
  display: flex;
  gap: 16px;
  color: rgba(255,255,255,0.7);
}

.wa-chat {
  flex: 1;
  background:
    linear-gradient(rgba(11, 20, 26, 0.85), rgba(11, 20, 26, 0.85)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><path d='M30 5 L55 30 L30 55 L5 30 Z' fill='none' stroke='%23182229' stroke-width='0.6'/></svg>");
  background-size: auto, 60px 60px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.wa-chat::-webkit-scrollbar { width: 0; }

.bubble {
  max-width: 78%;
  padding: 6px 9px 18px;
  border-radius: 7px;
  font-size: 13.5px;
  line-height: 1.35;
  position: relative;
  animation: bubbleIn 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
  letter-spacing: -0.003em;
  white-space: pre-wrap;
  word-wrap: break-word;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(6px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.bubble-in {
  background: var(--wa-bubble-in);
  color: #e9edef;
  align-self: flex-start;
  border-top-left-radius: 2px;
}
.bubble-out {
  background: var(--wa-bubble-out);
  color: #e9edef;
  align-self: flex-end;
  border-top-right-radius: 2px;
}
.bubble-meta {
  position: absolute;
  right: 8px; bottom: 3px;
  font-size: 10px;
  color: rgba(233,237,239,0.5);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.bubble-meta .ticks { color: #53bdeb; }

.typing-bubble {
  align-self: flex-end;
  background: var(--wa-bubble-out);
  padding: 10px 14px;
  border-radius: 7px;
  border-top-right-radius: 2px;
  display: flex;
  gap: 4px;
}
.typing-bubble span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  animation: typing 1.2s infinite;
}
.typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.typing-bubble span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* doc preview inside chat */
.wa-doc {
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  padding: 8px 10px;
  margin: 2px 0 4px;
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: 240px;
}
.wa-doc-icon {
  width: 34px; height: 40px;
  border-radius: 4px;
  background: linear-gradient(180deg, #FF5252, #B71C1C);
  display: grid; place-items: center;
  color: #fff;
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  flex-shrink: 0;
}
.wa-doc-title {
  font-size: 12.5px;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}
.wa-doc-meta {
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* Kanban mini bubble — usado pelo cenário "producao" */
.kanban-mini {
  margin-top: 6px;
  display: flex;
  gap: 3px;
  max-width: 280px;
}
.km-col {
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 5px;
  padding: 5px 3px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 38px;
}
.km-col-label {
  font-size: 8.5px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.km-col.km-done .km-col-label {
  color: rgba(255,255,255,0.28);
  text-decoration: line-through;
}
.km-col.km-current {
  border-color: rgba(124,58,237,0.6);
  background: rgba(124,58,237,0.12);
}
.km-col.km-current .km-col-label { color: #c4b5fd; }
.km-card {
  background: linear-gradient(180deg, #7c3aed, #5b21b6);
  color: #fff;
  padding: 4px 4px 5px;
  border-radius: 4px;
  text-align: center;
  font-size: 9.5px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.15;
  box-shadow: 0 2px 6px rgba(124,58,237,0.35);
}
.km-card strong { font-size: 10px; font-weight: 700; }
.km-card span { font-size: 8.5px; opacity: 0.92; font-weight: 400; }

/* Workflow mini bubble — usado pelo cenário "comando" */
.workflow-mini {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
  max-width: 280px;
  flex-wrap: wrap;
  row-gap: 5px;
}
.wm-node {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 7px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.40);
  border-radius: 6px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
.wm-ico { font-size: 11px; line-height: 1; }
.wm-arrow {
  width: 8px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  position: relative;
  flex-shrink: 0;
}
.wm-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-right: 1px solid rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.45);
  transform: translateY(-50%) rotate(45deg);
}

/* Light mode tweaks pros bubbles novos */
[data-theme="light"] .km-col {
  border-color: rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.02);
}
[data-theme="light"] .km-col-label { color: rgba(0,0,0,0.5); }
[data-theme="light"] .km-col.km-done .km-col-label { color: rgba(0,0,0,0.32); }
[data-theme="light"] .km-col.km-current {
  border-color: rgba(124,58,237,0.5);
  background: rgba(124,58,237,0.10);
}
[data-theme="light"] .km-col.km-current .km-col-label { color: #5b21b6; }
[data-theme="light"] .wm-node {
  background: rgba(124,58,237,0.10);
  border-color: rgba(124,58,237,0.45);
  color: rgba(26,25,23,0.85);
}
[data-theme="light"] .wm-arrow { background: rgba(0,0,0,0.30); }
[data-theme="light"] .wm-arrow::after {
  border-right-color: rgba(0,0,0,0.40);
  border-top-color: rgba(0,0,0,0.40);
}

/* Instagram post bubble — usado pelo cenário "comando"
   Estilo de feed real do IG: header (avatar + handle + ⋯), imagem 1:1 com
   carrossel, ações (like/comment/share/save), curtidas e legenda. */
.ig-post {
  margin-top: 6px;
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
  overflow: hidden;
  max-width: 252px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.ig-post-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 8px;
}
.ig-avatar-ring {
  width: 30px; height: 30px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  flex-shrink: 0;
}
.ig-avatar {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #ffffff;
  color: #1a1a1a;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
}
.ig-handle {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  line-height: 1.15;
}
.ig-handle strong {
  font-size: 12.5px;
  font-weight: 600;
  color: #000;
}
.ig-handle small {
  font-size: 10.5px;
  color: #737373;
  font-weight: 400;
}
.ig-more {
  color: #000;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -1px;
}
.ig-post-image {
  aspect-ratio: 1/1;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.12), transparent 55%),
    linear-gradient(135deg, #4338CA 0%, #7c3aed 50%, #5b21b6 100%);
  position: relative;
  display: grid;
  place-items: center;
}
.ig-post-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.05;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  padding: 0 12px;
}
.ig-slide-num {
  position: absolute;
  top: 9px;
  right: 9px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 11px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}
.ig-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}
.ig-carousel-dots .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}
.ig-carousel-dots .dot.active { background: #ffffff; }
.ig-post-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 4px;
  color: #1a1a1a;
}
.ig-post-actions svg { display: block; }
.ig-post-actions .ig-bookmark { margin-left: auto; }
.ig-post-likes {
  padding: 0 10px;
  font-size: 11.5px;
  color: #1a1a1a;
  line-height: 1.3;
}
.ig-post-likes strong { font-weight: 600; }
.ig-post-caption {
  padding: 4px 10px 10px;
  font-size: 11.5px;
  color: #1a1a1a;
  line-height: 1.4;
}
.ig-post-caption strong {
  font-weight: 600;
  margin-right: 4px;
}

/* input */
.wa-input {
  padding: 8px 10px;
  background: var(--wa-bg);
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-input-field {
  flex: 1;
  background: #2a3942;
  border-radius: 22px;
  padding: 9px 14px;
  color: #fff;
  font-size: 13.5px;
  border: none;
  outline: none;
  font-family: inherit;
  min-width: 0;
}
.wa-input-field::placeholder { color: rgba(255,255,255,0.5); }
.wa-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #00A884;
  display: grid; place-items: center;
  color: #fff;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .15s ease;
}
.wa-send:hover { transform: scale(1.05); }
.wa-send:disabled { opacity: 0.5; cursor: not-allowed; }

/* ——— CRM panel ——— */
.crm {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 640px;
  min-width: 0;
}
.crm-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
}
.crm-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
}
.crm-title .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 0 3px rgba(37,211,102,0.15);
  animation: pulse 2.4s ease-in-out infinite;
}
.crm-tabs {
  display: flex;
  gap: 2px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
}
.crm-tab {
  padding: 4px 9px;
  border-radius: 5px;
  letter-spacing: 0.02em;
}
.crm-tab.active {
  background: var(--surface-2);
  color: var(--text);
}

.crm-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.crm-body::-webkit-scrollbar { width: 6px; }
.crm-body::-webkit-scrollbar-thumb {
  background: var(--border-2);
  border-radius: 3px;
}

.crm-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.crm-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.contact-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
}
.contact-card .avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #F59E0B, #DC2626);
  font-size: 14px;
}
.contact-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.contact-meta {
  font-size: 11.5px;
  color: var(--text-3);
  font-family: 'Geist Mono', monospace;
  margin-top: 2px;
}
.contact-tags {
  display: flex;
  gap: 5px;
  margin-top: 7px;
  flex-wrap: wrap;
}
.tag {
  font-size: 10.5px;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--text-2);
  border: 1px solid var(--border);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.01em;
}
.tag-brand {
  background: rgba(124,58,237,0.12);
  color: var(--brand-2);
  border-color: rgba(124,58,237,0.25);
}

/* action feed */
.action-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.action-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  align-items: flex-start;
  position: relative;
  animation: slideInAction 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
}
@keyframes slideInAction {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: translateX(0); }
}
.action-item::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 28px;
  bottom: -10px;
  width: 1px;
  background: var(--border);
}
.action-item:last-child::before { display: none; }

.action-ico {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--text-2);
  position: relative;
  z-index: 1;
}
.action-ico.running {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.35);
  color: var(--brand-2);
}
.action-ico.done {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.3);
  color: var(--success);
}
.action-content {
  flex: 1;
  min-width: 0;
}
.action-title {
  font-size: 12.5px;
  color: var(--text);
  letter-spacing: -0.003em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.action-time {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--text-4);
  margin-left: auto;
  flex-shrink: 0;
}
.action-detail {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 3px;
  font-family: 'Geist Mono', monospace;
  letter-spacing: -0.005em;
}
.action-detail code {
  color: var(--brand-2);
  background: rgba(124,58,237,0.08);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 10.5px;
}

/* Kanban board (CrmPanel · cenário "producao")
   Viewport mostra ~3 colunas; track desliza horizontalmente em loop
   pra revelar as 5. Coluna tem largura fixa pra dar espaço pros nomes
   sem ficar cramped. */
.kb-viewport {
  overflow: hidden;
  padding: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
}
.kb-track {
  display: flex;
  gap: 5px;
  width: max-content;
  animation: kb-pan 16s ease-in-out infinite;
}
.kb-viewport:hover .kb-track { animation-play-state: paused; }
@keyframes kb-pan {
  0%, 18%   { transform: translateX(0); }
  30%, 48%  { transform: translateX(-101px); }
  60%, 80%  { transform: translateX(-202px); }
  92%, 100% { transform: translateX(0); }
}
.kb-col {
  flex: 0 0 96px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 120px;
  padding: 6px 5px;
  border-radius: 6px;
  background: rgba(0,0,0,0.18);
  transition: background .25s ease, box-shadow .25s ease;
  min-width: 0;
}
.kb-col-active {
  background: rgba(124,58,237,0.10);
  box-shadow: inset 0 0 0 1px rgba(124,58,237,0.35);
}
.kb-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  line-height: 1;
}
.kb-col-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kb-col-count {
  background: rgba(255,255,255,0.06);
  color: var(--text-2);
  padding: 2px 5px;
  border-radius: 8px;
  font-size: 8.5px;
  font-weight: 500;
}
.kb-col-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.kb-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px 6px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-height: 32px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.kb-card-id {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 8.5px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  line-height: 1;
}
.kb-card-name {
  font-size: 10px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kb-card-featured {
  border-color: rgba(124,58,237,0.55);
  background: linear-gradient(180deg, rgba(124,58,237,0.18), rgba(124,58,237,0.06));
  box-shadow: 0 0 0 1px rgba(124,58,237,0.18), 0 0 14px -4px rgba(124,58,237,0.55);
}
.kb-card-featured .kb-card-name { color: #fff; font-weight: 600; }
.kb-card-featured .kb-card-id { color: rgba(255,255,255,0.65); }
.kb-card-pulse {
  position: absolute;
  top: 5px; right: 5px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(124,58,237,0.7);
  animation: kb-pulse 1.6s ease-out infinite;
}
@keyframes kb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(124,58,237,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(124,58,237,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
}
.kb-card-ghost {
  border-color: rgba(124,58,237,0.45);
  background: linear-gradient(135deg, rgba(124,58,237,0.22), rgba(124,58,237,0.08));
  animation: kb-card-slide-in .55s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative;
}
.kb-card-ghost::before {
  content: "";
  position: absolute;
  left: -1px; top: 0; bottom: 0;
  width: 2px;
  background: var(--brand);
  border-radius: 2px 0 0 2px;
}
.kb-card-ghost .kb-card-name { color: #fff; }
@keyframes kb-card-slide-in {
  0%   { opacity: 0; transform: translateX(-22px) scale(0.94); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* Light-mode tweaks pro kanban board */
[data-theme="light"] .kb-col { background: rgba(0,0,0,0.03); }
[data-theme="light"] .kb-col-active {
  background: rgba(124,58,237,0.07);
  box-shadow: inset 0 0 0 1px rgba(124,58,237,0.35);
}
[data-theme="light"] .kb-col-count {
  background: rgba(0,0,0,0.05);
  color: var(--text-2);
}
[data-theme="light"] .kb-card-featured .kb-card-name { color: #1a1917; }
[data-theme="light"] .kb-card-featured .kb-card-id { color: rgba(26,25,23,0.55); }
[data-theme="light"] .kb-card-ghost .kb-card-name { color: #1a1917; }

/* schedule card */
.schedule-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  overflow: hidden;
}
.schedule-head {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-family: 'Geist Mono', monospace;
  color: var(--text-2);
  background: rgba(255,255,255,0.01);
}
.schedule-slots {
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.slot {
  padding: 7px 4px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  font-size: 11.5px;
  color: var(--text-2);
  font-family: 'Geist Mono', monospace;
  transition: all .2s;
}
.slot.taken { opacity: 0.4; text-decoration: line-through; }
.slot.picked {
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.45);
  color: #fff;
  box-shadow: 0 0 16px -2px rgba(124,58,237,0.5);
  font-weight: 500;
  animation: slotPick 0.5s ease;
}
@keyframes slotPick {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* kpi row */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.kpi {
  padding: 10px 11px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
}
.kpi-value {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.kpi-value .delta {
  font-size: 10.5px;
  color: var(--success);
  margin-left: 4px;
  font-weight: 400;
  font-family: 'Geist Mono', monospace;
}
.kpi-label {
  font-size: 10.5px;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Geist Mono', monospace;
  margin-top: 2px;
}

/* tool badge (right-side annotation) */
.tool-annotation {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px 3px 4px;
  border-radius: 999px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--brand-2);
  letter-spacing: 0.01em;
}
.tool-annotation::before {
  content: "";
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brand-2), var(--brand-3));
}

/* footer bar (hint + keyboard) */
.hero-foot {
  padding: 0 40px 28px;
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-4);
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px;
}
.hero-foot kbd {
  display: inline-block;
  padding: 1px 6px;
  border: 1px solid var(--border-2);
  border-bottom-width: 2px;
  border-radius: 4px;
  background: var(--surface);
  color: var(--text-2);
  font-family: inherit;
  font-size: 10.5px;
  margin: 0 2px;
}

/* Tweaks panel */
.tweaks {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 14px;
  z-index: 50;
  font-size: 12px;
}
.tweaks h4 {
  margin: 0 0 10px;
  font-size: 11px;
  color: var(--text-3);
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.tweak-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.tweak-row label {
  font-size: 11px;
  color: var(--text-3);
  font-family: 'Geist Mono', monospace;
}
.tweak-row select, .tweak-row input[type=range] {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  padding: 6px 8px;
  font-family: inherit;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 80px; }
  .stage { grid-template-columns: 1fr; }
  .scenario-rail {
    position: relative;
    top: 0;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
  .phone-screen { height: 560px; }
  .crm { height: auto; max-height: 640px; }
}
