
/* CTA button (Uiverse: vikiWayne) */
.button{
  display:inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  white-space: normal;
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: clamp(1px, .55vw, 5px);
  text-transform: uppercase;
  cursor: pointer;
  color: #6d64ff;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #6d64ff;
  background: transparent;
  text-decoration: none;
  line-height: 1;
}
.button:hover{
  color: #ffffff;
  transform: scale(1.03);
  outline: 2px solid #111d33;
  box-shadow: 4px 5px 17px -4px #6d64ff;
}
.button::before{
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #6d64ff;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}
.button:hover::before{
  width: 250%;
}
.button--ghost{
  outline-color: rgba(109,100,255,.6);
  color: rgba(255,255,255,.88);
}


:root{
  /* Motion system */
  --ease-out: cubic-bezier(.2,.8,.2,1);
  --ease-inout: cubic-bezier(.16,1,.3,1);
  --t-fast: 160ms;
  --t-med: 280ms;
  --t-slow: 420ms;
  --blur-in: 10px;

  /* Acquiris palette */
  --dark-blue: #111d33;   /* 17 29 51 */
  --dark-grey: #2d384a;   /* 45 56 74 */
  --purple:    #6d64ff;   /* 109 100 255 */
  --yellow:    #fcc339;   /* 254 195 57 */
  --light-grey:#f6f6f6;   /* 246 246 246 */

  /* Base */
  --bg: #0a0c12;          /* near-black */
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --hair: rgba(255,255,255,.10);

  --radius: 18px;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --container: 1120px;
  --header-h: 68px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a{ color: inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.container{
  width:min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 24px 0;                        /* ← Added: more vertical breathing room */
  background: rgba(10, 12, 18, 0.88);
  backdrop-filter: blur(16px);            /* ← Stronger, more luxurious blur */
  border-bottom: 1px solid rgba(109, 100, 255, 0.08); /* subtle purple edge */
  transition: background 0.4s ease;
}
header {
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  transition: background 0.4s ease;
}
/* Compensate fixed header + fix anchor jumps */
main{
  padding-top: var(--header-h, 68px);
}

html{
  scroll-padding-top: calc(var(--header-h, 68px) + 14px);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;                        /* ← Wider side padding */
  max-width: var(--container);
  margin: 0 auto;
}

.brand{
  display:flex;
  align-items:center;
  gap:0;
}

.brand-logo{
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: .92;
}

.brand:hover .brand-logo{
  opacity: 1;
}


.nav {
  display: flex;
  gap: clamp(32px, 5vw, 64px);           /* ← Much wider spacing between items */
  align-items: center;
}

.nav a {
  font-size: 1.05rem;                     /* ← Bigger (≈16–17px), premium feel */
  font-weight: 500;
  color: rgba(255,255,255,.88);
  letter-spacing: 0.02em;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus {
  color: #6d64ff;                         /* your purple */
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: #6d64ff;
  transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav a:hover::after {
  width: 100%;
}

.top-nav, .main-menu {
  padding: 24px 0;                        /* more vertical space in header */
}

.top-nav ul {
  display: flex;
  gap: clamp(32px, 4vw, 60px);            /* MUCH more space between items */
  justify-content: center;
  align-items: center;
}

.top-nav a {
  font-size: 1.1rem;                      /* larger than current – more premium */
  font-weight: 500;
  color: #e0e0ff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, transform 0.2s ease;
  padding: 8px 0;
}

/* Hover effect – subtle purple underline + slight lift */
.top-nav a:hover,
.top-nav a.active {
  color: #7a6eff;                         /* your purple accent */
  transform: translateY(-2px);            /* micro-lift for interactivity */
}

/* Underline on hover (clean & modern) */
.top-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #7a6eff;
  transition: width 0.3s ease;
}

.top-nav a:hover::after {
  width: 100%;
}

/* Active/current page indicator */
.top-nav a.active::after {
  width: 100%;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-size: 14px;
  transition: transform .12s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  border-color: rgba(109,100,255,.42);
  background:
    radial-gradient(120px 60px at 20% 20%, rgba(252,195,57,.18), transparent 60%),
    linear-gradient(135deg, rgba(109,100,255,.95), rgba(45,56,74,.55));
  box-shadow: 0 12px 35px rgba(109,100,255,.22);
}
.btn-ghost{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.10);
}

/* Hero */
.hero {
  position: relative;
  padding-top: clamp(140px, 15vh, 220px);   /* ← Huge top space after fixed header */
  padding-bottom: clamp(80px, 10vh, 140px);
  min-height: 85vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hero-bg{
  position:absolute;
  inset:0;
  transform: translateZ(0);
}

.hero-bg img{
  position:absolute;
  inset:-6%;
  width:112%;
  height:112%;
  object-fit: cover;
  opacity: .92;
  filter: saturate(1.05) contrast(1.03);
  transform: translate3d(0,0,0) scale(1.10);
  will-change: transform;
}

.hero-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 600px at 18% 20%, rgba(109,100,255,.18), transparent 58%),
    radial-gradient(900px 600px at 78% 55%, rgba(17,29,51,.34), transparent 62%),
    linear-gradient(180deg, rgba(10,12,18,.70), rgba(10,12,18,.93));
}

/* Grain overlay (bem sutil) */
.hero-grain{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.11;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  background-size: 260px 260px;
}

.hero-inner{
  position: relative;
  z-index: 1;
  padding: 40px 0 70px;
}

.hero-copy{
  max-width: 720px;
}

/* Hero section wrapper – add generous vertical space */
.hero, .hero-section {  /* adjust selector to match your actual class/id */
  padding: clamp(120px, 12vh, 180px) 0;  /* top/bottom – much more air */
  min-height: 80vh;                      /* ensures it feels substantial */
}

/* Headline – give it room to breathe */
.hero h1 {
  margin-bottom: clamp(24px, 4vh, 48px);  /* space below big title */
  font-size: clamp(40px, 4.2vw, 60px);    /* your existing size – good */
  line-height: 1.05;
}

/* Subtext paragraph */
.hero p, .hero .subtitle {
  margin-bottom: clamp(32px, 5vh, 60px);  /* more space before CTA */
  font-size: 1.2rem;                      /* slightly larger for readability */
  line-height: 1.6;
}

/* CTA button – give it isolation */
.hero .cta-button {
  padding: 18px 48px;                     /* larger button for premium feel */
  margin-top: 20px;
}

/* Overall body – subtle top padding if needed */
body {
  padding-top: 0;  /* if you have fixed header */
}

.kicker{
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.hero h1{
  margin:0 0 14px;
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.subline{
  margin:0 0 26px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.76);
  max-width: 56ch;    /* largura por caracteres: fica bonito sempre */
  line-height: 1.55;
  margin-top: 18px;
  text-wrap: balance; /* melhora as quebras (Chrome/Edge) */
}
.sublineBreak{ display:block; height: 10px; }


.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
    justify-content: left;  /* centraliza horizontal */
  margin-top: 128px;         /* desce um pouco */
}

.hero-meta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.chip{
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
}

/* Sections */
.section{
  padding: 70px 0;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section-head h2{
  margin:0;
  font-size: 26px;
  letter-spacing: -0.01em;
}
.section-head p{
  margin:0;
  color: rgba(255,255,255,.72);
  max-width: 60ch;

  /* ADD: center only in Capabilities */
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM CAPABILITIES SECTION
   High-ticket strategic consulting showcase
   ═══════════════════════════════════════════════════════════════ */

/* Section wrapper - executive breathing room */
#capabilities {
  padding: clamp(100px, 12vh, 160px) 0;
  position: relative;
  overflow: hidden;
}

/* Ambient background gradient (subtle luxury) */
#capabilities::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(
    ellipse 1200px 800px at 50% 30%,
    rgba(109, 100, 255, 0.03),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

#capabilities .container {
  position: relative;
  z-index: 1;
}

/* Section header - refined typography */
#capabilities .section-head {
  text-align: center;
  margin-bottom: clamp(60px, 8vh, 90px);
}

#capabilities .section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

#capabilities .section-head p {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.01em;
  max-width: 46ch;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   MAIN GRID - Professional layout
   ═══════════════════════════════════════════════════════════════ */

#capabilities .caps {
  position: relative;
  display: grid;
  grid-template-columns: 340px minmax(560px, 800px);
  justify-content: center;
  column-gap: clamp(48px, 6vw, 80px);
  align-items: start;
  --beam-y: 28px;
}

/* ═══════════════════════════════════════════════════════════════
   LEFT COLUMN - Capability buttons (premium cards)
   ═══════════════════════════════════════════════════════════════ */

#capabilities .caps__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

/* Each capability button - executive card design */
#capabilities .caps__item {
  position: relative;
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  min-height: 62px;
  border-radius: 16px;
  
  /* Layered borders for depth */
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(10, 12, 18, 0.60);
  
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  outline: none;
  
  /* Premium shadow stack */
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  
  /* Smooth luxury transitions */
  transition: 
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 280ms ease;
  
  /* Button layout */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  
  /* Overflow for gradient sweep */
  overflow: hidden;
  isolation: isolate;
}

/* Gradient sweep on hover (subtle premium effect) */
#capabilities .caps__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(109, 100, 255, 0.12),
    rgba(109, 100, 255, 0.04),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 350ms ease;
  z-index: 0;
}

#capabilities .caps__item:hover::before {
  opacity: 1;
}

/* Hover state - refined lift */
#capabilities .caps__item:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 100, 255, 0.35);
  background: 
    linear-gradient(135deg, rgba(109, 100, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 12, 18, 0.70);
  box-shadow:
    0 8px 24px rgba(109, 100, 255, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Active state - premium highlight with glow */
#capabilities .caps__item.is-active {
  border-color: rgba(109, 100, 255, 0.50);
  background:
    radial-gradient(350px 180px at 20% 30%, rgba(109, 100, 255, 0.18), transparent 65%),
    linear-gradient(135deg, rgba(109, 100, 255, 0.10), rgba(255, 255, 255, 0.03)),
    rgba(10, 12, 18, 0.75);
  
  box-shadow:
    0 0 0 1px rgba(109, 100, 255, 0.25) inset,
    0 12px 32px rgba(109, 100, 255, 0.20),
    0 6px 16px rgba(0, 0, 0, 0.25);
}

#capabilities .caps__item.is-active::before {
  opacity: 0.7;
}

/* Focus state - accessibility with style */
#capabilities .caps__item:focus-visible {
  outline: none;
  border-color: rgba(109, 100, 255, 0.60);
  box-shadow:
    0 0 0 3px rgba(109, 100, 255, 0.20),
    0 8px 24px rgba(109, 100, 255, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.20);
}

/* Button label - executive typography */
#capabilities .caps__label {
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* Arrow icon - refined sizing */
#capabilities .caps__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.45;
  transition: 
    opacity 280ms ease,
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

#capabilities .caps__item:hover svg {
  opacity: 0.85;
  transform: translateX(3px);
}

#capabilities .caps__item.is-active svg {
  opacity: 1;
  color: rgba(175, 165, 255, 0.95);
}

/* ═══════════════════════════════════════════════════════════════
   CONNECTING BEAM - Premium animated line
   ═══════════════════════════════════════════════════════════════ */

#capabilities .caps__beam {
  position: absolute;
  top: var(--beam-y);
  left: var(--beam-x1, 356px);
  width: var(--beam-w, 260px);
  height: 2px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
  
  /* Subtle base line */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.04)
  );
  opacity: 0.8;
  
  /* Smooth position transitions */
  transition: 
    top 420ms cubic-bezier(0.16, 1, 0.3, 1),
    width 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated purple/pink sweep over beam */
#capabilities .caps__beam::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  
  /* Gradient sweep effect */
  background: linear-gradient(
    90deg,
    rgba(109, 100, 255, 1),
    rgba(140, 120, 255, 0.85),
    rgba(175, 165, 255, 0.40),
    rgba(255, 255, 255, 0.10)
  );
  
  /* Glow effect */
  box-shadow:
    0 0 12px rgba(109, 100, 255, 0.50),
    0 0 24px rgba(109, 100, 255, 0.25);
  
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
}

/* Beam animation trigger */
#capabilities .caps.is-animating .caps__beam::after {
  animation: premiumBeamSweep 600ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes premiumBeamSweep {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0.92;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RIGHT PANEL - Executive content showcase
   ═══════════════════════════════════════════════════════════════ */

#capabilities .caps__panel {
  position: relative;
  border-radius: 20px;
  
  /* Layered luxury border */
  border: 1px solid rgba(255, 255, 255, 0.12);
  
  /* Multi-layer background for depth */
  background:
    radial-gradient(900px 500px at 28% 15%, rgba(109, 100, 255, 0.12), transparent 65%),
    radial-gradient(700px 400px at 75% 85%, rgba(109, 100, 255, 0.06), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(10, 12, 18, 0.65);
  
  padding: clamp(28px, 3.5vw, 38px) clamp(30px, 4vw, 42px);
  min-height: 280px;
  overflow: hidden;
  
  /* Premium shadow stack */
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  
  /* Ensure content layering */
  isolation: isolate;
}

/* Decorative corner accent (top-right) */
#capabilities .caps__panel::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle at top right,
    rgba(109, 100, 255, 0.08),
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

/* Subtle grain texture overlay */
#capabilities .caps__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  z-index: 0;
}

/* Content container - animation ready */
#capabilities .caps__content {
  position: relative;
  z-index: 2;
  will-change: opacity, transform, filter;
  transform-style: preserve-3d;
}

/* Eyebrow label (category) */
#capabilities .caps__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(175, 165, 255, 0.85);
  font-weight: 600;
}

/* Main headline */
#capabilities .caps__h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.96);
}

/* Body copy */
#capabilities .caps__body {
  margin: 0;
  font-size: clamp(14.5px, 1.6vw, 16px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 62ch;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════════════
   CONTENT TRANSITIONS - Sophisticated animations
   ═══════════════════════════════════════════════════════════════ */

/* Leaving state - fade out with subtle rotation */
#capabilities .caps__content.is-leaving {
  opacity: 0;
  transform: perspective(1200px) rotateY(8deg) translateY(-10px);
  filter: blur(3px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

/* Entering state - initial position */
#capabilities .caps__content.is-entering {
  opacity: 0;
  transform: perspective(1200px) rotateY(-10deg) translateY(12px);
  filter: blur(3px);
}

/* Entered state - smooth arrival */
#capabilities .caps__content.is-entered {
  opacity: 1;
  transform: perspective(1200px) rotateY(0deg) translateY(0);
  filter: blur(0);
  transition:
    opacity 380ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ambient glow effect (moves with content changes) */
#capabilities .caps__glow {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background: radial-gradient(
    closest-side at 70% 30%,
    rgba(109, 100, 255, 0.15),
    rgba(109, 100, 255, 0.05) 40%,
    transparent 70%
  );
  opacity: 0.6;
  filter: blur(40px);
  mix-blend-mode: screen;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE - Tablet & Mobile
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  #capabilities .caps {
    grid-template-columns: 300px minmax(480px, 680px);
    column-gap: 40px;
  }
}

@media (max-width: 920px) {
  #capabilities .caps {
    grid-template-columns: 1fr;
    gap: 32px;
    --beam-y: 0;
  }
  
  #capabilities .caps__beam {
    display: none;
  }
  
  #capabilities .caps__panel {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  #capabilities {
    padding: clamp(70px, 10vh, 100px) 0;
  }
  
  #capabilities .section-head {
    margin-bottom: 40px;
  }
  
  #capabilities .caps__item {
    padding: 16px 18px;
    min-height: 56px;
  }
  
  #capabilities .caps__panel {
    padding: 24px 20px;
    min-height: 220px;
  }
}




/* Framework section — aligned letters + scroll reveal (stable) */
.fw{
  position: relative;
  /* Scroll track: ~3.6 screens reveal + ~2 screens watermark/notes */
  height: calc(100svh * 6.6);
}

.fw__sticky{
  position: sticky;
    top: calc(var(--header-h, 68px) + 18px);
  height: calc(100svh - (var(--header-h, 68px) + 18px));
  display: flex;
  align-items: center;
  justify-content: center;
}

.fw__inner{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-24px); /* testa -10px / -14px / -18px */
}

.fw__kicker{
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.72);
  margin: 0 0 14px 0;
}

.fw__summary{
  margin: 0 0 22px 0;
  color: rgba(255,255,255,.78);
  max-width: 70ch;
}

/* keep header text aligned with the centered grid width */
.fw__kicker,
.fw__summary{
  width: min(1112px, 100%);
  margin-left: auto;
  margin-right: auto;
}

/* ONE GRID: 8 rows shared by letters + notes + steps */
.fw__grid{
  --fw-letter: 110px;
  --fw-gap: 400px;     /* column reserved for notes */
  --fw-step: 720px;    /* max width for the step text column */

  display: grid;
  grid-template-columns: var(--fw-letter) var(--fw-gap) minmax(0, var(--fw-step));
  column-gap: 0;
  row-gap: 10px;
  align-items: start;

  width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

/* wrappers don’t participate in layout; their children become grid items */
.fw__acronym{ display: contents; }
.fw__letters{ display: contents; }
.fw__steps{ display: contents; }

/* force readability on the right column (never center) */
.fw__steps,
.fw__step,
.fw__step h3,
.fw__step p{ text-align: left; }

/* ===== Letters ===== */
.fw__letter{
  grid-column: 1;
  align-self: start;

  font-size: 52px;
  line-height: 1;
  font-weight: 720;

  /* default: neutral; color only when notes appear */
  color: rgba(255,255,255,.86);
  text-shadow: none;

  /* invisible until active */
  opacity: 0;
  transform: translateY(14px) scale(.985);
  filter: blur(8px);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(.2,.9,.2,1),
    filter 520ms ease,
    color 380ms ease,
    text-shadow 420ms ease;
  will-change: opacity, transform, filter;
}

/* tiny baseline alignment tweak */
.fw__letter{ margin-top: -1px; }

.fw__letter.is-on{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ===== Steps ===== */
.fw__step{
  grid-column: 3;
  align-self: start;

  opacity: 0;
  transform: translateY(16px);
  filter: blur(10px);
  transition:
    opacity 420ms ease,
    transform 560ms cubic-bezier(.2,.9,.2,1),
    filter 560ms ease;
  will-change: opacity, transform, filter;
}

.fw__step.is-on{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* map each letter + step to the same row */
.fw__letter[data-i="0"], .fw__step[data-i="0"]{ grid-row: 1; }
.fw__letter[data-i="1"], .fw__step[data-i="1"]{ grid-row: 2; }
.fw__letter[data-i="2"], .fw__step[data-i="2"]{ grid-row: 3; }
.fw__letter[data-i="3"], .fw__step[data-i="3"]{ grid-row: 4; }
.fw__letter[data-i="4"], .fw__step[data-i="4"]{ grid-row: 5; }
.fw__letter[data-i="5"], .fw__step[data-i="5"]{ grid-row: 6; }
.fw__letter[data-i="6"], .fw__step[data-i="6"]{ grid-row: 7; }
.fw__letter[data-i="7"], .fw__step[data-i="7"]{ grid-row: 8; }

.fw__step h3{
  margin: 0 0 6px 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.fw__cap{
  display: inline-block;
  width: 22px;
  opacity: .9;
}

.fw__step p{
  margin: 0;
  max-width: 64ch;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
}

/* ===== Notes (two cards) ===== */
:root{
  --acqu-blue: rgba(120, 170, 255, 0.95);
  --iris-yellow: rgba(252,195,57,.95);
}

.fw__notes{
  grid-column: 2;
  grid-row: 1 / span 8;
  align-self: center;
  justify-self: start;
  margin-left: 26px;

  width: min(340px, calc(var(--fw-gap) - 60px));

  display: flex;
  flex-direction: column;
  gap: 14px;

  opacity: 0;
  transform: translateY(10px);
  filter: blur(10px);
  transition: opacity 520ms ease, transform 650ms cubic-bezier(.2,.9,.2,1), filter 650ms ease;
}

/* show notes column only when ACQU starts (keeps it hidden earlier) */
.fw.is-note-acqu .fw__notes,
.fw.is-note-iris .fw__notes{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.fw__note{
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 14px 14px 12px;
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);

  /* each card reveals separately */
  opacity: 0;
  transform: translateY(10px);
  filter: blur(10px);
  transition: opacity 520ms ease, transform 650ms cubic-bezier(.2,.9,.2,1), filter 650ms ease;
}

.fw__note--acqu{ border-color: rgba(120,170,255,.22); }
.fw__note--iris{ border-color: rgba(252,195,57,.22); }

.fw.is-note-acqu .fw__note--acqu{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.fw.is-note-iris .fw__note--iris{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.fw__note-kicker{
  margin: 0 0 6px 0;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
}
.fw__note--acqu .fw__note-kicker{ color: rgba(120,170,255,.92); }
.fw__note--iris .fw__note-kicker{ color: rgba(252,195,57,.92); }

.fw__note-title{
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.fw__note-body{
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
}

/* Letters gain color ONLY when notes are active */
.fw.is-note-acqu .fw__letter.is-on[data-i="0"],
.fw.is-note-acqu .fw__letter.is-on[data-i="1"],
.fw.is-note-acqu .fw__letter.is-on[data-i="2"],
.fw.is-note-acqu .fw__letter.is-on[data-i="3"]{
  color: var(--acqu-blue);
  text-shadow: 0 0 22px rgba(120,170,255,.18);
}

.fw.is-note-iris .fw__letter.is-on[data-i="4"],
.fw.is-note-iris .fw__letter.is-on[data-i="5"],
.fw.is-note-iris .fw__letter.is-on[data-i="6"],
.fw.is-note-iris .fw__letter.is-on[data-i="7"]{
  color: var(--iris-yellow);
  text-shadow: 0 0 22px rgba(252,195,57,.14);
}


/* Footer */
.site-footer{
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.footer-right{
  display:flex;
  gap: 14px;
}
.footer-right a{
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.footer-right a:hover{ color: rgba(255,255,255,.90); }

/* Responsive */
@media (max-width: 920px){
  .nav{ gap: 12px; }
  .nav a:not(.btn){ display:none; }
  .frameworks{ grid-template-columns: 1fr; }
  .engage-inner{ grid-template-columns: 1fr; }
}

/* =========================
   Capabilities (full reset)
   ========================= */
#capabilities .caps{
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  column-gap: 56px;
  align-items: start;

  /* beam vars (JS will update) */
  --beam-y: 24px;
  --beam-x1: 340px;
  --beam-w: 240px;
}
/* Put the section-head paragraph over the RIGHT column (panel) and center it */
#capabilities .section-head{
  display: grid;
  grid-template-columns: 320px 1fr;   /* mesma lógica da caps */
  column-gap: 56px;                  /* igual ao column-gap da caps */
  align-items: end;
}

#capabilities .section-head h2{
  grid-column: 1;
}

#capabilities .section-head p{
  grid-column: 2;
  justify-self: center;              /* centraliza dentro da coluna do painel */
  text-align: center;
  max-width: 60ch;
}



/* left list */
#capabilities .caps__list{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* UIverse-inspired button (smooth, clear hover, active persists) */
#capabilities .caps__item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  width: 100%;
  text-align: left;

  padding: 12px 14px;
  min-height: 44px;

  border-radius: 12px;
  border: 1px solid rgba(109,100,255,.40);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.92);

  cursor: pointer;
  outline: none;
  overflow: hidden;

  transition: background .35s ease, border-color .35s ease, transform .14s ease;
}

#capabilities .caps__item:hover{
  background: rgba(109,100,255,.22);
  border-color: rgba(109,100,255,.62);
  transform: translateY(-1px);
}
#capabilities .caps__item:active{ transform: translateY(0px); }

#capabilities .caps__item:focus-visible{
  box-shadow: 0 0 0 4px rgba(109,100,255,.12);
}

#capabilities .caps__label{
  font-weight: 650;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .1px;
}

#capabilities .caps__item svg{
  width: 18px;
  height: 18px;
  opacity: .88;
  transition: transform .35s ease, opacity .35s ease;
}

#capabilities .caps__item:hover svg{
  transform: translateX(5px);
  opacity: 1;
}

/* selected */
#capabilities .caps__item.is-active{
  background: rgba(109,100,255,.30);
  border-color: rgba(109,100,255,.78);
}
#capabilities .caps__item.is-active svg{
  transform: translateX(3px);
  opacity: 1;
}

/* beam: base stays visible, sweep animates on top */
#capabilities .caps__beam{
  position: absolute;
  top: var(--beam-y);
  left: var(--beam-x1);
  width: var(--beam-w);

  height: 2px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;

  background: rgba(255,255,255,.10);
  opacity: .92;
}
#capabilities .caps__beam::after{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: 999px;

  background: linear-gradient(90deg,
    rgba(109,100,255,.95),
    rgba(109,100,255,.25),
    rgba(255,255,255,.08)
  );

  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
}
#capabilities .caps.is-animating .caps__beam::after{
  animation: capsBeam 360ms cubic-bezier(.2,.8,.2,1) both;
}
@keyframes capsBeam{
  0%   { transform: scaleX(0); opacity: 0; }
  18%  { opacity: .95; }
  100% { transform: scaleX(1); opacity: .90; }
}

/* right panel */
#capabilities .caps__panel {
  position: relative;
  z-index: 2;

  justify-self: end;
  width: 560px;
  max-width: 560px;

  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);

  background:
    radial-gradient(820px 420px at 25% 10%, rgba(109,100,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));

  padding: 18px 20px;
  min-height: 300px;
  overflow: hidden;
}



#capabilities .caps__content{
  position: relative;
  z-index: 2;
  will-change: opacity, transform, filter;
  transform-style: preserve-3d;
}
#capabilities .caps__eyebrow{
  margin: 0 0 8px 0;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

#capabilities .caps__h3{
  margin: 0 0 24px 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}
#capabilities .caps__kicker{
  margin: 0 0 14px 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
#capabilities .caps__body{
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.6;
  max-width: 66ch;
  white-space: pre-line;

}

/* flip-ish text transition */
#capabilities .caps__content.is-leaving{
  opacity: 0;
  transform: perspective(900px) rotateY(10deg) translateY(-6px);
  filter: blur(2px);
  transition: opacity .18s ease, transform .18s ease, filter .18s ease;
}
#capabilities .caps__content.is-entering{
  opacity: 0;
  transform: perspective(900px) rotateY(-12deg) translateY(8px);
  filter: blur(2px);
}
#capabilities .caps__content.is-entered{
  opacity: 1;
  transform: perspective(900px) rotateY(0deg) translateY(0);
  filter: blur(0);
  transition:
    opacity .22s cubic-bezier(.2,.8,.2,1),
    transform .22s cubic-bezier(.2,.8,.2,1),
    filter .22s cubic-bezier(.2,.8,.2,1);
}

#capabilities .caps__glow{
  position: absolute;
  inset: -30%;
  pointer-events: none;
  background: radial-gradient(closest-side at 75% 25%,
    rgba(255,255,255,.10),
    rgba(255,255,255,0) 60%);
  opacity: .55;
}

/* responsive */
@media (max-width: 920px){
  #capabilities .caps{
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  #capabilities .caps__beam{ display:none; }
  #capabilities .caps__panel{
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 920px){
  /* Capabilities header: stack + left-align on mobile */
  #capabilities .section-head{
    grid-template-columns: 1fr;
    row-gap: 10px;
    align-items: start;
  }

  #capabilities .section-head h2{
    grid-column: 1;
  }

  #capabilities .section-head p{
    grid-column: 1;
    justify-self: start;
    text-align: left;
    max-width: 60ch; /* pode manter ou ajustar */
  }
}



/* -----------------------------
   Home: Hero CTA subtext
------------------------------ */
.hero-ctaSub{
  margin-top: 20px;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.72);
}


/* -----------------------------
   Framework: watermark + CTA after
------------------------------ */
.fw__grid{
  position: relative;
}
.fw__mark{
  position:absolute;
  right: 18px;
  top: 18px;
  width: 92px;
  height: auto;
  opacity: .20;
  filter: saturate(0.9);
  pointer-events:none;
}

.fw__after{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.fw__afterSub{
  margin: 0;
  max-width: 560px;
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
}

/* -----------------------------
   Home: Insights reel
------------------------------ */
.insights-home .lead{
  margin-top: 10px;
  color: rgba(255,255,255,.78);
}
.insights__reel{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}
.insightChip{
  flex: 0 0 auto;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,.86);
  text-decoration:none;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.insightChip:hover{
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.05);
  transform: none;
}


/* -----------------------------
   Home: Insights deck (dual accordion + visual)
------------------------------ */
.insights-deck .insDeck__head h2{
  max-width: none;       /* remove o limitador que forçava quebra */
  white-space: nowrap;   /* desktop: 1 linha */
}

@media (max-width: 720px){
  .insDeck__head h2{ white-space: normal; } /* mobile pode quebrar */
}

.insDeck{
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2px;
  align-items: start;
}

.insDeck__left{
  border-top: 1px solid rgba(255,255,255,.10);
}

.insDeck__item{
  position: relative; /* necessário pro + absoluto */
  width:100%;
  display:grid;

  /* remove a coluna do +, dá mais espaço real pro título */
  grid-template-columns: 56px minmax(0, 1fr);

  gap: 18px;
  align-items: baseline;

  /* reserva espaço à direita pro + sem roubar coluna */
  padding: 22px 24px 22px 0;

  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}


.insDeck__idx{
  font-feature-settings: "tnum" 1;
  letter-spacing: .18em;
  opacity: .78;
}

.insDeck__title{
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.25;
  font-weight: 620;
  opacity: .92;
  transition: opacity .22s ease, text-shadow .22s ease;

  /* não corta com ... */
  white-space: normal;
  overflow: visible;
  text-overflow: unset;

  /* evita o "+" por cima do texto */
  padding-right: 28px;

  /* opcional: limita a 2 linhas (se quiser) */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /*-webkit-line-clamp: 2;*/
}

.insDeck__item{ min-width: 0; }
.insDeck__item > *{ min-width: 0; }


.insDeck__mark{
  opacity: .70;
  transform: translateY(2px);
  transition: transform .22s ease, opacity .22s ease;
    position: absolute;
  right: 0;
  top: 22px; /* alinha com a primeira linha do item */
}

.insDeck__item[aria-selected="true"] .insDeck__title{
  opacity: 1;
  text-shadow: 0 0 14px rgba(255,255,255,.06);
}
.insDeck__item[aria-selected="true"] .insDeck__mark{
  transform: translateY(2px) rotate(45deg);
  opacity: 1;
}

.insDeck__body{
  padding: 0 0 18px 74px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.insDeck__body p{
  margin: 0;
  max-width: 58ch;
  font-size: 15.8px;
  line-height: 1.62;
  color: rgba(255,255,255,.82);
  text-shadow: 0 0 12px rgba(255,255,255,.05);

  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.insDeck__all{
  display:inline-block;
  margin-top: 14px;
  color: rgba(255,255,255,.82);
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.insDeck__all:hover{
  color: rgba(255,255,255,.95);
  border-bottom-color: rgba(255,255,255,.35);
}

/* Right visual */
.insDeck__viz{
  position: sticky;
  top: calc(var(--header-h, 72px) + 18px);
  height: min(460px, 52vh);
  width: 100%;
  overflow: visible;
}

.insDeck__vizImg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px) scale(.99);
  filter: blur(7px);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    filter 260ms ease,
    clip-path 260ms ease;
  clip-path: inset(0 0 100% 0);
}

.insDeck__vizImg.is-active{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}

.insDeck__viz::before{
  content:"";
  position:absolute;
  inset:-14%;
  background: radial-gradient(closest-side, rgba(140,120,255,.10), transparent 65%);
  opacity: 0;
  pointer-events:none;
}

@media (max-width: 980px){
  .insDeck{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .insDeck__viz{
    position: relative;
    top: auto;
    height: 320px;
  }
}

@media (max-width: 560px){
  .insDeck__item{
    grid-template-columns: 44px 1fr 18px;
    gap: 12px;
    padding: 18px 0;
  }
  @media (max-width: 560px){
  .insDeck__title{ font-size: 16px; }
}

  .insDeck__body{ padding-left: 56px; }
}


/* -----------------------------
   Modal: Initial Assessment
------------------------------ */
html.is-locked, html.is-locked body{
  overflow:hidden;
}

.modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.modal.is-open{
  opacity: 1;
  pointer-events: auto;
}
.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.62);
}
.modal__panel{
  position: relative;
  width: min(720px, calc(100% - 32px));
  margin: 8vh auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(10,12,18,.92);
  box-shadow: 0 20px 70px rgba(0,0,0,.55);
  padding: 16px 16px 14px;
}
.modal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.modal__head h3{
  margin: 0;
  font-size: 16px;
}
.modal__close{
  appearance:none;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.75);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 10px;
}
.modal__close:hover{
  background: rgba(255,255,255,.06);
}

.modal__sub{
  margin: 8px 0 12px;
  color: rgba(255,255,255,.74);
  font-size: 12.5px;
}

.modal__form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field{
  display:flex;
  flex-direction: column;
  gap: 6px;
}
.field span{
  font-size: 12px;
  color: rgba(255,255,255,.70);
}
.field input, .field textarea{
  width:100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.90);
  padding: 10px 10px;
  outline: none;
}
.field input:focus, .field textarea:focus{
  border-color: rgba(255,255,255,.22);
}
.field--full{
  grid-column: 1 / -1;
}

.modal__actions{
  grid-column: 1 / -1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 2px;
}
.modal__note{
  font-size: 12px;
  color: rgba(255,255,255,.60);
}
@media (max-width: 720px){
  .modal__form{ grid-template-columns: 1fr; }
  .fw__after{ flex-direction: column; align-items: flex-start; }
  .docs__top{ flex-direction: column; align-items: flex-start; }
}


/* -----------------------------
   Framework end CTA (outside sticky track)
------------------------------ */
.fwEnd{
  padding: 70px 0 68px;
}
.fwEnd__inner{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.fwEnd__sub{
  margin: 0;
  max-width: 560px;
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
}
@media (max-width: 860px){
  .fwEnd__inner{ flex-direction: column; align-items:flex-start; }
}

/* Ensure framework watermark is visible */
.fw__grid{ position: relative; }
.fw__mark{
  position: absolute;
  right: 2%;
  top: 48%;
  transform: translateY(-50%);
  width: min(520px, 46vw);
  opacity: .10;
  filter: saturate(0) contrast(1.2);
  pointer-events: none;
  z-index: 0;
}
.fw__acronym, .fw__content{ position: relative; z-index: 1; }


/* -----------------------------
   Header layout: logo | centered nav | CTA
------------------------------ */
.header-inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}
.header-cta{
  display:flex;
  justify-content:flex-end;
}

/* Keep nav readable on small widths */
@media (max-width: 820px){
  .header-inner{ grid-template-columns: auto 1fr; }
  .header-cta{ grid-column: 2; justify-content:flex-end; }
  .nav{ display:none; } /* if you want a mobile menu later */
}

/* -----------------------------
   Anchor offset for sticky header
------------------------------ */
section[id], [id].section{
  scroll-margin-top: calc(var(--header-h, 68px) + 14px);
}

/* -----------------------------
   CTA Button (Uiverse style, scoped)
------------------------------ */
.button{
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: clamp(1px, .55vw, 5px);
  text-transform: uppercase;
  cursor: pointer;
  color: #6d64ff;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #6d64ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  line-height: 1;
}

.button:hover{
  color: #ffffff;
  transform: scale(1.03);
  outline: 2px solid #111d33;
  box-shadow: 4px 5px 17px -4px #6d64ff;
}

.button::before{
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #6d64ff;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}
.button:hover::before{
  width: 250%;
}

/* -----------------------------
   Framework watermark (big + centered)
------------------------------ */
.fw__mark{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  width: min(560px, 70vw);
  height: auto;
  opacity: .10;
  filter: saturate(0.9) blur(0.2px);
  pointer-events:none;
  z-index: 0;
}
/* ensure fw content sits above watermark */
.fw__acronym, .fw__content, .fw__rail, .fw__copy, .fw__steps{
  position: relative;
  z-index: 1;
}

/* -----------------------------
   Framework end CTA centered
------------------------------ */
.fwEnd__inner{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.fwEnd__sub{
  margin: 0;
  max-width: 680px;
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
}

/* -----------------------------
   Docs reel (thumbnails)
------------------------------ */
.docs__reel{
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  min-height: 160px;
}

.docThumb{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  outline: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transform: translateZ(0);
  transition: transform 220ms ease, outline-color 220ms ease, opacity 220ms ease;
  opacity: .82;
}
.docThumb img{
  display:block;
  width: 190px;
  height: 130px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.docThumb.is-active{
  transform: scale(1.08);
  outline-color: rgba(109,100,255,.55);
  opacity: 1;
}
.docThumb.is-side{
  transform: scale(0.98);
  opacity: .75;
}
@media (max-width: 860px){
  .docs__reel{ overflow-x:auto; padding-bottom: 8px; }
  .docThumb img{ width: 160px; height: 112px; }
}

/* -----------------------------
   Insights reel
------------------------------ */
.insights{
  padding: 72px 0 92px;
}
.ins__head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.ins__reel{
  display:flex;
  gap: 12px;
  overflow-x:auto;
  padding-bottom: 10px;
}
.ins__item{
  min-width: 280px;
  max-width: 360px;
  display:flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px;
  border-radius: 14px;
  text-decoration:none;
  outline: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.ins__kicker{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.ins__title{
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.35;
}
.ins__item:hover{
  outline-color: rgba(109,100,255,.45);
  background: rgba(109,100,255,.06);
}

/* =========================
   Sliding doc carousel (no-click, auto)
========================= */
.docCarousel{
  position: relative;
  height: 170px;
  width: 100%;
  max-width: 980px;
  margin: 10px 0 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06);
}

/* =========================
   Doc reel — Swiper centered loop
========================= */
.docReel{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06);
  padding: 34px 0;
}

.docReel::before,
.docReel::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 110px;
  z-index: 5;
  pointer-events:none;
}
.docReel::before{
  left:0;
  background: linear-gradient(90deg, rgba(8,10,15,.98), rgba(8,10,15,0));
}
.docReel::after{
  right:0;
  background: linear-gradient(270deg, rgba(8,10,15,.98), rgba(8,10,15,0));
}

.docSwiper{
  width: 100%;
}

.docSwiper .swiper-wrapper{
  align-items: center;
}

/* Doc reel: center emphasis */
/* Swiper coverflow controls transform — do NOT override transform in CSS */
.docSwiper .swiper-slide{
  position: relative;          /* necessário pro overlay absoluto */
  pointer-events: auto;        /* libera clique */
  cursor: pointer;
}


.docSwiper .swiper-wrapper{
  transition-timing-function: cubic-bezier(.22,1,.36,1) !important; /* ease-out premium */
  will-change: transform;
}

.card {
  width: 190px;
  height: 254px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 3px 1px #00000088;
  cursor: pointer;
}

.card .content {
  border-radius: 15px;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.10);
  width: 186px;
  height: 250px;
  z-index: 1;
  padding: 20px;
  color: #6d64ff;
  transition: color 220ms ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.content::before {
  opacity: 0;
  transition: opacity 300ms;
  content: " ";
  display: block;
  background: white;
  width: 5px;
  height: 50px;
  position: absolute;
  filter: blur(40px);
  overflow: hidden;
}

.card:hover .content::before { opacity: 1; }

.card::before {
  opacity: 0;
  content: " ";
  position: absolute;
  display: block;
  width: 300px;
  height: 360px;
  background: linear-gradient(#6d64ff, transparent);
  transition: opacity 300ms;
  animation: rotation_9018 8000ms infinite linear;
  animation-play-state: paused;
}

.card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

.card::after {
  position: absolute;
  content: " ";
  display: block;
  width: 250px;
  height: 360px;
  background: transparent;
  backdrop-filter: blur(30px);
}

.card:hover .content { color: white; }

@keyframes rotation_9018 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Panel CTA (Decision Gate Check) */
.panelBtn{
  width: 190px;
  height: 254px;
  padding: 0;
  text-align: center;
  line-height: 1.25;
  border-radius: 5px;
  white-space: normal;
  

  /* FIX: keep the hover sweep clipped inside the panel */
  overflow: hidden;      /* reinforce clipping */
  isolation: isolate;    /* prevents negative-z bleed across stacking contexts */
}

/* Sweep layer */
.panelBtn::before{
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;

  /* FIX: no negative z-index (it can escape in some stacks) */
  z-index: 0;

  left: -130px;                 /* Start further left to fill bottom-left corner */
  background-color: #6d64ff;
  transform: skewX(45deg);
  transition: width 1000ms;
}

.panelBtn:hover::before{
  width: 300%;                 /* Increased to ensure full corner coverage */
}

/* Keep text above sweep */
.panelBtn .panelTitle,
.panelBtn .panelSub{
  position: relative;
  z-index: 1;
}/* Hero: 2 columns (copy left, panel right) */
.hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;         /* Center vertically */
  column-gap: 28px;
}

/* Panel sits on the right, centered vertically */
.heroCard{
  position: static;          /* stays in grid flow */
  justify-self: end;         /* right column */
  align-self: center;        /* Center vertically with hero copy */
  margin-top: 0;
  transform: none;           /* No vertical offset */
  z-index: 5;
  margin-right: 0;           /* aligned with header CTA */
}

/* Mobile: panel goes below */
@media (max-width: 860px){
  .hero-inner{
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .heroCard{
    justify-self: start;
    margin-top: 0;
    transform: none; /* mobile: no lift */
  }
}

.panelBtn{
  display: flex;              /* organiza em coluna */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  line-height: 1.25;          /* override do line-height:1 do .button */
  gap: 14px;                  /* espaço entre título e “click here” */
}

/* garante que spans não herdem letter-spacing estranho de forma feia */
.panelBtn .panelTitle,
.panelBtn .panelSub{
  display: block;
}

/* opcional: “CLICK HERE” um pouco menor */
.panelBtn .panelSub{
  font-size: 12px;
  letter-spacing: clamp(1px, .55vw, 5px);        /* se quiser igual ao botão, deixa */
  opacity: .95;
}

/* Fix: framework headings getting clipped */
.fw h2, .fw h3,
.fw__copy h2, .fw__copy h3,
.fw__steps h2, .fw__steps h3{
  line-height: 1.22;
  padding-top: .10em;      /* evita cortar topo da fonte */
  padding-bottom: .06em;
}

/* garante que nada "corte" o texto */
.fw__grid, .fw__copy, .fw__steps, .fw__rail{
  overflow: visible;
}


/* Doc reel — premium 3D coverflow (versão final, sem conflitos) */
.docs {
  margin-top: 80px;
  text-align: center;
}

.docs__top h3 {
  font-size: 24px;
  color: rgba(255,255,255,.92);
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.docReel {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.docSwiper {
overflow: visible !important;   /* MUDANÇA CRUCIAL: permite ver slides laterais */
  padding: 80px 0 60px;           /* mais espaço vertical pro 3D */
}

.docSwiper .swiper-slide {
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.6;
  transform: scale(0.85);
  filter: brightness(0.8);
  cursor: pointer;
}

.docSwiper .swiper-slide .docOverlay{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 110px;
  padding: 18px 18px;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 2;

  background: linear-gradient(
    180deg,
    rgba(8,10,15,0) 0%,
    rgba(8,10,15,.88) 70%,
    rgba(8,10,15,.96) 100%
  );
}

.docSwiper .swiper-slide .docLabel{
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


.docSwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
  z-index: 10;
}

.doc-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
  aspect-ratio: 784 / 1168;      /* MUDANÇA PRINCIPAL: ratio exato das suas imagens */
}

.doc-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;             /* ou contain se quiser mostrar tudo sem corte */
  transform: translateZ(0);      /* melhora renderização */
}

.docOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(10,10,26,0.95), transparent);
  pointer-events: none;
}

.docLabel {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
    text-shadow: 0 0 30px rgba(109,100,255,0.5);
}

.docSwiper .swiper-slide:not(.swiper-slide-active) .docLabel {
  font-size: 16px;
  bottom: 30px;
  left: 35px;
  opacity: 0.7;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .docReel { max-width: 380px; }
  .docOverlay { height: 140px; }
  .docLabel { 
    font-size: 19px; 
    bottom: 32px; 
    left: 32px; 
    letter-spacing: 3px;
  }
  .docSwiper .swiper-slide:not(.swiper-slide-active) .docLabel { 
    font-size: 14px; 
  }
}

/* HERO CARD: consistent hover behavior */
.heroCard{
  transform: none;              /* No offset - centered in grid */
}

/* Hover: only scale, no vertical movement */
.button.heroCard:hover{
  transform: scale(1.03);       /* Just scale, matches other buttons */
}

/* Gap entre Capabilities e Framework */
#capabilities{
  padding-bottom: 184px; /* aumenta o respiro */
}

#frameworks{
  padding-top: 184px;    /* garante distância mesmo se mudar algo acima */
}

/* Framework: alinhar kicker como os outros */
#frameworks .fw__inner{
  text-align: left;
}

#frameworks .kicker{
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
#frameworks .fw__sticky,
#frameworks .fw__inner{
  align-items: flex-start;
  justify-content: flex-start;
}


/* -----------------------------
   Framework resilience + mobile layout
------------------------------ */

/* If JS fails to run, never hide the framework content */
html:not(.js) .fw__letter,
html:not(.js) .fw__step,
html:not(.js) .fw__notes{
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Tablet: tighten the middle gap so it doesn't explode layouts */
@media (max-width: 1100px){
  .fw__grid{
    --fw-gap: 260px;
    --fw-step: 1fr;
  }
  .fw__notes{
    width: min(300px, calc(var(--fw-gap) - 40px));
    margin-left: 16px;
  }
}

/* Mobile: drop sticky + reveal and show a clean 2-column list (letters + steps) */
@media (max-width: 860px){
  .fw{
    height: auto;
  }
  .fw__sticky{
    position: static;
    top: auto;
    height: auto;
  }
  .fw__inner{
    transform: none;
    padding: 26px 0 10px;
  }
  .fw__grid{
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 14px;
  }
  .fw__notes{ display:none; }

  /* Make everything readable without requiring scroll-driven .is-on */
  .fw__letter{
    font-size: 34px;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .fw__step{
    opacity: 1;
    transform: none;
    filter: none;
  }
  .fw__step h3{ font-size: 18px; }

  @media (max-width: 860px){

  /* (já existe no teu arquivo) */
  .hero-inner{
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .heroCard{
    justify-self: start;

    /* FIX: no mobile não empurra pra cima */
    transform: none !important;  /* desktop mantém translateY(-94px) */
  }

  /* FIX: desliga o sweep/diagonal só no mobile */
  a.button.heroCard.panelBtn::before{
    display: none !important;
    content: none !important;
  }

  /* opcional: evita “hover scale” no toque */
  a.button.heroCard.panelBtn:hover{
    transform: none !important;
    box-shadow: none !important;
  }

  /* opcional: mantém ele bonito mesmo sem o sweep */
  a.button.heroCard.panelBtn{
    background: rgba(109,100,255,.12) !important;
    outline-color: rgba(109,100,255,.45) !important;
    color: rgba(255,255,255,.92) !important;
  }
}

}

/* Small phones */
@media (max-width: 420px){
  .fw__grid{ grid-template-columns: 48px minmax(0, 1fr); }
  .fw__letter{ font-size: 30px; }
}


/* Framework sticky stacking */
.fw__sticky{ z-index: 2; }
.fwEnd{ position: relative; z-index: 1; }



/* =========================================================
   PATCH v2 — Responsive stability (Hero + Framework CTA)
   Paste at END (overrides previous rules)
   ========================================================= */

/* HERO: ensure grid exists (some browsers ignore justify-self without it) */
.hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 28px;
}
.heroCard{
  width: min(420px, 100%);
  max-width: 100%;
}

/* Hero: collapse cleanly on small screens */
@media (max-width: 860px){
  .hero-inner{
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .heroCard{
    transform: none !important;
    margin-right: 0 !important;
    justify-self: start;
  }
}

/* Touch devices: don't allow hover scale to "stick" */
@media (hover: none), (pointer: coarse){
  .button:hover{ transform: none; }
}

/* FRAMEWORK: add a tail so the sticky has room to scroll away before the CTA section appears */
.fw{
  padding-bottom: 45svh;
}

/* FW END CTA: avoid overlapping the last framework lines at certain breakpoints */
.fwEnd{
  padding-top: 110px; /* was ~70px */
  background: rgba(0,0,0,0); /* keep transparent but ensure spacing */
}
.fwEnd__inner{
  align-items: flex-start;
  gap: 22px;
  padding-top: 22px;
}

/* CTA button wraps nicely and never sits "on top" of text */
.fwEnd .button{
  width: min(720px, 100%);
  white-space: normal;
  line-height: 1.2;
}

/* On narrower widths, stack CTA and sub text with more air */
@media (max-width: 1100px){
  .fwEnd__inner{ flex-direction: column; align-items: flex-start; }
  .fwEnd__sub{ max-width: 70ch; }
}



/* HEADER: mobile CTA should not collide with brand */
@media (max-width: 520px){
  .header-inner{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    align-items: center;
  }
  .header-cta{ width: 100%; }
  .header-cta .button{
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px 14px;
    letter-spacing: .18em;
    line-height: 1.15;
  }
}

.fwEnd__inner{ display:grid; gap: 14px; }
.fwEnd__inner .button{ justify-self: start; max-width: 100%; }
.fwEnd__inner .button span{ display:inline-block; white-space: normal; }
.fw{ padding-bottom: clamp(80px, 12vh, 160px); }
*{ min-width: 0; }

/* --- MOBILE: não duplica CTA do assessment no topo --- */
@media (max-width: 680px){
  .hero .hero-actions{ 
    display: none !important; 
  }

  /* o header pode ficar mais alto no mobile; evita o conteúdo do hero ficar por baixo */
  .hero .hero-inner{
    padding-top: calc(var(--header-h, 96px) + 22px) !important;
  }

  /* CTA do header sempre cabe */
  .header-cta{ width: 100%; }
  .header-cta .button{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    letter-spacing: .14em;
    line-height: 1.15;
    padding: 12px 14px;
  }
}

/* Touch: evita hover “grudar” e aplicar scale */
@media (hover: none), (pointer: coarse){
  .button:hover{ transform: none !important; }
}
/* MOBILE ONLY — remove o CTA duplicado do hero */
@media (max-width: 680px){
  .hero .hero-actions{ 
    display: none !important;
  }
}



@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
  :root{
    --t-fast: 1ms;
    --t-med: 1ms;
    --t-slow: 1ms;
    --blur-in: 0px;
  }
}


/* -------------------------
   Insights Deck: premium interaction (hover preview + smooth open)
------------------------- */
.insDeck__item{ position: relative; transition: transform var(--t-fast) var(--ease-out); }
.insDeck__item:hover{ transform: none; }

.insDeck__item .insDeck__title{
  opacity: .78;
  transition: opacity var(--t-med) var(--ease-inout), text-shadow var(--t-med) var(--ease-inout);
}
.insDeck__item[data-active="true"] .insDeck__title{
  opacity: 1;
  text-shadow: 0 0 16px rgba(255,255,255,.06);
}
.insDeck__item::before{
  content:"";
  position:absolute;
  left:-14px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(140,120,255,.0);
  transition: background var(--t-med) var(--ease-inout);
}
.insDeck__item[data-active="true"]::before{
  background: rgba(140,120,255,.55);
}

.insDeck__body{
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  filter: blur(var(--blur-in));
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-inout),
              opacity var(--t-med) var(--ease-inout),
              transform var(--t-med) var(--ease-inout),
              filter var(--t-med) var(--ease-inout);
}
.insDeck__body.is-open{
  max-height: 360px; /* safe cap; adjust if needed */
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Right visual: use motion tokens */
.insDeck__vizImg{
  transition:
    opacity var(--t-med) var(--ease-inout),
    transform var(--t-med) var(--ease-inout),
    filter var(--t-med) var(--ease-inout),
    clip-path var(--t-med) var(--ease-inout);
}


@media (max-width: 560px){
  .insDeck__body p{ text-align: left; hyphens: none; }
}


/* =========================
   Insights viz (SVG) — v4.6
========================== */
.insDeck__viz{
  --accent: #8F7BFF;
  overflow: visible; /* prevent pillar/cap word clipping */
}
.insDeck__viz::before{
  /* richer accent bloom tied to current insight */
  background:
    radial-gradient(520px 420px at 70% 35%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 60%),
    radial-gradient(560px 460px at 35% 70%, rgba(255,255,255,.06), transparent 60%);
}

.insDeck__vizStage{
  position: relative;
  width: 100%;
  height: 100%;
}

.insDeck__vizHost{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition:
    opacity var(--t-med) var(--ease-inout),
    transform var(--t-med) var(--ease-inout),
    filter var(--t-med) var(--ease-inout);
}

.insDeck__vizHost.is-out{
  opacity: 0;
  transform: translateY(10px) scale(.985);
  filter: blur(var(--blur-in));
}

.insDeck__vizHost svg.viz{
  width: 100%;
  height: 100%;
  max-width: 760px;
  max-height: min(560px, 56vh);
  overflow: visible;
  display: block;
}

/* Anchor (bottom word) entrance */
.insDeck__vizHost svg.viz .title.accent{
  opacity: 0;
  transform: translateY(6px);
  filter: blur(8px);
  transition:
    opacity 3900ms ease,
    transform 1900ms ease,
    filter 1900ms ease;
  will-change: opacity, transform, filter;
}

.insDeck__vizHost svg.viz .title.accent.is-on{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


.insDeck__capWord{
  position: absolute;
  inset: 0;
  pointer-events: none;
  --accent: var(--accent);
}

.insDeck__capWord span{
  position: absolute;
  left: 50%;
  top: min(14%, 120px);
  transform: translate(-50%, -50%) translateY(10px) scale(.985);

  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: var(--accent);
  opacity: 0;
  filter: blur(var(--blur-in)) drop-shadow(0 0 18px color-mix(in srgb, var(--accent) 44%, transparent));
  transition:
    opacity var(--t-med) var(--ease-inout),
    transform var(--t-med) var(--ease-inout),
    filter var(--t-med) var(--ease-inout);

  white-space: nowrap;
}

.insDeck__capWord.is-on span{
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0) scale(1);
  filter: blur(0) drop-shadow(0 0 28px color-mix(in srgb, var(--accent) 55%, transparent));
}

@media (max-width: 560px){
  .insDeck__vizHost svg.viz{ max-height: 360px; } /* um pouco menos pra não esmagar */
  .insDeck__capWord span{
    top: 12%;
    font-size: clamp(22px, 6.2vw, 40px);
    letter-spacing: 0.12em;
  }
}


/* ============================================================
   Insights Viz Patch — Pillar scan → anchor → solidify (v6)
   (Scoped to .insDeck__vizHost only; does not touch the rest)
============================================================ */

/* Make the anchor word appear decisively (override older long transitions) */
.insDeck__vizHost svg.viz .title.accent{
  transition: opacity 520ms ease, transform 520ms ease, filter 520ms ease !important;
}

/* Assembled pillar: gently lift visibility + allow a short "ignite" flash */
.insDeck__vizHost svg.viz.is-assembled .assyFace{
  opacity: 0.22;
  transition: opacity 520ms ease, filter 520ms ease;
}
.insDeck__vizHost svg.viz.is-assembled .assyJunction{
  opacity: 0.78;
  transition: opacity 520ms ease, filter 520ms ease;
}
.insDeck__vizHost svg.viz.is-assembled .assyTopFill{
  opacity: 0.18;
  transition: opacity 520ms ease, filter 520ms ease;
}
.insDeck__vizHost svg.viz.is-assembled .assyTopStroke{
  opacity: 0.92;
  transition: opacity 520ms ease, filter 520ms ease;
}

/* Ignition flash (added/removed by app.js) */
.insDeck__vizHost svg.viz.is-assembled.is-faceflash .assyTopStroke,
.insDeck__vizHost svg.viz.is-assembled.is-faceflash .assyJunction{
  opacity: 1;
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--accent) 55%, transparent));
}

/* ==========================================================================
   EXPERTISE SECTION – Premium Centered Dark Mode (2026)
   ========================================================================== */

.cred {
  background: #0a0e17;                     /* deep cosmic navy-black */
  color: #e0e0ff;
  padding: clamp(100px, 10vw, 160px) 0 120px;
  position: relative;
  overflow: hidden;
}

.cred::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(122, 110, 255, 0.11) 0%,   /* subtle purple glow */
    transparent 60%
  );
  pointer-events: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.cred__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  gap: 60px;
}

.cred__logo img {
  width: 100%;
  max-width: 220px;                        /* controls max size for large file */
  height: auto;
  object-fit: contain;
  opacity: 0.94;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.cred__logo:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.cred__kicker {
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7a6eff;                          /* purple accent */
  opacity: 0.85;
  margin-bottom: 16px;
}

.cred__title {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0 0 32px;
}

.cred__body {
  font-size: 1.15rem;
  line-height: 1.68;
  max-width: 780px;
}

/* Lead/important paragraph */
.cred__lead {
  font-size: clamp(18px, 1.4vw, 22px);     /* comfortable executive reading size */
  line-height: 1.55;
  font-weight: 400;
}

/* Stat line & body text */
.cred__stat,
.cred__body p {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.65;
}

.cred__stat strong {
  color: #9b8aff;
  font-weight: 700;
}
.cred__subtitle {
  font-size: clamp(18px, 1.3vw, 22px);      /* Closer to lead text size */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff;                           /* Full white for emphasis */
  margin: 0 0 24px;
  text-align: center;
  opacity: 1;
}

.cred__industries {
  margin: 32px 0;
  text-align: center;
}

.cred__industries p {
  font-weight: 500;
  margin: 0 0 16px;
  color: #c0c0ff;
  font-size: 1.05rem;
}

.cred__industries ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;                /* nice breathing room between items */
  font-size: 1.05rem;
  color: #d0d0ff;
  align-items: center;           /* helps with overall vertical alignment */
}

.cred__industries li {
  position: relative;
  padding-left: 24px;            /* space for the bullet */
  white-space: nowrap;           /* prevents single words from wrapping awkwardly */
}

.cred__industries li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);   /* this centers the bullet PERFECTLY vertically */
  color: #7a6eff;                /* your purple accent */
  font-size: 1.4rem;             /* slightly larger for visual balance */
  line-height: 1;
}

.cred__framework {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  font-style: italic;
  color: #b0b0ff;
  margin-top: 36px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cred__panel {
    gap: 48px;
  }

  .cred__logo img {
    max-width: 140px;
  }

  .cred__title {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }

  .cred__industries ul {
    flex-direction: column;
    gap: 8px;
  }

  .cred__industries li:not(:last-child)::after {
    display: none;
  }
}


/* --- Decision Gate refinements (minimal, non-breaking) --- */
.kicker.kicker--sub{
  margin: -6px 0 18px;
  font-size: 12px;
  letter-spacing: .22em;
  opacity: .78;
}

.docs__note{
  margin: 10px 0 0;
  max-width: 68ch;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.6;
}

.docs__packs{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.docs__pack{
  padding: 14px 14px 10px;
  border: 1px solid rgba(140,120,255,.22);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}

.docs__packTitle{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
  margin-bottom: 8px;
}

.docs__packList{
  margin: 0;
  padding-left: 16px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 900px){
  .docs__packs{ grid-template-columns: 1fr; }
}
/* Decision Gate section (premium list + panel) */
.dec .kicker{ margin-bottom: 14px; }

.dec__headline{
  margin: 0 0 10px 0;
  max-width: 760px;
}

.dec__lead{
  margin: 0 0 28px 0;
  opacity: .85;
  max-width: 720px;
}

.dec__grid{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
  align-items: start;
}

.dec__menu{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dec__item{
  width: 100%;
  text-align: left;
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(130,120,255,.22);
  background: rgba(255,255,255,.02);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease;
}

.dec__item:hover{
  transform: translateY(-1px);
  border-color: rgba(130,120,255,.38);
  background: rgba(255,255,255,.03);
}

.dec__item.is-active{
  border-color: rgba(130,120,255,.6);
  background: rgba(130,120,255,.08);
}

.dec__itemTitle{
  display: block;
  font-weight: 650;
  font-size: 15px;
  letter-spacing: .2px;
}

.dec__itemMeta{
  display: block;
  margin-top: 6px;
  opacity: .78;
  font-size: 13px;
  line-height: 1.25;
}

.dec__panel{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  padding: 20px 22px 18px;
}

.dec__panelKicker{
  margin: 0 0 10px 0;
  opacity: .72;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.dec__panelTitle{
  margin: 0 0 12px 0;
  font-size: 22px;
  line-height: 1.15;
}

.dec__panelBody{
  margin: 0 0 16px 0;
  opacity: .86;
  max-width: 70ch;
}

.dec__bullets{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.dec__bullet{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.14);
  padding: 12px 12px 10px;
}

.dec__bulletTitle{
  margin: 0 0 6px 0;
  font-weight: 620;
  font-size: 13px;
}

.dec__bulletBody{
  margin: 0;
  opacity: .8;
  font-size: 12.5px;
  line-height: 1.3;
}

.dec__actions{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
  .dec__grid{ grid-template-columns: 1fr; }
  .dec__bullets{ grid-template-columns: 1fr; }
}

/* Decision Gate: premium list + single panel */
.dec__grid{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
  align-items: start;
}

.dec__menu{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.dec__item{
  width:100%;
  text-align:left;
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(130,120,255,.20);
  background: rgba(255,255,255,.02);
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.dec__itemTitle,
.dec__itemMeta{
  color:#fff;
}

.dec__itemTitle{
  display:block;
  font-weight:650;
  font-size:15px;
  letter-spacing:.2px;
}

.dec__itemMeta{
  display:block;
  margin-top:6px;
  opacity:.72;
  font-size:13px;
  line-height:1.25;
}

.dec__item:hover{
  transform: translateY(-1px);
  border-color: rgba(130,120,255,.60);
  background: rgba(255,255,255,.03);
  box-shadow:
    0 0 0 1px rgba(130,120,255,.18),
    0 14px 34px rgba(130,120,255,.12);
}

.dec__item.is-active{
  border-color: rgba(130,120,255,.78);
  background: rgba(130,120,255,.10);
  box-shadow:
    0 0 0 1px rgba(130,120,255,.22),
    0 16px 40px rgba(130,120,255,.14);
}

.dec__panel{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  padding: 28px 30px 24px;
}

.dec__panelKicker{
  margin:0 0 10px 0;
  opacity:.70;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.dec__panelTitle{
  margin:0 0 14px 0;
  font-size:24px;
  line-height:1.2;
}

.dec__panelBody{
  margin:0;
  font-size:15px;
  line-height:1.6;
  opacity:.90;
  max-width: 62ch;
}

.dec__panelNote{
  margin-top: 16px;
  font-size: 13px;
  opacity: .62;
}

/* Responsive */
@media (max-width: 980px){
  .dec__grid{ grid-template-columns: 1fr; }
}





/* =========================
   HOW WE DELIVER — Deliverables flow (clean, outcomes-first)
   Replaces the old "packs/menu" feel with a 1→2→3 flow:
   Decision Gate → ACQU → IRIS
========================= */

.docs{
  --docs-w: min(940px, calc(100% - 24px));
  text-align: center;
}

.docs__top{
  width: var(--docs-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.docs__top h3{
  margin: 0;
  font-size: clamp(24px, 2.3vw, 30px);
  line-height: 1.15;
  color: rgba(255,255,255,.92);
}

.docs__note{
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
}

.docs__flow{
  width: 100%;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  gap: 14px;
  align-items: stretch;
}

.docsFlow__arrow{
  position: relative;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, rgba(140,120,255,.10), rgba(140,120,255,.55), rgba(140,120,255,.10));
  opacity: .9;
}

.docsFlow__arrow::after{
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(140,120,255,.65);
  border-top: 2px solid rgba(140,120,255,.65);
  transform: translateY(-50%) rotate(45deg);
  filter: drop-shadow(0 0 10px rgba(140,120,255,.28));
}

.docsCard{
  text-align: left;
  padding: 16px 16px 14px;
  border-radius: 16px;
  border: 1px solid rgba(140,120,255,.20);
  background: rgba(255,255,255,.02);
  box-shadow: 0 16px 44px rgba(0,0,0,.25);
}

.docsCard__kicker{
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(255,255,255,.84);
}

.docsCard__kickerSep{
  opacity: .55;
  margin: 0 6px;
}

.docsCard__title{
  margin: 0 0 8px 0;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: .1px;
}

.docsCard__sub{
  margin: 0 0 12px 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,.74);
}

.docsCard__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.docsCard__list li{
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,.78);
}

.docsCard__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(140,120,255,.55);
  box-shadow: 0 0 0 3px rgba(140,120,255,.10);
}

.docs__cta{
  width: 100%;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.docs__ctaText{
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.70);
}

.docs__ctaBtn{
  padding: .82em 1.7em;
  font-size: 13px;
  letter-spacing: .16em;
}

.docReel{
  width: var(--docs-w);
  max-width: none;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 980px){
  .docs__note{ white-space: normal; }
  .docs__flow{
    grid-template-columns: 1fr;
  }
  .docsFlow__arrow{ display: none; }
}

/* === Doc reel: center the label pill (fix misalignment) === */
.docSwiper .swiper-slide .docOverlay{
  display: flex;
  align-items: flex-end;
  justify-content: center;   /* center horizontally */
}

.docSwiper .swiper-slide .docLabel{
  position: static;          /* stop absolute left/bottom rules */
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  margin: 0 auto;
  text-align: center;
}

/* More breathing room between CTA and reel */
.docs__cta{
  margin-bottom: 34px;
}

@media (max-width: 900px){
  .docs__cta{
    margin-bottom: 24px;
  }
}
/* Keep card kicker in one line on desktop */
.docs__flow .docsCard__kicker{
  white-space: nowrap;
}

@media (max-width: 900px){
  .docs__flow .docsCard__kicker{
    white-space: normal;
  }
}


/* ===== Footer Social (single source of truth) ===== */

/* true center column */
html body .site-footer .container.footer-inner{
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
}

html body .site-footer .footer-left{ justify-self: start !important; }
html body .site-footer .footer-right{ justify-self: end !important; }

/* social group centered + spacing */
html body .site-footer .footerSocial{
  justify-self: center !important;
  display: inline-flex !important;
  gap: 18px !important;            /* <-- mais espaço entre ícones */
  align-items: center !important;
}

/* social button */
html body .site-footer .footerSocial__link{
  width: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;

  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(255,255,255,.03) !important;
  text-decoration: none !important;

  color: rgba(255,255,255,.92) !important; /* icon stays white */
  font-size: 0 !important;
  line-height: 0 !important;

  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}

/* force icon sizing + color (wins against global SVG rules) */
html body .site-footer .footerSocial__link svg,
html body .site-footer .footerSocial__link svg *{
  width: 16px !important;
  height: 16px !important;
  display: block !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* hover purple highlight (glow) */
html body .site-footer .footerSocial__link:hover{
  transform: translateY(-1px);
  border-color: rgba(109,100,255,.55);
  background: rgba(109,100,255,.12);
  box-shadow:
    0 12px 30px rgba(109,100,255,.14),
    0 12px 30px rgba(0,0,0,.28);
}

/* keyboard focus glow */
html body .site-footer .footerSocial__link:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 2px rgba(109,100,255,.75),
    0 12px 30px rgba(109,100,255,.14),
    0 12px 30px rgba(0,0,0,.28);
}

/* mobile stack */
@media (max-width: 720px){
  html body .site-footer .container.footer-inner{
    grid-template-columns: 1fr !important;
    row-gap: 14px !important;
    justify-items: start !important;
  }
  html body .site-footer .footerSocial{ justify-self: start !important; }
  html body .site-footer .footer-right{ justify-self: start !important; }
}
/* FORCE purple hover on footer social links */
html body .site-footer .footerSocial__link:hover{
  border-color: rgba(109,100,255,.75) !important;
  background: rgba(109,100,255,.16) !important;
  box-shadow:
    0 0 0 1px rgba(109,100,255,.35) inset,
    0 14px 34px rgba(109,100,255,.22),
    0 14px 34px rgba(0,0,0,.30) !important;
}

/* OPTIONAL: make the icon itself turn purple on hover (more obvious) */
html body .site-footer .footerSocial__link:hover{
  color: rgba(175, 165, 255, 1) !important;
}

/* -----------------------------------
   Decision Gate layer (HOME)
----------------------------------- */
.dg{
  padding: clamp(70px, 8vh, 110px) 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.dg__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
}

.dg__copy h2{
  margin-top: 10px;
  max-width: 22ch;
}

.dg__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.dg__note{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.62);
}

.dg__rail{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  padding: 18px;
  box-shadow: 0 20px 70px rgba(0,0,0,.32);
}

.dgStep{
  padding: 14px 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(10,12,18,.45);
}

.dgStep + .dgStep{
  margin-top: 12px;
}

.dgStep__k{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
modal
.dgStep__t{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: .01em;
}

.dgStep__p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}

@media (max-width: 980px){
  .dg__grid{
    grid-template-columns: 1fr;
  }
  .dg__copy h2{
    max-width: 28ch;
  }
}

/* Stop load-time growth/shift: no transitions by default */
/* Only disable transitions during initial paint (optional preload mode) */
html.is-preload .button,
html.is-preload .btn,
html.is-preload .panelBtn{
  transition: none !important;
  transform: none !important;
}






/* ────────────────────────────────────────────────
   Decision Gate button — matches default .button behavior
   (same sweep animation as Schedule a Call and other buttons)
───────────────────────────────────────────────── */

/* Ensure panelBtn text content is above the sweep animation */
.button.panelBtn .panelTitle,
.button.panelBtn .panelSub {
  position: relative;
  z-index: 1;
}
/* ────────────────────────────────────────────────
   Shared Engagement Modal (Schedule a Call)
   (HTML-embedded like Hidden AI Tax; app.js binds open/close)
───────────────────────────────────────────────── */

#assessmentModal{
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  z-index:9999;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  align-items:center;
  justify-content:center;
}
#assessmentModal.is-open{ display:flex; }

#assessmentModal .modal__backdrop{ background: transparent; z-index:1; }

#assessmentModal .modal__panel{
  z-index:2;
  width: min(860px, calc(100% - 36px));
  padding:0;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: 0 0 36px rgba(106,0,255,.20);
  overflow:hidden;
}

#assessmentModal .modal__head{
  padding:16px 18px;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:
    radial-gradient(900px 380px at 10% 0%, rgba(106,0,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}

#assessmentModal .modal__title{
  margin:0;
  font-size:14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.78);
  font-weight:750;
}

#assessmentModal .modal__close{
  min-width:auto;
  padding:10px 12px;
  border-radius:10px;
  font-size:12.5px;
  letter-spacing:.02em;
}

#assessmentModal .modal__body{ padding:16px 18px 18px; }

#assessmentModal .modal__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width:760px){
  #assessmentModal .modal__grid{ grid-template-columns:1fr; }
}

#assessmentModal .field span{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color: rgba(255,255,255,.62);
}
#assessmentModal .field input,
#assessmentModal .field textarea{
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  padding:10px 10px;
  outline:none;
}
#assessmentModal .field input:focus,
#assessmentModal .field textarea:focus{
  border-color: rgba(255,255,255,.22);
}

#assessmentModal .modal__foot{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

#assessmentModal .smallNote{
  margin:0;
  color: rgba(255,255,255,.56);
  font-size:12.5px;
  line-height:1.55;
  max-width:520px;
}

#assessmentModal .req{
  color: rgba(255, 217, 1, 0.842);
  font-size:10px;
  margin-left:8px;
  font-weight:650;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.85;
}

/* optional but recommended: lock scroll when open (app.js adds body.modal-open) */
body.modal-open{ overflow:hidden; }

#assessmentModal .req{
  color: rgba(228, 194, 3, 0.897) !important;
  opacity: .85 !important;
}
.insHero .explainer{
  margin: 14px 0 14px;
  max-width: 74ch;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.10);

  display: flex;
  gap: 10px;
  align-items: flex-start;

  color: rgba(255,255,255,.64);
  font-size: 0.92rem;
  line-height: 1.55;
  letter-spacing: .01em;

  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}


    .trustLink{
      display:inline-flex;
      align-items:center;
      gap: 10px;
      color: rgba(226, 204, 0, 0.86);
      text-decoration:none;
      border-bottom: 1px solid rgba(255,255,255,.18);
      padding-bottom: 2px;
    }
    .trustLink:hover{
      border-bottom-color: rgba(109,100,255,.55);
      color: rgba(109,100,255,.95);
    }

/* Mobile nav: premium drawer */
.navToggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255, 205, 43, 0.86);
  cursor: pointer;
  align-items:center;
  justify-content:center;
  gap: 6px;
  padding: 0;
}
.navToggle span{
  display:block;
  width: 18px;
  height: 1px;
  background: rgba(255,255,255,.86);
  opacity: .9;
}
.navToggle:hover{
  border-color: rgba(109,100,255,.55);
}

.navDrawer{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
}
.navDrawer.is-open{ display:block; }

.navDrawer__panel{
  position: absolute;
  top: 12px;
  right: 12px;
  left: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,12,18,.92);
  box-shadow: 0 20px 80px rgba(0,0,0,.45);
  overflow:hidden;
}
.navDrawer__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navDrawer__brand{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.navDrawer__close{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  border-radius: 999px;
  padding: 8px 10px;
  cursor:pointer;
  font-size: 12px;
}
.navDrawer__close:hover{
  border-color: rgba(109,100,255,.55);
  color: rgba(109,100,255,.95);
}
.navDrawer__nav{
  display:flex;
  flex-direction: column;
  padding: 10px 14px 14px;
}
.navDrawer__nav a{
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  letter-spacing: .01em;
}
.navDrawer__nav a:last-child{
  border-bottom: 0;
}
.navDrawer__nav a:hover{
  color: rgba(109,100,255,.95);
}
.navDrawer__cta{
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.navDrawer__cta .button{
  width: 100%;
  text-align:center;
}

@media (max-width: 900px){
  .site-header .nav{ display:none; }
  .navToggle{ display:flex; }
}
.field--check{
  display:flex;
  align-items:center;
  gap: 10px;
}
.field--check input[type="checkbox"]{
  width: 16px;
  height: 16px;
}

.field--check{
  display:flex;
  align-items:center;
  gap:10px;
}
.field--check input[type="checkbox"]{
  width:16px;
  height:16px;
}


/* URGENT row: text then checkbox, right after it */
#assessmentModal .field--check{
  display:flex !important;
  flex-direction: row !important;
  align-items:center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#assessmentModal .field--check span{
  display:inline-block !important;
  margin:0 !important;
  padding:0 !important;
  line-height: 16px !important;
  order: 0 !important;  /* text first */
}

#assessmentModal .field--check input[type="checkbox"]{
  width:16px;
  height:16px;
  margin:0 !important;
  flex: 0 0 auto;
  order: 1 !important;  /* checkbox after text */
  transform: translateY(1px);
}
