/* ================================================================
   VAAS Home. full-site styles
   Builds on colors_and_type.css tokens.
   ================================================================ */

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

::selection {
  background: var(--vaas-lime);
  color: var(--vaas-blue-deep);
}

/* ---------- utility: container ---------- */
.v-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- eyebrow ---------- */
.v-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vaas-blue);
}

.v-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}

.v-eyebrow--light {
  color: var(--vaas-lime);
}

.v-eyebrow--center {
  justify-content: center;
}

/* ================================================================
   Pílula de categoria. retângulo arredondado atrás do eyebrow da
   seção em todo o site. A cor usa currentColor, então se adapta à
   cor do texto (azul em fundos claros, lime em fundos escuros).
   ================================================================ */
.v-eyebrow,
.pv-eyebrow,
.pv-cap-num {
  display: inline-flex !important;
  align-items: center;
  width: auto;
  padding: 6px 14px !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, currentColor 12%, transparent) !important;
  border: 1px solid color-mix(in srgb, currentColor 28%, transparent) !important;
  gap: 6px !important;
}

.v-eyebrow::before,
.v-eyebrow::after,
.pv-eyebrow::before,
.pv-eyebrow::after,
.v-eyebrow--center::before,
.v-eyebrow--center::after,
.pv-eyebrow--center::before,
.pv-eyebrow--center::after {
  display: none !important;
}

/* ---------- buttons ---------- */
.v-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 14px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 160ms var(--ease-out);
  white-space: nowrap;
}

.v-btn--lg {
  font-size: 15px;
  padding: 17px 26px;
}

.v-btn__arrow {
  font-family: var(--font-mono);
  font-weight: 500;
  transition: transform 160ms var(--ease-out);
}

.v-btn:hover .v-btn__arrow {
  transform: translateX(3px);
}

.v-btn--lime {
  background: var(--vaas-lime);
  color: var(--vaas-blue-deep);
}

.v-btn--lime:hover {
  background: var(--vaas-lime-pressed);
  transform: translateY(-1px);
}

.v-btn--primary {
  background: var(--vaas-blue);
  color: #fff;
}

.v-btn--primary:hover {
  background: var(--vaas-blue-hover);
}

.v-btn--primary:active {
  background: var(--vaas-blue-pressed);
}

.v-btn--ghost {
  background: transparent;
  color: var(--vaas-blue-deep);
}

.v-btn--ghost:hover {
  color: var(--vaas-blue);
}

.v-btn--outline {
  background: transparent;
  color: var(--vaas-blue-deep);
  border-color: var(--border-strong);
}

.v-btn--outline:hover {
  border-color: var(--vaas-blue);
  color: var(--vaas-blue);
}

.v-btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}

.v-btn--outline-light:hover {
  background: rgba(255, 255, 255, .08);
  border-color: #fff;
}

.v-btn--ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, .85);
}

.v-btn--ghost-light:hover {
  color: #fff;
}

/* ---------- badge ---------- */
.v-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0;
}

.v-badge--lime {
  background: var(--vaas-lime);
  color: var(--vaas-blue-deep);
}

.v-badge--tint {
  background: var(--vaas-blue-tint);
  color: var(--vaas-blue-deep);
}

.v-badge--dark {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
}

.v-badge--live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vaas-lime);
  box-shadow: 0 0 0 0 var(--vaas-lime);
  animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(205, 255, 41, .6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(205, 255, 41, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(205, 255, 41, 0);
  }
}

/* ---------- section titles ---------- */
.v-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--vaas-blue-deep);
  margin: 16px 0 0;
  text-wrap: balance;
}

.v-section-title em {
  font-style: normal;
  color: var(--vaas-blue);
}

.v-section-title--light {
  color: #fff;
}

.v-section-title--light em {
  color: var(--vaas-lime);
}

.v-section-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--vaas-gray-700);
  max-width: 640px;
  margin: 20px 0 0;
  text-wrap: pretty;
}

.v-section-sub--light {
  color: rgba(255, 255, 255, .72);
}

.v-section-head {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}

.v-section-head .v-section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
   Reveal on scroll
   ================================================================ */
.v-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.v-reveal.v-revealed {
  opacity: 1;
  transform: none;
}

/* ================================================================
   Header
   ================================================================ */
.v-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  padding: 18px 48px;
  gap: 32px;
  transition: background 200ms var(--ease-out), backdrop-filter 200ms var(--ease-out), border-color 200ms var(--ease-out);
  border-bottom: 1px solid transparent;
}

.v-header--scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--border);
}

.v-header__logo img {
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter 200ms;
}

.v-header--scrolled .v-header__logo img {
  filter: none !important;
}

.v-header__nav {
  display: flex;
  gap: 26px;
  margin-left: 28px;
  align-items: center;
}

.v-header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  transition: color 120ms var(--ease-out);
  position: relative;
  padding: 6px 0;
}

.v-header__nav a:hover {
  color: #fff;
}

.v-header--scrolled .v-header__nav a {
  color: var(--vaas-blue-deep);
  opacity: .72;
}

.v-header--scrolled .v-header__nav a:hover {
  color: var(--vaas-blue);
  opacity: 1;
}

.v-header__actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.v-header__actions .v-btn--lime {
  background: var(--vaas-lime) !important;
  color: var(--vaas-blue-deep) !important;
  border: 0;
}

.v-header__actions .v-btn--lime:hover {
  background: var(--vaas-lime-pressed) !important;
}

.v-header__actions .v-btn--ghost {
  color: rgba(255, 255, 255, .85);
}

.v-header__actions .v-btn--ghost:hover {
  color: #fff;
}

.v-header--scrolled .v-btn--ghost-light {
  color: var(--vaas-blue-deep);
}

/* ---------- language switcher (flag-based) ---------- */
.v-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.v-lang__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 5px 10px 5px 6px;
  color: rgba(255, 255, 255, .85);
  cursor: pointer;
  transition: color 160ms, border-color 160ms, background 160ms;
}

.v-lang__trigger:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .06);
}

.v-lang__flag {
  display: block;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .06);
}

.v-lang__caret {
  opacity: .7;
  transition: transform 180ms;
}

.v-lang--open .v-lang__caret {
  transform: rotate(180deg);
}

.v-header--scrolled .v-lang__trigger {
  color: var(--vaas-blue-deep);
  border-color: rgba(0, 11, 88, .18);
}

.v-header--scrolled .v-lang__trigger:hover {
  border-color: rgba(0, 11, 88, .5);
  color: var(--vaas-blue);
  background: rgba(0, 11, 88, .04);
}

.v-lang--dark .v-lang__trigger {
  color: var(--vaas-blue-deep);
  border-color: rgba(0, 11, 88, .18);
}

.v-lang--dark .v-lang__trigger:hover {
  color: var(--vaas-blue);
  border-color: rgba(0, 11, 88, .45);
  background: rgba(0, 11, 88, .04);
}

.v-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(0, 11, 88, .08);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 11, 88, .18);
  padding: 6px;
  list-style: none;
  margin: 0;
  min-width: 200px;
  z-index: 200;
}

.v-lang__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--vaas-blue-deep);
  font: 500 13px/1.2 var(--vaas-font-sans, system-ui, sans-serif);
  letter-spacing: 0;
  cursor: pointer;
  text-align: left;
  transition: background 140ms, color 140ms;
}

.v-lang__item-flag {
  display: inline-flex;
  flex: 0 0 auto;
}

.v-lang__item-label {
  flex: 1;
}

.v-lang__item-check {
  color: var(--vaas-blue);
  flex: 0 0 auto;
}

.v-lang__item:hover {
  background: rgba(4, 52, 244, .06);
}

.v-lang__item--active {
  color: var(--vaas-blue);
}

.v-mobile-menu__lang {
  padding: 14px 0 4px;
}

.v-mobile-menu__lang .v-lang__trigger {
  color: var(--vaas-blue-deep);
  border-color: rgba(0, 11, 88, .18);
}

/* ================================================================
   Hero. animated
   ================================================================ */
.v-hero {
  position: relative;
  min-height: 820px;
  padding: 160px 48px 120px;
  color: #fff;
  overflow: hidden;
  background: var(--vaas-blue-deep);
}

.v-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  z-index: 0;
  animation: slow-drift 40s ease-in-out infinite alternate;
}

@keyframes slow-drift {
  0% {
    transform: scale(1.02) translate(0, 0);
  }

  100% {
    transform: scale(1.12) translate(-2%, 1%);
  }
}

.v-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(4, 52, 244, .35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(0, 11, 88, .4) 0%, rgba(0, 11, 88, 0) 45%, rgba(0, 11, 88, .85) 100%);
  z-index: 1;
}

.v-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.v-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  /* Fluid scale: grows continuously from the mobile floor to the 84px desktop
     ceiling. Replaces the old discrete 84/64/clamp breakpoint steps. */
  font-size: clamp(40px, 9vw, 84px);
  line-height: .96;
  letter-spacing: -0.035em;
  margin: 24px 0 0;
  text-wrap: balance;
}

.v-hero__title em {
  font-style: normal;
}

.v-hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .78);
  max-width: 520px;
  margin: 28px 0 0;
}

.v-hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Hero live counter card */
.v-hero__live {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .5);
}

.v-hero__live-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v-hero__live-sim {
  position: absolute;
  right: 14px;
  bottom: 10px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .32);
  pointer-events: none;
}

.v-hero__counter {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.v-hero__counter-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  position: relative;
}

/* Subtle lime flash on tick. re-mounted via React key so animation restarts */
.v-hero__counter-flash {
  position: absolute;
  inset: -6px -12px;
  background: radial-gradient(ellipse at center, rgba(169, 226, 0, .22), transparent 65%);
  opacity: 0;
  pointer-events: none;
  animation: hero-pulse 2.4s var(--ease-out);
  border-radius: 8px;
}

@keyframes hero-pulse {
  0% {
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.v-hero__counter-num-inner {
  display: inline-flex;
  align-items: baseline;
}

.v-hero__counter-sep {
  display: inline-block;
  color: rgba(255, 255, 255, .55);
}

.v-hero__counter-digit {
  display: inline-block;
  width: 0.58em;
  /* tabular. monospace-ish slot */
  height: 1em;
  overflow: hidden;
  vertical-align: baseline;
  line-height: 1;
  text-align: center;
}

.v-hero__counter-digit-strip {
  display: flex;
  flex-direction: column;
  transition: transform 900ms cubic-bezier(.65, 0, .1, 1);
  /* roll feel */
  will-change: transform;
}

.v-hero__counter-digit-char {
  display: block;
  height: 1em;
  line-height: 1;
}

.v-hero__counter-blank {
  /* Padding slots (leading spaces). take no space but reserve a stable key.
     The visible number stays right-sized; only actual digits render. */
  display: none;
}

.v-hero__counter-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}

.v-hero__decisions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v-hero__decision {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 4px;
  animation: slide-in 500ms var(--ease-out);
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.v-hero__decision-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.v-hero__decision-status--approved {
  background: var(--vaas-lime);
  box-shadow: 0 0 8px var(--vaas-lime);
}

.v-hero__decision-status--review {
  background: #ffc53d;
}

.v-hero__decision-status--blocked {
  background: #ff6b6b;
}

.v-hero__decision-id {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  flex: 1;
}

.v-hero__decision-score {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}

.v-hero__decision-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vaas-lime);
  font-weight: 500;
}

/* ================================================================
   Trust bar
   ================================================================ */
.v-trust {
  background: #fff;
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.v-trust__label {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--fg-muted, #6b6f80);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  margin: 0 auto 44px;
  padding: 0 48px;
  max-width: 760px;
  text-wrap: balance;
}

.v-trust__label b {
  color: var(--vaas-blue-deep);
  font-weight: 600;
}

.v-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.v-marquee__track {
  display: flex;
  width: max-content;
  gap: 56px;
  align-items: center;
  animation: marquee 65s linear infinite;
}

.v-marquee--reverse .v-marquee__track {
  animation-direction: reverse;
  animation-duration: 75s;
  animation-delay: -37.5s;
}

.v-marquee:hover .v-marquee__track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.v-marquee+.v-marquee {
  margin-top: 36px;
}

.v-marquee__logo {
  flex-shrink: 0;
  width: 140px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  filter: none;
}

.v-marquee__logo:hover {
  opacity: 1;
  filter: none;
}

.v-marquee__logo img {
  max-width: 100%;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.v-trust__metric {
  margin: 56px auto 0;
  max-width: 1200px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.v-trust__metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.v-trust__metric-k {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--vaas-blue);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.v-trust__metric-v {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vaas-gray-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.v-trust__metric-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ================================================================
   Areas (3 cards. compliance, fraude, crédito)
   ================================================================ */
.v-areas {
  padding: 140px 48px;
  background: #fff;
}

.v-areas__grid {
  max-width: 1280px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.v-area {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 11, 88, .1);
  border-radius: 8px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 280ms var(--ease-out),
    box-shadow 280ms var(--ease-out),
    border-color 280ms var(--ease-out);
  min-height: 380px;
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(0, 11, 88, .04), 0 18px 40px -28px rgba(0, 11, 88, .18);
}

.v-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vaas-blue) 0%, var(--vaas-blue-deep) 100%);
  transform: scaleX(1);
  transform-origin: left;
}

.v-area::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(4, 52, 244, .07) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 280ms var(--ease-out);
}

.v-area:hover {
  border-color: var(--vaas-blue);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -24px rgba(4, 52, 244, .28), 0 2px 0 rgba(4, 52, 244, .08);
}

.v-area:hover::after {
  opacity: 1.4;
}

.v-area__num {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(4, 52, 244, .08);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: color 240ms var(--ease-out);
}

.v-area:hover .v-area__num {
  color: rgba(4, 52, 244, .16);
}

.v-area>* {
  position: relative;
  z-index: 1;
}

.v-area__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--vaas-blue-deep);
  border-radius: 14px;
  margin-top: 4px;
  box-shadow: 0 10px 24px -12px rgba(0, 11, 88, .5);
  transition: background 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.v-area__icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.v-area:hover .v-area__icon {
  background: var(--vaas-blue);
  transform: rotate(-3deg) scale(1.04);
}

.v-area__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--vaas-blue-deep);
  margin: 12px 0 0;
}

.v-area__copy {
  font-size: 16px;
  line-height: 1.55;
  color: var(--vaas-gray-700);
  margin: 0;
  flex: 1;
}

.v-area__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--vaas-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px dashed rgba(0, 11, 88, .08);
  width: fit-content;
}

.v-area__link .v-btn__arrow {
  font-family: var(--font-mono);
  transition: transform 200ms var(--ease-out);
}

.v-area:hover .v-area__link .v-btn__arrow {
  transform: translateX(4px);
}

.v-area__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.v-area__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 9px;
  background: rgba(4, 52, 244, .06);
  color: var(--vaas-blue);
  border: 1px solid rgba(4, 52, 244, .12);
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 200ms, border-color 200ms, color 200ms;
}

.v-area:hover .v-area__tag {
  background: rgba(4, 52, 244, .1);
  border-color: rgba(4, 52, 244, .22);
}

/* ================================================================
   Steps. how it works
   ================================================================ */
.v-steps {
  padding: 140px 48px;
  background: var(--vaas-gray-50);
  position: relative;
}

.v-steps__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.v-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
  position: relative;
}

.v-steps__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--border-strong) 0 4px, transparent 4px 8px);
  z-index: 0;
}

.v-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.v-step__num {
  width: 56px;
  height: 56px;
  background: var(--vaas-blue-deep);
  color: var(--vaas-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  border-radius: 0;
}

.v-step__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vaas-blue);
}

.v-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--vaas-blue-deep);
  margin: 0;
}

.v-step__copy {
  font-size: 15px;
  line-height: 1.55;
  color: var(--vaas-gray-700);
  margin: 0;
}

.v-step__cta {
  margin-top: 48px;
  text-align: center;
}

/* ================================================================
   Benefits. 3 cols
   ================================================================ */
.v-benefits {
  padding: 140px 48px;
  background: #fff;
}

.v-benefits__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.v-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 72px;
}

.v-benefit {
  border-top: 2px solid var(--vaas-blue);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v-benefit__k {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 96px;
  letter-spacing: -0.05em;
  line-height: .9;
  color: var(--vaas-blue-deep);
  font-variant-numeric: tabular-nums;
}

.v-benefit__k em {
  font-style: normal;
  color: var(--vaas-blue);
}

.v-benefit__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--vaas-blue-deep);
  margin: 8px 0 0;
}

.v-benefit__copy {
  font-size: 15px;
  line-height: 1.55;
  color: var(--vaas-gray-700);
  margin: 0;
}

/* ================================================================
   Dashboard preview. expanded
   ================================================================ */
.v-dash {
  padding: 96px 48px;
  background: var(--vaas-gray-50);
  position: relative;
  overflow: hidden;
}

.v-dash__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.v-dash__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.v-dash__head-text {
  text-align: center;
  max-width: 820px;
}

.v-dash__head .v-eyebrow {
  text-align: center;
}

.v-dash__head .v-section-title {
  text-align: center;
  margin: 12px 0 0;
  max-width: 820px;
}

.v-dash__cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 16px;
}

.v-dash__copy .v-section-title {
  text-align: left;
}

.v-dash__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.v-dash__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--vaas-gray-700);
  line-height: 1.45;
}

.v-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vaas-lime);
  color: var(--vaas-blue-deep);
  font-weight: 700;
  font-size: 13px;
  border-radius: 3px;
}

.v-dash__shot {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px -30px rgba(0, 11, 88, .3);
  overflow: hidden;
}

.v-dash__chrome {
  background: var(--vaas-gray-50);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.v-dash__chrome>span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(26, 24, 27, .15);
}

.v-dash__chrome-url {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vaas-gray-700);
  background: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  flex: 1;
  text-align: center;
  border: 1px solid var(--border);
}

.v-dash__body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.v-dash__card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 4px;
}

.v-dash__card-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v-dash__card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--vaas-blue-deep);
}

.v-dash__card-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
}

/* Chart */
.v-dash__chart {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.v-dash__chart-svg {
  width: 100%;
  height: 140px;
  display: block;
}

.v-dash__chart-legend {
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
}

.v-dash__chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.v-dash__chart-legend i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  display: inline-block;
}

/* KPI column */
.v-dash__kpis {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v-dash__kpi {
  background: var(--vaas-gray-50);
  padding: 12px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v-dash__kpi-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.v-dash__kpi-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--vaas-blue-deep);
  font-variant-numeric: tabular-nums;
}

.v-dash__kpi-delta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--vaas-blue);
  font-weight: 500;
}

.v-dash__kpi--accent {
  background: var(--vaas-blue-deep);
}

.v-dash__kpi--accent .v-dash__kpi-lbl {
  color: rgba(255, 255, 255, .6);
}

.v-dash__kpi--accent .v-dash__kpi-val {
  color: var(--vaas-lime);
}

.v-dash__kpi--accent .v-dash__kpi-delta {
  color: rgba(255, 255, 255, .6);
}

/* Queue */
.v-dash__queue {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.v-dash__queue-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.v-dash__row {
  display: grid;
  grid-template-columns: auto 1.2fr 1fr 1fr 0.6fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-family: var(--font-mono);
}

.v-dash__row:last-child {
  border-bottom: 0;
}

.v-dash__row--head {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  font-weight: 500;
  padding-top: 0;
}

.v-dash__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.v-dash__dot--ok {
  background: var(--vaas-lime);
}

.v-dash__dot--warn {
  background: #ffc53d;
}

.v-dash__dot--err {
  background: #ff6b6b;
}

.v-dash__row-id {
  color: var(--vaas-blue-deep);
  font-weight: 500;
}

.v-dash__row-name {
  color: var(--vaas-gray-700);
  font-family: var(--font-sans);
  font-weight: 500;
}

.v-dash__row-score {
  color: var(--vaas-blue);
  font-weight: 600;
}

.v-dash__row-time {
  color: var(--fg-muted);
}

.v-dash__row-badge {
  font-size: 9px;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.v-dash__row-badge--ok {
  background: rgba(205, 255, 41, .35);
  color: var(--vaas-blue-deep);
}

.v-dash__row-badge--warn {
  background: rgba(255, 197, 61, .25);
  color: #7a5800;
}

.v-dash__row-badge--err {
  background: rgba(255, 107, 107, .18);
  color: #a02929;
}

/* ================================================================
   Bento. platform features (substitui dash__shot)
   ================================================================ */
.v-bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-areas:
    "hero  hero  ai"
    "hero  hero  ai"
    "hero  hero  ai"
    "data  rules api"
    "data  rules api";
  /* Fixed rows so animated content inside tiles doesn't reflow the grid */
  grid-template-rows: repeat(3, 140px) repeat(2, 190px);
  gap: 16px;
}

/* Lock tile content so expanding/growing children don't push the tile */
.v-bento__tile {
  min-height: 0;
  min-width: 0;
}

.v-bento__tile>* {
  min-height: 0;
}

.v-bento__tile--hero {
  grid-area: hero;
}

.v-bento__tile--ai {
  grid-area: ai;
}

.v-bento__tile--data {
  grid-area: data;
  padding: 18px 20px;
}

.v-bento__tile--monitor {
  grid-area: rules;
}

.v-bento__tile--audit {
  grid-area: audit;
  padding: 18px 20px;
}

.v-bento__tile--api {
  grid-area: api;
  padding: 18px 20px;
}

.v-bento__tile--data .v-bento__title,
.v-bento__tile--audit .v-bento__title,
.v-bento__tile--api .v-bento__title {
  font-size: 17px;
}

.v-bento__tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.v-bento__tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -20px rgba(7, 9, 20, .18);
}

.v-bento__kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(7, 9, 20, .45);
}

.v-bento__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--vaas-blue-deep);
  text-wrap: balance;
}

/* Hero tile. full width, richer content */
.v-bento__tile--hero {
  background: linear-gradient(180deg, #0A0C1C 0%, #12132A 100%);
  color: #fff;
  padding: 28px;
  gap: 20px;
}

.v-bento__tile--hero .v-bento__kicker {
  color: rgba(255, 255, 255, .45);
}

.v-bento__tile--hero .v-bento__title {
  color: #fff;
  font-size: 24px;
}

.v-bento__tile-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v-bento__tile-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: 0.02em;
}

.v-bento__dot {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, .3);
  border-radius: 50%;
}

/* Engine tile viz */
.v-bento__engine-box {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
}

.v-bento__engine-in,
.v-bento__engine-out {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 12px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v-bento__engine-out b {
  color: var(--vaas-lime);
  font-weight: 600;
  font-size: 16px;
}

.v-bento__engine-dot--in {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vaas-lime);
  box-shadow: 0 0 0 4px rgba(200, 255, 74, .15);
  animation: v-pulse 1.6s ease-in-out infinite;
}

@keyframes v-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.v-bento__engine-rules {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 4px;
}

.v-bento__engine-rule {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .82);
  opacity: 0;
  animation: v-slide-in 500ms var(--ease-out) forwards;
}

@keyframes v-slide-in {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.v-bento__engine-check {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.v-bento__engine-verdict {
  color: var(--vaas-lime);
  font-weight: 600;
}

/* ---- Engine: KYC policy as editable sentences (minimalist) ---- */
.v-bento__engine {
  flex: 1;
  min-height: 260px;
  display: flex;
  align-items: stretch;
}

.v-bento__policy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Policy header */
.v-bento__policy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v-bento__policy-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.v-bento__policy-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: var(--vaas-lime);
}

.v-bento__policy-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vaas-lime);
  box-shadow: 0 0 6px rgba(205, 255, 41, 0.6);
  animation: v-policy-pulse 1.8s ease-in-out infinite;
}

@keyframes v-policy-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* List of policy steps */
.v-bento__policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

/* Each step */
.v-bento__policy-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: baseline;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.v-bento__policy-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v-bento__policy-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
  font-weight: 500;
  padding-top: 2px;
}

.v-bento__policy-body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.01em;
  font-weight: 300;
}

.v-bento__policy-kw {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vaas-lime);
  padding: 2px 7px;
  background: rgba(205, 255, 41, 0.08);
  border-radius: 3px;
  align-self: center;
}

.v-bento__policy-sentence {
  display: inline;
}

/* Chip variables. editable fields in the policy */
.v-bento__policy-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  margin: 0 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  font-size: 14.5px;
  color: #fff;
  font-weight: 400;
  line-height: 1.3;
  transition: all 300ms var(--ease-out);
}

.v-bento__policy-chip.is-active {
  border-color: rgba(205, 255, 41, 0.35);
  background: rgba(205, 255, 41, 0.06);
}

.v-bento__policy-chip-val {
  display: inline-block;
  animation: v-policy-chip-swap 380ms var(--ease-out);
}

@keyframes v-policy-chip-swap {
  0% {
    opacity: 0;
    transform: translateY(-4px);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .v-bento__policy-status-dot {
    animation: none;
  }

  .v-bento__policy-chip-val {
    animation: none;
  }

  .v-bento__policy-step {
    transition: none;
  }
}

@media (max-width: 700px) {
  .v-bento__policy-body {
    font-size: 15px;
  }

  .v-bento__policy-chip {
    font-size: 13px;
    padding: 2px 6px;
  }
}
}
}

/* AI tile. document extraction */
.v-bento__desc {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(7, 9, 20, .6);
  margin: 4px 0 14px;
}

.v-bento__extract {
  display: grid;
  grid-template-columns: 1fr 20px 1.25fr;
  gap: 10px;
  align-items: stretch;
  margin-top: auto;
}

.v-bento__extract-doc {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 11px;
  overflow: hidden;
  min-height: 150px;
}

.v-bento__extract-doc-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.v-bento__extract-doc-ico {
  font-size: 16px;
}

.v-bento__extract-doc-name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vaas-blue-deep);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.v-bento__extract-doc-size {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: rgba(7, 9, 20, .5);
  margin-top: 1px;
}

.v-bento__extract-doc-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v-bento__extract-doc-line {
  height: 4px;
  background: rgba(7, 9, 20, .08);
  border-radius: 2px;
}

.v-bento__extract-doc-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  height: 30px;
  background: linear-gradient(180deg, transparent, rgba(200, 255, 74, .35), transparent);
  animation: v-extract-scan 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes v-extract-scan {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    transform: translateY(110px);
    opacity: 0;
  }
}

.v-bento__extract-arrow {
  align-self: center;
  font-size: 18px;
  color: var(--vaas-blue);
  text-align: center;
  opacity: .6;
}

.v-bento__extract-out {
  background: var(--vaas-blue-deep);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  overflow: hidden;
}

.v-bento__extract-out-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 6px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.v-bento__extract-out-head>span:first-child {
  color: var(--vaas-lime);
}

.v-bento__extract-out-agent {
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
}

.v-bento__extract-out-body {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.55;
  flex: 1;
}

.v-bento__extract-brace {
  color: rgba(255, 255, 255, .5);
}

.v-bento__extract-row {
  display: flex;
  gap: 6px;
  padding-left: 10px;
  opacity: .4;
  transition: opacity 300ms var(--ease-out);
  white-space: nowrap;
}

.v-bento__extract-row.is-filled {
  opacity: 1;
}

.v-bento__extract-k {
  color: rgba(200, 255, 74, .85);
}

.v-bento__extract-v {
  color: #fff;
}

.v-bento__extract-skeleton {
  display: inline-block;
  width: 64px;
  height: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
  background-size: 200% 100%;
  animation: v-extract-skeleton 1.2s linear infinite;
  border-radius: 2px;
  vertical-align: middle;
}

@keyframes v-extract-skeleton {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Data tile */
.v-bento__data-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.v-bento__chip {
  display: inline-block;
  padding: 5px 9px;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: rgba(7, 9, 20, .7);
  background: var(--vaas-gray-100, #f5f7fb);
}

.v-bento__chip--more {
  background: var(--vaas-blue-deep);
  color: #fff;
  border-color: var(--vaas-blue-deep);
  font-weight: 600;
}

/* Rules tile. smart monitoring rules */
.v-bento__rules {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.v-bento__rule {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.v-bento__rule--crit {
  border-left-color: #ff5c5c;
}

.v-bento__rule--high {
  border-left-color: #ff9a50;
}

.v-bento__rule--mid {
  border-left-color: #ffc53d;
}

.v-bento__rule-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v-bento__rule-body {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 26px;
}

.v-bento__rule-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vaas-blue);
  background: rgba(4, 52, 244, .08);
  padding: 2px 5px;
  border-radius: 3px;
  min-width: 22px;
  text-align: center;
}

.v-bento__rule-label--alt {
  color: var(--vaas-blue-deep);
  background: rgba(7, 9, 20, .06);
}

.v-bento__rule-cond {
  font-size: 12px;
  color: var(--vaas-blue-deep);
  font-weight: 500;
  flex: 1;
  line-height: 1.3;
}

.v-bento__rule-then {
  font-size: 11.5px;
  color: rgba(7, 9, 20, .65);
  line-height: 1.3;
}

.v-bento__rule-count {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: var(--vaas-blue-deep);
  padding: 2px 6px;
  border-radius: 3px;
  min-width: 22px;
  text-align: center;
}

.v-bento__rule--crit .v-bento__rule-count {
  background: #ff5c5c;
}

.v-bento__rule--high .v-bento__rule-count {
  background: #ff9a50;
}

.v-bento__rule--mid .v-bento__rule-count {
  background: #ffc53d;
  color: var(--vaas-blue-deep);
}

/* ---- Monitoring feed (new, replaces old rules UI) ---- */
.v-bento__feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  min-height: 0;
}

.v-bento__feed-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(7, 9, 20, 0.55);
}

.v-bento__feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5c5c;
  box-shadow: 0 0 0 0 rgba(255, 92, 92, .6);
  animation: v-feed-dot-pulse 1.6s ease-out infinite;
}

@keyframes v-feed-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 92, 92, .55);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(255, 92, 92, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 92, 92, 0);
  }
}

.v-bento__feed-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  flex: 1;
  justify-content: space-between;
}

.v-bento__feed-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  animation: v-feed-in 450ms var(--ease-out);
  transform-origin: top center;
}

@keyframes v-feed-in {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(.96);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -8px;
  }

  40% {
    opacity: 1;
    max-height: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 0;
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    max-height: 80px;
  }
}

.v-bento__feed-item--crit {
  border-left: 3px solid #ff5c5c;
}

.v-bento__feed-item--high {
  border-left: 3px solid #ff9a50;
}

.v-bento__feed-item--mid {
  border-left: 3px solid #ffc53d;
}

.v-bento__feed-pill {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  color: #fff;
  white-space: nowrap;
}

.v-bento__feed-pill--crit {
  background: #ff5c5c;
}

.v-bento__feed-pill--high {
  background: #ff9a50;
}

.v-bento__feed-pill--mid {
  background: #ffc53d;
  color: var(--vaas-blue-deep);
}

.v-bento__feed-text {
  min-width: 0;
}

.v-bento__feed-type {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--vaas-blue-deep);
  line-height: 1.25;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v-bento__feed-subject {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(7, 9, 20, .55);
  line-height: 1.3;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v-bento__feed-age {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(7, 9, 20, .45);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .v-bento__feed-item {
    animation: none;
  }

  .v-bento__feed-dot {
    animation: none;
  }
}

/* Audit tile */
.v-bento__audit-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(7, 9, 20, .75);
  margin-top: auto;
  padding: 12px;
  background: var(--vaas-gray-100, #f5f7fb);
  border-left: 2px solid var(--vaas-blue);
}

.v-bento__audit-lines b {
  color: var(--vaas-blue);
  font-weight: 500;
  margin-right: 8px;
}

/* API tile */
.v-bento__code {
  background: #0A0C1C;
  color: #c8ff4a;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  padding: 14px 16px;
  margin: 0;
  overflow: hidden;
  white-space: pre-wrap;
  margin-top: auto;
  border-radius: 2px;
}

/* DataHub CTA */
.v-dhub__cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}


================================================================*/ .v-testi {
  padding: 140px 48px;
  background: #fff;
  overflow: hidden;
}

.v-testi__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.v-testi__track-wrap {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
}

.v-testi__track {
  display: flex;
  gap: 24px;
  transition: transform 500ms var(--ease-out);
}

.v-testi__card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--vaas-gray-50);
  border: 1px solid var(--border);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 360px;
}

.v-testi__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--vaas-blue-deep);
  margin: 0;
  text-wrap: pretty;
  flex: 1;
}

.v-testi__metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: #fff;
  border-left: 3px solid var(--vaas-blue);
}

.v-testi__metric-k {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--vaas-blue);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.v-testi__metric-v {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vaas-gray-700);
}

.v-testi__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.v-testi__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vaas-blue-deep);
  color: var(--vaas-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.v-testi__who {
  display: flex;
  flex-direction: column;
}

.v-testi__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--vaas-blue-deep);
}

.v-testi__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vaas-gray-700);
}

.v-testi__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
}

.v-testi__dots {
  display: flex;
  gap: 8px;
}

.v-testi__dot {
  width: 24px;
  height: 3px;
  background: var(--border-strong);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 160ms;
}

.v-testi__dot--active {
  background: var(--vaas-blue);
}

.v-testi__arrows {
  display: flex;
  gap: 8px;
}

.v-testi__arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  color: var(--vaas-blue-deep);
  font-family: var(--font-mono);
  font-size: 18px;
  transition: all 160ms var(--ease-out);
}

.v-testi__arrow:hover {
  background: var(--vaas-blue);
  color: #fff;
  border-color: var(--vaas-blue);
}

.v-testi__arrow:disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* ================================================================
   Case highlights. 3 area-tagged results
   ================================================================ */
.v-cases {
  padding: 140px 48px;
  background: var(--vaas-blue-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.v-cases::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/brand-bg-v-split.jpg');
  background-size: cover;
  background-position: center;
  opacity: .1;
  pointer-events: none;
}

.v-cases__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.v-cases__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 72px;
}

.v-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.v-case {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 240ms var(--ease-out);
}

.v-case:hover {
  background: rgba(255, 255, 255, .06);
  border-color: var(--vaas-lime);
  transform: translateY(-3px);
}

.v-case__area {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vaas-lime);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v-case__metric {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: .95;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.v-case__metric em {
  font-style: normal;
  color: var(--vaas-lime);
}

.v-case__copy {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .72);
  margin: 0;
  flex: 1;
}

.v-case__client {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.v-case__client-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

.v-case__client-kind {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
}

/* ================================================================
   Final CTA
   ================================================================ */
section.v-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(440px, 40vw, 660px);
  padding: 72px 9%;
  color: #fff;
  text-align: center;
  background-color: #0c3cf6;
  background-image: url('../assets/credito-cta-chevron.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.v-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

.v-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.v-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 20px 0 0;
  text-wrap: balance;
}

.v-cta__title em {
  font-style: normal;
  color: var(--vaas-lime);
}

.v-cta__title-lime {
  color: var(--vaas-lime);
}

.v-cta__title-white {
  color: #fff;
}

.v-cta__sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(255, 255, 255, .86);
  line-height: 1.5;
  margin: 22px auto 0;
  max-width: 600px;
  text-wrap: pretty;
}

.v-cta__row {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   Footer
   ================================================================ */
.v-footer {
  background: var(--vaas-blue-deep);
  color: rgba(255, 255, 255, .7);
  padding: 80px 48px 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.v-footer__top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3.1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.v-footer__brand img {
  height: 28px;
  margin-bottom: 20px;
}

.v-footer__brand p {
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
  margin: 0;
}

.v-footer__certs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  max-width: 320px;
}

.v-footer__certs img {
  height: 60px;
  width: auto;
  opacity: .9;
  filter: grayscale(0.1) brightness(1.05);
  transition: opacity .25s ease, filter .25s ease;
}

.v-footer__certs img:hover {
  opacity: 1;
  filter: none;
}

.v-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.v-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v-footer__h {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 4px;
}

.v-footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  transition: color 120ms var(--ease-out);
}

.v-footer__col a:hover {
  color: var(--vaas-lime);
}

.v-footer__bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: 0.04em;
}

.v-footer__links {
  display: flex;
  gap: 20px;
}

.v-footer__links a {
  color: inherit;
  transition: color 120ms;
}

.v-footer__links a:hover {
  color: var(--vaas-lime);
}

.v-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.v-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  transition: color 160ms, border-color 160ms, background-color 160ms;
}

.v-footer__social a:hover {
  color: var(--vaas-lime);
  border-color: var(--vaas-lime);
  background: rgba(205, 255, 41, .08);
}

/* ================================================================
   Modal. Agendar reunião
   ================================================================ */
.v-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 11, 88, .6);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fade-in 200ms var(--ease-out);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.v-modal__panel {
  background: #fff;
  max-width: 520px;
  width: 100%;
  position: relative;
  padding: 40px;
  animation: pop-in 240ms var(--ease-out);
  box-shadow: 0 60px 120px -20px rgba(0, 11, 88, .6);
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.v-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--vaas-blue-deep);
  transition: all 120ms;
}

.v-modal__close:hover {
  background: var(--vaas-gray-50);
}

.v-modal__eyebrow {
  color: var(--vaas-blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v-modal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--vaas-blue-deep);
  margin: 12px 0 0;
}

.v-modal__sub {
  font-size: 15px;
  line-height: 1.5;
  color: var(--vaas-gray-700);
  margin: 8px 0 24px;
}

.v-modal form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v-input {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: #fff;
  color: var(--vaas-blue-deep);
  transition: border-color 120ms;
  width: 100%;
}

.v-input:focus {
  outline: none;
  border-color: var(--vaas-blue);
  box-shadow: var(--shadow-focus);
}

.v-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.v-modal .v-btn {
  margin-top: 8px;
  justify-content: center;
}

/* Form field. label + control + error */
.v-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v-field__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vaas-gray-700);
}

.v-field__label .v-field__req {
  color: #d11a2a;
  margin-left: 2px;
}

.v-field--invalid .v-input {
  border-color: #d11a2a;
  background: #fff7f7;
  box-shadow: 0 0 0 3px rgba(209, 26, 42, 0.10);
}

.v-field--invalid .v-field__label {
  color: #d11a2a;
}

.v-field__err {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: #b3142a;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: v-field-shake 280ms var(--ease-out);
}

.v-field__err::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: #d11a2a;
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes v-field-shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-3px);
  }

  40% {
    transform: translateX(3px);
  }

  60% {
    transform: translateX(-2px);
  }

  80% {
    transform: translateX(2px);
  }
}

.v-modal__submit-err {
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: #b3142a;
  padding: 10px 12px;
  background: #fff7f7;
  border: 1px solid rgba(209, 26, 42, 0.25);
  border-radius: 4px;
}

/* Loading state on submit button */
.v-modal .v-btn[disabled] {
  opacity: 0.65;
  cursor: wait;
}

/* Elegant alert popup (nested above modal) */
.v-alert {
  position: fixed;
  inset: 0;
  background: rgba(0, 11, 88, .5);
  backdrop-filter: blur(6px);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fade-in 180ms var(--ease-out);
}

.v-alert__panel {
  background: #fff;
  max-width: 440px;
  width: 100%;
  padding: 32px 32px 28px;
  position: relative;
  box-shadow: 0 60px 120px -20px rgba(0, 11, 88, .6);
  animation: pop-in 220ms var(--ease-out);
  border-top: 3px solid var(--vaas-blue);
}

.v-alert__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vaas-blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.v-alert__eyebrow {
  color: var(--vaas-blue);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v-alert__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--vaas-blue-deep);
  margin: 8px 0 8px;
  line-height: 1.2;
}

.v-alert__msg {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--vaas-gray-700);
  margin: 0 0 20px;
}

.v-alert__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.v-alert .v-btn {
  justify-content: center;
}

.v-modal__success {
  text-align: center;
  padding: 20px 0;
}

.v-modal__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--vaas-lime);
  color: var(--vaas-blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
}

/* ================================================================
   Trust bar. marquee of client logos
   ================================================================ */
.v-trust {
  background: #fff;
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.v-trust__label {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--fg-muted, #6b6f80);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  margin: 0 auto 44px;
  padding: 0 48px;
  max-width: 760px;
  text-wrap: balance;
}

.v-trust__label b {
  color: var(--vaas-blue-deep);
  font-weight: 600;
}

.v-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.v-marquee__track {
  display: flex;
  width: max-content;
  gap: 56px;
  align-items: center;
  animation: marquee 65s linear infinite;
}

.v-marquee--reverse .v-marquee__track {
  animation-direction: reverse;
  animation-duration: 75s;
}

.v-marquee:hover .v-marquee__track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.v-marquee+.v-marquee {
  margin-top: 36px;
}

.v-marquee__logo {
  flex-shrink: 0;
  width: 140px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  filter: none;
}

.v-marquee__logo:hover {
  opacity: 1;
  filter: none;
}

.v-marquee__logo img {
  max-width: 100%;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.v-trust__metric {
  margin: 56px auto 0;
  max-width: 1200px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.v-trust__metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.v-trust__metric-k {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--vaas-blue);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.v-trust__metric-v {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vaas-gray-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.v-trust__metric-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ================================================================
   Tweaks panel
   ================================================================ */
.v-tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  background: #fff;
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 60px -10px rgba(0, 11, 88, .3);
  z-index: 90;
  font-family: var(--font-sans);
  animation: tweaks-in 240ms var(--ease-out);
}

@keyframes tweaks-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.v-tweaks__h {
  padding: 14px 16px;
  background: var(--vaas-blue-deep);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v-tweaks__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.v-tweaks__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v-tweaks__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--vaas-gray-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v-tweaks__pills {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.v-tweaks__pill {
  font-size: 11px;
  padding: 6px 10px;
  border: 1px solid var(--border-strong);
  background: #fff;
  cursor: pointer;
  border-radius: 3px;
  color: var(--vaas-blue-deep);
  transition: all 120ms;
}

.v-tweaks__pill--active {
  background: var(--vaas-blue);
  color: #fff;
  border-color: var(--vaas-blue);
}

.v-tweaks__input {
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 8px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  width: 100%;
}


/* ================================================================
   MOBILE HAMBURGER + DRAWER
   ================================================================ */
.v-header__burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 160ms;
}

.v-header__burger span {
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 220ms var(--ease-out), opacity 160ms;
}

.v-header--scrolled .v-header__burger {
  border-color: var(--border-strong);
}

.v-header--scrolled .v-header__burger span {
  background: var(--vaas-blue-deep);
}

.v-header--menu-open .v-header__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.v-header--menu-open .v-header__burger span:nth-child(2) {
  opacity: 0;
}

.v-header--menu-open .v-header__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Quando o menu está aberto: header transparente (pra deixar o drawer escuro
   aparecer por baixo no canto direito) e burger sempre branco. */
.v-header--menu-open {
  background: transparent !important;
  border-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.v-header--menu-open .v-header__burger {
  border-color: rgba(255, 255, 255, .35) !important;
}

.v-header--menu-open .v-header__burger span {
  background: #fff !important;
}

.v-header--menu-open .v-header__logo img {
  filter: brightness(0) invert(1) !important;
}

.v-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 440ms;
}

.v-mobile-menu--open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s linear 0s;
}

/* Backdrop semi-transparente. clicável para fechar */
.v-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 11, 88, 0.45);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  transition: opacity 360ms var(--ease-out), backdrop-filter 360ms var(--ease-out), -webkit-backdrop-filter 360ms var(--ease-out);
}

.v-mobile-menu--open .v-mobile-menu__backdrop {
  opacity: 1;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Drawer lateral. desliza pela direita com easing suave */
.v-mobile-menu__drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86%, 360px);
  background: var(--vaas-blue-deep);
  color: #fff;
  padding: 84px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 440ms cubic-bezier(.16, 1, .3, 1);
  box-shadow: -24px 0 60px -20px rgba(0, 0, 0, .5);
}

.v-mobile-menu--open .v-mobile-menu__drawer {
  transform: translateX(0);
}

/* Entrada escalonada das linhas do menu (fade + leve deslize). */
@keyframes vmm-item-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.v-mobile-menu--open .v-mobile-menu__nav>*,
.v-mobile-menu--open .v-mobile-menu__actions>* {
  animation: vmm-item-in 460ms cubic-bezier(.16, 1, .3, 1) both;
}

.v-mobile-menu--open .v-mobile-menu__nav>*:nth-child(1) {
  animation-delay: 140ms;
}

.v-mobile-menu--open .v-mobile-menu__nav>*:nth-child(2) {
  animation-delay: 195ms;
}

.v-mobile-menu--open .v-mobile-menu__nav>*:nth-child(3) {
  animation-delay: 250ms;
}

.v-mobile-menu--open .v-mobile-menu__nav>*:nth-child(4) {
  animation-delay: 305ms;
}

.v-mobile-menu--open .v-mobile-menu__nav>*:nth-child(5) {
  animation-delay: 360ms;
}

.v-mobile-menu--open .v-mobile-menu__nav>*:nth-child(6) {
  animation-delay: 415ms;
}

.v-mobile-menu--open .v-mobile-menu__nav>*:nth-child(7) {
  animation-delay: 470ms;
}

.v-mobile-menu--open .v-mobile-menu__actions>*:nth-child(1) {
  animation-delay: 500ms;
}

.v-mobile-menu--open .v-mobile-menu__actions>*:nth-child(2) {
  animation-delay: 545ms;
}

@media (prefers-reduced-motion: reduce) {
  .v-mobile-menu__drawer {
    transition-duration: 200ms;
  }

  .v-mobile-menu--open .v-mobile-menu__nav>*,
  .v-mobile-menu--open .v-mobile-menu__actions>* {
    animation: none;
  }
}

.v-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v-mobile-menu__nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.v-mobile-menu__nav a:last-child {
  border-bottom: 0;
}

.v-mobile-menu__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v-mobile-menu__actions .v-btn {
  justify-content: center;
  width: 100%;
}

.v-mobile-menu__actions .v-btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}

/* ================================================================
   NAV DROPDOWNS (desktop). simple + mega
   ================================================================ */
.v-nav-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.v-nav-drop__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px 0;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  transition: color 120ms var(--ease-out);
  letter-spacing: 0;
}

.v-nav-drop__trigger:hover,
.v-nav-drop--open .v-nav-drop__trigger {
  color: #fff;
}

.v-nav-drop__caret {
  transition: transform 180ms var(--ease-out);
  opacity: .7;
}

.v-nav-drop--open .v-nav-drop__caret {
  transform: rotate(180deg);
  opacity: 1;
}

.v-header--scrolled .v-nav-drop__trigger {
  color: var(--vaas-blue-deep);
  opacity: .72;
}

.v-header--scrolled .v-nav-drop__trigger:hover,
.v-header--scrolled .v-nav-drop--open .v-nav-drop__trigger {
  color: var(--vaas-blue);
  opacity: 1;
}

/* Panel */
.v-nav-drop__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(7, 9, 20, .06);
  border-radius: 14px;
  box-shadow: 0 28px 56px -22px rgba(0, 11, 88, .28), 0 10px 22px -14px rgba(7, 9, 20, .14);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s linear 220ms;
  z-index: 60;
}

.v-nav-drop--open .v-nav-drop__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s linear 0s;
}

/* Invisible bridge so hover stays engaged in the gap between trigger and panel */
.v-nav-drop__panel::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.v-nav-drop__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.v-nav-drop__list a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vaas-blue-deep) !important;
  text-decoration: none;
  transition: background 120ms var(--ease-out), color 120ms var(--ease-out);
  opacity: 1 !important;
}

.v-nav-drop__list a:hover {
  background: var(--vaas-gray-100, #f5f7fb);
  color: var(--vaas-blue) !important;
}

/* Inactive item. destination not built yet */
.v-nav-drop__static {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vaas-blue-deep);
  opacity: .5;
  cursor: default;
  user-select: none;
}

.v-nav-drop__static em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--vaas-gray-100, #f5f7fb);
  color: var(--vaas-blue);
  opacity: .9;
}

/* Mega panel */
.v-nav-drop__panel--mega {
  left: 0;
  transform: translateY(-8px);
  width: min(1040px, calc(100vw - 96px));
  padding: 22px 22px 14px;
  overflow: hidden;
}

.v-nav-drop--open .v-nav-drop__panel--mega {
  transform: translateY(0);
}

/* Eyebrow above the grid */
.v-nav-mega__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(7, 9, 20, .42);
}

.v-nav-mega__eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(7, 9, 20, .08), rgba(7, 9, 20, 0));
}

/* Overview link — secondary emphasis row above the module grid.
   Left edge aligns with the eyebrow/columns; no boxed background so it
   reads as a quiet header link, subordinate to the module titles. */
.v-nav-mega__overview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 8px 14px;
  padding: 0 0 13px;
  border: 0;
  border-bottom: 1px solid rgba(7, 9, 20, .09);
  border-radius: 0;
  background: none;
  text-decoration: none;
  color: var(--vaas-blue-deep, #000b58);
  transition: color .18s ease;
}

.v-nav-mega__overview:hover {
  border-color: rgba(7, 9, 20, .09);
  background: none;
  color: var(--vaas-blue, #0434f4);
}

.v-nav-mega__overview-txt {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.v-nav-mega__overview-txt b {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.v-nav-mega__overview-txt span {
  font-size: 12px;
  color: rgba(7, 9, 20, .5);
}

.v-nav-mega__overview svg {
  margin-left: auto;
  flex: 0 0 auto;
  color: var(--vaas-blue, #0434f4);
  transition: transform .18s ease;
}

.v-nav-mega__overview:hover svg {
  transform: translateX(3px);
}

/* Mobile overview link — secondary emphasis (smaller/lighter than the
   module card titles, which are the primary categories). Selector is scoped
   under .v-mobile-acc__mega to beat `.v-mobile-menu__nav a` (which otherwise
   forces 24px/600/#fff on this anchor). */
.v-mobile-acc__mega .v-mobile-acc__overview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 4px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .64);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.v-mobile-acc__mega .v-mobile-acc__overview b {
  font-weight: 500;
}

.v-mobile-acc__mega .v-mobile-acc__overview svg {
  margin-left: auto;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .5);
}

.v-nav-mega {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.v-nav-mega__col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out);
  opacity: 1 !important;
}

.v-nav-mega__col:hover {
  background: #f6f8fc;
  border-color: rgba(4, 52, 244, .08);
}

.v-nav-mega__col:hover .v-nav-mega__title {
  color: var(--vaas-blue) !important;
}

.v-nav-mega__col:hover .v-nav-mega__icon {
  border-color: rgba(4, 52, 244, .25);
  background: #fff;
}

.v-nav-mega__col:hover .v-nav-mega__icon img {
  opacity: 1;
}

.v-nav-mega__col:hover .v-nav-mega__arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* The main link (icon + title + desc) inside a column. stretched-clickable */
.v-nav-mega__main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  opacity: 1 !important;
}

/* Icon plate */
.v-nav-mega__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #f3f6fb;
  border: 1px solid rgba(7, 9, 20, .06);
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.v-nav-mega__icon img {
  width: 22px;
  height: 22px;
  opacity: .78;
  transition: opacity 160ms var(--ease-out);
}

.v-nav-mega__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vaas-blue-deep) !important;
  text-decoration: none;
  transition: color 160ms var(--ease-out);
  opacity: 1 !important;
}

.v-nav-mega__arrow {
  opacity: 0;
  margin-left: -2px;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.v-nav-mega__desc {
  margin: 0;
  padding-right: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(7, 9, 20, .55);
  font-weight: 400;
  flex: 1;
}

.v-nav-mega__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed rgba(7, 9, 20, .08);
}

.v-nav-mega__tags-label {
  display: block;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(7, 9, 20, .4);
  margin-bottom: 2px;
}

/* Reforçando o override pra vencer .v-header--scrolled .v-header__nav a */
.v-header__nav .v-nav-mega__tag,
.v-nav-mega__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--vaas-blue-deep) !important;
  background: #fff;
  border: 1px solid rgba(4, 52, 244, .18);
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(7, 9, 20, .04);
  transition: background 140ms var(--ease-out), color 140ms var(--ease-out),
    border-color 140ms var(--ease-out), transform 140ms var(--ease-out),
    box-shadow 140ms var(--ease-out);
  opacity: 1 !important;
}

.v-nav-mega__tag::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .45;
}

.v-header__nav .v-nav-mega__tag:hover,
.v-nav-mega__tag:hover {
  background: var(--vaas-blue);
  color: #fff !important;
  border-color: var(--vaas-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(4, 52, 244, .4);
}

.v-nav-mega__tag:hover::before {
  opacity: 1;
}

/* Quando hover no card inteiro (não no pill), apenas destaca o pill levemente */
.v-nav-mega__col:hover .v-nav-mega__tag {
  background: #fff;
  border-color: rgba(4, 52, 244, .28);
}

.v-nav-mega__col:hover .v-nav-mega__tag:hover {
  background: var(--vaas-blue);
  color: #fff !important;
  border-color: var(--vaas-blue);
}

/* Modules variant (4 cards, title + desc, optional badge) */
.v-nav-drop__panel--modules {
  width: min(1240px, calc(100vw - 96px));
}

.v-nav-mega--modules {
  grid-template-columns: repeat(4, 1fr);
}

.v-nav-mega--modules .v-nav-mega__col {
  padding: 16px;
  gap: 12px;
}

.v-nav-mega--modules .v-nav-mega__title {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-display, var(--font-sans));
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--vaas-blue-deep) !important;
}

.v-nav-mega--modules .v-nav-mega__desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(7, 9, 20, .58);
  padding-right: 0;
}

.v-nav-mega__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--vaas-blue-deep);
  background: var(--vaas-lime, #CDFF29);
  border-radius: 3px;
  line-height: 1.4;
}

/* Footer bar (secondary actions) */
.v-nav-mega__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 14px 16px 6px;
  border-top: 1px solid rgba(7, 9, 20, .06);
}

.v-nav-mega__footer-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--vaas-blue) !important;
  text-decoration: none;
  opacity: 1 !important;
  transition: gap 160ms var(--ease-out);
}

.v-nav-mega__footer-primary:hover {
  gap: 12px;
}

.v-nav-mega__footer-primary svg {
  transition: transform 160ms var(--ease-out);
}

.v-nav-mega__footer-primary:hover svg {
  transform: translateX(2px);
}

.v-nav-mega__footer-secondary {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(7, 9, 20, .5) !important;
  text-decoration: none;
  opacity: 1 !important;
  transition: color 160ms var(--ease-out);
}

.v-nav-mega__footer-secondary:hover {
  color: var(--vaas-blue-deep) !important;
}

/* Static (no destination yet). renders as plain, non-clickable text */
.v-nav-mega__footer--static {
  cursor: default;
  pointer-events: none;
}

.v-nav-mega__footer-primary.v-nav-mega__footer--static {
  color: rgba(7, 9, 20, .45) !important;
  font-weight: 500;
}

.v-nav-mega__footer-primary.v-nav-mega__footer--static:hover {
  gap: 8px;
}

/* Top-level nav item with no destination yet. plain text, not a link */
.v-header__nav .v-nav-static {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .45);
  padding: 6px 0;
  cursor: default;
  user-select: none;
}

.v-header--scrolled .v-header__nav .v-nav-static {
  color: var(--vaas-blue-deep);
  opacity: .42;
}

/* ================================================================
   MOBILE ACCORDION (inside mobile drawer)
   ================================================================ */
.v-mobile-acc {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.v-mobile-acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  color: #fff;
  font: inherit;
  font-size: 22px;
  font-weight: 500;
  padding: 16px 0;
  cursor: pointer;
  text-align: left;
}

.v-mobile-acc__caret {
  transition: transform 220ms var(--ease-out);
  opacity: .55;
}

.v-mobile-acc--open .v-mobile-acc__caret {
  transform: rotate(180deg);
  opacity: 1;
}

.v-mobile-acc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms var(--ease-out);
}

.v-mobile-acc--open .v-mobile-acc__body {
  max-height: 1000px;
}

.v-mobile-acc__list {
  list-style: none;
  margin: 0;
  padding: 4px 0 18px 0;
  display: flex;
  flex-direction: column;
}

.v-mobile-acc__list a {
  display: block;
  padding: 9px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.v-mobile-acc__list a:hover {
  color: #fff;
}

.v-mobile-acc__static {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, .45);
  cursor: default;
  user-select: none;
}

.v-mobile-acc__static em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .7);
}

.v-mobile-acc__mega {
  padding: 6px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v-mobile-acc__card {
  display: flex;
  flex-direction: column;
  padding: 4px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out);
  overflow: hidden;
}

.v-mobile-acc__card:hover {
  background: rgba(255, 255, 255, .07);
}

.v-mobile-acc__card:active {
  background: rgba(205, 255, 41, .08);
  border-color: rgba(205, 255, 41, .22);
}

.v-mobile-acc__card-main {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: background 160ms var(--ease-out);
}

.v-mobile-acc__card-main:active {
  background: rgba(255, 255, 255, .04);
}

.v-mobile-acc__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(205, 255, 41, .08);
  border: 1px solid rgba(205, 255, 41, .18);
}

.v-mobile-acc__card-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(95%) sepia(31%) saturate(640%) hue-rotate(13deg) brightness(108%) contrast(105%);
}

.v-mobile-acc__card-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v-mobile-acc__cardtitle {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-display, var(--font-sans));
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.v-mobile-acc__cardbadge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--vaas-blue-deep);
  background: var(--vaas-lime, #CDFF29);
  border-radius: 3px;
  line-height: 1.4;
}

.v-mobile-acc__carddesc {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .62);
}

.v-mobile-acc__card-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .04);
  transition: color 160ms var(--ease-out), background 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.v-mobile-acc__card:hover .v-mobile-acc__card-arrow,
.v-mobile-acc__card:active .v-mobile-acc__card-arrow {
  color: var(--vaas-lime, #CDFF29);
  background: rgba(205, 255, 41, .1);
  transform: translateX(2px);
}

.v-mobile-acc__cardtags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 10px 12px 60px;
}

.v-mobile-acc__cardtag {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82) !important;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  opacity: 1 !important;
  transition: background 140ms var(--ease-out), color 140ms var(--ease-out), border-color 140ms var(--ease-out);
}

.v-mobile-acc__cardtag:active {
  background: var(--vaas-lime, #CDFF29);
  color: var(--vaas-blue-deep) !important;
  border-color: var(--vaas-lime, #CDFF29);
}

.v-mobile-menu__link {
  display: block;
  padding: 16px 0;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* ================================================================
   RESPONSIVE. Tablet (<=1080px)
   ================================================================ */
@media (max-width: 1080px) {
  .v-container {
    padding: 0 32px;
  }

  .v-header {
    padding: 14px 24px;
    gap: 16px;
  }

  .v-header__nav {
    display: none;
  }

  .v-header__actions .v-btn--ghost-light {
    display: none;
  }

  .v-header__burger {
    display: inline-flex;
  }

  /* Hero */
  .v-hero {
    padding: 128px 32px 96px;
    min-height: 0;
  }

  .v-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v-hero__sub {
    font-size: 17px;
  }

  .v-hero__counter-num {
    font-size: 52px;
  }

  /* Areas */
  .v-areas {
    padding: 100px 32px;
  }

  .v-areas__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .v-area {
    min-height: 0;
    padding: 28px;
  }

  .v-area__title {
    font-size: 26px;
  }

  /* Steps */
  .v-steps {
    padding: 100px 32px;
  }

  .v-steps__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .v-steps__grid::before {
    display: none;
  }

  /* Benefits */
  .v-benefits {
    padding: 100px 32px;
  }

  .v-benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .v-benefit__k {
    font-size: 76px;
  }

  /* Dashboard */
  .v-dash {
    padding: 100px 32px;
  }

  .v-dash__inner {
    gap: 40px;
  }

  .v-dash__head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .v-dash__cta {
    justify-self: start;
  }

  .v-dash__shot {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  /* Bento. collapse to 2 cols on tablet */
  .v-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hero  hero"
      "hero  hero"
      "ai    ai"
      "data  rules"
      "api   api";
    grid-template-rows: repeat(2, 140px) 280px repeat(2, 190px);
  }

  /* Testimonials carousel */
  .v-testi {
    padding: 100px 32px;
  }

  .v-testi__card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-height: 0;
    padding: 28px 24px;
  }

  /* Cases */
  .v-cases {
    padding: 100px 32px;
  }

  .v-cases__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
  }

  .v-cases__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .v-case {
    padding: 28px;
  }

  .v-case__metric {
    font-size: 52px;
  }

  /* CTA */
  section.v-cta {
    padding: 80px 32px;
    min-height: 0;
    background-size: cover;
  }

  .v-cta__title {
    font-size: 52px;
  }

  /* Footer */
  .v-footer {
    padding: 64px 32px 32px;
  }

  .v-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v-footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Section titles */
  .v-section-title {
    font-size: 44px;
  }

  /* DataHub feature (in-index) */
  .v-dhub {
    padding: 100px 32px !important;
  }

  .v-dhub__grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Bento. stack on mobile */
  .v-bento {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    grid-template-areas:
      "hero"
      "ai"
      "data"
      "rules"
      "api" !important;
    gap: 12px !important;
  }

  /* Tiles dimensionam pelo conteúdo, em vez das linhas fixas de desktop. */
  .v-bento__tile {
    min-height: 0 !important;
  }

  .v-bento__tile--hero {
    padding: 22px !important;
    gap: 16px !important;
  }

  .v-bento__tile--hero .v-bento__title {
    font-size: 20px !important;
  }

  .v-bento__tile--ai,
  .v-bento__tile--data,
  .v-bento__tile--monitor,
  .v-bento__tile--api {
    padding: 20px !important;
  }

  /* Motor de decisão. política em coluna, padding interno menor */
  .v-bento__engine {
    min-height: 0 !important;
  }

  .v-bento__engine-box {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .v-bento__policy-step {
    grid-template-columns: 28px 1fr !important;
    gap: 10px !important;
  }

  .v-bento__policy-body {
    font-size: 14.5px !important;
  }

  /* Agentes AI. empilhar doc → seta → JSON em coluna */
  .v-bento__extract {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 8px !important;
  }

  .v-bento__extract-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .v-bento__extract-doc {
    min-height: 120px !important;
  }

  /* API tile. código vira coluna única e quebra linhas longas */
  .v-bento__api {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .v-bento__code {
    font-size: 11px !important;
    white-space: pre-wrap;
    word-break: break-word;
  }

  /* Reserva o espaço do request (linhas vão sendo "digitadas") e do response
     (que abre/fecha). evita que o tile mude de altura no mobile e empurre
     a página inteira a cada ciclo da animação. */
  .v-bento__api-req .v-bento__code {
    min-height: 78px;
  }

  .v-bento__api-res {
    max-height: none !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .v-bento__api-res .v-bento__code--res {
    min-height: 64px;
  }

  /* Testimonials feature */
  .v-testi-feature {
    grid-template-columns: 1fr !important;
    padding: 40px 32px 32px !important;
  }

  .v-testi-feature__aside {
    border-left: none !important;
    border-top: 1px solid var(--border);
    padding-left: 0 !important;
    padding-top: 32px !important;
  }

  /* Cases main (in-index) */
  .v-cases-main {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .v-cases-nav {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    border-top: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    gap: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .v-cases-nav::-webkit-scrollbar {
    display: none;
  }

  .v-cases-nav__item {
    flex: 0 0 auto;
    border-bottom: none !important;
    border-right: 1px solid rgba(255, 255, 255, .12);
    padding: 16px 20px !important;
    min-width: 200px;
  }

  .v-cases-nav__item::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto !important;
    height: 2px !important;
  }

  .v-cases-nav__item--active {
    padding-left: 20px !important;
  }

  .v-cases-panel {
    padding: 32px !important;
  }

  .v-cases-panel__title {
    font-size: 26px !important;
  }

  .v-cases-panel__body {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Section heads */
  .v-section-head,
  .v-section-head {
    margin-bottom: 56px;
  }
}

/* ================================================================
   RESPONSIVE. Mobile (<=720px)
   ================================================================ */
@media (max-width: 720px) {
  .v-container {
    padding: 0 20px;
  }

  .v-header {
    padding: 12px 20px;
    gap: 10px;
  }

  /* Hide the lime "Agendar reunião" pill in the header on mobile.
     It overlaps the iOS Dynamic Island, and a floating CTA at the
     bottom of the page replaces it (plus it's still in the drawer). */
  .v-header__actions .v-btn--lime {
    display: none !important;
  }

  .v-header__actions .v-lang {
    display: none;
  }

  /* lang lives inside mobile drawer */
  .v-header__actions {
    margin-left: auto;
  }

  /* Hero */
  .v-hero {
    padding: 108px 20px 72px;
  }

  .v-hero__title {
    /* font-size handled by the fluid base clamp; only a slightly looser
       line-height for the wrapped title on small screens. */
    line-height: 1;
  }

  .v-hero__sub {
    font-size: 16px;
    max-width: 100%;
    margin-top: 20px;
  }

  .v-hero__cta {
    gap: 10px;
    margin-top: 28px;
  }

  .v-hero__cta .v-btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero live card */
  .v-hero__live {
    padding: 22px;
    gap: 16px;
  }

  .v-hero__counter-num {
    font-size: 44px;
  }

  .v-hero__decision {
    padding: 10px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .v-hero__decision-id {
    font-size: 10px;
    flex: 1 0 auto;
  }

  /* Trust */
  .v-trust {
    padding: 48px 0 56px;
  }

  .v-trust__label {
    margin-bottom: 32px;
    font-size: 14px;
    padding: 0 24px;
  }

  .v-marquee__track {
    gap: 48px;
  }

  .v-marquee__logo {
    width: 110px;
    height: 52px;
  }

  .v-trust__metric {
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px;
  }

  .v-trust__metric-sep {
    display: none;
  }

  .v-trust__metric-k {
    font-size: 28px;
  }

  /* Eyebrow */
  .v-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  /* Section titles */
  .v-section-title {
    font-size: clamp(30px, 8vw, 40px);
  }

  .v-section-sub {
    font-size: 16px;
  }

  .v-section-head {
    margin-bottom: 44px;
  }

  /* Areas */
  .v-areas {
    padding: 72px 20px;
  }

  .v-areas__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v-area {
    padding: 24px;
    gap: 12px;
  }

  .v-area__title {
    font-size: 24px;
  }

  .v-area__copy {
    font-size: 15px;
  }

  /* Steps */
  .v-steps {
    padding: 72px 20px;
  }

  .v-steps__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 44px;
  }

  .v-step {
    padding: 24px;
    gap: 12px;
  }

  .v-step__num {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .v-step__title {
    font-size: 22px;
  }

  .v-step__cta {
    margin-top: 32px;
  }

  .v-step__cta .v-btn {
    width: 100%;
    justify-content: center;
  }

  /* Benefits */
  .v-benefits {
    padding: 72px 20px;
  }

  .v-benefits__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 44px;
  }

  .v-benefit__k {
    font-size: 64px;
  }

  .v-benefit__title {
    font-size: 20px;
  }

  /* Dashboard */
  .v-dash {
    padding: 72px 20px;
  }

  .v-dash__inner {
    gap: 32px;
  }

  .v-dash__list li {
    font-size: 15px;
  }

  .v-dash__body {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 10px;
  }

  .v-dash__chart,
  .v-dash__kpis,
  .v-dash__queue {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .v-dash__kpis {
    flex-direction: row;
    gap: 8px;
  }

  .v-dash__kpi {
    flex: 1;
    padding: 10px;
  }

  .v-dash__kpi-val {
    font-size: 20px;
  }

  .v-dash__chrome-url {
    font-size: 10px;
    padding: 4px 8px;
  }

  .v-dash__queue {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .v-dash__queue-rows {
    min-width: 560px;
  }

  .v-dash__row {
    gap: 8px;
    font-size: 11px;
  }

  /* Testimonials carousel (legacy / alt) */
  .v-testi {
    padding: 72px 20px;
  }

  .v-testi__card {
    flex: 0 0 100%;
    padding: 28px 24px;
  }

  .v-testi__quote {
    font-size: 17px;
  }

  /* Cases card grid */
  .v-cases {
    padding: 72px 20px;
  }

  .v-cases__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .v-case {
    padding: 24px;
  }

  .v-case__metric {
    font-size: 44px;
  }

  /* CTA */
  section.v-cta {
    padding: 80px 20px;
    min-height: 0;
    background-size: cover;
  }

  .v-cta__title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .v-cta__sub {
    font-size: 16px;
    margin-top: 20px;
  }

  .v-cta__row {
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
  }

  .v-cta__row .v-btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .v-footer {
    padding: 56px 20px 24px;
  }

  .v-footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .v-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
  }

  .v-footer__links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .v-footer__social {
    gap: 12px;
  }

  /* Modal */
  .v-modal {
    padding: 16px;
    align-items: flex-end;
  }

  .v-modal__panel {
    padding: 28px 24px 32px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .v-modal__title {
    font-size: 26px;
  }

  .v-input-row {
    grid-template-columns: 1fr;
  }

  /* Tweaks panel */
  .v-tweaks {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }

  /* DataHub (in-index) */
  .v-dhub {
    padding: 72px 20px !important;
  }

  .v-dhub__card {
    padding: 28px 24px !important;
  }

  .v-dhub__metric-num {
    font-size: 44px !important;
  }

  /* Testi feature (in-index) */
  .v-testi-feature {
    padding: 32px 24px 28px !important;
    gap: 28px !important;
  }

  .v-testi-feature__quote {
    font-size: 20px !important;
  }

  .v-testi-feature__mark {
    font-size: 84px !important;
    top: -20px !important;
  }

  .v-testi-feature__author {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .v-testi-feature__logo {
    align-self: flex-start;
    justify-content: flex-start !important;
  }

  /* Cases panel (in-index) */
  .v-cases-panel {
    padding: 28px 24px !important;
  }

  .v-cases-panel__title {
    font-size: 22px !important;
  }

  .v-cases-result__k {
    font-size: 30px !important;
  }

  .v-cases-results {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 20px !important;
  }
}

/* ================================================================
   RESPONSIVE. Small Mobile (<=420px)
   ================================================================ */
@media (max-width: 420px) {
  .v-header__logo img {
    height: 22px;
  }

  .v-hero__counter-num {
    font-size: 38px;
  }

  .v-benefit__k {
    font-size: 56px;
  }

  .v-case__metric {
    font-size: 40px;
  }
}

/* Touch-friendliness: enlarge tap targets on coarse pointers */
@media (hover: none) and (pointer: coarse) {
  .v-btn {
    padding: 14px 20px;
    min-height: 44px;
  }

  .v-footer__col a,
  .v-footer__links a {
    padding: 4px 0;
    display: inline-block;
  }
}

/* Hide the floating CTA whenever the mobile drawer is open — the drawer
   has its own "Agendar reunião" button at the bottom, and the floating
   pill would just be covered by the overlay anyway. */
.v-mobile-menu-open .v-mfcta {
  display: none !important;
}

/* ================================================================
   Mobile floating CTA (Agendar reunião)
   Renders below 720px only. Shows on every fresh page load,
   slides in from the bottom, and can be dismissed for the session.
   ================================================================ */
.v-mfcta {
  display: none;
}

@media (max-width: 720px) {
  .v-mfcta {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 95;
    align-items: stretch;
    gap: 8px;
    animation: v-mfcta-in 380ms cubic-bezier(.2, .7, .2, 1);
  }

  .v-mfcta--closing {
    animation: v-mfcta-out 220ms cubic-bezier(.4, 0, .6, 1) forwards;
  }

  .v-mfcta__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px !important;
    min-height: 52px;
    border: none;
    border-radius: 14px !important;
    background: var(--vaas-lime);
    color: var(--vaas-blue-deep);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
      0 14px 30px -8px rgba(0, 11, 88, .45),
      0 4px 12px -2px rgba(0, 11, 88, .25),
      inset 0 1px 0 rgba(255, 255, 255, .5);
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .v-mfcta__btn:active {
    transform: translateY(1px);
    box-shadow:
      0 8px 18px -6px rgba(0, 11, 88, .45),
      inset 0 1px 0 rgba(255, 255, 255, .5);
  }

  .v-mfcta__btn .v-btn__arrow {
    color: currentColor;
  }

  .v-mfcta__close {
    flex: 0 0 44px;
    width: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(0, 11, 88, .1);
    color: var(--vaas-blue-deep);
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow:
      0 10px 22px -8px rgba(0, 11, 88, .35),
      inset 0 1px 0 rgba(255, 255, 255, .9);
    transition: background 160ms ease, transform 160ms ease;
  }

  .v-mfcta__close:hover {
    background: #fff;
  }

  .v-mfcta__close:active {
    transform: scale(0.94);
  }
}

@keyframes v-mfcta-in {
  from {
    transform: translateY(140%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes v-mfcta-out {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(140%);
    opacity: 0;
  }
}

/* ================================================================
   Bento. animations for each tile
   ================================================================ */

/* DataHub: chip ping */
.v-bento__chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.v-bento__chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(7, 9, 20, .18);
  flex-shrink: 0;
  transition: background 220ms ease, box-shadow 220ms ease;
}

.v-bento__chip--ping {
  background: rgba(4, 52, 244, .08);
  border-color: rgba(4, 52, 244, .35);
  color: var(--vaas-blue-deep);
}

.v-bento__chip--ping .v-bento__chip-dot {
  background: var(--vaas-blue);
  box-shadow: 0 0 0 3px rgba(4, 52, 244, .18);
}

/* Audit: new line slides in */
.v-bento__audit-line {
  opacity: 1;
  transition: opacity 300ms ease;
}

.v-bento__audit-line--new {
  animation: v-audit-in 420ms cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes v-audit-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
    background: rgba(200, 255, 74, .22);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
    background: rgba(200, 255, 74, .14);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    background: transparent;
  }
}

/* Rules: count pulse when new alert arrives */
.v-bento__rule-count--pulse {
  animation: v-rule-pulse 700ms ease-out;
}

@keyframes v-rule-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 92, 92, .5);
  }

  30% {
    transform: scale(1.18);
    box-shadow: 0 0 0 6px rgba(255, 92, 92, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 92, 92, 0);
  }
}

/* API: request → response flow */
.v-bento__api {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  font-family: var(--font-mono);
  min-height: 0;
  overflow: hidden;
}

.v-bento__tile--api {
  overflow: hidden;
}

.v-bento__tile--audit .v-bento__audit-lines {
  overflow: hidden;
}

.v-bento__tile--data .v-bento__dh {
  overflow: hidden;
}

.v-bento__api-req,
.v-bento__api-res {
  background: var(--vaas-gray-100, #f5f7fb);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  overflow: hidden;
}

.v-bento__api-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(7, 9, 20, .06);
}

.v-bento__api-verb {
  background: var(--vaas-blue);
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.04em;
}

.v-bento__api-path {
  color: var(--vaas-blue-deep);
  font-weight: 600;
  flex: 1;
}

.v-bento__api-status {
  font-size: 9.5px;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 3px;
  min-width: 40px;
  text-align: center;
  transition: all 220ms ease;
}

.v-bento__api-status--0 {
  background: rgba(7, 9, 20, .06);
  color: rgba(7, 9, 20, .5);
}

.v-bento__api-status--1 {
  background: rgba(255, 197, 61, .18);
  color: #b57a00;
  animation: v-api-thinking 900ms ease-in-out infinite;
}

.v-bento__api-status--2 {
  background: rgba(34, 180, 90, .16);
  color: #1a7f42;
}

/* Tone-based status colors (override --2 default) */
.v-bento__api-status--ok {
  background: rgba(34, 180, 90, .16);
  color: #1a7f42;
}

.v-bento__api-status--warn {
  background: rgba(255, 197, 61, .20);
  color: #a06700;
}

.v-bento__api-status--crit {
  background: rgba(255, 92, 92, .18);
  color: #b03030;
}

.v-bento__api-status--idle {
  background: rgba(7, 9, 20, .06);
  color: rgba(7, 9, 20, .45);
}

@keyframes v-api-thinking {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.v-bento__api-res {
  background: #0a0c1c;
  border-color: rgba(4, 52, 244, .24);
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 380ms ease, opacity 260ms ease, padding 260ms ease, border-color 220ms ease;
}

.v-bento__api-res.is-open {
  max-height: 140px;
  opacity: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}

.v-bento__api-res--warn.is-open {
  border-color: rgba(255, 197, 61, .5);
}

.v-bento__api-res--crit.is-open {
  border-color: rgba(255, 92, 92, .45);
}

.v-bento__code--res code {
  color: var(--vaas-lime);
}

/* Per-line fade-in for typing effect */
.v-bento__api-line {
  display: inline-block;
  animation: v-api-line-in 240ms var(--ease-out) backwards;
}

@keyframes v-api-line-in {
  from {
    opacity: 0;
    transform: translateX(-4px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Blinking caret while request is being "typed" */
.v-bento__api-caret {
  display: inline-block;
  color: var(--vaas-lime);
  font-weight: 700;
  animation: v-api-caret 0.9s steps(2) infinite;
  margin-left: 2px;
}

@keyframes v-api-caret {
  50% {
    opacity: 0;
  }
}

/* Latency bar at the bottom of the request panel */
.v-bento__api-bar {
  height: 2px;
  background: rgba(7, 9, 20, .04);
  margin: 0 -10px -10px;
  border-radius: 0 0 7px 7px;
  overflow: hidden;
  position: relative;
}

.v-bento__api-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--vaas-blue), var(--vaas-lime));
  transition: width 700ms cubic-bezier(.4, 0, .2, 1), opacity 220ms ease;
}

.v-bento__api-bar-fill.is-running {
  width: 90%;
  transition: width 800ms cubic-bezier(.1, .6, .4, 1);
}

.v-bento__api-bar-fill.is-done {
  width: 100%;
  opacity: .35;
}

/* Color-coded JSON output in response */
.v-bento__api-k {
  color: rgba(255, 255, 255, .55);
}

.v-bento__api-sep {
  color: rgba(255, 255, 255, .35);
}

.v-bento__api-v--ok {
  color: #6BBE5A;
  font-weight: 600;
}

.v-bento__api-v--warn {
  color: #ffc53d;
  font-weight: 600;
}

.v-bento__api-v--crit {
  color: #ff7a7a;
  font-weight: 600;
}

.v-bento__api-v--num {
  color: var(--vaas-lime);
}

.v-bento__api-v--str {
  color: #9ad7ff;
}

.v-bento__api-v--arr {
  color: #c8a4ff;
}

/* Testi feature. smooth fade on quote change */
.v-testi-feature__quote-col {
  animation: v-testi-fade 320ms ease-out both;
}

@keyframes v-testi-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Marquees: under reduced motion, stop scrolling and lay the logos out as a
     centered static wrap instead of a frozen, clipped strip. */
  .v-marquee,
  .v-dhub-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }

  .v-marquee__track,
  .v-dhub-marquee__track {
    animation: none !important;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    row-gap: 24px;
  }

  /* The track duplicates its logos for a seamless scroll loop; hide the clones
     in the static layout so each logo shows once. */
  .v-marquee__logo--clone,
  .v-dhub-logo--clone {
    display: none;
  }

  .v-hero__bg {
    animation: none !important;
  }

  .v-bento__dh-track {
    animation: none !important;
  }
}

/* ================================================================
   Bento DataHub. 4-row partner logos carousel
   ================================================================ */
.v-bento__tile--data {
  padding: 16px 0 16px 20px;
}

.v-bento__tile--data .v-bento__kicker,
.v-bento__tile--data .v-bento__title {
  padding-right: 20px;
}

.v-bento__dh {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.v-bento__dh-row {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.v-bento__dh-track {
  display: flex;
  width: max-content;
  gap: 8px;
  align-items: center;
  animation: marquee linear infinite;
}

.v-bento__dh-row--reverse .v-bento__dh-track {
  animation-direction: reverse;
}

.v-bento__dh:hover .v-bento__dh-track {
  animation-play-state: paused;
}

.v-bento__dh-logo {
  flex-shrink: 0;
  width: 112px;
  height: 100%;
  max-height: 56px;
  background: var(--vaas-gray-50, #f5f7fb);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  overflow: hidden;
}

.v-bento__dh-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 22px;
  object-fit: contain;
  opacity: .92;
  transition: opacity 200ms ease;
}

.v-bento__dh-logo:hover img {
  opacity: 1;
}

/* Light CTA inside the DataHub bento tile */
.v-bento__tile--data {
  padding-bottom: 10px;
}

.v-bento__more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vaas-blue-deep);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out), gap 180ms var(--ease-out);
}

.v-bento__more-arrow {
  display: inline-block;
  transition: transform 220ms var(--ease-out);
}

.v-bento__more:hover {
  color: var(--vaas-blue);
  border-bottom-color: currentColor;
  gap: 10px;
}

.v-bento__more:hover .v-bento__more-arrow {
  transform: translateX(2px);
}

.v-bento__tile--link:hover .v-bento__more {
  color: var(--vaas-blue);
}


/* Light variant of v-bento__more for the dark hero tile */
.v-bento__more--light {
  color: rgba(255, 255, 255, .6);
  border-bottom-color: rgba(255, 255, 255, .18);
}

.v-bento__more--light:hover {
  color: var(--vaas-lime);
  border-bottom-color: currentColor;
}

.v-bento__tile--hero.v-bento__tile--link:hover .v-bento__more--light {
  color: var(--vaas-lime);
}


/* Hero bento tile. minimal workflow chain viz (replaces v-bento__policy) */
.v-bento__wf {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
}

.v-bento__wf-canvas {
  position: relative;
  width: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 14px 14px;
  border-radius: 4px;
  padding: 18px 14px;
  overflow: hidden;
}

.v-bento__wf-chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.v-bento__wf-node {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  white-space: nowrap;
  flex: 0 0 auto;
}

.v-bento__wf-conn {
  flex: 1 1 16px;
  min-width: 10px;
  height: 1.5px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, .22) 50%, transparent 50%);
  background-size: 6px 1.5px;
}

.v-bento__wf-node--on {
  background: rgba(206, 255, 41, .14);
  border: 1.5px solid var(--vaas-lime);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 0 4px rgba(206, 255, 41, .08);
}

.v-bento__wf-node-spark {
  color: var(--vaas-lime);
  font-size: 11px;
}

.v-bento__wf-conn--on {
  background-image: linear-gradient(to right, rgba(206, 255, 41, .65) 50%, transparent 50%);
  height: 2px;
}

@media (max-width: 720px) {
  .v-bento__wf-node {
    font-size: 11px;
    padding: 6px 10px;
  }

  .v-bento__wf-canvas {
    padding: 14px 10px;
  }
}


/* Hero tile. workflow editor look (override the dark default) */
.v-bento__tile--hero {
  background-color: #fcfcfd !important;
  background-image: radial-gradient(rgba(0, 11, 88, .08) 1px, transparent 1px) !important;
  background-size: 14px 14px !important;
  color: var(--vaas-blue-deep) !important;
}

.v-bento__tile--hero .v-bento__kicker {
  color: rgba(0, 11, 88, .45) !important;
}

.v-bento__tile--hero .v-bento__title {
  color: var(--vaas-blue-deep) !important;
}

.v-bento__tile--hero .v-bento__tile-foot {
  color: rgba(0, 11, 88, .55) !important;
}

.v-bento__tile--hero .v-bento__dot {
  background: rgba(0, 11, 88, .25) !important;
}

/* Workflow viz inside hero. light variant */
.v-bento__tile--hero .v-bento__wf-canvas {
  background-image: none !important;
  padding: 0 !important;
}

.v-bento__tile--hero .v-bento__wf-node {
  background: #fff !important;
  border: 1px solid rgba(0, 11, 88, .12) !important;
  color: var(--vaas-blue-deep) !important;
  box-shadow: 0 1px 2px rgba(0, 11, 88, .04);
}

.v-bento__tile--hero .v-bento__wf-node--on {
  background: #fff !important;
  border: 1.5px solid var(--vaas-blue) !important;
  color: var(--vaas-blue-deep) !important;
  box-shadow: 0 0 0 4px rgba(4, 52, 244, .06), 0 8px 20px -6px rgba(4, 52, 244, .18) !important;
}

.v-bento__tile--hero .v-bento__wf-node-spark {
  color: var(--vaas-blue) !important;
}

.v-bento__tile--hero .v-bento__wf-conn {
  background-image: linear-gradient(to right, rgba(0, 11, 88, .22) 50%, transparent 50%) !important;
}

.v-bento__tile--hero .v-bento__wf-conn--on {
  background-image: linear-gradient(to right, rgba(4, 52, 244, .5) 50%, transparent 50%) !important;
}

/* "Saiba mais sobre Workflows" CTA. dark text on light bg */
.v-bento__tile--hero .v-bento__more--light {
  color: rgba(0, 11, 88, .55) !important;
  border-bottom-color: rgba(0, 11, 88, .12) !important;
}

.v-bento__tile--hero .v-bento__more--light:hover {
  color: var(--vaas-blue) !important;
  border-bottom-color: currentColor !important;
}

.v-bento__tile--hero.v-bento__tile--link:hover .v-bento__more--light {
  color: var(--vaas-blue) !important;
}


/* Hero bento. branching flow under the chain */
.v-bento__wf-canvas {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v-bento__wf-chain {
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.v-bento__wf-chain .v-bento__wf-conn {
  flex: 0 0 28px;
  min-width: 20px;
}

.v-bento__wf-branches {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

/* vertical stem on the left, only between first and last branch */
.v-bento__wf-branches-stem {
  position: absolute;
  left: 4px;
  top: 18px;
  bottom: 18px;
  width: 1.5px;
  background-image: linear-gradient(to bottom, rgba(0, 11, 88, .18) 50%, transparent 50%);
  background-size: 1.5px 5px;
}

.v-bento__wf-branch {
  display: grid;
  grid-template-columns: 18px auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.v-bento__wf-branch-line {
  height: 1.5px;
  background-image: linear-gradient(to right, rgba(0, 11, 88, .18) 50%, transparent 50%);
  background-size: 5px 1.5px;
}

.v-bento__wf-branch-line--end {
  flex: 1;
  min-width: 14px;
}

.v-bento__wf-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 11, 88, .1);
  color: rgba(0, 11, 88, .65);
  white-space: nowrap;
}

.v-bento__wf-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.v-bento__wf-tag--low .v-bento__wf-tag-dot {
  background: #2bb673;
}

.v-bento__wf-tag--med .v-bento__wf-tag-dot {
  background: #f0a23a;
}

.v-bento__wf-tag--high .v-bento__wf-tag-dot {
  background: #e54a7d;
}

.v-bento__wf-tag--low {
  color: #1b8b54;
}

.v-bento__wf-tag--med {
  color: #c5811a;
}

.v-bento__wf-tag--high {
  color: #c04068;
}

.v-bento__wf-outcome {
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 11, 88, .12);
  color: var(--vaas-blue-deep);
  white-space: nowrap;
}

.v-bento__wf-outcome--ok {
  border-color: rgba(43, 182, 115, .4);
  background: rgba(43, 182, 115, .08);
  color: #1b8b54;
}

.v-bento__wf-outcome--mid {
  border-color: rgba(240, 162, 58, .4);
  background: rgba(240, 162, 58, .08);
  color: #c5811a;
}

.v-bento__wf-outcome--rej {
  border-color: rgba(229, 74, 125, .4);
  background: rgba(229, 74, 125, .08);
  color: #c04068;
}

@media (max-width: 720px) {
  .v-bento__wf-branches {
    padding-left: 12px;
  }

  .v-bento__wf-branch {
    grid-template-columns: 12px auto 1fr auto;
    gap: 6px;
  }

  .v-bento__wf-tag {
    font-size: 9px;
    padding: 3px 6px;
  }

  .v-bento__wf-outcome {
    font-size: 11.5px;
    padding: 5px 10px;
  }
}


/* Hero bento. horizontal chain w/ 3 stacked outcomes on the right (workflow editor style) */
.v-bento__wf-canvas {
  display: block !important;
  padding: 0 !important;
  background: none !important;
}

.v-bento__wf-flow {
  width: 100%;
  overflow-x: auto;
}

.v-bento__wf-chain {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  width: max-content;
  min-width: 100%;
}

.v-bento__wf-chain .v-bento__wf-node {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid rgba(0, 11, 88, .12);
  border-radius: 999px;
  color: var(--vaas-blue-deep);
  box-shadow: 0 1px 2px rgba(0, 11, 88, .04);
}

.v-bento__wf-chain .v-bento__wf-node--on {
  border: 1.5px solid var(--vaas-blue);
  box-shadow: 0 0 0 4px rgba(4, 52, 244, .06), 0 8px 20px -6px rgba(4, 52, 244, .18);
}

.v-bento__wf-node-ico {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: rgba(4, 52, 244, .08);
  color: var(--vaas-blue);
  font-size: 11px;
  flex: 0 0 18px;
}

.v-bento__wf-node--on .v-bento__wf-node-ico {
  background: var(--vaas-blue);
  color: var(--vaas-lime);
}

.v-bento__wf-conn {
  flex: 0 0 28px;
  height: 1.5px;
  background-image: linear-gradient(to right, rgba(0, 11, 88, .22) 50%, transparent 50%);
  background-size: 5px 1.5px;
}

.v-bento__wf-conn--on {
  background-image: linear-gradient(to right, rgba(4, 52, 244, .5) 50%, transparent 50%);
  height: 2px;
}

/* Fan connector to outcomes column. SVG paths */
.v-bento__wf-fan {
  flex: 0 0 40px;
  width: 40px;
  align-self: stretch;
  display: block;
  margin: 0 -1px;
}

.v-bento__wf-fan path {
  fill: none;
  stroke: rgba(0, 11, 88, .22);
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

/* Outcomes column */
.v-bento__wf-outcomes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 0 0 auto;
  padding: 6px 0;
}

.v-bento__wf-outcome {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 11, 88, .12);
  color: var(--vaas-blue-deep);
  box-shadow: 0 1px 2px rgba(0, 11, 88, .04);
  white-space: nowrap;
  flex: 0 0 auto;
}

.v-bento__wf-outcome-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: 0 0 7px;
}

.v-bento__wf-outcome--ok {
  background: rgba(43, 182, 115, .08);
  border-color: rgba(43, 182, 115, .4);
  color: #1b8b54;
}

.v-bento__wf-outcome--ok .v-bento__wf-outcome-dot {
  background: #2bb673;
}

.v-bento__wf-outcome--mid {
  background: rgba(240, 162, 58, .08);
  border-color: rgba(240, 162, 58, .4);
  color: #c5811a;
}

.v-bento__wf-outcome--mid .v-bento__wf-outcome-dot {
  background: #f0a23a;
}

.v-bento__wf-outcome--rej {
  background: rgba(229, 74, 125, .08);
  border-color: rgba(229, 74, 125, .4);
  color: #c04068;
}

.v-bento__wf-outcome--rej .v-bento__wf-outcome-dot {
  background: #e54a7d;
}


/* =========================================================================
   Dashboard (new). tabbed platform showcase
   ========================================================================= */
.v-dash__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.v-dash__head .v-eyebrow {
  justify-content: center;
}

.v-dash__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--vaas-blue-deep);
  margin: 14px 0 0;
  text-wrap: balance;
}

.v-dash__title em {
  font-style: normal;
  color: var(--vaas-blue);
}

.v-dash__board {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(0, 11, 88, .1);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 30px 80px -30px rgba(0, 11, 88, .18);
}

/* Sidebar tabs */
.v-dash__tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v-dash__tab {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  color: var(--vaas-blue-deep);
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}

.v-dash__tab:hover {
  background: rgba(4, 52, 244, .04);
}

.v-dash__tab--active {
  background: rgba(4, 52, 244, .06);
  border-color: rgba(4, 52, 244, .18);
}

.v-dash__tab-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--vaas-gray-50, #f6f6f6);
  display: grid;
  place-items: center;
  color: var(--vaas-blue);
  flex: 0 0 36px;
  margin-top: 2px;
}

.v-dash__tab--active .v-dash__tab-ico {
  background: var(--vaas-blue-deep);
  color: var(--vaas-lime);
}

/* Ícone da marca (mesmo do menu) dentro do box do tab. */
.v-dash__tab-ico-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* No estado ativo/aberto o box fica escuro: inverte o ícone para branco. */
.v-dash__tab--active .v-dash__tab-ico-img,
.v-dash__acc-item--open .v-dash__tab-ico-img {
  filter: brightness(0) invert(1);
}

.v-dash__tab-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.v-dash__tab-n {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 11, 88, .4);
}

.v-dash__tab-body b {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--vaas-blue-deep);
  letter-spacing: -0.005em;
}

.v-dash__tab-body>span:last-child {
  font-family: var(--font-display);
  font-size: 12.5px;
  color: rgba(0, 11, 88, .6);
  line-height: 1.35;
}

.v-dash__tab--active .v-dash__tab-body b {
  color: var(--vaas-blue);
}

/* Panel */
.v-dash__panel {
  padding: 32px 36px;
  background: linear-gradient(160deg, #fafbfc 0%, #ffffff 100%);
  border-radius: 8px;
  border: 1px solid rgba(0, 11, 88, .06);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: stretch;
  animation: v-dash-fade 320ms cubic-bezier(.2, .7, .2, 1);
}

.v-dash__panel-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.v-dash__panel-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.v-dash__panel-viz--mobile {
  margin: 6px 0 18px;
}

@media (max-width: 1080px) {
  .v-dash__panel {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
  }
}

/* ===== Mini exemplos visuais por categoria (vdv) ===== */
.vdv {
  --vdv-accent: var(--vaas-blue);
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 11, 88, .10);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px -24px rgba(0, 11, 88, .4);
  font-family: var(--font-mono);
}

.vdv--workflow {
  --vdv-accent: #0434F4;
}

.vdv--mesa {
  --vdv-accent: #000B58;
}

.vdv--ia {
  --vdv-accent: #4f9440;
}

.vdv--central {
  --vdv-accent: #E08A1E;
}

.vdv--datahub {
  --vdv-accent: #6B4FB5;
}

.vdv__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: #F7F8FB;
  border-bottom: 1px solid rgba(0, 11, 88, .08);
}

.vdv__dots {
  display: inline-flex;
  gap: 4px;
}

.vdv__dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 11, 88, .14);
}

.vdv__bar-lbl {
  font-size: 10.5px;
  letter-spacing: .04em;
  color: rgba(0, 11, 88, .55);
  text-transform: uppercase;
}

.vdv__pad {
  padding: 16px;
}

.vdv__foot {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-top: 1px solid rgba(0, 11, 88, .08);
  font-size: 11px;
  color: rgba(0, 11, 88, .6);
}

.vdv__foot-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6BBE5A;
}

.vdv__foot-ver {
  margin-left: auto;
  color: rgba(0, 11, 88, .4);
}

/* workflow: nós do fluxo */
.vdv-flow {
  display: flex;
  align-items: center;
}

.vdv-flow__node {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--vaas-blue-deep);
  padding: 12px 6px;
  border-radius: 8px;
  background: #F4F6FC;
  border: 1px solid rgba(0, 11, 88, .08);
}

.vdv-flow__node--accent {
  background: color-mix(in srgb, var(--vdv-accent) 12%, #fff);
  border-color: color-mix(in srgb, var(--vdv-accent) 35%, transparent);
  color: var(--vdv-accent);
}

.vdv-flow__link {
  flex: 0 0 16px;
  height: 2px;
  background: color-mix(in srgb, var(--vdv-accent) 45%, transparent);
}

/* mesa: linhas de decisão */
.vdv-desk {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vdv-desk__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: #F7F8FB;
  border: 1px solid rgba(0, 11, 88, .07);
  font-size: 11px;
}

.vdv-desk__row--active {
  background: color-mix(in srgb, var(--vdv-accent) 8%, #fff);
  border-color: color-mix(in srgb, var(--vdv-accent) 26%, transparent);
}

.vdv-desk__code {
  color: var(--vaas-blue-deep);
  font-weight: 600;
}

.vdv-desk__tier {
  color: rgba(0, 11, 88, .5);
}

.vdv-desk__act {
  font-style: normal;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
}

.vdv-desk__act--ok {
  background: rgba(107, 190, 90, .16);
  color: #4f9440;
}

.vdv-desk__act--rev {
  background: rgba(240, 162, 58, .16);
  color: #c5811a;
}

/* ia: card de parecer */
.vdv-ia__head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: var(--vaas-blue-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.vdv-ia__spark {
  color: var(--vaas-lime);
}

.vdv-ia__body {
  font-family: var(--font-display);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--vaas-blue-deep);
  margin: 0 0 12px;
}

.vdv-ia__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.vdv-ia__tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #F4F6FC;
  border: 1px solid rgba(0, 11, 88, .1);
  color: rgba(0, 11, 88, .7);
}

.vdv-ia__rec {
  font-size: 11px;
  font-weight: 600;
  color: #4f9440;
  background: rgba(107, 190, 90, .12);
  border-radius: 8px;
  padding: 9px 12px;
}

/* central: monitoramento */
.vdv-mon {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vdv-mon__row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  padding: 9px 12px;
  border-radius: 8px;
  background: #F7F8FB;
  border: 1px solid rgba(0, 11, 88, .07);
}

.vdv-mon__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6BBE5A;
}

.vdv-mon__row--alert {
  background: color-mix(in srgb, var(--vdv-accent) 9%, #fff);
  border-color: color-mix(in srgb, var(--vdv-accent) 30%, transparent);
}

.vdv-mon__row--alert .vdv-mon__pulse {
  background: var(--vdv-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--vdv-accent) 22%, transparent);
}

.vdv-mon__name {
  color: var(--vaas-blue-deep);
  font-weight: 600;
}

.vdv-mon__status {
  color: rgba(0, 11, 88, .5);
}

.vdv-mon__row--alert .vdv-mon__status {
  color: var(--vdv-accent);
  font-weight: 600;
}

/* datahub: chips de bureaus */
.vdv-hub {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.vdv-hub__chip {
  font-size: 10.5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--vdv-accent) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--vdv-accent) 26%, transparent);
  color: var(--vdv-accent);
}

.vdv-hub__var {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 9px 12px;
  background: var(--vaas-blue-deep);
  color: #fff;
  border-radius: 8px;
}

.vdv-hub__var-k {
  color: rgba(255, 255, 255, .7);
}

.vdv-hub__var-sep {
  color: rgba(255, 255, 255, .4);
}

.vdv-hub__var-v {
  color: var(--vaas-lime);
  margin-left: auto;
}

/* datahub: marquee de logos das fontes de dados */
.vdv-logos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.vdv-logos__row {
  overflow: hidden;
}

.vdv-logos__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: vdv-marq 20s linear infinite;
}

.vdv-logos__track--rev {
  animation-direction: reverse;
}

.vdv-logos__logo {
  flex: 0 0 auto;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid rgba(0, 11, 88, .08);
  border-radius: 8px;
}

.vdv-logos__logo img {
  max-height: 18px;
  max-width: 70px;
  width: auto;
  object-fit: contain;
}

@keyframes vdv-marq {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vdv-logos__track {
    animation: none;
  }
}

@keyframes v-dash-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.v-dash__panel-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vaas-blue);
  margin-bottom: 12px;
}

.v-dash__panel-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--vaas-blue-deep);
  margin: 0 0 16px;
  text-wrap: balance;
}

.v-dash__panel-title em {
  font-style: normal;
  color: var(--vaas-blue);
}

.v-dash__panel-desc {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0, 11, 88, .7);
  margin: 0 0 20px;
}

.v-dash__panel-bullets {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v-dash__panel-bullets li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--vaas-blue-deep);
}

.v-dash__panel-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vaas-blue);
  margin-top: 10px;
}

.v-dash__panel-cta {
  align-self: flex-start;
  margin-top: auto;
}

.v-dash__cta {
  display: inline-flex;
  margin: 32px auto 0;
}

@media (max-width: 980px) {
  .v-dash__board {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .v-dash__tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: 4px;
    padding-bottom: 4px;
  }

  .v-dash__tab {
    grid-template-columns: 1fr;
    flex: 0 0 200px;
    padding: 12px 14px;
  }

  .v-dash__tab-ico {
    display: none;
  }

  .v-dash__panel {
    padding: 24px;
  }

  .v-dash__panel-title {
    font-size: 24px;
  }
}


/* ====== Dashboard accordion (mobile) + sidebar (desktop) ====== */
.v-dash__accordion {
  display: none;
}

@media (max-width: 980px) {
  .v-dash__board {
    display: none !important;
  }

  .v-dash__accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(0, 11, 88, .1);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 20px 60px -25px rgba(0, 11, 88, .15);
  }

  .v-dash__acc-item {
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    border: 1px solid transparent;
  }

  .v-dash__acc-item--open {
    background: rgba(4, 52, 244, .04);
    border-color: rgba(4, 52, 244, .15);
  }

  .v-dash__acc-head {
    display: grid;
    grid-template-columns: 36px 1fr 18px;
    gap: 12px;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    text-align: left;
    color: var(--vaas-blue-deep);
  }

  .v-dash__acc-item--open .v-dash__acc-head .v-dash__tab-ico {
    background: var(--vaas-blue-deep);
    color: var(--vaas-lime);
  }

  .v-dash__acc-chev {
    font-family: var(--font-mono);
    font-size: 16px;
    color: rgba(0, 11, 88, .4);
    transition: transform 200ms var(--ease-out);
  }

  .v-dash__acc-item--open .v-dash__acc-chev {
    transform: rotate(180deg);
    color: var(--vaas-blue);
  }

  .v-dash__acc-body {
    padding: 4px 18px 20px;
    animation: v-dash-fade 240ms cubic-bezier(.2, .7, .2, 1);
  }
}

/* ====== Reduced title sizes on mobile (globally) ====== */
@media (max-width: 720px) {

  .v-section-title,
  .v-dash__title,
  .v-cta__title,
  .pv-title,
  .ia-hero__title,
  .mesa-hero__title,
  .ia-sec-pad__ebook-title,
  .ia-mid-art__title,
  .cr-hero__title {
    font-size: clamp(26px, 6vw, 36px) !important;
  }

  .v-dash__panel-title {
    font-size: 22px !important;
  }
}


/* Testimonials mobile — smaller fonts + arrows on top */
@media (max-width: 720px) {
  .v-testi__quote {
    font-size: 14.5px !important;
    line-height: 1.5 !important;
  }

  .v-testi__card {
    padding: 22px 18px !important;
  }

  .v-testi__author {
    font-size: 12.5px !important;
  }

  .v-testi__role {
    font-size: 11.5px !important;
  }

  /* Move arrows to top of carousel */
  .v-testi__nav {
    flex-direction: column-reverse !important;
    gap: 18px !important;
    align-items: stretch !important;
  }

  .v-testi__arrows {
    justify-content: flex-end;
  }

  .v-testi__arrow {
    width: 38px !important;
    height: 38px !important;
  }

  .v-testi__dots {
    justify-content: center;
  }
}


/* Dashboard accordion — module tints + tighter layout */
@media (max-width: 980px) {
  .v-dash__accordion {
    padding: 6px !important;
    gap: 6px !important;
  }

  .v-dash__acc-item {
    border-radius: 8px !important;
    transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
  }

  .v-dash__acc-head {
    grid-template-columns: 32px 1fr 18px !important;
    gap: 10px !important;
    padding: 12px 14px !important;
  }

  .v-dash__acc-head .v-dash__tab-ico {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px !important;
    border-radius: 6px;
    margin-top: 0 !important;
  }

  .v-dash__acc-body {
    padding: 0 14px 18px !important;
  }

  .v-dash__acc-body .v-dash__panel-title {
    font-size: 22px !important;
    line-height: 1.15;
    margin: 4px 0 12px;
  }

  .v-dash__acc-body .v-dash__panel-desc {
    font-size: 15px !important;
    line-height: 1.5;
  }

  .v-dash__acc-body .v-dash__panel-bullets li {
    font-size: 14px !important;
  }

  .v-dash__acc-body .v-dash__panel-cta {
    width: 100%;
    justify-content: center;
  }

  /* Per-module palettes */
  .v-dash__acc-item--workflow {
    background: rgba(4, 52, 244, .05);
  }

  .v-dash__acc-item--workflow.v-dash__acc-item--open {
    background: rgba(4, 52, 244, .1);
    border-color: rgba(4, 52, 244, .25);
  }

  .v-dash__acc-item--workflow .v-dash__tab-ico {
    background: rgba(4, 52, 244, .1);
    color: var(--vaas-blue);
  }

  .v-dash__acc-item--workflow.v-dash__acc-item--open .v-dash__tab-ico {
    background: var(--vaas-blue);
    color: #fff;
  }

  .v-dash__acc-item--mesa {
    background: rgba(0, 11, 88, .04);
  }

  .v-dash__acc-item--mesa.v-dash__acc-item--open {
    background: rgba(0, 11, 88, .08);
    border-color: rgba(0, 11, 88, .2);
  }

  .v-dash__acc-item--mesa .v-dash__tab-ico {
    background: rgba(0, 11, 88, .08);
    color: var(--vaas-blue-deep);
  }

  .v-dash__acc-item--mesa.v-dash__acc-item--open .v-dash__tab-ico {
    background: var(--vaas-blue-deep);
    color: var(--vaas-lime);
  }

  .v-dash__acc-item--ia {
    background: rgba(206, 255, 41, .1);
  }

  .v-dash__acc-item--ia.v-dash__acc-item--open {
    background: rgba(206, 255, 41, .2);
    border-color: rgba(206, 255, 41, .5);
  }

  .v-dash__acc-item--ia .v-dash__tab-ico {
    background: rgba(206, 255, 41, .25);
    color: var(--vaas-blue-deep);
  }

  .v-dash__acc-item--ia.v-dash__acc-item--open .v-dash__tab-ico {
    background: var(--vaas-lime);
    color: var(--vaas-blue-deep);
  }

  .v-dash__acc-item--central {
    background: rgba(240, 162, 58, .08);
  }

  .v-dash__acc-item--central.v-dash__acc-item--open {
    background: rgba(240, 162, 58, .16);
    border-color: rgba(240, 162, 58, .4);
  }

  .v-dash__acc-item--central .v-dash__tab-ico {
    background: rgba(240, 162, 58, .18);
    color: #c5811a;
  }

  .v-dash__acc-item--central.v-dash__acc-item--open .v-dash__tab-ico {
    background: #f0a23a;
    color: #fff;
  }

  .v-dash__acc-item--datahub {
    background: rgba(182, 156, 232, .12);
  }

  .v-dash__acc-item--datahub.v-dash__acc-item--open {
    background: rgba(182, 156, 232, .22);
    border-color: rgba(182, 156, 232, .55);
  }

  .v-dash__acc-item--datahub .v-dash__tab-ico {
    background: rgba(182, 156, 232, .25);
    color: #6b4fb5;
  }

  .v-dash__acc-item--datahub.v-dash__acc-item--open .v-dash__tab-ico {
    background: #9d8bf0;
    color: #fff;
  }
}


/* Hide hero live counter on mobile */
@media (max-width: 980px) {
  .v-hero__live {
    display: none !important;
  }
}


/* Accordion head — give title max horizontal space; hide tagline on mobile */
@media (max-width: 980px) {
  .v-dash__acc-head .v-dash__tab-body {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
    flex: 1;
  }

  .v-dash__acc-head .v-dash__tab-body .v-dash__tab-n {
    font-size: 10px;
    color: rgba(0, 11, 88, .45);
    flex: 0 0 auto;
  }

  .v-dash__acc-head .v-dash__tab-body b {
    font-size: 15px;
    font-weight: 600;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Hide the tagline (3rd child) on accordion head — only the body panel shows it */
  .v-dash__acc-head .v-dash__tab-body>span:last-child {
    display: none;
  }
}


/* Accordion head — allow title to use full width and wrap if needed (no ellipsis cut) */
@media (max-width: 980px) {
  .v-dash__acc-head {
    grid-template-columns: 28px 1fr auto !important;
    gap: 10px !important;
  }

  .v-dash__acc-head .v-dash__tab-ico {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
  }

  .v-dash__acc-head .v-dash__tab-body {
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .v-dash__acc-head .v-dash__tab-body .v-dash__tab-n {
    font-size: 10px !important;
    font-weight: 600;
    color: rgba(0, 11, 88, .45) !important;
    flex: 0 0 auto !important;
  }

  .v-dash__acc-head .v-dash__tab-body b {
    font-size: 14.5px !important;
    font-weight: 600 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.2;
  }

  .v-dash__acc-head .v-dash__tab-body>span:last-child {
    display: none !important;
  }

  .v-dash__acc-chev {
    flex: 0 0 auto !important;
    font-size: 14px !important;
  }
}


/* Fix: the legacy mobile rule hides .v-dash__tab-ico globally — restore for accordion */
@media (max-width: 980px) {
  .v-dash__acc-head .v-dash__tab-ico {
    display: grid !important;
    width: 28px !important;
    height: 28px !important;
    place-items: center;
    border-radius: 6px;
  }

  .v-dash__acc-chev {
    display: inline-block !important;
    width: auto !important;
    flex: 0 0 auto !important;
    text-align: right;
    color: rgba(0, 11, 88, .5);
  }
}


/* Dashboard — mobile carousel (replaces accordion) */
.v-dash__carousel {
  display: none;
}

@media (max-width: 980px) {
  .v-dash__board {
    display: none !important;
  }

  .v-dash__accordion {
    display: none !important;
  }

  .v-dash__carousel {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }

  .v-dash__car-head {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
    align-items: center;
    padding: 8px 4px;
  }

  .v-dash__car-nav {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(0, 11, 88, .12);
    border-radius: 999px;
    color: var(--vaas-blue-deep);
    cursor: pointer;
    font-size: 18px;
    font-family: var(--font-display);
    transition: background 160ms, color 160ms, border-color 160ms;
  }

  .v-dash__car-nav:hover {
    background: var(--vaas-blue);
    border-color: var(--vaas-blue);
    color: #fff;
  }

  .v-dash__car-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
  }

  .v-dash__car-n {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(0, 11, 88, .45);
    font-weight: 600;
  }

  .v-dash__car-title b {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--vaas-blue-deep);
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .v-dash__car-card {
    background: #fff;
    border: 1px solid rgba(0, 11, 88, .1);
    border-radius: 10px;
    padding: 24px 22px;
    box-shadow: 0 18px 48px -25px rgba(0, 11, 88, .18);
    display: flex;
    flex-direction: column;
    animation: v-dash-fade 280ms cubic-bezier(.2, .7, .2, 1);
  }

  .v-dash__car-card .v-dash__panel-title {
    font-size: 22px !important;
    margin: 6px 0 12px;
  }

  .v-dash__car-card .v-dash__panel-desc {
    font-size: 15px !important;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .v-dash__car-card .v-dash__panel-bullets li {
    font-size: 14px !important;
  }

  .v-dash__car-card .v-dash__panel-cta {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
  }

  /* Per-module tint on the card */
  .v-dash__car-card--workflow {
    background: linear-gradient(180deg, rgba(4, 52, 244, .04), #fff 60%);
    border-color: rgba(4, 52, 244, .18);
  }

  .v-dash__car-card--mesa {
    background: linear-gradient(180deg, rgba(0, 11, 88, .04), #fff 60%);
    border-color: rgba(0, 11, 88, .18);
  }

  .v-dash__car-card--ia {
    background: linear-gradient(180deg, rgba(206, 255, 41, .16), #fff 60%);
    border-color: rgba(206, 255, 41, .5);
  }

  .v-dash__car-card--central {
    background: linear-gradient(180deg, rgba(240, 162, 58, .08), #fff 60%);
    border-color: rgba(240, 162, 58, .32);
  }

  .v-dash__car-card--datahub {
    background: linear-gradient(180deg, rgba(182, 156, 232, .12), #fff 60%);
    border-color: rgba(182, 156, 232, .4);
  }

  .v-dash__car-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 4px 0;
  }

  .v-dash__car-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 11, 88, .18);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 160ms, transform 160ms;
  }

  .v-dash__car-dot--active {
    background: var(--vaas-blue);
    transform: scale(1.2);
  }
}


/* Testimonials mobile carousel header — prev | company | next */
.v-testi__mob-head {
  display: none;
}

/* Remove the decorative side-lines from the centered eyebrow inside the
   testimonials section. Title block stays clean, no flanking strokes. */
.v-testi .v-eyebrow--center::before,
.v-testi .v-eyebrow--center::after {
  display: none !important;
}

.v-testi .v-section-head {
  margin-bottom: 36px;
}

@media (max-width: 980px) {
  .v-testi__mob-head {
    display: grid !important;
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
    align-items: center;
    padding: 0 4px;
    margin: 0 auto 8px;
    max-width: 520px;
  }

  .v-testi .v-section-head {
    margin-bottom: 20px !important;
  }

  .v-testi__mob-nav {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(0, 11, 88, .12);
    border-radius: 999px;
    color: var(--vaas-blue-deep);
    cursor: pointer;
    font-size: 18px;
    font-family: var(--font-display);
    transition: background 160ms, color 160ms, border-color 160ms;
  }

  .v-testi__mob-nav:hover {
    background: var(--vaas-blue);
    border-color: var(--vaas-blue);
    color: #fff;
  }

  .v-testi__mob-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
  }

  .v-testi__mob-n {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(0, 11, 88, .45);
    font-weight: 600;
  }

  .v-testi__mob-title b {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--vaas-blue-deep);
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  /* Hide the bottom controls on mobile — top header replaces them */
  .v-testi__controls {
    display: none !important;
  }

  /* Hide the aside client list on mobile — only the active quote shows */
  .v-testi-feature__aside {
    display: none !important;
  }
}


/* Testimonials feature quote — smaller font on mobile (~30% smaller) */
@media (max-width: 980px) {
  .v-testi-feature__quote {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .v-testi-feature__mark {
    font-size: 60px !important;
    top: -14px !important;
  }

  .v-testi-feature__name {
    font-size: 13px !important;
  }

  .v-testi-feature__role {
    font-size: 11.5px !important;
  }

  .v-testi-feature {
    padding: 28px 22px !important;
    gap: 20px !important;
  }
}


/* Cases mobile carousel header */
.v-cases__mob-head {
  display: none;
}

@media (max-width: 980px) {
  .v-cases__mob-head {
    display: grid !important;
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
    align-items: center;
    padding: 0 4px;
    margin: 0 auto 18px;
    max-width: 520px;
  }

  .v-cases__mob-nav {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-family: var(--font-display);
    transition: background 160ms, border-color 160ms;
  }

  .v-cases__mob-nav:hover {
    background: var(--vaas-lime);
    color: var(--vaas-blue-deep);
    border-color: var(--vaas-lime);
  }

  .v-cases__mob-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
  }

  .v-cases__mob-n {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
  }

  .v-cases__mob-title b {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  /* Hide the sidebar nav on mobile — top header replaces it */
  .v-cases-nav {
    display: none !important;
  }
}


/* Hide client logo on mobile testimonial card */
@media (max-width: 980px) {
  .v-testi-feature__logo {
    display: none !important;
  }
}


/* Mobile accordion icons. Match the desktop mega menu icon set.
   Slightly smaller plate to fit the tighter mobile rhythm. */
.v-mobile-acc__card-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
}

.v-mobile-acc__card-icon img {
  width: 20px !important;
  height: 20px !important;
}


/* Mobile menu — minimalist list (no card bg, just dividers) */
.v-mobile-acc__mega {
  padding: 4px 0 8px !important;
  gap: 0 !important;
}

.v-mobile-acc__card {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.v-mobile-acc__card:last-child {
  border-bottom: none !important;
}

.v-mobile-acc__card:hover,
.v-mobile-acc__card:active {
  background: transparent !important;
  border-color: rgba(255, 255, 255, .08) !important;
}

.v-mobile-acc__card-main {
  padding: 14px 4px !important;
  background: transparent !important;
}

.v-mobile-acc__card-main:active {
  background: rgba(255, 255, 255, .04) !important;
  border-radius: 6px;
}


/* Mobile menu — convert sub-link "pills" to discrete mono text list */
.v-mobile-acc__cardtags {
  padding: 0 4px 14px 54px !important;
  gap: 0 !important;
  display: block !important;
}

.v-mobile-acc__cardtag {
  display: inline-block !important;
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  color: rgba(255, 255, 255, .5) !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none !important;
}

.v-mobile-acc__cardtag+.v-mobile-acc__cardtag::before {
  content: " · ";
  color: rgba(255, 255, 255, .25);
  padding: 0 2px;
}

.v-mobile-acc__cardtag:active,
.v-mobile-acc__cardtag:hover {
  background: transparent !important;
  color: var(--vaas-lime) !important;
}


/* Mobile menu — language switcher with explicit label */
.v-mobile-menu__lang {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px !important;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.v-mobile-menu__lang-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}


/* ================================================================
   MOBILE MENU. UX-tuned drawer with category subtones (within palette)
   Each top-level row gets a colored left accent + tighter card layout.
   ================================================================ */
.v-mobile-menu__drawer {
  padding: 96px 22px 32px;
  gap: 24px;
  /* Stronger divider/depth via subtle radial glow at top */
  background:
    radial-gradient(120% 60% at 100% 0%, rgba(4, 52, 244, .28), transparent 60%),
    var(--vaas-blue-deep);
}

.v-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Unify accordion triggers and direct links into the same card-row look. */
.v-mobile-menu__nav>[data-mob-cat] {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.v-mobile-menu__nav>[data-mob-cat]:last-of-type {
  border-bottom: 0;
}

/* Per-category accent — only blues + lime, staying within VAAS palette. */
.v-mobile-menu__nav>[data-mob-cat]::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .18);
  transition: background 200ms var(--ease-out);
}

.v-mobile-menu__nav>[data-mob-cat="plataforma"]::before {
  background: #CDFF29;
}

.v-mobile-menu__nav>[data-mob-cat="solucoes"]::before {
  background: #5B86FF;
}

.v-mobile-menu__nav>[data-mob-cat="sobre"]::before {
  background: rgba(255, 255, 255, .5);
}

.v-mobile-menu__nav>[data-mob-cat="materiais"]::before {
  background: #A3D928;
}

.v-mobile-menu__nav>[data-mob-cat="blog"]::before {
  background: #0434F4;
}

/* Direct links (Sobre, Materiais, Blog). */
.v-mobile-menu__link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 12px !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.015em;
  color: #fff;
  text-decoration: none;
  border-bottom: 0 !important;
  border-radius: 6px;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out);
}

.v-mobile-menu__link::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid rgba(255, 255, 255, .45);
  border-top: 2px solid rgba(255, 255, 255, .45);
  transform: rotate(45deg);
  margin-right: 4px;
  transition: border-color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.v-mobile-menu__link:hover,
.v-mobile-menu__link:active {
  background: rgba(255, 255, 255, .05);
}

.v-mobile-menu__link:active::after,
.v-mobile-menu__link:hover::after {
  border-color: var(--vaas-lime);
  transform: translateX(2px) rotate(45deg);
}

/* Static direct link (no destination yet). plain text, no arrow, no hover */
.v-mobile-menu__link--static {
  color: rgba(255, 255, 255, .42);
  cursor: default;
}

.v-mobile-menu__link--static::after {
  display: none;
}

.v-mobile-menu__link--static:hover,
.v-mobile-menu__link--static:active {
  background: transparent;
}

/* Accordion triggers (Plataforma, Soluções). */
.v-mobile-acc {
  border-bottom: 0;
}

.v-mobile-acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  padding: 18px 12px;
  cursor: pointer;
  text-align: left;
  border-radius: 6px;
  transition: background 160ms var(--ease-out);
}

.v-mobile-acc__trigger:hover,
.v-mobile-acc__trigger:active {
  background: rgba(255, 255, 255, .05);
}

.v-mobile-acc__caret {
  transition: transform 220ms var(--ease-out);
  opacity: .65;
  margin-right: 6px;
}

.v-mobile-acc--open .v-mobile-acc__caret {
  transform: rotate(180deg);
  opacity: 1;
}

.v-mobile-acc__body {
  padding: 0 12px;
}

/* Sublinks inside an accordion (Plataforma / Soluções product list). */
.v-mobile-acc__cardtags {
  padding: 0 4px 14px 54px !important;
  display: flex !important;
  flex-direction: column;
  gap: 0 !important;
}

.v-mobile-acc__cardtag {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 0 !important;
  font-family: var(--font-mono) !important;
  font-size: 12.5px !important;
  letter-spacing: 0.04em !important;
  color: rgba(255, 255, 255, .65) !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px dashed rgba(255, 255, 255, .06) !important;
  text-decoration: none !important;
}

.v-mobile-acc__cardtag::before {
  content: '·';
  color: rgba(255, 255, 255, .3);
  font-weight: 700;
  margin-right: 2px;
}

.v-mobile-acc__cardtag+.v-mobile-acc__cardtag::before {
  content: '·';
}

.v-mobile-acc__cardtag:last-of-type {
  border-bottom: 0 !important;
}

.v-mobile-acc__cardtag:hover,
.v-mobile-acc__cardtag:active {
  color: var(--vaas-lime) !important;
}

/* Language section — clearly separated from the menu items. */
.v-mobile-menu__lang {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 12px !important;
  margin-top: 12px !important;
  border-top: 1px solid rgba(255, 255, 255, .1) !important;
  border-bottom: 0;
}

.v-mobile-menu__lang-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
}

/* CTA actions at the bottom of the drawer — tighter spacing. */
.v-mobile-menu__actions {
  margin-top: 8px;
  gap: 12px;
}

.v-mobile-menu__actions .v-btn {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14.5px;
}

/* ============================================================
   OtherModules · "Conheça também" cross-link section
   (rendered before the FinalCTA on solution pages)
   ============================================================ */
.v-mods {
  background: var(--vaas-gray-50, #f7f8fb);
  border-top: 1px solid rgba(7, 9, 20, .06);
  padding: 96px 48px;
}

.v-mods__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.v-mods__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.v-mods__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--vaas-blue-deep);
  margin: 16px 0 0;
  text-wrap: balance;
}

.v-mods__title em {
  font-style: normal;
  color: var(--vaas-blue);
}

.v-mods__sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(7, 9, 20, .64);
  margin: 18px auto 0;
  max-width: 600px;
  text-wrap: pretty;
}

.v-mods__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.v-mods__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(7, 9, 20, .09);
  border-radius: 16px;
  padding: 26px 22px 22px;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(7, 9, 20, .04);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.v-mods__card:hover {
  border-color: rgba(4, 52, 244, .28);
  box-shadow: 0 18px 40px -22px rgba(7, 9, 20, .3);
  transform: translateY(-3px);
}

.v-mods__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--vaas-gray-100, #f1f4f9);
  margin-bottom: 18px;
}

.v-mods__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.v-mods__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--vaas-blue-deep);
  margin: 0 0 8px;
}

.v-mods__desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(7, 9, 20, .62);
  margin: 0 0 18px;
  text-wrap: pretty;
}

.v-mods__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--vaas-blue);
}

.v-mods__more svg {
  transition: transform .18s ease;
}

.v-mods__card:hover .v-mods__more svg {
  transform: translateX(3px);
}

@media (max-width: 1080px) {
  .v-mods__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .v-mods {
    padding: 72px 20px;
  }

  .v-mods__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .v-mods__card {
    padding: 22px 18px 18px;
  }
}

@media (max-width: 460px) {
  .v-mods__grid {
    grid-template-columns: 1fr;
  }
}