/* =====================================================================
   Shiel ID — LP Setor: Bancos
   Page-specific styles. Loaded AFTER styles.css (reuses its tokens).
   ===================================================================== */

/* placeholder token — for [ ] data to be filled with real Shiel ID numbers */
.ph {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-style: normal;
  letter-spacing: 0.02em;
  color: var(--gray-400);
  border-bottom: 1px dashed var(--gray-300);
}

/* =====================================================================
   HERO — light editorial, brand grid + glows (keeps glass nav legible)
   ===================================================================== */
.bhero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  min-height: 92svh;
  display: flex;
  flex-direction: column;
}
.bhero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.bhero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(17,19,23,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17,19,23,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 80% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(120% 90% at 80% 0%, #000 0%, transparent 72%);
}
.bhero__glow { position: absolute; border-radius: 999px; filter: blur(100px); }
.bhero__glow--1 { width: 620px; height: 620px; right: -180px; top: -240px;
  background: radial-gradient(circle, rgba(255,0,102,0.10), transparent 64%); }
.bhero__glow--2 { width: 560px; height: 560px; right: 120px; top: -120px;
  background: radial-gradient(circle, rgba(255,127,0,0.10), transparent 64%); }

/* ---- centered animated hero (rotating-word) ---- */
.bhero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
  padding-top: 56px;
  padding-bottom: 72px;
}
@media (min-width: 768px) { .bhero__inner { gap: 34px; } }

/* pill button at top */
.bhero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  height: 36px; padding: 0 8px 0 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: -0.005em;
  color: var(--gray-700);
  background: var(--pill);
  border: 1px solid var(--hair);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.bhero__pill:hover { background: #e4e4e2; color: var(--ink); }
.bhero__pill .lucide {
  width: 16px; height: 16px; stroke-width: 2.2;
  color: var(--accent-strong);
  transition: transform .2s var(--ease);
}
.bhero__pill:hover .lucide { transform: translateX(3px); }

.bhero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 24ch;
  font-size: clamp(2.1rem, 6vw, 4.6rem);
  line-height: 1.0;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-wrap: balance;
}

/* rotating word slot */
.rotator {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1.18em;
  margin-top: 0.12em;
  overflow: visible;
  /* clip only vertically so the sliding words hide above/below,
     but never clip long phrases horizontally */
  clip-path: inset(-0.14em -100vw -0.14em -100vw);
}
.rotator__word {
  position: absolute;
  left: 50%;
  white-space: nowrap;
  font-weight: 700;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  transition: transform .62s cubic-bezier(0.22, 1, 0.36, 1), opacity .5s ease;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rotator__word.is-active { transform: translateX(-50%) translateY(0); opacity: 1; }
.rotator__word.is-prev   { transform: translateX(-50%) translateY(-130%); opacity: 0; }
.rotator__word.is-next   { transform: translateX(-50%) translateY(130%); opacity: 0; }

.bhero__sub {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  color: var(--gray-500);
  text-wrap: pretty;
}
.bhero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.bhero__trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--gray-500);
}
.bhero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.bhero__trust .lucide { width: 15px; height: 15px; color: var(--accent-strong); stroke-width: 2.3; }
.bhero__trust .sep { width: 3px; height: 3px; border-radius: 999px; background: var(--gray-300); }

/* nav burger lines need to be dark on this light hero */
.bhero .nav__burger-lines i { background: var(--ink); }

/* =====================================================================
   PROOF BAR
   ===================================================================== */
.proof { background: var(--surface); border-bottom: 1px solid var(--hair); padding: 56px 28px; }
@media (min-width:768px){ .proof { padding: 64px 56px; } }
@media (min-width:1100px){ .proof { padding: 72px 92px; } }
.proof__wrap { max-width: 1160px; margin: 0 auto; }
.proof__nums {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
@media (max-width:560px){ .proof__nums { grid-template-columns: 1fr; gap: 28px 0; } }
.proof__stat { padding: 4px 36px; text-align: center; }
.proof__stat + .proof__stat { border-left: 1px solid var(--hair); }
@media (max-width:560px){
  .proof__stat { padding: 0 20px; border-left: none !important; }
}
.proof__num {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-weight: 700; line-height: 1; letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-variant-numeric: tabular-nums;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.proof__num .ph { -webkit-text-fill-color: var(--gray-400); }
.proof__num .pre, .proof__num .unit { font-size: 0.5em; }
.proof__label { margin: 14px 0 0; font-size: 13.5px; line-height: 1.45; color: var(--gray-500); }

/* =====================================================================
   PROBLEM — lead text + 3 pressure cards + regulatory note
   ===================================================================== */
.problem { background: var(--bg); }
.lead {
  margin: 22px 0 0; max-width: 64ch;
  font-size: clamp(16px, 1.5vw, 18px); line-height: 1.65; color: var(--gray-700);
  text-wrap: pretty;
}
.lead + .lead { margin-top: 18px; color: var(--gray-500); }

.pcards {
  margin-top: 52px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width:900px){ .pcards { grid-template-columns: 1fr; } }
.pcard {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 30px 28px 32px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.pcard:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(17,19,23,0.07); border-color: rgba(17,19,23,0.12); }
.pcard__icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px; background: rgba(255,74,26,0.09);
  border: 1px solid rgba(255,74,26,0.2);
  color: var(--accent-strong); margin-bottom: 20px;
}
.pcard__icon .lucide { width: 22px; height: 22px; stroke-width: 1.9; }
.pcard__title { margin: 0 0 10px; font-size: 18px; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
.pcard__body { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--gray-500); text-wrap: pretty; }

/* callout strip — regulatory deadline */
.callout {
  margin-top: 28px;
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 26px;
  border-radius: 18px;
  background: #0e0f12; color: #fff;
}
.callout__ic {
  flex: none; width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: var(--brand-grad); color: #fff;
}
.callout__ic .lucide { width: 20px; height: 20px; stroke-width: 2; }
.callout p { margin: 0; font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,0.82); }
.callout b { color: #fff; font-weight: 700; }

/* =====================================================================
   SOLUTION — 2 pillar cards
   ===================================================================== */
.solution { background: var(--surface); }
.pillars {
  margin-top: 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width:820px){ .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative; overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--hair);
  background: var(--bg);
  padding: 38px 34px 36px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pillar:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(17,19,23,0.08); }
.pillar__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent-strong); margin-bottom: 16px;
}
.pillar__tag .lucide { width: 16px; height: 16px; stroke-width: 2.4; }
.pillar__title { margin: 0 0 12px; font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 650; letter-spacing: -0.02em; color: var(--ink); }
.pillar__body { margin: 0; font-size: 15px; line-height: 1.6; color: var(--gray-500); text-wrap: pretty; }
.pillar__edge { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--brand-grad); }

/* =====================================================================
   DETAIL blocks (Onboarding / Liveness) — steps + results
   ===================================================================== */
.detail--alt { background: #f6f6f4; }

.flow {
  margin-top: 52px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width:900px){ .flow { grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .flow { grid-template-columns: 1fr; } }
.flowstep {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 26px 22px 28px;
}
.detail--alt .flowstep { background: #fff; }
.flowstep__num {
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.flowstep__ic {
  width: 38px; height: 38px; margin: 14px 0 16px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; background: rgba(255,74,26,0.09); border: 1px solid rgba(255,74,26,0.18);
  color: var(--accent-strong);
}
.flowstep__ic .lucide { width: 19px; height: 19px; stroke-width: 1.9; }
.flowstep__title { margin: 0 0 8px; font-size: 15.5px; font-weight: 650; letter-spacing: -0.01em; color: var(--ink); }
.flowstep__body { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--gray-500); text-wrap: pretty; }

/* results — checklist panel */
.results {
  margin-top: 16px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  background: var(--hair); border: 1px solid var(--hair);
  border-radius: 18px; overflow: hidden;
}
@media (max-width:640px){ .results { grid-template-columns: 1fr; } }
.result {
  display: flex; align-items: flex-start; gap: 13px;
  background: var(--bg);
  padding: 22px 24px;
}
.detail--alt .result { background: #f6f6f4; }
.result__check {
  flex: none; width: 24px; height: 24px; margin-top: 1px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: rgba(255,74,26,0.12); color: var(--accent-strong);
}
.result__check .lucide { width: 14px; height: 14px; stroke-width: 2.6; }
.result p { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--gray-700); }

/* institutional security stack — visual replacement for checklist */
.truststack {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 14px;
  margin-top: 48px;
}
.truststack__hero {
  position: relative;
  isolation: isolate;
  min-height: 370px;
  overflow: hidden;
  padding: 34px;
  border-radius: 24px;
  background: #111317;
  color: #fff;
}
.truststack__orb { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.truststack__orb--one { width: 300px; height: 300px; right: -104px; bottom: -116px; box-shadow: 0 0 0 34px rgba(255,255,255,.025), 0 0 0 68px rgba(255,255,255,.018); }
.truststack__orb--two { width: 150px; height: 150px; right: 75px; top: -92px; border-color: rgba(255,74,26,.52); box-shadow: 0 0 72px rgba(255,74,26,.24); }
.truststack__icon { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,122,69,.42); border-radius: 14px; background: linear-gradient(135deg, rgba(255,0,102,.22), rgba(255,127,0,.16)); color: #fff; }
.truststack__icon .lucide { width: 24px; height: 24px; stroke-width: 1.8; }
.truststack__eyebrow { display: block; margin-top: 28px; color: #ff9a75; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.truststack__hero h3 { max-width: 11ch; margin: 10px 0 0; font-size: clamp(1.65rem, 2.8vw, 2.3rem); line-height: 1.02; letter-spacing: -.035em; }
.truststack__hero p { max-width: 42ch; margin: 16px 0 0; color: rgba(255,255,255,.67); font-size: 14px; line-height: 1.58; }
.truststack__signal { display: flex; align-items: center; gap: 6px; margin-top: 30px; color: rgba(255,255,255,.72); font-size: 11px; }.truststack__signal span { width: 7px; height: 7px; border-radius: 50%; background: #52d478; box-shadow: 0 0 0 4px rgba(82,212,120,.12); }.truststack__signal span:nth-child(2) { opacity: .68; }.truststack__signal span:nth-child(3) { opacity: .36; }.truststack__signal b { margin-left: 6px; font-weight: 600; }
.truststack__list { display: grid; gap: 14px; }.trustitem { position: relative; display: grid; grid-template-columns: 40px 1fr 32px; gap: 18px; align-items: start; min-height: 114px; padding: 24px; border: 1px solid var(--hair); border-radius: 20px; background: #fff; transition: transform .22s var(--ease), box-shadow .22s var(--ease); }.trustitem:hover { transform: translateX(4px); box-shadow: 0 12px 24px rgba(17,19,23,.07); }.trustitem__num { color: var(--accent-strong); font-size: 12px; font-weight: 700; letter-spacing: .04em; }.trustitem h3 { margin: 0; font-size: 16px; letter-spacing: -.015em; }.trustitem p { margin: 7px 0 0; color: var(--gray-500); font-size: 13px; line-height: 1.5; }.trustitem__icon { width: 20px; height: 20px; color: var(--accent-strong); stroke-width: 1.75; }
@media (max-width: 820px) { .truststack { grid-template-columns: 1fr; }.truststack__hero { min-height: 330px; }.truststack__list { grid-template-columns: 1fr; } }

.results-head {
  margin: 56px 0 0; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-400);
}

/* trigger chips (liveness) */
.triggers {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width:820px){ .triggers { grid-template-columns: 1fr 1fr; } }
@media (max-width:460px){ .triggers { grid-template-columns: 1fr; } }
.trigger {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--hair);
  border-radius: 14px; padding: 18px 20px;
}
.trigger__ic {
  flex: none; width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; background: rgba(255,74,26,0.09); border: 1px solid rgba(255,74,26,0.18);
  color: var(--accent-strong);
}
.trigger__ic .lucide { width: 20px; height: 20px; stroke-width: 1.9; }
.trigger span { font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }

/* why-now panel (dark) */
.whynow {
  margin-top: 40px;
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start;
  background: #0e0f12; color: #fff;
  border-radius: 22px; padding: 34px 36px;
}
@media (max-width:680px){ .whynow { grid-template-columns: 1fr; gap: 18px; padding: 28px 26px; } }
.whynow__tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #FF7A45; white-space: nowrap;
}
.whynow__tag .lucide { width: 16px; height: 16px; stroke-width: 2.3; }
.whynow p { margin: 0; font-size: 15px; line-height: 1.62; color: rgba(255,255,255,0.82); text-wrap: pretty; }
.whynow b { color: #fff; font-weight: 650; }

/* =====================================================================
   COMPLIANCE — regulation grid
   ===================================================================== */
.compliance { background: var(--bg); }
.regs {
  margin-top: 52px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width:900px){ .regs { grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .regs { grid-template-columns: 1fr; } }
.reg {
  background: var(--surface); border: 1px solid var(--hair);
  border-radius: 18px; padding: 26px 26px 28px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.reg:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(17,19,23,0.06); }
.reg__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.reg__ic {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; background: rgba(255,74,26,0.09); border: 1px solid rgba(255,74,26,0.18);
  color: var(--accent-strong);
}
.reg__ic .lucide { width: 20px; height: 20px; stroke-width: 1.9; }
.reg__deadline {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent-strong);
  background: rgba(255,74,26,0.1); border: 1px solid rgba(255,74,26,0.22);
  border-radius: 999px; padding: 4px 10px;
}
.reg__title { margin: 0 0 8px; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.reg__body { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--gray-500); text-wrap: pretty; }

/* =====================================================================
   INTEGRATION — text/bullets + code window
   ===================================================================== */
.integration { background: var(--surface); }
.intgrid {
  margin-top: 8px;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: 56px; align-items: center;
}
@media (max-width:920px){ .intgrid { grid-template-columns: 1fr; gap: 40px; } }
.intlist { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.intlist li { display: flex; align-items: flex-start; gap: 13px; font-size: 15px; line-height: 1.5; color: var(--gray-700); }
.intlist .lucide { flex: none; width: 20px; height: 20px; margin-top: 1px; color: var(--accent-strong); stroke-width: 2.2; }
.integration .section-cta { margin-top: 34px; }

.codewin {
  border-radius: 18px; overflow: hidden;
  background: #0e0f12;
  border: 1px solid rgba(17,19,23,0.1);
  box-shadow: 0 30px 70px rgba(17,19,23,0.16);
}
.codewin__bar { display: flex; align-items: center; gap: 14px; padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.codewin__dots { display: flex; gap: 7px; }
.codewin__dots span { width: 11px; height: 11px; border-radius: 999px; }
.codewin__dots span:nth-child(1){ background: #ff5f57; }
.codewin__dots span:nth-child(2){ background: #febc2e; }
.codewin__dots span:nth-child(3){ background: #28c840; }
.codewin__file { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 12px; color: rgba(255,255,255,0.5); }
.codewin__body {
  margin: 0; padding: 20px 22px 24px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12.5px; line-height: 1.85; color: rgba(255,255,255,0.86);
  overflow-x: auto;
}
.codewin .c-key { color: #FF7A45; }
.codewin .c-str { color: #6fd08f; }
.codewin .c-com { color: rgba(255,255,255,0.38); }
.codewin .c-fn  { color: #8ab4ff; }

/* =====================================================================
   DIFERENCIAIS — feature grid (hairline)
   ===================================================================== */
.diff { background: var(--bg); }
.diffgrid {
  margin-top: 52px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--hair); border: 1px solid var(--hair);
  border-radius: 22px; overflow: hidden;
}
@media (max-width:900px){ .diffgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .diffgrid { grid-template-columns: 1fr; } }
.diffitem { background: var(--bg); padding: 32px 30px 34px; transition: background .22s var(--ease); }
.diffitem:hover { background: var(--surface); }
.diffitem__ic {
  width: 42px; height: 42px; margin-bottom: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; background: #fff; border: 1px solid var(--hair);
  color: var(--accent-strong);
}
.diffitem__ic .lucide { width: 20px; height: 20px; stroke-width: 1.9; }
.diffitem__title { margin: 0 0 9px; font-size: 16.5px; font-weight: 650; letter-spacing: -0.01em; color: var(--ink); }
.diffitem__body { margin: 0; font-size: 14px; line-height: 1.58; color: var(--gray-500); text-wrap: pretty; }

/* =====================================================================
   FAQ — accordion
   ===================================================================== */
.faq { background: var(--surface); }
.faqlist { margin-top: 44px; max-width: 880px; border-top: 1px solid var(--hair); }
.faqitem { border-bottom: 1px solid var(--hair); }
.faqq {
  width: 100%; cursor: pointer; border: 0; background: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px;
  font-family: var(--font);
  font-size: clamp(16px, 1.7vw, 19px); font-weight: 650; letter-spacing: -0.015em;
  color: var(--ink);
}
.faqq__plus {
  flex: none; width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid var(--hair); color: var(--accent-strong);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.faqq__plus .lucide { width: 17px; height: 17px; stroke-width: 2.4; }
.faqitem.is-open .faqq__plus { transform: rotate(45deg); background: var(--brand-grad); color: #fff; border-color: transparent; }
.faqa { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faqa__inner { padding: 0 60px 28px 4px; font-size: 15px; line-height: 1.62; color: var(--gray-500); text-wrap: pretty; }
.faqa__inner b { color: var(--gray-700); font-weight: 600; }

/* =====================================================================
   small shared
   ===================================================================== */
.btn--outline-dark {
  color: var(--ink);
  background: transparent;
  border-color: var(--gray-300);
}
.btn--outline-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* =====================================================================
   FRAMED BODY — bordered, rounded "card column" treatment
   (inspirado na landing 21st.dev: cada bloco do corpo dentro de uma
    moldura arredondada com borda fina, flutuando sobre fundo levemente
    em degradê). Mantém todo o conteúdo; só re-emoldura o layout.
   ===================================================================== */
body {
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(255,74,26,0.04), transparent 60%),
    linear-gradient(165deg, var(--bg) 0%, var(--bg) 55%, #eaeae8 100%);
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg) 58%, #eaeae8 100%);
}

/* full-bleed section backgrounds são neutralizados — as molduras flutuam */
.problem, .solution, .detail, .detail--alt,
.compliance, .integration, .diff, .faq { background: transparent; }

/* ritmo vertical mais compacto: a moldura traz seu próprio respiro interno */
.section { padding: 16px 20px; }
@media (min-width: 768px)  { .section { padding: 22px 20px; } }
@media (min-width: 1100px) { .section { padding: 26px 20px; } }

/* a moldura */
.section:not(.cta) > .wrap {
  max-width: 1400px;
  border: 1px solid var(--hair);
  border-radius: 34px;
  background: var(--surface);
  padding: clamp(34px, 4.4vw, 76px) clamp(24px, 4vw, 68px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 30px 60px -46px rgba(17,19,23,0.16);
}
@media (max-width: 560px) {
  .section:not(.cta) > .wrap { border-radius: 26px; }
}

/* tonalidades alternadas (alguns blocos com tom muito sutil) */
.section.solution   > .wrap,
.section.compliance > .wrap,
.section.diff       > .wrap { background: rgba(17,19,23,0.022); }
.section.detail--alt > .wrap { background: #f4f4f2; }

/* eyebrow vira "pill" como na referência */
.section .eyebrow {
  -webkit-text-fill-color: initial;
  color: var(--accent-strong);
  background: rgba(255,74,26,0.08);
  border: 1px solid rgba(255,74,26,0.18);
  padding: 6px 14px;
  border-radius: 999px;
}
.section .eyebrow::before { display: none; }

/* PROOF bar também ganha moldura, alinhada às demais */
.proof { background: transparent; border-bottom: 0; padding: 16px 20px; }
@media (min-width: 768px)  { .proof { padding: 22px 20px; } }
@media (min-width: 1100px) { .proof { padding: 26px 20px; } }
.proof__wrap {
  max-width: 1400px;
  border: 1px solid var(--hair);
  border-radius: 34px;
  background: var(--surface);
  padding: clamp(40px, 4vw, 56px) clamp(24px, 4vw, 48px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 30px 60px -46px rgba(17,19,23,0.16);
}
@media (max-width: 560px) { .proof__wrap { border-radius: 26px; } }

/* raios internos um pouco maiores p/ casar com o "rounded-3xl" */
.pcard     { border-radius: 24px; }
.flowstep  { border-radius: 22px; }
.results   { border-radius: 22px; }
.reg       { border-radius: 22px; }
.trigger   { border-radius: 18px; }
.diffgrid  { border-radius: 26px; }
.codewin   { border-radius: 22px; }
.callout   { border-radius: 22px; }
.whynow    { border-radius: 26px; }
.faqlist   { border-radius: 0; }

/* CTA final: o próprio cta-card já é a moldura — só dá folga */
.section.cta { padding-top: 26px; padding-bottom: 40px; }
.section.cta > .wrap { max-width: 1400px; margin: 0 auto; }

/* =====================================================================
   INSTITUCIONAL — manifesto, impacto, princípios, setores, fundador
   ===================================================================== */
/* manifesto — bloco escuro de destaque */
.manifesto > .wrap { background: #0e0f12 !important; color: #fff; }
.manifesto .section__title { color: #fff; }
.manifesto .lead { color: rgba(255,255,255,0.74); max-width: 70ch; }
.manifesto .lead + .lead { color: rgba(255,255,255,0.6); }
.manifesto .eyebrow { -webkit-text-fill-color: #FF7A45; color: #FF7A45; background: rgba(255,122,69,0.12); border-color: rgba(255,122,69,0.3); }

/* impacto — métricas em grade hairline */
.impact {
  margin-top: 52px;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; background: var(--hair); border: 1px solid var(--hair);
  border-radius: 22px; overflow: hidden;
}
@media (max-width: 900px){ .impact { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .impact { grid-template-columns: 1fr; } }
.impact__cell { background: var(--surface); padding: 32px 26px; }
.impact__num {
  font-weight: 700; line-height: 1; letter-spacing: -0.03em;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-variant-numeric: tabular-nums;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.impact__num .unit { font-size: 0.5em; }
.impact__label { margin: 12px 0 0; font-size: 13.5px; line-height: 1.45; color: var(--gray-500); }

/* setores — chips/links */
.sectorlinks {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 760px){ .sectorlinks { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px){ .sectorlinks { grid-template-columns: 1fr; } }
.sectorlink {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--hair);
  border-radius: 16px; padding: 18px 20px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.sectorlink:hover { transform: translateY(-2px); border-color: rgba(17,19,23,0.16); box-shadow: 0 14px 32px rgba(17,19,23,0.07); }
.sectorlink__ic {
  flex: none; width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; background: rgba(255,74,26,0.09); border: 1px solid rgba(255,74,26,0.18);
  color: var(--accent-strong);
}
.sectorlink__ic .lucide { width: 20px; height: 20px; stroke-width: 1.9; }
.sectorlink__name { flex: 1; font-size: 15px; font-weight: 650; letter-spacing: -0.01em; color: var(--ink); }
.sectorlink__arrow { flex: none; width: 18px; height: 18px; color: var(--gray-400); transition: transform .2s var(--ease), color .2s var(--ease); }
.sectorlink:hover .sectorlink__arrow { transform: translateX(3px); color: var(--ink); }
.sectorlink--soon { opacity: 0.7; }
.sectorlink--soon .sectorlink__name::after {
  content: "em breve"; margin-left: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--gray-400); border: 1px solid var(--hair); border-radius: 999px; padding: 2px 7px;
}

/* fundador */
.founder {
  margin-top: 48px;
  display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start;
}
@media (max-width: 760px){ .founder { grid-template-columns: 1fr; gap: 28px; } }
.founder__photo {
  aspect-ratio: 4 / 5; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(17,19,23,0.04) 0, rgba(17,19,23,0.04) 2px, transparent 2px, transparent 12px),
    linear-gradient(180deg, #f4f4f2 0%, #ebebe8 100%);
}
.founder__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.founder__role { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-strong); }
.founder__name { margin: 8px 0 18px; font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 650; letter-spacing: -0.02em; color: var(--ink); }
.founder__bio { margin: 0; font-size: 16px; line-height: 1.65; color: var(--gray-700); text-wrap: pretty; }
.founder__quote {
  margin: 24px 0 0; padding: 20px 24px;
  border-left: 3px solid transparent; border-image: var(--brand-grad) 1;
  background: rgba(255,74,26,0.05);
  font-size: 17px; line-height: 1.55; font-style: italic; color: var(--gray-700);
}

/* selos no CTA institucional */
.selos { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 18px; }
.selos span { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--gray-500); }
.selos .lucide { width: 15px; height: 15px; color: var(--accent-strong); stroke-width: 2.3; }

/* =====================================================================
   HERO CARD — rounded video-card hero (estilo landing de referência)
   aplicado às páginas de setor + institucional. Mantém o conteúdo e as
   cores da marca; troca o full-bleed por um card branco arredondado.
   ===================================================================== */
.bhero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1400px, calc(100% - 40px));
  margin: 96px auto 0;
  min-height: 600px;
  overflow: hidden;
  border-radius: 48px;
  border: 1px solid rgba(17,19,23,0.08);
  background: #fff;
  box-shadow: 0 40px 100px -28px rgba(17,19,23,0.12);
}
/* esconde a textura antiga; o vídeo passa a ser o fundo */
.bhero__grid, .bhero__glow { display: none !important; }
.bhero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
/* scrim claro à esquerda para legibilidade do texto escuro */
.bhero__scrim2 {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.5) 30%,
    rgba(255,255,255,0.12) 58%, rgba(255,255,255,0) 92%);
}

/* conteúdo: topo-esquerda em vez de centralizado */
.bhero__inner {
  position: relative; z-index: 2;
  flex: 1;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  gap: 22px;
  margin: 0;
  max-width: 780px;
  padding: 56px 56px 52px;
}
@media (min-width: 768px) { .bhero__inner { gap: 24px; padding: 60px 64px 64px; } }

.bhero .bhero__title {
  align-items: flex-start;
  text-align: left;
  max-width: 17ch;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}
/* rotador alinhado à esquerda (remove a centralização translateX) */
.bhero__inner .rotator { justify-content: flex-start; }
.bhero__inner .rotator__word { left: 0; transform: translateX(0) translateY(120%); }
.bhero__inner .rotator__word.is-active { transform: translateX(0) translateY(0); }
.bhero__inner .rotator__word.is-prev   { transform: translateX(0) translateY(-130%); }
.bhero__inner .rotator__word.is-next   { transform: translateX(0) translateY(130%); }

.bhero__inner .bhero__sub { max-width: 56ch; }
.bhero__inner .bhero__actions { justify-content: flex-start; }
.bhero__inner .bhero__trust { justify-content: flex-start; }

@media (max-width: 768px) {
  .bhero { border-radius: 32px; margin-top: 80px; min-height: 520px; width: calc(100% - 24px); }
  .bhero__inner { padding: 40px 28px 48px; }
  .bhero__scrim2 { background: linear-gradient(180deg, rgba(255,255,255,0.72) 24%, rgba(255,255,255,0.35) 64%, rgba(255,255,255,0) 100%); }
}
