/* ============================================================
   ELENCO — OBSIDIAN GLOW
   Dark rico e vivo: quase-preto com camadas, glow emerald
   controlado, glass real, mesh/aurora sutil, motion rico.
   Zero CDN. Fontes system stack premium.
   ============================================================ */

:root {
  /* Base obsidiana — nunca preto puro */
  --bg-0: #07090b;
  --bg-1: #0a0d10;
  --bg-2: #0e1216;
  --bg-3: #12171c;
  --surface: rgba(20, 26, 31, 0.6);
  --surface-solid: #11161b;

  /* Linhas e bordas */
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.1);
  --line-glow: rgba(48, 209, 136, 0.22);

  /* Texto */
  --ink: #eef3f1;
  --ink-soft: #b6c2bd;
  --ink-mute: #7c8a84;
  --ink-faint: #54615b;

  /* Accent — emerald sóbrio, não neon-chatbot */
  --em: #2fd187;
  --em-deep: #15a866;
  --em-dim: #1c8c5e;
  --em-glow: rgba(47, 209, 135, 0.32);
  --em-glow-soft: rgba(47, 209, 135, 0.12);

  /* Tipografia */
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  --mono: "SF Mono", "JetBrains Mono", "Roboto Mono", ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;

  /* Layout */
  --maxw: 1200px;
  --radius: 18px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: #07090b; overflow-x: hidden; }

body {
  font-family: var(--sans);
  background: var(--bg-0);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.011em;
}

/* ---------- Background world (camadas) ---------- */
.bg-world {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(47, 209, 135, 0.10), transparent 60%),
    radial-gradient(900px 600px at 8% 12%, rgba(30, 140, 94, 0.07), transparent 55%),
    linear-gradient(180deg, #07090b 0%, #090c0f 40%, #07090b 100%);
}

/* mesh/aurora blobs animados */
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  mix-blend-mode: screen;
  will-change: transform;
}
.aurora.a1 {
  width: 620px; height: 620px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(47, 209, 135, 0.5), transparent 70%);
  animation: drift1 24s var(--ease) infinite alternate;
}
.aurora.a2 {
  width: 520px; height: 520px;
  bottom: -160px; left: -120px;
  background: radial-gradient(circle, rgba(24, 138, 96, 0.45), transparent 70%);
  animation: drift2 30s var(--ease) infinite alternate;
}
.aurora.a3 {
  width: 380px; height: 380px;
  top: 38%; left: 46%;
  background: radial-gradient(circle, rgba(60, 180, 150, 0.28), transparent 70%);
  animation: drift3 36s var(--ease) infinite alternate;
}
@keyframes drift1 { to { transform: translate(-90px, 110px) scale(1.15); } }
@keyframes drift2 { to { transform: translate(120px, -80px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-130px, -60px) scale(0.9); } }

/* grid sutil animado */
.bg-grid {
  position: fixed;
  inset: -2px;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
}

/* grain fixo */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--em);
  padding: 6px 13px;
  border: 1px solid var(--line-glow);
  border-radius: 100px;
  background: var(--em-glow-soft);
  backdrop-filter: blur(8px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--em);
  box-shadow: 0 0 8px var(--em);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.sec-head { max-width: 680px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 680;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 18px 0 16px;
}
.sec-head p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 56ch;
}
.sec-head.center p { margin-left: auto; margin-right: auto; }

.grad-ink {
  background: linear-gradient(120deg, var(--ink) 30%, var(--em) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 580;
  letter-spacing: -0.01em;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary {
  background: linear-gradient(180deg, var(--em) 0%, var(--em-deep) 100%);
  color: #04130c;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 26px -8px var(--em-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 14px 38px -10px var(--em-glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--line-2);
  color: var(--ink);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--line-glow); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 32px);
  max-width: var(--maxw);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px 11px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(10, 13, 16, 0.62);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 12px 40px -16px rgba(0,0,0,0.7);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.scrolled .nav-inner { background: rgba(8, 11, 13, 0.85); border-color: var(--line-2); }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand .logo { width: 30px; height: 30px; flex-shrink: 0; }
.brand .name { font-weight: 660; font-size: 16.5px; letter-spacing: -0.02em; color: var(--ink); }
.brand .tag {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em;
  color: var(--ink-mute); text-transform: uppercase; margin-top: 1px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; padding: 8px 13px; border-radius: 9px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.02;
  margin: 22px 0 22px;
}
.hero h1 .accent { display: block; }
.hero-sub {
  font-size: 18.5px;
  color: var(--ink-soft);
  line-height: 1.62;
  max-width: 54ch;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-mute);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta .ic { color: var(--em); display: inline-flex; }

/* Live dispatch card (agentes conversando) */
.dispatch {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background:
    linear-gradient(180deg, rgba(18, 24, 29, 0.85), rgba(10, 14, 17, 0.92));
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 30px 80px -30px rgba(0,0,0,0.85),
    0 0 60px -30px var(--em-glow);
  overflow: hidden;
}
.dispatch::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, var(--line-glow), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.dispatch-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.012);
}
.dispatch-title { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--em);
  box-shadow: 0 0 0 0 var(--em-glow);
  animation: live 1.8s ease-out infinite;
}
@keyframes live {
  0% { box-shadow: 0 0 0 0 var(--em-glow); }
  70% { box-shadow: 0 0 0 9px rgba(47,209,135,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,209,135,0); }
}
.dispatch-status { font-family: var(--mono); font-size: 10.5px; color: var(--ink-mute); letter-spacing: 0.05em; }

.dispatch-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 13px; }
.msg { display: flex; gap: 11px; opacity: 0; transform: translateY(8px); animation: msgIn 0.6s var(--ease) forwards; }
.msg:nth-child(1) { animation-delay: 0.3s; }
.msg:nth-child(2) { animation-delay: 1.4s; }
.msg:nth-child(3) { animation-delay: 2.6s; }
.msg:nth-child(4) { animation-delay: 3.9s; }
@keyframes msgIn { to { opacity: 1; transform: translateY(0); } }

.av {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  color: var(--ink); position: relative;
  border: 1px solid var(--line-2);
}
.av.c1 { background: linear-gradient(140deg, #1c8c5e, #0e3a28); }
.av.c2 { background: linear-gradient(140deg, #2a4a5e, #14242e); }
.av.c3 { background: linear-gradient(140deg, #4a3a5e, #261c2e); }
.av.c4 { background: linear-gradient(140deg, #5e4a2a, #2e2414); }
.msg-body { flex: 1; min-width: 0; }
.msg-name { font-size: 12px; font-weight: 600; color: var(--ink); }
.msg-name .role { font-weight: 400; color: var(--ink-faint); font-family: var(--mono); font-size: 10px; margin-left: 6px; }
.msg-text {
  font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin-top: 3px;
  padding: 9px 12px; border-radius: 11px;
  background: rgba(255,255,255,0.028); border: 1px solid var(--line);
}
.msg.me .msg-text { background: var(--em-glow-soft); border-color: var(--line-glow); }
.typing { display: inline-flex; gap: 3px; padding: 2px 0; }
.typing i { width: 5px; height: 5px; border-radius: 50%; background: var(--ink-mute); animation: typ 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typ { 0%,60%,100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.dispatch-foot {
  padding: 13px 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.012);
}
.deliverable { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--ink-soft); }
.deliverable .chip {
  font-family: var(--mono); font-size: 10px; color: var(--em);
  padding: 3px 8px; border-radius: 6px; background: var(--em-glow-soft);
  border: 1px solid var(--line-glow);
}
.progress-mini { width: 90px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.06); overflow: hidden; }
.progress-mini i { display: block; height: 100%; width: 0; background: var(--em); border-radius: 4px; animation: prog 5.5s var(--ease) forwards; box-shadow: 0 0 8px var(--em); }
@keyframes prog { to { width: 84%; } }

/* ---------- Logos / trust strip ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  background: rgba(255,255,255,0.008);
}
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 38px; flex-wrap: wrap; }
.trust-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-faint); text-transform: uppercase; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-mute); font-weight: 500; }
.trust-item .ic { color: var(--em); display: inline-flex; }

/* ---------- Section spacing ---------- */
.band { padding: 100px 0; }
.band-tight { padding: 80px 0; }

/* ---------- Públicos / Frentes ---------- */
.publicos-layout { display: grid; grid-template-columns: 320px 1fr; gap: 36px; align-items: start; }
.pub-tabs { display: flex; flex-direction: column; gap: 6px; position: sticky; top: 92px; }
.pub-tab {
  text-align: left; cursor: pointer;
  display: flex; align-items: center; gap: 13px;
  padding: 15px 16px; border-radius: 14px;
  border: 1px solid transparent; background: transparent;
  font-family: var(--sans); color: var(--ink-soft);
  transition: all 0.3s var(--ease); width: 100%;
}
.pub-tab:hover { background: rgba(255,255,255,0.03); color: var(--ink); }
.pub-tab.active {
  background: linear-gradient(120deg, var(--em-glow-soft), rgba(255,255,255,0.02));
  border-color: var(--line-glow); color: var(--ink);
  box-shadow: 0 0 30px -16px var(--em-glow);
}
.pub-tab .tnum {
  font-family: var(--mono); font-size: 11px; color: var(--ink-faint);
  width: 24px; height: 24px; display: grid; place-items: center;
  border-radius: 7px; border: 1px solid var(--line); flex-shrink: 0;
  transition: all 0.3s;
}
.pub-tab.active .tnum { color: var(--em); border-color: var(--line-glow); background: var(--em-glow-soft); }
.pub-tab .ttitle { font-size: 14.5px; font-weight: 580; }

.pub-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(18,24,29,0.7), rgba(10,14,17,0.8));
  backdrop-filter: blur(20px);
  padding: 38px 40px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 30px 70px -34px rgba(0,0,0,0.8);
  min-height: 360px;
}
.pub-panel .pp-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--em); text-transform: uppercase; }
.pub-panel h3 { font-size: 26px; font-weight: 660; letter-spacing: -0.025em; margin: 14px 0 16px; line-height: 1.15; }
.pub-panel .pp-frente { font-size: 17px; color: var(--ink-soft); line-height: 1.62; max-width: 58ch; margin-bottom: 28px; }
.pp-examples { display: flex; flex-direction: column; gap: 11px; }
.pp-ex {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 15px 17px; border-radius: 13px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.018);
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.5;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.pp-ex:hover { border-color: var(--line-glow); background: rgba(255,255,255,0.035); transform: translateX(4px); }
.pp-ex .ic { color: var(--em); flex-shrink: 0; margin-top: 1px; display: inline-flex; }
.pub-panel[hidden] { display: none; }

/* ---------- Diferenciais (zig-zag) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
}
.feature + .feature { border-top: 1px solid var(--line); }
.feature.flip .feat-copy { order: 2; }
.feat-copy h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 660; letter-spacing: -0.03em; line-height: 1.12; margin: 16px 0 16px; }
.feat-copy p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.64; max-width: 50ch; }
.feat-num { font-family: var(--mono); font-size: 12px; color: var(--em); letter-spacing: 0.1em; }

.feat-visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(16,21,26,0.7), rgba(9,12,15,0.85));
  padding: 26px;
  min-height: 300px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 30px 70px -36px rgba(0,0,0,0.8);
}
.feat-visual::after {
  content: ""; position: absolute; top: -40%; right: -30%;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--em-glow-soft), transparent 70%);
  pointer-events: none;
}

/* Builder visual (contratar = criar) */
.builder { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.builder-row { display: flex; align-items: center; gap: 13px; }
.builder-av {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(140deg, #1c8c5e, #0e3a28);
  display: grid; place-items: center; font-family: var(--mono); font-weight: 600; font-size: 16px;
  border: 1px solid var(--line-glow);
  box-shadow: 0 0 30px -10px var(--em-glow);
}
.builder-id .bn { font-size: 15px; font-weight: 600; }
.builder-id .br { font-family: var(--mono); font-size: 10.5px; color: var(--ink-mute); letter-spacing: 0.04em; }
.builder-traits { display: flex; flex-direction: column; gap: 9px; }
.trait { }
.trait-label { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--ink-mute); margin-bottom: 5px; font-family: var(--mono); letter-spacing: 0.03em; }
.trait-label b { color: var(--em); font-weight: 500; }
.trait-bar { height: 6px; border-radius: 6px; background: rgba(255,255,255,0.06); overflow: hidden; }
.trait-bar i { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--em-deep), var(--em)); box-shadow: 0 0 10px -2px var(--em-glow); width: 0; transition: width 1.2s var(--ease); }
.builder.in .trait-bar i { width: var(--w); }
.tone-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tone-chip {
  font-size: 12px; padding: 6px 12px; border-radius: 100px;
  border: 1px solid var(--line); color: var(--ink-mute);
  background: rgba(255,255,255,0.02); transition: all 0.25s;
}
.tone-chip.on { color: var(--em); border-color: var(--line-glow); background: var(--em-glow-soft); }

/* Collaboration graph (falam entre si) */
.collab { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 11px; }
.collab-line {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.02);
  opacity: 0; transform: translateX(-10px);
}
.collab.in .collab-line { animation: slideIn 0.5s var(--ease) forwards; }
.collab.in .collab-line:nth-child(1) { animation-delay: 0.1s; }
.collab.in .collab-line:nth-child(2) { animation-delay: 0.35s; }
.collab.in .collab-line:nth-child(3) { animation-delay: 0.6s; }
.collab.in .collab-line:nth-child(4) { animation-delay: 0.85s; }
@keyframes slideIn { to { opacity: 1; transform: translateX(0); } }
.collab-av { width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0; display: grid; place-items: center; font-family: var(--mono); font-size: 11px; font-weight: 600; border: 1px solid var(--line-2); }
.collab-txt { flex: 1; min-width: 0; }
.collab-txt .cn { font-size: 12.5px; font-weight: 600; }
.collab-txt .cm { font-size: 12px; color: var(--ink-mute); margin-top: 1px; }
.collab-arrow { color: var(--em); flex-shrink: 0; display: inline-flex; opacity: 0.7; }

/* Clone visual */
.clone-stack { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.clone-card {
  border-radius: 14px; border: 1px solid var(--line); padding: 16px 14px;
  background: rgba(255,255,255,0.022); text-align: center;
  transition: all 0.3s var(--ease);
}
.clone-card .cc-av {
  width: 44px; height: 44px; border-radius: 12px; margin: 0 auto 11px;
  background: linear-gradient(140deg, #1c8c5e, #0e3a28);
  display: grid; place-items: center; font-family: var(--mono); font-weight: 600; font-size: 14px;
  border: 1px solid var(--line-glow);
}
.clone-card .cc-name { font-size: 12.5px; font-weight: 600; }
.clone-card .cc-tag { font-family: var(--mono); font-size: 9.5px; color: var(--ink-mute); margin-top: 3px; letter-spacing: 0.05em; }
.clone-card.ghost { opacity: 0.4; }
.clone-card.ghost .cc-av { background: rgba(255,255,255,0.05); border-color: var(--line); }
.clone-card.off { opacity: 0.32; filter: grayscale(0.7); }
.clone-card.add {
  display: grid; place-items: center; border-style: dashed; color: var(--em);
  cursor: pointer; min-height: 110px;
}
.clone-card.add:hover { background: var(--em-glow-soft); border-color: var(--line-glow); }

/* ---------- Como funciona ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative; padding: 28px 22px 26px;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.006));
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.step:hover { border-color: var(--line-glow); transform: translateY(-4px); box-shadow: 0 24px 50px -28px var(--em-glow); }
.step-num {
  font-family: var(--mono); font-size: 13px; color: var(--em);
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 11px; border: 1px solid var(--line-glow); background: var(--em-glow-soft);
  margin-bottom: 18px;
}
.step h4 { font-size: 16px; font-weight: 620; margin-bottom: 8px; letter-spacing: -0.02em; }
.step p { font-size: 14px; color: var(--ink-mute); line-height: 1.55; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 46px; right: -10px; width: 20px; height: 1px;
  background: var(--line-glow);
}

/* ---------- Showcase (screenshots) ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.shot-frame {
  position: relative; border-radius: var(--radius-lg);
  border: 1px solid var(--line-2); overflow: hidden;
  background: linear-gradient(180deg, rgba(18,24,29,0.6), rgba(9,12,15,0.8));
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 40px 90px -40px rgba(0,0,0,0.9), 0 0 70px -40px var(--em-glow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.shot-frame:hover { transform: translateY(-6px); box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 50px 100px -40px rgba(0,0,0,0.95), 0 0 90px -36px var(--em-glow); }
.shot-frame.wide { grid-column: span 2; }
.shot-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.012); }
.shot-bar .tl { display: flex; gap: 6px; }
.shot-bar .tl i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.shot-bar .tl i:first-child { background: rgba(47,209,135,0.5); }
.shot-bar .lbl { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); margin-left: 6px; }
.shot-frame img { display: block; width: 100%; height: auto; }
.shot-cap { padding: 16px 20px; border-top: 1px solid var(--line); }
.shot-cap h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.shot-cap p { font-size: 13.5px; color: var(--ink-mute); }

/* ---------- Equipe (12 agentes) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.agent {
  position: relative; padding: 20px 18px 18px;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.agent:hover { border-color: var(--line-glow); transform: translateY(-3px); box-shadow: 0 20px 44px -28px var(--em-glow); }
.agent-top { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.agent-av {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--mono); font-weight: 600; font-size: 14px;
  color: var(--ink); border: 1px solid var(--line-2);
}
.agent-name { font-size: 14.5px; font-weight: 620; letter-spacing: -0.02em; }
.agent-role { font-family: var(--mono); font-size: 10px; color: var(--ink-mute); letter-spacing: 0.04em; margin-top: 2px; text-transform: uppercase; }
.agent-mission { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.agent-status { position: absolute; top: 16px; right: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--em); box-shadow: 0 0 8px var(--em); animation: pulse 2.4s ease-in-out infinite; }

/* ---------- Recursos (bento) ---------- */
.bento { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: minmax(150px, auto); gap: 14px; }
.bcard {
  position: relative; padding: 24px 24px;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.006));
  overflow: hidden; transition: border-color 0.3s, transform 0.3s;
}
.bcard:hover { border-color: var(--line-glow); transform: translateY(-3px); }
.bcard.span2 { grid-row: span 2; }
.bcard .bic {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  border: 1px solid var(--line-glow); background: var(--em-glow-soft); color: var(--em); margin-bottom: 16px;
}
.bcard h4 { font-size: 16px; font-weight: 620; letter-spacing: -0.02em; margin-bottom: 8px; }
.bcard p { font-size: 13.5px; color: var(--ink-mute); line-height: 1.55; }
.bcard .glow-orb { position: absolute; bottom: -50px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, var(--em-glow-soft), transparent 70%); pointer-events: none; }

/* ---------- Beta / waitlist ---------- */
.beta {
  position: relative; border-radius: var(--radius-lg);
  border: 1px solid var(--line-2); overflow: hidden;
  background: linear-gradient(160deg, rgba(20,30,26,0.9), rgba(9,12,15,0.95));
  padding: 56px 48px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 40px 90px -40px rgba(0,0,0,0.9);
}
.beta::before {
  content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, var(--em-glow), transparent 70%);
  opacity: 0.4; filter: blur(40px); pointer-events: none;
}
.beta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.beta h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; margin: 18px 0 16px; }
.beta p { font-size: 17px; color: var(--ink-soft); line-height: 1.6; max-width: 52ch; margin: 0 auto 30px; }
.waitform { display: flex; gap: 11px; max-width: 460px; margin: 0 auto; }
.waitform input {
  flex: 1; padding: 14px 17px; border-radius: 12px;
  border: 1px solid var(--line-2); background: rgba(0,0,0,0.3);
  color: var(--ink); font-family: var(--sans); font-size: 14.5px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.waitform input::placeholder { color: var(--ink-faint); }
.waitform input:focus { outline: none; border-color: var(--em-dim); box-shadow: 0 0 0 3px var(--em-glow-soft); }
.beta-note { font-family: var(--mono); font-size: 11.5px; color: var(--ink-mute); margin-top: 18px; letter-spacing: 0.03em; }
.beta-badges { display: flex; gap: 22px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.beta-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); }
.beta-badge .ic { color: var(--em); display: inline-flex; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,0.014); overflow: hidden; transition: border-color 0.3s; }
.faq-item[open] { border-color: var(--line-glow); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 19px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 16px; font-weight: 580; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { color: var(--em); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item[open] summary .pm { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 20px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.62; max-width: 70ch; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 60px 0 36px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: var(--ink-mute); line-height: 1.6; max-width: 32ch; }
.footer-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-faint); text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--ink-soft); text-decoration: none; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--em); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 13px; color: var(--ink-faint); }
.footer-bottom .fb-meta { display: flex; gap: 18px; font-family: var(--mono); font-size: 11px; color: var(--ink-faint); letter-spacing: 0.04em; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding-top: 130px; }
  .publicos-layout { grid-template-columns: 1fr; }
  .pub-tabs { position: static; flex-direction: row; overflow-x: auto; }
  .feature, .feature.flip .feat-copy { grid-template-columns: 1fr; order: 0; }
  .feature { gap: 30px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .showcase { grid-template-columns: 1fr; }
  .shot-frame.wide { grid-column: span 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr 1fr; }
  .bcard.span2 { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .band { padding: 70px 0; }
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .waitform { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .clone-stack { grid-template-columns: 1fr 1fr; }
  .pub-panel { padding: 26px 22px; }
  .beta { padding: 40px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
