: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: #8B5CF6;
  --brand-2: #A78BFA;
  --brand-3: #6D28D9;
  --brand-glow: rgba(139, 92, 246, 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(139, 92, 246, 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(139,92,246,0.08), rgba(139,92,246,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(26px, 2.8vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}
h1.headline .em {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.05em;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, var(--brand-2) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
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;
}

.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(139,92,246,0.4),
    0 10px 30px -8px rgba(139,92,246,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(139,92,246,0.5),
    0 14px 40px -8px rgba(139,92,246,0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { background: var(--surface); border-color: #3a3a46; }

.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: 7px;
  font-size: 12.5px;
  color: var(--text-2);
  letter-spacing: -0.002em;
}
.badge svg { flex-shrink: 0; }
.dot-sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--text-4);
}

.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);
}

.testimonial {
  display: flex;
  gap: 12px;
  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;
}
.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;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 3;
}
.scenario-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-2);
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.003em;
  cursor: pointer;
  transition: all .18s ease;
}
.scenario-chip:hover { border-color: var(--border-2); color: var(--text); }
.scenario-chip.active {
  background: linear-gradient(180deg, rgba(139,92,246,0.16), rgba(139,92,246,0.06));
  border-color: rgba(139,92,246,0.5);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(139,92,246,0.25), 0 0 24px -6px rgba(139,92,246,0.4);
}
.chip-ico {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: rgba(139,92,246,0.18);
  display: grid; place-items: center;
  font-size: 9.5px;
}

/* 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, #8B5CF6, #6D28D9);
  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;
}

/* 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(139,92,246,0.12);
  color: var(--brand-2);
  border-color: rgba(139,92,246,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(139,92,246,0.15);
  border-color: rgba(139,92,246,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(139,92,246,0.08);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 10.5px;
}

/* 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(139,92,246,0.2);
  border-color: rgba(139,92,246,0.45);
  color: #fff;
  box-shadow: 0 0 16px -2px rgba(139,92,246,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(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,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; }
  .phone-screen { height: 560px; }
  .crm { height: auto; max-height: 640px; }
}
