/* ==========================================================================
   Ytex — Website institucional financeiro premium
   ========================================================================== */

@font-face {
  font-family: 'Aspekta';
  src: url('https://assets.website-files.com/646f65e37fe0275cfb808405/646f68f5e8cb7913d14fd42c_Aspekta-400.woff2')
    format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aspekta';
  src: url('https://assets.website-files.com/646f65e37fe0275cfb808405/646f68f5e8cb7913d14fd42d_Aspekta-500.woff2')
    format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aspekta';
  src: url('https://assets.website-files.com/646f65e37fe0275cfb808405/646f68f5e8cb7913d14fd42e_Aspekta-650.woff2')
    format('woff2');
  font-weight: 650;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --paper: #fbfbfd;
  --paper-deep: #f4f2fb;
  --ink: #111529;
  --text: #3f465a;
  --muted: #757c8f;
  --line: #e5e7ef;
  --line-strong: #d5d8e6;
  --brand: #4d00b2;
  --brand-2: #6427d3;
  --brand-dark: #22005d;
  --brand-soft: #f1ebff;
  --success: #087f6f;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 42px);
  --font: 'Aspekta', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow: 0 22px 60px -40px rgba(17, 21, 41, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(48px, 6vw, 80px);
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(77, 0, 178, 0.025), transparent 34%),
    var(--paper);
  border-block: 1px solid var(--line);
}

.section--brand {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, var(--brand-dark), var(--brand) 64%, #351084);
  color: rgba(255, 255, 255, 0.78);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 4.85rem);
}

h2 {
  font-size: clamp(2rem, 4.1vw, 3.15rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  max-width: 66ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.18s var(--ease),
    border-color 0.18s var(--ease),
    background 0.18s var(--ease),
    color 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.button svg {
  transition: transform 0.18s var(--ease);
}

.button:hover {
  transform: translateY(-1px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button--primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 10px 22px -16px rgba(77, 0, 178, 0.85);
}

.button--primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 16px 32px -18px rgba(77, 0, 178, 0.9);
}

.button--secondary,
.button--quiet {
  background: var(--white);
  border-color: var(--line-strong);
  color: var(--ink);
}

.button--secondary:hover,
.button--quiet:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.button--light {
  background: var(--white);
  color: var(--brand-dark);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px) saturate(140%);
  transition:
    border-color 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.topbar.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px -28px rgba(17, 21, 41, 0.5);
}

.topbar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
}

.brand img {
  width: auto;
  height: 27px;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.topbar__links a {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 500;
  transition:
    background 0.18s var(--ease),
    color 0.18s var(--ease);
}

.topbar__links a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
}

.topbar__toggle span,
.topbar__toggle span::before,
.topbar__toggle span::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
  position: relative;
}

.topbar__toggle span::before {
  position: absolute;
  top: -6px;
}

.topbar__toggle span::after {
  position: absolute;
  top: 6px;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(480px, 62vh, 720px);
  padding-block: clamp(64px, 8vw, 108px);
  overflow: hidden;
  isolation: isolate;
  background: #121528;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(17, 21, 41, 0.94) 0%,
    rgba(17, 21, 41, 0.82) 34%,
    rgba(17, 21, 41, 0.42) 52%,
    rgba(17, 21, 41, 0.08) 72%,
    transparent 100%
  );
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  align-items: center;
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.82);
}

.hero__copy h1 {
  max-width: 780px;
  margin-top: 18px;
  color: var(--white);
}

.hero__copy h1 span {
  display: block;
  color: #d9c4ff;
}

.hero__lead {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.56;
}

.hero__support {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.hero .button--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.hero .button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(54px, 7vw, 92px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 500;
}

.hero .proof-strip {
  position: relative;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow: none;
}

.hero .proof-strip span {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
}

/* Editorial sections */
.section--editorial {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

/* Manifest — texto + mockup lado a lado */
.section--manifest {
  border-block: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.manifest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.manifest-copy {
  padding-block: clamp(36px, 5vw, 64px);
}

.manifest-copy h2 {
  margin-top: 18px;
  max-width: 520px;
}

.manifest-copy p {
  margin-top: 22px;
  color: var(--text);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  max-width: 52ch;
}

.manifest-visual {
  position: relative;
  padding-block: clamp(28px, 4vw, 48px);
}

.manifest-visual__glow {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 110%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(77, 0, 178, 0.1) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.manifest-visual__frame {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow:
    0 0 0 1px rgba(77, 0, 178, 0.07),
    0 8px 24px -8px rgba(77, 0, 178, 0.14),
    0 40px 100px -40px rgba(17, 21, 41, 0.32);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.manifest-visual__frame:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
  box-shadow:
    0 0 0 1px rgba(77, 0, 178, 0.12),
    0 12px 32px -10px rgba(77, 0, 178, 0.2),
    0 56px 120px -44px rgba(17, 21, 41, 0.36);
}

.manifest-visual__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.manifest-visual__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.manifest-visual__bar span:first-child  { background: #ff6158; }
.manifest-visual__bar span:nth-child(2) { background: #ffbe2f; }
.manifest-visual__bar span:last-child   { background: #29c840; }

.manifest-visual__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(36px, 6vw, 88px);
}

.section-label {
  color: var(--brand);
  font-weight: 650;
}

.section-label span {
  position: sticky;
  top: 110px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-label span::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

.editorial-copy h2 {
  max-width: 880px;
}

.editorial-copy p {
  margin-top: 24px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
}


.section-heading {
  max-width: 780px;
  margin-bottom: clamp(26px, 3.5vw, 44px);
}

.section-heading--wide {
  max-width: 910px;
}

.section-heading h2 {
  margin-top: 14px;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--inverse h2,
.section-heading--inverse .kicker {
  color: var(--white);
}

.section-heading--inverse p {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading--inverse .kicker::before {
  background: currentColor;
}

/* Ecosystem */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--line);
}

.ecosystem-item {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
}

.ecosystem-item__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
}

.ecosystem-item span {
  margin-top: 42px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ecosystem-item h3 {
  margin-top: 10px;
}

.ecosystem-item p {
  margin-top: 12px;
  color: var(--muted);
}

/* Problem */
.problem-section {
  background:
    linear-gradient(180deg, rgba(77, 0, 178, 0.035), transparent 42%),
    var(--paper);
  border-block: 1px solid var(--line);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.problem-intro h2 {
  max-width: 720px;
  margin-top: 14px;
}

.problem-intro p {
  margin-top: 18px;
  color: var(--text);
  font-size: 1.05rem;
}

.problem-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.problem-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
}

.problem-item + .problem-item {
  border-top: 1px solid var(--line);
}

.problem-item__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
}

.problem-item h3 {
  font-size: 1.14rem;
}

.problem-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.96rem;
}

.problem-bridge {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  margin-top: clamp(36px, 5vw, 58px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.problem-bridge::before {
  content: '';
  position: absolute;
  inset: 0 0 auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(77, 0, 178, 0.08), transparent 68%);
  pointer-events: none;
}

.problem-bridge__icon {
  width: 58px;
  height: 58px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  z-index: 1;
}

.problem-bridge p {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  font-weight: 500;
  line-height: 1.5;
  z-index: 1;
}

/* Solutions */
.solutions-list {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  margin-top: clamp(36px, 5vw, 54px);
}

.solution-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(32px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  min-width: 0;
  overflow-x: clip;
}

.solution-row__meta {
  padding-top: 4px;
  min-width: 0;
}

.solution-row__meta span {
  display: inline-flex;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 650;
  background: var(--brand-soft);
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}

.solution-row__body {
  min-width: 0;
}

.solution-row__body h3 {
  max-width: 760px;
  overflow-wrap: anywhere;
}

.solution-row__body p {
  margin-top: 16px;
  color: var(--text);
  font-size: 1.05rem;
}

.solution-row__body ul {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.solution-row__body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
}

.solution-row__body li svg {
  flex: none;
  margin-top: 4px;
  color: var(--success);
}

.solution-timeline {
  grid-column: 1 / -1;
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line);
  min-width: 0;
  overflow: hidden;
}

.solution-timeline__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.solution-timeline__heading {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stl-swipe-hint {
  display: none;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.stl-nav-group {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.stl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.stl-btn:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.stl-btn:disabled {
  opacity: 0.38;
  cursor: default;
}

.solution-timeline__viewport {
  position: relative;
}

.solution-timeline__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow-x: hidden;
}

.stl-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.stl-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--line-strong);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.stl-dot.is-active {
  background: var(--brand);
  transform: scale(1.2);
}

.stl-dot:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.solution-timeline__step {
  min-width: 160px;
  padding: 22px 20px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  background: var(--white);
}

.solution-timeline__step:first-child {
  border-radius: 18px 0 0 18px;
}

.solution-timeline__step:last-child {
  border-right: 1px solid var(--line-strong);
  border-radius: 0 18px 18px 0;
}

.solution-timeline__step span {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 650;
}

.solution-timeline__step h5 {
  margin-top: 16px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.3;
}

.solution-timeline__step p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.solutions-closing {
  margin-top: clamp(36px, 5vw, 52px);
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.45;
  max-width: 820px;
}

/* Operation */
.operation-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding-bottom: 10px;
}

.operation-step {
  min-width: 180px;
  padding: 24px 22px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  background: var(--white);
}

.operation-step:first-child {
  border-radius: 18px 0 0 18px;
}

.operation-step:last-child {
  border-right: 1px solid var(--line-strong);
  border-radius: 0 18px 18px 0;
}

.operation-step span {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 650;
}

.operation-step h3 {
  margin-top: 18px;
  font-size: 1.1rem;
}

.operation-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Intelligence */
.intelligence-section {
  background:
    linear-gradient(180deg, rgba(77, 0, 178, 0.035), transparent 48%),
    var(--white);
  border-top: 1px solid var(--line);
}

.intelligence-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.intelligence-hero h2 {
  margin-top: 14px;
  max-width: 760px;
}

.intelligence-hero p {
  color: var(--text);
  font-size: 1.05rem;
}

.intelligence-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 1px;
  border: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  background: var(--line);
}

.intelligence-summary div {
  min-height: 120px;
  padding: 24px;
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.72);
}

.intelligence-summary span {
  display: block;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intelligence-summary strong {
  display: block;
  max-width: 24ch;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 24px 24px;
  background: var(--line);
}

.intelligence-card {
  min-height: 320px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
}

.intelligence-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
}

.intelligence-card h3 {
  margin-top: 44px;
}

.intelligence-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* IPR preview mockup card */
.ipr-preview {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  margin-top: clamp(36px, 5vw, 54px);
  padding: clamp(32px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}

.ipr-preview__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: var(--shadow);
}

.ipr-preview__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.ipr-preview__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 650;
}

.ipr-preview__badge svg {
  color: var(--brand);
}

.ipr-preview__trend {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff3e0;
  color: #e65100;
  font-size: 0.76rem;
  font-weight: 650;
}

.ipr-preview__score {
  margin-bottom: 14px;
}

.ipr-preview__label {
  font-size: 1.25rem;
  color: var(--brand);
  font-weight: 650;
}

.ipr-preview__label strong {
  color: var(--brand);
}

.ipr-preview__desc {
  margin-top: 6px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.55;
}

.ipr-preview__insight {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(77, 0, 178, 0.05);
  border: 1px solid rgba(77, 0, 178, 0.12);
}

.ipr-preview__insight svg {
  flex: none;
  margin-top: 2px;
  color: var(--brand);
}

.ipr-preview__insight p {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
}

.ipr-preview__value-box {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 18px;
  background: var(--paper);
}

.ipr-preview__value-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.ipr-preview__value-header span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ipr-preview__value-header svg {
  color: var(--muted);
}

.ipr-preview__amount {
  color: var(--brand);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 650;
  line-height: 1;
}

.ipr-preview__value-sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

.ipr-preview__footer {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.ipr-preview__bar {
  height: 5px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.ipr-preview__bar-fill {
  width: 50%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 0%, #e65100 100%);
}

.ipr-preview__copy h3 {
  margin-top: 14px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.ipr-preview__copy p {
  margin-top: 16px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Technology */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px 26px 0 0;
  background: rgba(255, 255, 255, 0.18);
}

.capability {
  min-height: 360px;
  padding: clamp(26px, 3.5vw, 38px);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.capability__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.capability__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
}

.capability__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.capability h3 {
  color: var(--white);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.3;
}

.capability__desc {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.6;
}

.capability__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-block: 22px;
}

.capability ul {
  display: grid;
  gap: 11px;
  margin-top: 0;
}

.capability li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.capability li::before {
  content: '';
  flex: none;
  width: 5px;
  height: 5px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

/* Tech badge — Registradora / Banco Central */
.tech-badge {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 26px);
  padding: clamp(18px, 2.5vw, 26px) clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: none;
  border-radius: 0 0 26px 26px;
  background: rgba(255, 255, 255, 0.04);
}

.tech-badge__icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
}

.tech-badge span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 5px;
}

.tech-badge p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 72ch;
}

/* Audiences */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--line);
}

.audience-profile {
  min-height: 300px;
  padding: 26px;
  background: var(--white);
}

.audience-profile div {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
}

.audience-profile h3 {
  margin-top: 48px;
  font-size: 1.18rem;
}

.audience-profile p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Closing */
.closing {
  padding-block: clamp(48px, 6vw, 80px);
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: rgba(255, 255, 255, 0.78);
}

.closing__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
}

.closing .kicker,
.closing h2 {
  color: var(--white);
}

.closing h2 {
  max-width: 720px;
  margin-top: 16px;
}

.closing p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* Footer */
.footer {
  padding-block: 58px 28px;
  background: #111529;
  color: rgba(255, 255, 255, 0.62);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
}

.footer img {
  width: auto;
  height: 27px;
  margin-bottom: 16px;
}

.footer p {
  max-width: 420px;
}

.footer h4 {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  padding-block: 5px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.18s var(--ease);
}

.footer a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.84rem;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal][data-delay='1'] {
  transition-delay: 0.08s;
}

[data-reveal][data-delay='2'] {
  transition-delay: 0.16s;
}

[data-reveal][data-delay='3'] {
  transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 1060px) {
  .hero__grid,
  .editorial-grid,
  .manifest-layout,
  .problem-layout,
  .solution-row,
  .intelligence-hero,
  .ipr-preview,
  .closing__inner {
    grid-template-columns: 1fr;
  }

  .manifest-visual__frame {
    transform: none;
  }

  .manifest-copy {
    padding-bottom: 0;
  }

  .capability-grid,
  .intelligence-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
    border-radius: 26px 26px 0 0;
  }

  .tech-badge {
    flex-direction: column;
    align-items: flex-start;
  }

  .intelligence-summary {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-label span {
    position: static;
  }

  .closing__actions {
    justify-content: flex-start;
  }

  /* Timeline → carrossel em tablet/mobile */
  .stl-swipe-hint {
    display: block;
  }

  .stl-nav-group {
    display: flex;
  }

  .stl-dots {
    display: flex;
  }

  .solution-timeline__viewport::before,
  .solution-timeline__viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 28px;
    pointer-events: none;
    z-index: 1;
  }

  .solution-timeline__viewport::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
  }

  .solution-timeline__viewport::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
  }

  .solution-timeline__track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    padding-bottom: 4px;
    scroll-padding-inline: 2px;
  }

  .solution-timeline__track::-webkit-scrollbar {
    display: none;
  }

  .solution-timeline__step {
    flex: 0 0 min(86%, 300px);
    min-width: unset;
    scroll-snap-align: start;
    border-radius: 18px;
    border: 1px solid var(--line-strong);
  }

  .solution-timeline__step:first-child,
  .solution-timeline__step:last-child {
    border-radius: 18px;
  }
}

@media (max-width: 860px) {
  .topbar__links,
  .topbar__actions .button--quiet {
    display: none;
  }

  .topbar__toggle {
    display: grid;
    place-items: center;
  }

  .topbar.mobile-open .topbar__links {
    position: absolute;
    inset: 100% var(--gutter) auto var(--gutter);
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .topbar.mobile-open .topbar__links a {
    width: 100%;
    padding: 13px 14px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .hero .proof-strip {
    width: 100%;
    margin-inline: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
  }

  .proof-strip span,
  .hero .proof-strip span {
    min-height: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
  }

  .hero .proof-strip span {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .proof-strip span,
  .hero .proof-strip span {
    padding: 16px 18px;
  }

  .solutions-list {
    padding-inline: 2px;
  }

  .solution-row {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .solution-row__meta span {
    width: 100%;
    justify-content: center;
  }

  .solution-timeline__step {
    flex-basis: min(88%, 280px);
  }

  .stl-btn {
    width: 40px;
    height: 40px;
  }

  .button,
  .hero__actions .button,
  .closing__actions .button {
    width: 100%;
  }

  .problem-bridge {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .problem-bridge__icon {
    margin-inline: auto;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
