:root {
  --bg: #070b14;
  --bg-2: #0b1220;
  --panel: rgba(18, 28, 50, 0.55);
  --panel-solid: #0e1628;
  --line: rgba(140, 170, 228, 0.14);
  --line-strong: rgba(140, 170, 228, 0.28);
  --text: #eef2f9;
  --muted: #9aa6bf;
  --dim: #66728c;
  --blue: #6f9cff;
  --blue-2: #8cb4ff;
  --steel: #8caae4;
  --gold: #c9a45c;
  --gold-2: #e4cf9f;
  --ok: #4fd1a1;
  --bad: #ff6b7a;
  --radius: 18px;
  --wrap: 1180px;
  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); margin: 0; line-height: 1.08; letter-spacing: -0.02em; font-weight: 600; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(111, 156, 255, 0.35); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); font-size: 0.78em; letter-spacing: 0.04em; }
.dim { color: var(--dim); }
.gold { color: var(--gold); }
.grad {
  background: linear-gradient(100deg, #ffffff 0%, var(--blue-2) 45%, var(--gold-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- fundo ---------- */
#truss { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.9; }
.spot {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(600px circle at var(--mx, 70%) var(--my, 20%), rgba(111, 156, 255, 0.10), transparent 60%),
    radial-gradient(70% 50% at 80% 0%, rgba(40, 70, 140, 0.35), transparent 70%),
    radial-gradient(50% 40% at 0% 60%, rgba(201, 164, 92, 0.06), transparent 70%);
}
main, .foot, .nav { position: relative; z-index: 1; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 14px max(24px, calc((100vw - var(--wrap)) / 2 + 24px));
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.solid { background: rgba(7, 11, 20, 0.72); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-color: var(--line); padding-top: 10px; padding-bottom: 10px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 32px; height: auto; filter: drop-shadow(0 0 12px rgba(140, 180, 255, 0.35)); }
.wordmark { display: flex; flex-direction: column; line-height: 1; font-family: 'Montserrat', var(--body); }
.wordmark b { font-weight: 600; font-size: 17px; letter-spacing: 0.06em; }
.wordmark i { font-style: normal; font-weight: 500; font-size: 8.5px; letter-spacing: 0.52em; color: var(--steel); margin-top: 4px; }
.links { display: flex; gap: 26px; margin-left: auto; }
.links a { font-size: 14px; color: var(--muted); transition: color 0.2s; position: relative; }
.links a:hover, .links a.on { color: var(--text); }
.links a.on::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--blue); }
.burger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; padding: 8px; }
.burger span { height: 1.5px; background: var(--text); border-radius: 2px; transition: transform 0.3s; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 12px;
  font-weight: 500; font-size: 15px;
  background: linear-gradient(180deg, #7ea7ff, #4f7fe8);
  color: #06101f;
  box-shadow: 0 0 0 1px rgba(140, 180, 255, 0.5) inset, 0 10px 30px -10px rgba(79, 127, 232, 0.8);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.25s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(170, 200, 255, 0.7) inset, 0 16px 40px -10px rgba(79, 127, 232, 0.95); }
.btn:hover svg { transform: translateX(3px); }
.btn-ghost { background: rgba(255, 255, 255, 0.03); color: var(--text); box-shadow: 0 0 0 1px var(--line-strong) inset; }
.btn-ghost:hover { background: rgba(111, 156, 255, 0.08); box-shadow: 0 0 0 1px rgba(140, 180, 255, 0.5) inset; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

/* ---------- hero ---------- */
.hero { min-height: 100vh; padding: 140px 0 0; display: flex; flex-direction: column; justify-content: center; overflow-x: clip; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(111, 156, 255, 0.06);
  font-size: 13px; color: var(--blue-2);
}
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(111, 156, 255, 0.6); } 70% { box-shadow: 0 0 0 10px rgba(111, 156, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(111, 156, 255, 0); } }
.hero h1 { font-size: clamp(2.4rem, 4.7vw, 4.8rem); margin: 26px 0 24px; letter-spacing: -0.035em; font-weight: 600; }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 560px; font-weight: 300; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.stats { display: grid; grid-template-columns: repeat(3, auto); gap: 40px; margin: 56px 0 0; justify-content: start; }
.stats dt { font-family: var(--display); font-size: 2.4rem; font-weight: 600; line-height: 1; }
.stats dd { margin: 8px 0 0; font-size: 13px; color: var(--dim); max-width: 150px; line-height: 1.4; }

.hero-visual { position: relative; aspect-ratio: 1 / 1.1; display: grid; place-items: center; perspective: 900px; }
.hero-s {
  width: 78%; height: auto; position: relative; z-index: 2;
  filter: drop-shadow(0 0 40px rgba(111, 156, 255, 0.35)) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.6s var(--ease);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }
.orbit { position: absolute; border-radius: 50%; border: 1px solid var(--line); inset: 6%; }
.orbit.o2 { inset: -4%; border-style: dashed; border-color: rgba(140, 170, 228, 0.1); animation: spin 60s linear infinite; }
.orbit.o1::after { content: ''; position: absolute; top: 50%; left: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 16px var(--gold); }
.orbit.o1 { animation: spin 24s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 12px;
  background: rgba(14, 22, 40, 0.8); border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: 13px; white-space: nowrap;
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.8);
  animation: float 6s ease-in-out infinite;
}
.chip .mono { color: var(--ok); font-size: 13px; }
.c1 { top: 14%; left: -6%; }
.c2 { top: 48%; right: -8%; animation-delay: -2s; }
.c3 { bottom: 10%; left: 4%; animation-delay: -4s; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.ok { background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.dot.gold { background: var(--gold); box-shadow: 0 0 10px var(--gold); }

.marquee { margin-top: 90px; border-block: 1px solid var(--line); overflow: hidden; background: rgba(11, 18, 32, 0.5); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.track span { padding: 20px 28px; font-family: var(--mono); font-size: 13px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; display: flex; align-items: center; gap: 28px; }
.track span::after { content: ''; width: 6px; height: 6px; transform: rotate(45deg); border: 1px solid var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- seções ---------- */
.section { padding: 130px 0; position: relative; }
.head { max-width: 680px; margin-bottom: 56px; }
.head.center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: inline-block; margin-bottom: 20px; }
.head h2, .cta h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -0.03em; }
.head h2 .dim { color: var(--dim); }
.head p { margin-top: 22px; color: var(--muted); font-size: 1.06rem; font-weight: 300; }

/* para quem é */
.publico { padding-bottom: 40px; }
.publico-box { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; padding: 56px; border-radius: 28px; border: 1px solid var(--line-strong); background: radial-gradient(70% 100% at 100% 0%, rgba(201, 164, 92, 0.1), transparent 60%), var(--panel); }
.publico-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -0.03em; }
.publico-copy p { margin-top: 22px; color: var(--muted); font-size: 1.06rem; font-weight: 300; max-width: 560px; }
.segmentos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.segmentos li { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 14px; border: 1px solid var(--line); background: rgba(7, 11, 20, 0.55); font-family: var(--display); font-weight: 500; font-size: 1rem; transition: border-color 0.3s, transform 0.3s var(--ease); }
.segmentos li:hover { border-color: rgba(201, 164, 92, 0.5); transform: translateY(-2px); }
.segmentos .mono { color: var(--gold); font-size: 11px; }
.publico-foot { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin-top: 28px; color: var(--dim); font-size: 0.92rem; }
.publico-foot span { display: flex; align-items: center; gap: 10px; }
.publico-foot span::before { content: ''; width: 5px; height: 5px; transform: rotate(45deg); background: var(--gold); }

/* dores */
.pains { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pain { padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 107, 122, 0.04), transparent 60%), var(--panel); }
.pain .x { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; border: 1px solid rgba(255, 107, 122, 0.35); color: var(--bad); font-size: 18px; margin-bottom: 22px; }
.pain h3 { font-size: 1.15rem; margin-bottom: 8px; }
.pain p { color: var(--muted); font-size: 0.95rem; }

/* fluxo */
.flow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.flow-grid .head { margin-bottom: 36px; }
.steps { display: grid; gap: 6px; position: relative; }
.step { display: flex; gap: 20px; padding: 18px 20px; border-radius: 14px; border: 1px solid transparent; cursor: pointer; transition: background 0.3s, border-color 0.3s; }
.step .n { font-family: var(--mono); font-size: 13px; color: var(--dim); padding-top: 4px; transition: color 0.3s; }
.step h3 { font-size: 1.15rem; margin-bottom: 4px; color: var(--muted); transition: color 0.3s; }
.step p { color: var(--dim); font-size: 0.94rem; transition: color 0.3s; }
.step.on { background: var(--panel); border-color: var(--line-strong); }
.step.on .n { color: var(--gold); }
.step.on h3 { color: var(--text); }
.step.on p { color: var(--muted); }

.os-card { padding: 28px; border-radius: 22px; background: linear-gradient(180deg, rgba(20, 32, 58, 0.9), rgba(10, 16, 30, 0.9)); border: 1px solid var(--line-strong); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.02) inset; }
.os-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.os-top h4 { font-size: 1.2rem; margin-top: 6px; }
.status { font-family: var(--mono); font-size: 12px; padding: 6px 12px; border-radius: 999px; border: 1px solid; white-space: nowrap; transition: all 0.4s; }
.status[data-s="0"] { color: var(--steel); border-color: rgba(140, 170, 228, 0.4); background: rgba(140, 170, 228, 0.08); }
.status[data-s="1"] { color: var(--blue-2); border-color: rgba(111, 156, 255, 0.5); background: rgba(111, 156, 255, 0.1); }
.status[data-s="2"] { color: var(--gold-2); border-color: rgba(201, 164, 92, 0.5); background: rgba(201, 164, 92, 0.1); }
.status[data-s="3"] { color: var(--ok); border-color: rgba(79, 209, 161, 0.5); background: rgba(79, 209, 161, 0.1); }
.os-bar { margin: 26px 0 10px; height: 4px; border-radius: 4px; background: rgba(140, 170, 228, 0.12); overflow: hidden; }
.os-fill { height: 100%; width: 25%; background: linear-gradient(90deg, var(--blue), var(--gold)); border-radius: 4px; transition: width 0.8s var(--ease); }
.os-phases { display: grid; grid-template-columns: repeat(4, 1fr); font-family: var(--mono); font-size: 11px; color: var(--dim); }
.os-phases span:not(:first-child) { text-align: center; }
.os-phases span:last-child { text-align: right; }
.os-rows { margin: 26px 0; display: grid; gap: 2px; }
.row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: 10px; background: rgba(255, 255, 255, 0.02); font-size: 0.93rem; }
.row .mono { color: var(--steel); transition: color 0.4s; }
.row .mono.ok { color: var(--ok); }
.row .mono.go { color: var(--gold-2); }
.os-foot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.os-foot .mono { display: block; font-size: 11px; margin-bottom: 4px; }
.os-foot b { font-family: var(--display); font-size: 1.15rem; font-weight: 600; }

/* faixa de transferência (usada nos módulos) */
.lane { position: relative; height: 60px; }
.lane svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.lane path { stroke: var(--line-strong); stroke-width: 1; stroke-dasharray: 4 6; fill: none; }
.lane em { position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%); color: var(--dim); font-style: normal; font-size: 11px; white-space: nowrap; }
.pkt { position: absolute; top: 50%; left: 0; width: 12px; height: 12px; margin-top: -6px; border-radius: 3px; background: var(--gold); box-shadow: 0 0 18px var(--gold); animation: move 3.6s var(--ease) infinite; }
.pkt.p2 { animation-delay: 1.2s; background: var(--blue); box-shadow: 0 0 18px var(--blue); }
.pkt.p3 { animation-delay: 2.4s; }
@keyframes move { 0% { left: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: calc(100% - 12px); opacity: 0; } }

/* listas de conferência */
.scan-list { display: grid; gap: 8px; }
.scan-list li { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; background: rgba(255, 255, 255, 0.03); font-size: 13px; color: var(--muted); transition: all 0.4s; }
.scan-list li::before { content: ''; flex: none; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--dim); transition: all 0.3s; }
.scan-list li.ok { color: var(--text); background: rgba(79, 209, 161, 0.07); }
.scan-list li.ok::before { border-color: var(--ok); background: var(--ok) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12l4 4 8-8' fill='none' stroke='%2306101f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat; }
.scr-done { margin-top: auto; text-align: center; padding: 12px; border-radius: 12px; font-size: 13px; font-weight: 500; background: rgba(140, 170, 228, 0.08); color: var(--dim); transition: all 0.4s; }
.scr-done.on { background: var(--ok); color: #06101f; }
.checks { display: grid; gap: 14px; }
.checks li { padding-left: 32px; position: relative; color: #c7d0e2; }
.checks li::before { content: ''; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 6px; border: 1px solid rgba(111, 156, 255, 0.45); background: rgba(111, 156, 255, 0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12l4 4 8-8' fill='none' stroke='%238cb4ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 13px no-repeat; }

/* segurança */
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sec { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); }
.sec .mono { font-size: 11px; letter-spacing: 0.14em; }
.sec h3 { font-size: 1.15rem; margin: 16px 0 8px; }
.sec p { color: var(--muted); font-size: 0.94rem; }
.sec.feature { grid-row: span 2; background: linear-gradient(180deg, rgba(201, 164, 92, 0.06), transparent 50%), var(--panel); border-color: rgba(201, 164, 92, 0.25); display: flex; flex-direction: column; }
.sec.feature h3 { font-size: 1.6rem; }
.silos { margin-top: auto; padding-top: 30px; display: grid; gap: 10px; }
.silos span { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line-strong); font-family: var(--mono); font-size: 12px; color: var(--muted); background: rgba(7, 11, 20, 0.6); }
.silos span::before { content: ''; width: 18px; height: 22px; border-radius: 50% / 22%; border: 1.5px solid var(--gold); flex: none; }
.silos span::after { content: 'banco próprio'; margin-left: auto; color: var(--ok); }
.infra { margin-top: 28px; color: var(--muted); font-size: 0.94rem; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.infra .mono { padding: 4px 10px; border-radius: 6px; border: 1px solid var(--line-strong); color: var(--steel); font-size: 11px; letter-spacing: 0.12em; }

/* visuais dos módulos */
@keyframes swap { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.doc { width: 220px; aspect-ratio: 0.74; border-radius: 10px; background: #eef2f9; padding: 24px 20px; display: flex; flex-direction: column; gap: 10px; position: relative; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.9); }
.doc i { height: 6px; border-radius: 3px; background: #c9d1e0; }
.doc i.s { width: 60%; }
.sig { position: absolute; left: 16px; right: 16px; bottom: 22px; width: calc(100% - 32px); }
.sig path { fill: none; stroke: #2a4a9a; stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 420; stroke-dashoffset: 420; animation: sign 3.2s ease-in-out infinite; }
@keyframes sign { 0% { stroke-dashoffset: 420; } 55%, 100% { stroke-dashoffset: 0; } }
.hash { color: var(--ok); }

.radar { width: 220px; height: 220px; position: relative; border-radius: 50%; }
.ring { position: absolute; border-radius: 50%; border: 1px solid var(--line-strong); }
.r1 { inset: 0; } .r2 { inset: 22%; } .r3 { inset: 42%; border-color: rgba(79, 209, 161, 0.45); background: rgba(79, 209, 161, 0.06); }
.sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(111, 156, 255, 0.28), transparent 25%); animation: spin 4s linear infinite; }
.pin { position: absolute; top: 50%; left: 50%; width: 12px; height: 12px; margin: -6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(201, 164, 92, 0.2); }
.me { position: absolute; width: 10px; height: 10px; border-radius: 50%; }
.me.ok { top: 42%; left: 56%; background: var(--ok); box-shadow: 0 0 12px var(--ok); }
.me.bad { top: 10%; left: 18%; background: var(--bad); box-shadow: 0 0 12px var(--bad); animation: blink 1.4s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0.2; } }
.geo-legend { display: flex; gap: 18px; color: var(--muted); flex-wrap: wrap; justify-content: center; }
.geo-legend i { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.geo-legend i.ok { background: var(--ok); } .geo-legend i.bad { background: var(--bad); }

.bars { width: 100%; max-width: 320px; height: 200px; display: flex; align-items: flex-end; gap: 18px; border-bottom: 1px solid var(--line-strong); }
.bars span { flex: 1; height: var(--h); border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--blue-2), rgba(79, 127, 232, 0.25)); position: relative; transform-origin: bottom; animation: grow 1.2s var(--ease) both; }
.bars span:nth-child(2) { background: linear-gradient(180deg, var(--gold-2), rgba(201, 164, 92, 0.25)); animation-delay: 0.1s; }
.bars span:nth-child(3) { animation-delay: 0.2s; } .bars span:nth-child(4) { animation-delay: 0.3s; }
.bars em { position: absolute; bottom: -26px; left: 50%; transform: translateX(-50%); font-style: normal; font-family: var(--mono); font-size: 11px; color: var(--dim); }
@keyframes grow { from { transform: scaleY(0); } }

/* origem */
.duo { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.duo article { padding: 32px; border-radius: var(--radius); border: 1px solid var(--line-strong); background: var(--panel); height: 100%; }
.duo .mono { font-size: 11px; letter-spacing: 0.14em; }
.duo h3 { font-size: 1.3rem; margin: 14px 0 10px; }
.duo p { color: var(--muted); }
.plus { font-family: var(--display); font-size: 2.4rem; color: var(--gold); font-weight: 300; }
blockquote { margin: 56px auto; max-width: 820px; text-align: center; font-family: var(--display); font-size: clamp(1.3rem, 2.5vw, 1.9rem); line-height: 1.35; letter-spacing: -0.015em; color: #dfe6f3; }
blockquote::before { content: ''; display: block; width: 60px; height: 1px; margin: 0 auto 32px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.diffs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.diffs > div { padding: 24px 0 0; border-top: 1px solid var(--line-strong); }
.diffs h4 { font-size: 1.1rem; margin-bottom: 8px; }
.diffs p { color: var(--muted); font-size: 0.94rem; }

/* marca (faixa clara, cores oficiais) */
.brandband {
  --navy: #131d33; --navy-2: #1e2a49; --gold-doc: #b89249; --gray-doc: #586178;
  position: relative; padding: 130px 0; background: #fafaf9; color: var(--navy); overflow: hidden;
}
.brandband::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='48' viewBox='0 0 96 48'%3E%3Cpath d='M0 .5h96M0 47.5h96M0 0l48 48L96 0M48 0v48' fill='none' stroke='%231a4067' stroke-opacity='.07'/%3E%3C/svg%3E");
  mask-image: radial-gradient(70% 90% at 25% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 90% at 25% 50%, #000, transparent 75%);
}
.brand-grid { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.lockup { display: grid; place-items: center; }
.lockup img { width: 100%; max-width: 400px; height: auto; filter: drop-shadow(0 30px 40px rgba(19, 29, 51, 0.12)); }
.brandband .eyebrow { color: var(--gold-doc); }
.brandband h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -0.03em; color: var(--navy); }
.brand-copy > p { margin-top: 24px; font-size: 1.1rem; line-height: 1.7; color: var(--gray-doc); max-width: 540px; }
.brand-copy h2::after { content: ''; display: block; width: 64px; height: 2px; margin-top: 28px; background: var(--gold-doc); }
.brand-pillars { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.brand-pillars > div { padding-top: 18px; border-top: 1px solid rgba(26, 64, 103, 0.25); }
.brand-pillars b { display: block; font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--navy-2); margin-bottom: 6px; }
.brand-pillars span { font-size: 0.92rem; color: var(--gray-doc); line-height: 1.5; }
.brandband ::selection { background: rgba(184, 146, 73, 0.3); }

/* cta */
.cta { padding-bottom: 150px; }
.cta-box { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; padding: 64px; border-radius: 28px; border: 1px solid rgba(140, 180, 255, 0.3); background: radial-gradient(80% 120% at 0% 0%, rgba(79, 127, 232, 0.25), transparent 60%), radial-gradient(60% 80% at 100% 100%, rgba(201, 164, 92, 0.14), transparent 60%), var(--panel-solid); }
.cta-box::after { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(140, 170, 228, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(140, 170, 228, 0.05) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(90deg, #000, transparent 70%); -webkit-mask-image: linear-gradient(90deg, #000, transparent 70%); }
.cta-copy, .next { position: relative; z-index: 1; }
.cta-copy p { color: var(--muted); margin-top: 22px; max-width: 520px; }
.next { display: grid; gap: 14px; align-content: center; }
.next li { display: flex; gap: 18px; padding: 20px; border-radius: 14px; background: rgba(7, 11, 20, 0.55); border: 1px solid var(--line); }
.next .n { font-family: var(--mono); color: var(--gold); font-size: 13px; padding-top: 3px; }
.next h4 { font-size: 1.05rem; margin-bottom: 4px; }
.next p { color: var(--muted); font-size: 0.92rem; }

/* rodapé */
.foot { border-top: 1px solid var(--line); padding: 48px 0 28px; background: rgba(5, 8, 15, 0.7); }
.foot-grid { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.foot-grid > p { color: var(--dim); font-size: 0.92rem; }
.foot-contact { margin-left: auto; display: flex; gap: 24px; flex-wrap: wrap; }
.foot-contact a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.foot-contact a:hover { color: var(--text); }
.foot-bottom { display: flex; justify-content: space-between; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--dim); font-size: 12.5px; font-family: var(--mono); }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsivo ---------- */
@media (max-width: 1080px) {
  .links { display: none; }
  .nav .btn-sm { margin-left: auto; }
  .burger { display: flex; }
  .links.open { display: flex; position: fixed; top: 64px; left: 12px; right: 12px; flex-direction: column; gap: 0; padding: 10px; border-radius: 16px; background: rgba(10, 16, 30, 0.96); border: 1px solid var(--line-strong); backdrop-filter: blur(16px); }
  .links.open a { padding: 14px 16px; font-size: 16px; color: var(--text); }
  .links.open a.on::after { display: none; }
  .pains, .diffs { grid-template-columns: repeat(2, 1fr); }
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .sec.feature { grid-row: auto; grid-column: span 2; }
}
@media (max-width: 880px) {
  .hero { padding-top: 110px; min-height: auto; }
  .hero-grid, .flow-grid, .cta-box { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 20px auto 0; width: 100%; }
  .c1 { left: 0; } .c2 { right: 0; }
  .duo { grid-template-columns: 1fr; }
  .plus { text-align: center; }
  .cta-box { padding: 36px 26px; gap: 36px; }
  .brand-grid { grid-template-columns: 1fr; gap: 48px; }
  .publico-box { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
  .publico-foot { justify-content: flex-start; flex-direction: column; }
  .lockup img { max-width: 280px; }
  .brandband { padding: 96px 0; }
  .section { padding: 96px 0; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .nav { padding-left: 16px; padding-right: 16px; gap: 12px; }
  .nav .btn-sm { display: none; }
  .burger { margin-left: auto; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stats dt { font-size: 1.9rem; }
  .stats dd { font-size: 12px; }
  .pains, .diffs, .sec-grid { grid-template-columns: 1fr; }
  .sec.feature { grid-column: auto; }
  .brand-pillars { grid-template-columns: 1fr; gap: 14px; }
  .lockup img { max-width: 220px; }
  .chip { font-size: 12px; padding: 7px 11px; }
  .os-card { padding: 20px; }
  .os-top { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .foot-contact { margin-left: 0; }
  .foot-bottom { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1180px) and (min-width: 1081px) {
  .links { gap: 18px; }
  .links a { font-size: 13.5px; }
}

/* para quem é: foto do palco ao fundo */
.publico-box { position: relative; overflow: hidden; isolation: isolate; }
.publico-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; opacity: 0.32; }
.publico-box::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7, 11, 20, 0.96) 30%, rgba(7, 11, 20, 0.7) 70%, rgba(7, 11, 20, 0.5)); }

/* na prática: cenas com foto */
.scenes { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 440px; gap: 16px; }
.scene { position: relative; margin: 0; border-radius: 22px; overflow: hidden; border: 1px solid var(--line-strong); background: var(--panel-solid); isolation: isolate; }
.scene.wide { grid-column: span 2; }
.scene.tall img { object-position: center 35%; }
.scene img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease); }
.scene:hover img { transform: scale(1.04); }
.scene::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7, 11, 20, 0) 35%, rgba(7, 11, 20, 0.92) 100%); }
.scene figcaption { position: absolute; left: 24px; right: 24px; bottom: 22px; }
.scene figcaption .mono { font-size: 11px; letter-spacing: 0.14em; }
.scene figcaption h3 { font-size: 1.35rem; margin: 8px 0 4px; }
.scene figcaption p { color: #c7d0e2; font-size: 0.93rem; max-width: 440px; }
.ui { position: absolute; top: 20px; right: 20px; padding: 16px 18px; border-radius: 16px; background: rgba(10, 16, 30, 0.84); border: 1px solid var(--line-strong); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.9); animation: float 7s ease-in-out infinite; }
.ui > .mono { display: block; font-size: 10.5px; letter-spacing: 0.12em; margin-bottom: 10px; }
.ui-kpi { width: 300px; top: auto; bottom: 20px; }
.scene:has(.ui-kpi) figcaption { right: 340px; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpis small { display: block; font-size: 11px; color: var(--dim); }
.kpis b { font-family: var(--display); font-size: 1.05rem; font-weight: 600; }
.ok-t { color: var(--ok); }
.mini-bars { display: flex; align-items: flex-end; gap: 6px; height: 44px; margin-top: 12px; }
.mini-bars i { flex: 1; height: var(--h); border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--blue-2), rgba(79, 127, 232, 0.2)); }
.mini-bars i:last-child { background: linear-gradient(180deg, var(--gold-2), rgba(201, 164, 92, 0.2)); }
.ui-scan { width: 205px; top: 16px; right: 16px; padding: 12px 14px; }
.scene.tall:has(.ui-scan) img { object-position: 30% 42%; }
.ui-scan .scan-list { gap: 6px; }
.ui-scan .scan-list li { padding: 7px 9px; font-size: 11.5px; }
.ui-scan .scr-done { margin-top: 10px; padding: 9px; font-size: 12px; }
.ui-sep { width: 230px; }
.ui-sep b { font-family: var(--display); font-size: 1.3rem; }
.ui-sep .os-bar { margin: 10px 0 8px; }
.ui-sep small { font-size: 11.5px; }
.ui-ponto { width: 260px; }
.ponto-row { display: flex; gap: 12px; align-items: center; }
.ponto-row b { display: block; font-size: 0.95rem; }
.ponto-row small { color: var(--muted); font-size: 12px; }
.app-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.app-strip li { padding: 18px 18px 18px 50px; position: relative; border-radius: 14px; border: 1px solid var(--line); background: var(--panel); font-size: 0.93rem; color: #c7d0e2; }
.app-strip li::before { content: ''; position: absolute; left: 18px; top: 20px; width: 20px; height: 20px; border-radius: 6px; border: 1px solid rgba(111, 156, 255, 0.45); background: rgba(111, 156, 255, 0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12l4 4 8-8' fill='none' stroke='%238cb4ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 13px no-repeat; }

/* módulos: explorador */
.explorer { display: grid; grid-template-columns: 290px 1fr; gap: 20px; align-items: start; }
.mod-list { display: flex; flex-direction: column; gap: 2px; padding: 12px; border-radius: 20px; border: 1px solid var(--line); background: var(--panel); }
.mod-list .grp { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 14px 12px 6px; }
.mod-list .grp:first-child { padding-top: 4px; }
.mod-list button { font: inherit; font-size: 14.5px; text-align: left; color: var(--muted); background: none; border: 0; padding: 10px 12px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 8px; transition: background 0.2s, color 0.2s; }
.mod-list button:hover { color: var(--text); background: rgba(255, 255, 255, 0.03); }
.mod-list button.on { color: var(--text); background: rgba(111, 156, 255, 0.14); box-shadow: 0 0 0 1px rgba(140, 180, 255, 0.35) inset; }
.mod-list em { font-style: normal; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-2); border: 1px solid rgba(201, 164, 92, 0.4); border-radius: 999px; padding: 2px 7px; }
.mod-panel { position: sticky; top: 90px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; min-height: 460px; padding: 44px; border-radius: 24px; border: 1px solid var(--line-strong); background: radial-gradient(60% 80% at 100% 0%, rgba(79, 127, 232, 0.12), transparent 60%), var(--panel); }
.mod-panel.swap .mod-copy, .mod-panel.swap .mod-vis { animation: swap 0.5s var(--ease); }
@keyframes swap { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.mod-copy > .mono { font-size: 11px; letter-spacing: 0.14em; }
.mod-copy h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 12px 0 12px; }
.mod-copy > p { color: var(--muted); margin-bottom: 26px; font-size: 1.02rem; }
.mod-vis { min-height: 340px; border-radius: 18px; background: rgba(7, 11, 20, 0.7); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 16px; padding: 24px; }
.vrows { width: 100%; display: grid; gap: 8px; }
.vrow { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; background: rgba(255, 255, 255, 0.03); font-size: 13.5px; }
.vrow small { display: block; color: var(--dim); font-size: 11.5px; }
.tagv { font-family: var(--mono); font-size: 10.5px; padding: 4px 9px; border-radius: 999px; border: 1px solid; white-space: nowrap; }
.tagv.ok { color: var(--ok); border-color: rgba(79, 209, 161, 0.45); }
.tagv.go { color: var(--gold-2); border-color: rgba(201, 164, 92, 0.5); }
.tagv.bl { color: var(--blue-2); border-color: rgba(111, 156, 255, 0.5); }
.tagv.bad { color: var(--bad); border-color: rgba(255, 107, 122, 0.5); }
.vhead { width: 100%; display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 11px; color: var(--dim); letter-spacing: 0.08em; }
.vkpis { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vkpis div { padding: 16px; border-radius: 12px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); }
.vkpis small { display: block; color: var(--dim); font-size: 11.5px; margin-bottom: 4px; }
.vkpis b { font-family: var(--display); font-size: 1.4rem; font-weight: 600; }
.vpipe { width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.vpipe div { padding: 12px 6px; border-radius: 10px; text-align: center; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); font-size: 11.5px; color: var(--muted); }
.vpipe div b { display: block; font-family: var(--display); font-size: 1.4rem; color: var(--text); }
.vpipe div.on { border-color: rgba(201, 164, 92, 0.5); background: rgba(201, 164, 92, 0.08); }
.vlane { width: 100%; display: grid; grid-template-columns: 1fr 1.1fr 1fr; align-items: center; }
.vwh { padding: 18px 10px; border-radius: 12px; border: 1px solid var(--line-strong); text-align: center; background: rgba(255, 255, 255, 0.02); }
.vwh small { display: block; color: var(--dim); font-size: 11px; }
.vwh b { font-family: var(--display); font-size: 1.4rem; }
.mod-vis .bars { height: 180px; margin-bottom: 26px; }

/* clientes (teaser na home) */
.client-teaser { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; padding: 48px; border-radius: 24px; border: 1px solid var(--line-strong); background: var(--panel); transition: border-color 0.3s, transform 0.4s var(--ease); }
.client-teaser:hover { border-color: rgba(201, 164, 92, 0.5); transform: translateY(-3px); }
.client-teaser img { width: 100%; max-width: 380px; height: auto; }
.client-teaser .mono { font-size: 11px; letter-spacing: 0.14em; }
.client-teaser p { margin: 12px 0 18px; font-size: 1.15rem; color: #dfe6f3; font-family: var(--display); line-height: 1.4; }
.more { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-2); font-weight: 500; }
.more svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.25s var(--ease); }
.client-teaser:hover .more svg { transform: translateX(4px); }

/* página de clientes */
.page-hero { padding: 170px 0 60px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.035em; margin: 20px 0 22px; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 620px; font-weight: 300; }
.case { border-radius: 28px; border: 1px solid var(--line-strong); background: var(--panel); overflow: hidden; }
.case-top { display: grid; grid-template-columns: 1fr 1fr; }
.case-logo { display: grid; place-items: center; padding: 64px 48px; background: radial-gradient(70% 90% at 50% 50%, rgba(79, 127, 232, 0.16), transparent 70%), rgba(7, 11, 20, 0.6); border-right: 1px solid var(--line); }
.case-logo img { width: 100%; max-width: 420px; height: auto; }
.case-copy { padding: 56px 52px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.badges span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--steel); }
.case-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -0.03em; }
.case-copy p { margin-top: 18px; color: var(--muted); }
.case-uses { padding: 44px 52px 52px; border-top: 1px solid var(--line); }
.case-uses h3 { font-size: 1.1rem; margin-bottom: 20px; color: var(--muted); font-weight: 500; }
.case-uses ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.case-uses li { padding: 16px 18px; border-radius: 14px; border: 1px solid var(--line); background: rgba(7, 11, 20, 0.5); font-size: 0.95rem; }
.case-uses li b { display: block; font-family: var(--display); font-weight: 600; margin-bottom: 2px; }
.case-uses li span { color: var(--dim); font-size: 0.88rem; }
.next-client { margin-top: 24px; padding: 40px; border-radius: 24px; border: 1px dashed var(--line-strong); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.next-client h3 { font-size: 1.5rem; }
.next-client p { color: var(--muted); margin-top: 6px; }

@media (max-width: 1080px) {
  .scenes { grid-template-columns: 1fr 1fr; grid-auto-rows: 400px; }
  .app-strip { grid-template-columns: 1fr 1fr; }
  .explorer { grid-template-columns: 1fr; }
  .mod-panel { position: static; }
  .mod-list { flex-direction: row; overflow-x: auto; padding: 8px; scrollbar-width: none; }
  .mod-list::-webkit-scrollbar { display: none; }
  .mod-list .grp { display: none; }
  .mod-list button { white-space: nowrap; flex: none; }
  .case-uses ul { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .mod-panel { grid-template-columns: 1fr; padding: 28px; min-height: 0; }
  .client-teaser, .case-top { grid-template-columns: 1fr; }
  .client-teaser { padding: 32px 26px; gap: 28px; }
  .case-logo { border-right: 0; border-bottom: 1px solid var(--line); padding: 44px 32px; }
  .case-copy, .case-uses { padding: 32px 26px; }
  .page-hero { padding: 130px 0 40px; }
}
@media (max-width: 560px) {
  .scenes { grid-template-columns: 1fr; grid-auto-rows: 380px; }
  .scene.wide, .scene.tall { grid-column: auto; grid-row: auto; }
  .ui { scale: 0.88; transform-origin: top right; }

  .ui-kpi { top: 16px; bottom: auto; }
  .scene:has(.ui-kpi) figcaption { right: 24px; }
  .app-strip, .case-uses ul { grid-template-columns: 1fr; }
  .mod-vis { min-height: 280px; padding: 16px; }
}
