@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geist-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geist-mono-latin.woff2") format("woff2");
}

:root {
  /* AirQuote Design System v2 — mesmos tokens cromáticos do produto. */
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
  --page: #0f0f0f;
  --surface: #161616;
  --surface-raised: #1a1a1a;
  --surface-soft: #202020;
  --ink: #f5f5f5;
  --muted: #8a8a8a;
  --muted-strong: #b8b8b8;
  --line: #292929;
  --line-strong: #333333;
  --accent: #ff7a1a;
  --accent-soft: rgba(255, 122, 26, 0.14);
  --action: #c44b00;
  --action-hover: #c94f00;
  --mint: var(--accent);
  --mint-soft: var(--accent-soft);
  --sky: #ff9a52;
  --amber: #f5b942;
  --radius-sm: 0.55rem;
  --radius-xl: 1.5rem;
  --motion-fast: 160ms ease;
}

* {
  box-sizing: border-box;
}

/* Accessibility Utility */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
  scrollbar-color: #3d3d3d #101010;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
  background: #101010;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #101010;
  border-radius: 999px;
  background: #3d3d3d;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% -10%, rgba(196, 75, 0, 0.18), transparent 34rem),
    var(--page);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

::selection {
  background: var(--mint);
  color: #0f0f0f;
}

.site-shell {
  min-height: 100vh;
  padding: 0.75rem;
}

.hero-card {
  position: relative;
  --mouse-x: 35%;
  --mouse-y: 25%;
  --mouse-active: 0;
  min-height: calc(100vh - 1.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--surface);
  background-size: 38px 38px;
}

.hero-card::before {
  position: absolute;
  inset: -28% auto auto -14%;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.12), transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: var(--mouse-active, 0);
  transition: opacity 500ms ease;
  background-image:
    linear-gradient(rgba(255, 122, 26, 0.095) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 26, 0.095) 1px, transparent 1px),
    radial-gradient(
      105px circle at var(--mouse-x, 35%) var(--mouse-y, 25%),
      rgba(255, 154, 82, 0.015) 0%,
      transparent 100%
    ),
    radial-gradient(
      230px circle at var(--mouse-x, 35%) var(--mouse-y, 25%),
      rgba(255, 122, 26, 0.006) 0%,
      transparent 80%
    );
  background-size: 38px 38px, 38px 38px, 100% 100%, 100% 100%;
  mask-image: radial-gradient(
    250px circle at var(--mouse-x, 35%) var(--mouse-y, 25%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    250px circle at var(--mouse-x, 35%) var(--mouse-y, 25%),
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 80%
  );
  content: "";
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  padding: 0 1.5rem;
  background: rgba(15, 15, 15, 0.82);
  backdrop-filter: blur(18px);
  transition: background var(--motion-fast), border-color var(--motion-fast), box-shadow var(--motion-fast);
}

.site-header.is-scrolled {
  background: rgba(15, 15, 15, 0.96);
  border-bottom-color: var(--line-strong);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-geist-mono), monospace;
}

.brand-mark {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(255, 122, 26, 0.4);
  border-radius: 0.55rem;
  background: #000000;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(255, 122, 26, 0.2);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  flex-shrink: 0;
}

.brand:hover .brand-mark {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(255, 122, 26, 0.4);
  transform: scale(1.04);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-brand .brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
}

.brand-word {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.35rem;
  border-left: 1px solid var(--line-strong);
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-status > span {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.75rem);
}

.desktop-nav a {
  color: var(--muted-strong);
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(0.62rem, 0.72vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a.is-active {
  color: var(--accent);
}

.desktop-nav span {
  margin-right: 0.35rem;
  color: var(--mint);
  font-size: 0.56rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease;
}

.header-cta:hover {
  border-color: rgba(255, 122, 26, 0.5);
  background: var(--mint-soft);
}

.header-cta span {
  color: var(--mint);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - 8.5rem);
  grid-template-columns: minmax(0, 1.12fr) minmax(30rem, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 3.5vw, 4.5rem);
  padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1.5rem, 5vw, 5.75rem) clamp(1.75rem, 2.5vw, 2.75rem);
}

.hero-copy {
  max-width: 52rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  color: var(--mint);
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  background: var(--mint);
  content: "";
}

h1 {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(2.4rem, 3.8vw, 4.4rem);
  font-weight: 540;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

h1 span {
  color: var(--muted);
}

.hero-lede {
  max-width: 44rem;
  margin: 1.6rem 0 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 999px;
  padding: 0 1.4rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.button-primary {
  background: var(--action);
  color: #ffffff;
  box-shadow: 0 16px 42px rgba(196, 75, 0, 0.24);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary:hover {
  background: var(--action-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(255, 122, 26, 0.28);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted-strong);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  letter-spacing: 0.035em;
}

.button-link span {
  color: var(--mint);
}

.operations-visual {
  position: relative;
  width: 100%;
  max-width: 43rem;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 87% 14%, rgba(255, 122, 26, 0.11), transparent 19rem),
    rgba(15, 15, 15, 0.96);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.operations-visual::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  content: "";
  pointer-events: none;
}

.operations-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.15rem;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operations-topbar > div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted-strong);
}

.live-dot {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
}

.route-map {
  position: relative;
  height: auto;
  aspect-ratio: 2.15 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #101010;
  isolation: isolate;
}

.route-map-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-map-background {
  opacity: 0.96;
  filter: brightness(0.92) contrast(1.08);
}

.route-map-track {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 1.65 2;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(255, 122, 26, 0.72));
}

.route-map-origin,
.route-map-destination {
  fill: #0f0f0f;
  stroke: var(--accent);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 7px rgba(255, 122, 26, 0.9));
}

.route-map-pulse {
  fill: rgba(255, 122, 26, 0.16);
  stroke: rgba(255, 122, 26, 0.72);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  animation: mapLocationPulse 2.2s ease-out infinite;
}

.route-map-pulse-destination {
  animation-delay: 1.1s;
}

@keyframes mapLocationPulse {
  0% {
    opacity: 0.95;
    transform: scale(0.45);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -100;
  }
}

.route-map-plane-glyph {
  opacity: 0.94;
}

.route-map-code {
  fill: #ff9a52;
  stroke: #0f0f0f;
  stroke-width: 10;
  paint-order: stroke fill;
  font-family: var(--font-geist-mono), monospace;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 4px;
}

.route-map-caption {
  position: absolute;
  z-index: 3;
  right: 1.15rem;
  bottom: 1rem;
  display: grid;
  gap: 0.28rem;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: right;
}

.route-map-caption span {
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-context {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem 1.2rem;
}

.quote-context span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.65rem;
  color: var(--muted-strong);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.55rem;
  letter-spacing: 0.035em;
}

.operation-flow {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0;
  list-style: none;
}

.operation-flow li {
  display: grid;
  grid-template-columns: 1.55rem 1fr auto;
  align-items: start;
  gap: 0.85rem;
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 1.2rem;
}

.step-index {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--action);
  border: 1px solid rgba(255, 122, 26, 0.35);
  box-shadow: 0 2px 10px rgba(196, 75, 0, 0.28);
  color: #ffffff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.6rem;
  font-weight: 750;
}

.step-copy {
  display: grid;
  gap: 0.25rem;
}

.step-copy strong {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
}

.step-copy small {
  color: var(--muted-strong);
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 0.64rem;
  line-height: 1.45;
  letter-spacing: normal;
  text-transform: none;
}

.step-copy small strong {
  color: var(--ink);
  font-weight: 600;
}

.step-state {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--sky);
  font-size: 0.65rem;
  margin-top: 0.05rem;
}

.step-state.active {
  border-color: rgba(255, 122, 26, 0.3);
  background: var(--mint-soft);
  color: var(--mint);
}

.authority-bar {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.65rem;
  padding: 1.15rem 1.25rem 1.25rem;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255, 122, 26, 0.09) 0%, transparent 70%),
    rgba(22, 22, 22, 0.85);
  border-top: 1px solid var(--line);
}

.authority-bar::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.45), transparent);
  content: "";
}

.authority-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
}

.authority-tag {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.authority-rule {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.authority-rule span {
  display: block;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--mint));
  opacity: 0.8;
}

.authority-body {
  display: grid;
  gap: 0.3rem;
}

.authority-body strong {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
}

.authority-body p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.66rem;
  line-height: 1.45;
}

.hero-coverage-link-wrap {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.6);
  padding: 0.65rem 1.25rem;
}

.hero-coverage-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  color: var(--muted-strong);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--motion-fast);
}

.hero-coverage-link:hover,
.hero-coverage-link:focus-visible {
  color: var(--accent);
}

.hero-coverage-link span:last-child {
  color: var(--accent);
  transition: transform var(--motion-fast);
}

.hero-coverage-link:hover span:last-child {
  transform: translateY(2px);
}

.hero-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(15, 15, 15, 0.72);
}

.hero-footer span {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 1rem 1.25rem;
  color: var(--muted-strong);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.hero-footer span:last-child {
  border-right: 0;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    padding-top: 2rem;
  }

  .operations-visual {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 0.5rem;
  }

  .hero-card {
    min-height: calc(100vh - 1rem);
    border-radius: 1.2rem;
  }

  .site-header {
    min-height: 3.6rem;
    padding: 0 1rem;
  }

  .brand-status,
  .header-cta {
    display: none;
  }

  .brand::after {
    color: var(--muted);
    content: "IA Especializada";
    font-size: 0.52rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .hero-grid {
    min-height: auto;
    gap: 2.25rem;
    padding: 1.75rem 1rem 2.25rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.5rem);
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .button-link {
    justify-content: center;
    min-height: 2.5rem;
    text-align: center;
  }

  .route-map {
    height: auto;
    aspect-ratio: 1672 / 941;
  }

  

  

  .authority-bar {
    padding: 1rem 1.1rem 1.15rem;
  }

  .hero-footer {
    grid-template-columns: 1fr;
  }

  .hero-footer span {
    min-height: 3.5rem;
    padding: 0.9rem 1rem;
    font-size: 0.66rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-footer span:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .brand-word {
    font-size: 0.74rem;
  }

  .brand::after {
    display: none;
  }

  .operations-topbar > span {
    display: none;
  }

  

  
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -5rem;
  left: 1rem;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: var(--action);
  color: #ffffff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 700;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  cursor: pointer;
  place-content: center;
  gap: 0.36rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary > span {
  display: block;
  width: 1rem;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.mobile-menu[open] summary > span:first-child {
  transform: translateY(0.23rem) rotate(45deg);
}

.mobile-menu[open] summary > span:last-child {
  transform: translateY(-0.23rem) rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.85rem);
  right: 0;
  width: min(25rem, calc(100vw - 2rem));
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 1.2rem;
  background: rgba(18, 18, 18, 0.98);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.mobile-menu-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-menu-heading strong {
  color: var(--mint);
  font-weight: 600;
}

.mobile-nav-links {
  display: grid;
}

.mobile-nav-links a {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  font-size: 1.05rem;
}

.mobile-nav-links a > span {
  color: var(--mint);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.56rem;
}

.mobile-nav-links a > i {
  color: var(--muted);
  font-style: normal;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem;
  border-radius: 999px;
  padding: 0.9rem 1rem;
  background: var(--action);
  color: #ffffff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-support {
  margin: 0.75rem 0 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 600;
}

.section-card,
.automation-proof,
.manager-intelligence-spotlight {
  scroll-margin-top: 4.5rem;
}

.section-card {
  position: relative;
  overflow: hidden;
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.section-card h2 {
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 5.75rem);
  font-weight: 520;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.section-card h3,
.section-card p {
  margin-top: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem 0;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-label > span {
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--mint);
  font-size: 0.62rem;
  font-weight: 750;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.58fr 1.6fr 0.88fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 6.5rem) clamp(1.5rem, 5vw, 5.75rem);
}

.section-intro > p:last-child {
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.7;
}

.paradigm-section {
  position: relative;
  background: #121212;
  color: var(--ink);
}

.paradigm-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  grid-template-areas:
    "intro panel"
    "hint hint"
    "grid grid";
  column-gap: clamp(1.75rem, 3.5vw, 3.5rem);
  row-gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: center;
  padding: clamp(2.5rem, 4.2vw, 4rem) clamp(1.5rem, 4.5vw, 4.5rem) clamp(1.75rem, 3vw, 2.5rem);
}

.paradigm-intro-copy {
  grid-area: intro;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.paradigm-section .section-label {
  margin-bottom: 1.1rem;
  color: var(--muted-strong);
}

.paradigm-section .section-label > span {
  border-color: rgba(255, 122, 26, 0.35);
  background: rgba(255, 122, 26, 0.08);
  color: var(--accent);
}

.paradigm-section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  font-weight: 540;
  letter-spacing: -0.045em;
  line-height: 1.1;
  display: grid;
  gap: 0.85rem;
}

.headline-primary {
  color: var(--ink);
  display: block;
}

.headline-secondary {
  color: #b5b5b5;
  display: block;
}

.desktop-break {
  display: inline;
}

@media (max-width: 760px) {
  .desktop-break {
    display: none;
  }
}

/* Contextual Panel */
.paradigm-context-panel {
  grid-area: panel;
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: center;
  border: 1px solid var(--line-strong);
  border-radius: 1.15rem;
  padding: clamp(1.15rem, 1.8vw, 1.45rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.08), transparent 14rem),
    rgba(20, 20, 20, 0.95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.paradigm-grid-bar {
  grid-area: hint;
}

.paradigm-grid {
  grid-area: grid;
}

.paradigm-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
  margin-bottom: 0.75rem;
}

.paradigm-panel-tag {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-status-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.15);
}

.paradigm-panel-body {
  display: grid;
  gap: 0.65rem;
  transition: opacity 180ms ease, transform 180ms ease;
}

.paradigm-panel-body.is-switching {
  opacity: 0;
  transform: translateY(4px);
}

.paradigm-panel-title {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.paradigm-panel-desc {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.85rem;
  line-height: 1.55;
}

.paradigm-panel-result {
  display: grid;
  gap: 0.22rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.paradigm-result-label {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.paradigm-panel-result strong {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Grid Bar */
.paradigm-grid-bar {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 0.75rem clamp(1.5rem, 4.5vw, 4.5rem);
  background: rgba(18, 18, 18, 0.7);
}

.paradigm-grid-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted-strong);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.paradigm-grid-hint.is-switching {
  opacity: 0;
}

.hint-arrow {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

/* Grid Matrix (Desktop 3x2) */
.paradigm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.paradigm-shift {
  position: relative;
  display: grid;
  min-height: 4.85rem;
  grid-template-columns: 1.8rem minmax(0, 1fr) auto minmax(0, 1.25fr);
  align-items: center;
  gap: 0.65rem;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem clamp(0.85rem, 1.4vw, 1.35rem);
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.paradigm-shift:nth-child(3n) {
  border-right: 0;
}

.paradigm-shift:nth-child(n+4) {
  border-bottom: 0;
}

.paradigm-shift:hover {
  background: rgba(255, 122, 26, 0.035);
}

.paradigm-shift:hover .shift-number {
  color: var(--muted-strong);
}

.paradigm-shift:hover .shift-arrow {
  color: rgba(255, 122, 26, 0.75);
  transform: translateX(2px);
}

.paradigm-shift:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  z-index: 2;
}

.paradigm-shift.is-active {
  background: rgba(255, 122, 26, 0.065);
}

.paradigm-shift.is-active::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--accent);
  content: "";
}

.shift-number {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.64rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.paradigm-shift.is-active .shift-number {
  color: var(--accent);
}

.shift-col {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.shift-micro-label {
  color: var(--muted-strong);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.shift-after-col .shift-micro-label {
  color: rgba(255, 122, 26, 0.75);
}

.paradigm-shift.is-active .shift-after-col .shift-micro-label {
  color: var(--accent);
}

.shift-before {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 122, 26, 0.45);
}

.shift-arrow {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 180ms ease, transform 180ms ease;
}

.paradigm-shift.is-active .shift-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

.shift-after {
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 580;
  line-height: 1.35;
  transition: color 180ms ease;
}

.paradigm-shift.is-active .shift-after {
  color: var(--ink);
  font-weight: 700;
}


.vertical-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  grid-template-areas:
    "copy diagram"
    "panel diagram"
    "automation automation";
  align-items: start;
  column-gap: clamp(2.5rem, 5vw, 6rem);
  row-gap: 1.5rem;
  padding: clamp(3.5rem, 6vw, 6.5rem) clamp(1.5rem, 5vw, 5.75rem);
  background:
    radial-gradient(circle at 75% 50%, rgba(255, 122, 26, 0.1), transparent 32rem),
    #101010;
}

.vertical-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 122, 26, 0.12) 0.75px, transparent 0.75px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 20%, black);
  pointer-events: none;
}

.vertical-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.vertical-diagram-wrap {
  grid-area: diagram;
}

.vertical-module-panel {
  grid-area: panel;
}

.automation-proof {
  grid-area: automation;
}

.vertical-copy h2 {
  margin-top: 1.35rem;
  font-size: clamp(1.75rem, 2.7vw, 2.6rem);
  font-weight: 540;
  letter-spacing: -0.04em;
  line-height: 1.16;
  display: grid;
  gap: 0.35rem;
  max-width: 38rem;
}

.vertical-headline-lead {
  display: block;
  color: var(--muted);
  font-size: 0.9em;
  font-weight: 500;
}

.vertical-headline-main {
  display: block;
  color: var(--ink);
}

.vertical-lede {
  max-width: 38rem;
  margin-top: 1.25rem;
  color: var(--muted-strong);
  font-size: clamp(0.96rem, 1.05vw, 1.02rem);
  line-height: 1.68;
}

.vertical-proof {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.6rem;
  border-left: 2px solid var(--accent);
  padding-left: 1.15rem;
}

.vertical-proof span {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vertical-proof strong {
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* Module Contextual Detail Panel (Ficha Explicativa) */
.vertical-module-panel {
  margin-top: 1.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 1.15rem;
  padding: clamp(1.15rem, 1.8vw, 1.35rem) clamp(1.2rem, 2vw, 1.5rem);
  min-height: 22.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.07), transparent 12rem),
    rgba(18, 18, 18, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.module-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.42rem;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.module-panel-badge {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-panel-body {
  display: flex;
  flex-direction: column;
  gap: 0.44rem;
  flex: 1;
  justify-content: space-between;
  transition: opacity 180ms ease, transform 180ms ease;
}

.module-panel-body.is-switching {
  opacity: 0;
  transform: translateY(4px);
}

.module-panel-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 1.6vw, 1.42rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.module-panel-desc {
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(0.94rem, 1.1vw, 1.02rem);
  line-height: 1.54;
  min-height: 2.8rem;
}

.module-panel-block {
  display: flex;
  flex-direction: column;
  gap: 0.26rem;
  border-top: 1px solid var(--line);
  padding-top: 0.42rem;
}

.module-block-kicker {
  color: var(--muted-strong);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module-panel-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  margin-top: 0.08rem;
}

/* Standardized Neutral Informative Taxonomy Tags */
.panel-chip {
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(0.74rem, 0.85vw, 0.82rem);
  font-weight: 480;
  letter-spacing: 0.01em;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  line-height: 1.25;
  white-space: nowrap;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: default;
  user-select: none;
  pointer-events: none;
}


/* Distinct & Interactive CONECTA COM Chips */


.module-panel-impact {
  display: grid;
  gap: 0.16rem;
  border-top: 1px solid var(--line);
  padding-top: 0.44rem;
}

.module-impact-label {
  color: var(--muted-strong);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module-panel-impact strong {
  color: var(--accent);
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.34;
  text-transform: uppercase;
}

/* Diagram Container & Orbits */
/* Diagram Container & Orbits */
.vertical-diagram-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  align-self: start;
  margin-top: clamp(11rem, 14vw, 14.5rem);
}

.vertical-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(0.66rem, 0.72vw, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: opacity 180ms ease;
  animation: hintLevitate 3.2s ease-in-out infinite;
  will-change: transform, opacity;
}

.vertical-hint .hint-arrow {
  color: var(--accent);
}

.vertical-hint.is-switching {
  opacity: 0;
}


.vertical-map {
  position: relative;
  width: min(100%, 42rem);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-inner {
  width: 50%;
  height: 50%;
  border: 1px solid rgba(255, 122, 26, 0.18);
}

.orbit-outer {
  width: 80%;
  height: 80%;
  border: 1px dashed rgba(255, 122, 26, 0.22);
}

/* Halo Transversal de IA */
.ai-transversal-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13.5rem;
  height: 13.5rem;
  border-radius: 50%;
  border: 1px dashed rgba(255, 122, 26, 0.28);
  pointer-events: none;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.ai-transversal-layer.is-pulse {
  border-color: rgba(255, 122, 26, 0.75);
  box-shadow: 0 0 28px rgba(255, 122, 26, 0.25);
}

.ai-layer-label {
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(0.51rem, 0.58vw, 0.56rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(18, 18, 18, 0.96);
  padding: 0.18rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 26, 0.38);
  transform: translateY(50%);
  white-space: nowrap;
}

/* Central Core */
.vertical-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 26, 0.45);
  background: radial-gradient(circle, rgba(255, 122, 26, 0.2), rgba(18, 18, 18, 0.98) 70%);
  box-shadow: 0 0 60px rgba(255, 122, 26, 0.18);
}

.core-kicker {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.core-title {
  color: #ffffff;
  font-size: clamp(1.3rem, 1.45vw, 1.34rem);
  font-weight: 780;
  letter-spacing: -0.025em;
  margin-top: 0.18rem;
}

.core-sub {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.os-module-pill {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  min-height: 44px;
  box-sizing: border-box;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(18, 18, 18, 0.94);
  color: var(--ink);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 200ms ease;
}

.os-module-pill span {
  white-space: nowrap;
}

.os-module-pill .module-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.7);
  box-shadow: 0 0 6px rgba(255, 122, 26, 0.3);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.os-module-pill,
.js-reveal-enabled .os-module-pill,
.js-reveal-enabled [data-reveal-group].is-revealed .os-module-pill {
  transform: translate(-50%, -50%);
}

.os-module-pill:hover,
.js-reveal-enabled .os-module-pill:hover {
  border-color: var(--accent);
  background: rgba(28, 28, 28, 0.98);
  color: var(--ink);
  transform: translate(-50%, -50%) scale(1.05);
}

.os-module-pill:hover .module-dot {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.os-module-pill:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  z-index: 12;
}

.os-module-pill.is-active,
.js-reveal-enabled .os-module-pill.is-active {
  border-color: var(--accent);
  background: rgba(255, 122, 26, 0.16);
  color: var(--ink);
  font-weight: 750;
  box-shadow:
    0 0 24px rgba(255, 122, 26, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%) scale(1.08);
  z-index: 10;
}

.os-module-pill.is-active .module-dot {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

/* 8 Module Pill Positions — Exact 8-Point Compass Geometry on 80% Orbit */
[data-module="mesa"] { top: 10%; left: 50%; transform: translate(-50%, -50%); }
[data-module="tarifarios"] { top: 21.7%; left: 78.3%; transform: translate(-50%, -50%); }
[data-module="pricing"] { top: 50%; left: 90%; transform: translate(-50%, -50%); }
[data-module="excecoes"] { top: 78.3%; left: 78.3%; transform: translate(-50%, -50%); }
[data-module="handoff"] { top: 90%; left: 50%; transform: translate(-50%, -50%); }
[data-module="governanca"] { top: 78.3%; left: 21.7%; transform: translate(-50%, -50%); }
[data-module="cockpit"] { top: 50%; left: 10%; transform: translate(-50%, -50%); }
[data-module="clientes"] { top: 21.7%; left: 21.7%; transform: translate(-50%, -50%); }

/* ==========================================================================
   BLOCO DE PROVA: AUTOMAÇÃO COM COBERTURA (#automacao-com-cobertura)
   ========================================================================== */
.automation-proof {
  grid-column: 1 / -1;
  margin-top: clamp(2rem, 3.5vw, 3.5rem);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background:
    radial-gradient(ellipse at 85% 0%, rgba(255, 122, 26, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(22, 22, 22, 0.98) 0%, rgba(18, 18, 18, 0.99) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 2.3vw, 2rem);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  scroll-margin-top: 4rem;
}

.automation-proof::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
}

/* 1. Topo Editorial Unificado */
.coverage-editorial-top {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 54rem;
}

.coverage-kicker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coverage-kicker-tag {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 750;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coverage-kicker-badge {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.56rem;
  font-weight: 650;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.coverage-headline {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.coverage-headline .headline-accent {
  color: var(--muted-strong);
  font-weight: 500;
}

.coverage-lead-copy {
  margin: 0;
  font-size: clamp(0.86rem, 1vw, 0.94rem);
  line-height: 1.55;
  color: var(--muted-strong);
  max-width: 48rem;
}

.coverage-highlight-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  background: rgba(255, 122, 26, 0.06);
  border: 1px solid rgba(255, 122, 26, 0.2);
  font-size: 0.78rem;
  color: var(--ink);
  line-height: 1.4;
  margin-top: 0.2rem;
  align-self: flex-start;
}

.coverage-robot-icon {
  stroke: var(--accent);
  flex-shrink: 0;
}

/* 2. Diagrama de Convergência das Entradas */
.coverage-convergence-diagram {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.15rem 1.35rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
}

.coverage-inputs-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.coverage-input-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.65rem 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.input-card-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.input-card-dot {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}

.input-card-title {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 750;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.input-card-microcopy {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
}

.coverage-convergence-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
}

.bridge-lines {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-size: 1.1rem;
}

.bridge-line {
  width: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), var(--accent));
}

.bridge-arrow {
  color: var(--accent);
  font-size: 1rem;
  font-weight: bold;
}

.coverage-core-node {
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-node-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.75rem 1.4rem;
  border-radius: 0.65rem;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.45);
  box-shadow: 0 0 20px rgba(255, 122, 26, 0.14);
}

.core-node-badge {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.52rem;
  font-weight: 750;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.core-node-title {
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 750;
  color: #ffffff;
  letter-spacing: 0.04em;
}

/* 3. O AIRQUOTE VERIFICA (Scanner Operacional) */
.coverage-checks-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.1rem 1.35rem;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
}

.coverage-checks-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.55rem;
}

.checks-header-label {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.64rem;
  font-weight: 750;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checks-header-badge {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
}

.coverage-checks-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.6rem;
  align-items: center;
}

.coverage-check-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.65rem 0.8rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.check-item-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.check-item-num {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
}

.check-item-title {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 750;
  color: #ffffff;
  letter-spacing: 0.04em;
  flex: 1;
}

.check-item-glyph {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: bold;
}

.check-item-desc {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted-strong);
  line-height: 1.35;
}

.coverage-check-sep {
  color: var(--accent);
  font-size: 0.82rem;
  opacity: 0.7;
  text-align: center;
}

/* 4. DECISION GATE: É EXCEÇÃO? */
.coverage-decision-gate {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.decision-gate-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  position: relative;
}

.decision-gate-stem {
  width: 1px;
  height: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), var(--accent));
}

.decision-gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.4);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.74rem;
  color: #ffffff;
  letter-spacing: 0.06em;
  box-shadow: 0 0 16px rgba(255, 122, 26, 0.12);
}

.decision-gate-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.decision-gate-fork {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  max-width: 24rem;
  position: relative;
  padding-top: 0.4rem;
}

.fork-label {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.fork-label-no {
  color: var(--accent);
  background: rgba(255, 122, 26, 0.1);
  border: 1px solid rgba(255, 122, 26, 0.3);
}

.fork-label-yes {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.fork-lines {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 122, 26, 0.4), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.2));
  margin: 0 0.5rem;
}

/* Bifurcação: 2 Destinos */
.coverage-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.coverage-path-card {
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border-radius: 0.85rem;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-sizing: border-box;
}

.coverage-path-card.path-auto {
  border-color: rgba(255, 122, 26, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.05), transparent 70%),
    rgba(18, 18, 18, 0.85);
}

.coverage-path-card.path-exception {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.035), transparent 70%),
    rgba(18, 18, 18, 0.85);
}

.path-card-top {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.path-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  align-self: flex-start;
}

.badge-auto {
  background: rgba(255, 122, 26, 0.12);
  color: var(--accent);
  border: 1px solid rgba(255, 122, 26, 0.35);
}

.badge-exception {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.shape-circle {
  color: var(--accent);
  font-size: 0.55rem;
}

.shape-diamond {
  color: var(--accent);
  font-size: 0.72rem;
}

.path-card-title {
  margin: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.path-card-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted-strong);
}

.path-visual-steps {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.65rem 0.8rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  margin-top: auto;
}

.step-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  color: var(--muted-strong);
  flex-wrap: wrap;
}

.step-line.is-accent {
  color: #ffffff;
  font-weight: 600;
}

.step-line.is-ai {
  color: var(--accent);
  font-weight: 600;
}

.step-line.is-human {
  color: #ffffff;
  font-weight: 650;
}

.step-marker {
  font-size: 0.6rem;
  color: var(--accent);
}

.step-connector {
  color: var(--muted);
  font-size: 0.65rem;
  padding-left: 0.15rem;
  line-height: 1;
}



.micro-robot {
  stroke: var(--accent);
  flex-shrink: 0;
}

.micro-person {
  stroke: #ffffff;
  flex-shrink: 0;
}

.path-card-microresult {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.78rem;
}

.path-card-microresult strong {
  color: #ffffff;
  font-weight: 650;
  line-height: 1.35;
}

.human-anchor-statement .accent-phrase {
  color: var(--accent);
}

.path-subnote {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
}

/* 5. Fechamento e Nota */
.automation-proof-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.15rem;
}

.automation-proof-closing {
  margin: 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  font-weight: 750;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.automation-proof-note {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 48rem;
}

/* Animação One-Shot Discreta */
.automation-proof.is-animating .coverage-input-card {
  animation: stageEntranceOneShot 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.automation-proof.is-animating .coverage-core-node {
  animation: stageEntranceOneShot 320ms cubic-bezier(0.16, 1, 0.3, 1) 100ms both;
}

.automation-proof.is-animating .coverage-checks-wrapper {
  animation: stageEntranceOneShot 320ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
}

.automation-proof.is-animating .decision-gate-node {
  animation: stageEntranceOneShot 320ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both;
}

.automation-proof.is-animating .coverage-path-card {
  animation: stageEntranceOneShot 350ms cubic-bezier(0.16, 1, 0.3, 1) 340ms both;
}

.intelligence-section {
  position: relative;
  padding: 0 0 clamp(2.5rem, 4vw, 3.5rem);
  background: var(--surface);
}

/* 1. Header & Triad Bar */
.intelligence-header {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5.75rem) clamp(2.5rem, 4vw, 3.5rem);
}

.intelligence-heading {
  display: flex;
  flex-direction: column;
}

.intelligence-heading h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(2rem, 3.8vw, 3.75rem);
  font-weight: 530;
  letter-spacing: -0.05em;
  line-height: 1.04;
  color: var(--ink);
}

.intelligence-lede {
  margin: 1.35rem 0 0;
  color: var(--muted-strong);
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.68;
}

/* Triad Bar (Single lightweight architectural banner) */
.triad-bar {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.35rem 1.65rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 122, 26, 0.05), transparent 16rem),
    rgba(18, 18, 18, 0.85);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  align-self: end;
}

.triad-bar-header {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.triad-bar-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.triad-bar-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.triad-column {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.triad-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.triad-ia .triad-tag {
  color: var(--accent);
}

.triad-system .triad-tag {
  color: var(--muted-strong);
}

.triad-human .triad-tag {
  color: #ffffff;
}

.triad-dot {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
}

.triad-ia .triad-dot {
  background: var(--accent);
  box-shadow: 0 0 5px var(--accent);
}

.triad-system .triad-dot {
  background: var(--ink);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.triad-human .triad-dot {
  background: #ffffff;
  box-shadow: 0 0 5px #ffffff;
}

.triad-text {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.8rem;
  line-height: 1.45;
}

.triad-separator {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.85rem;
  opacity: 0.4;
  text-align: center;
}

/* 2. Operational Intelligence Stage */
.intelligence-stage {
  margin: 0 clamp(1.5rem, 5vw, 5.75rem);
  border: 1px solid var(--line-strong);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 26, 0.05), transparent 32rem),
    var(--surface-raised);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  position: relative;
}

/* Stage Nav / Editorial Selector */
.stage-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid var(--line);
}

.stage-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.6rem;
  background: transparent;
  border: none;
  border-right: 1px solid var(--line);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease;
  position: relative;
}

.stage-tab:last-child {
  border-right: none;
}

.stage-tab:hover {
  background: rgba(255, 255, 255, 0.025);
}

.stage-tab:hover .tab-name {
  color: var(--ink);
}

.stage-tab.is-active {
  background: rgba(255, 122, 26, 0.045);
  border-bottom-color: var(--accent);
}

.stage-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.tab-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 220ms ease;
}

.stage-tab.is-active .tab-indicator {
  background: var(--accent);
}

.stage-tab .tab-index {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 180ms ease;
}

.stage-tab.is-active .tab-index {
  color: var(--accent);
}

.stage-tab .tab-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stage-tab .tab-title-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.tab-robot-glyph {
  width: 1.05rem;
  height: 1.05rem;
  min-width: 1.05rem;
  color: var(--muted);
  opacity: 0.65;
  transition: all 180ms ease;
}

.stage-tab:hover .tab-robot-glyph {
  color: #ffffff;
  opacity: 0.9;
}

.stage-tab.is-active .tab-robot-glyph {
  color: var(--accent);
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(255, 122, 26, 0.7));
  transform: scale(1.08);
}

.stage-tab .tab-name {
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--muted-strong);
  letter-spacing: -0.015em;
  transition: color 180ms ease;
}

.stage-tab.is-active .tab-name {
  color: #ffffff;
}

.stage-tab .tab-context {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 180ms ease;
}

.stage-tab.is-active .tab-context {
  color: var(--accent);
}

/* Stage Surface & Panels */
.stage-surface {
  position: relative;
  padding: clamp(2rem, 3.5vw, 3.25rem);
}

.stage-panel {
  display: none;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.stage-panel.is-active {
  display: flex;
}

.stage-watermark {
  position: absolute;
  top: -1rem;
  right: 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.8;
  color: #ffffff;
  opacity: 0.028;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.stage-panel-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 52rem;
  position: relative;
  z-index: 1;
}

.stage-title-group {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.ai-specialist-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.2rem, 5vw, 3.85rem);
  height: clamp(3.2rem, 5vw, 3.85rem);
  min-width: clamp(3.2rem, 5vw, 3.85rem);
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 122, 26, 0.22), transparent 70%),
    #181818;
  border: 1.5px solid rgba(255, 122, 26, 0.45);
  box-shadow:
    0 0 20px rgba(255, 122, 26, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.12);
  color: var(--accent);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.stage-panel.is-active .ai-specialist-avatar {
  animation: robotAvatarEntrance 400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes robotAvatarEntrance {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.ai-specialist-avatar .ai-robot-icon {
  width: clamp(1.85rem, 2.8vw, 2.3rem);
  height: clamp(1.85rem, 2.8vw, 2.3rem);
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(255, 122, 26, 0.7));
}

.stage-title-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stage-meta-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stage-ia-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.16rem 0.5rem;
  border-radius: 0.35rem;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.25);
  color: #ff9a52;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stage-ia-badge .ia-dot {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.stage-context-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 122, 26, 0.3);
  background: rgba(255, 122, 26, 0.08);
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stage-specialist-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.stage-specialist-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted-strong);
}

/* Shared Flow Cells & Microcomponents */
.flow-cell {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cell-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.cell-kicker-tag {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.cell-kicker-tag.system-tag {
  color: var(--muted-strong);
}

.cell-ia .cell-kicker-tag { color: var(--accent); }
.cell-system .cell-kicker-tag { color: var(--muted-strong); }
.cell-human .cell-kicker-tag { color: #ffffff; }

.cell-dot {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
}

.ia-dot { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.system-dot { background: var(--ink); box-shadow: 0 0 6px rgba(255, 255, 255, 0.25); }
.human-dot { background: #ffffff; box-shadow: 0 0 6px #ffffff; }

.cell-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cell-robot-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  min-width: 1.55rem;
  border-radius: 0.4rem;
  background: rgba(255, 122, 26, 0.1);
  border: 1px solid rgba(255, 122, 26, 0.35);
  color: var(--accent);
  box-shadow: 0 0 8px rgba(255, 122, 26, 0.2);
}

.cell-robot-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--accent);
}

.cell-title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 650;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.cell-subkicker {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted-strong);
  text-transform: uppercase;
  margin-top: -0.2rem;
}

.cell-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted-strong);
}

.cell-caps-line {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.cap-sep {
  color: var(--muted);
  opacity: 0.45;
  margin: 0 0.15rem;
}

/* ==========================================================================
   GEOMETRIA 02: Assistente do Tarifário (Pipeline Controlado & Simulação)
   ========================================================================== */
.stage-geometry-pipeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pipeline-connector-band {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 1.25rem;
}

.band-line {
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.3), rgba(255, 255, 255, 0.15), transparent);
  position: relative;
}

.pipeline-workspace-box {
  padding: 1.5rem 1.6rem;
  border-radius: 1.15rem;
  border: 1px solid var(--line-strong);
  background: rgba(14, 14, 14, 0.9);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.workspace-top {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.workspace-heading {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 650;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.workspace-lede {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted-strong);
}

.workspace-gates-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.35fr auto 1fr auto 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 1rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gate-step {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  position: relative;
}

.gate-step.gate-featured {
  border-color: rgba(255, 122, 26, 0.35);
  background: rgba(255, 122, 26, 0.04);
  box-shadow: 0 0 16px rgba(255, 122, 26, 0.06);
}

.gate-number {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  font-weight: 700;
  color: var(--muted);
}

.gate-featured .gate-number {
  color: var(--accent);
}

.gate-title {
  font-size: 0.84rem;
  font-weight: 650;
  color: #ffffff;
  letter-spacing: -0.01em;
}


.gate-arrow {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  opacity: 0.4;
  text-align: center;
}

.workspace-playtest-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 122, 26, 0.2);
}


.banner-text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink);
}

/* ==========================================================================
   GEOMETRIA 03: Analista AirQuote (Convergência de Sinais & Drill-Down)
   ========================================================================== */
.stage-geometry-convergence {
  display: grid;
  grid-template-columns: 1fr auto 1.3fr auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.convergence-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.convergence-card.convergence-system {
  border-color: rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01) 80%);
}

.convergence-card.convergence-analyst {
  border-color: rgba(255, 122, 26, 0.25);
  background: radial-gradient(circle at 50% 10%, rgba(255, 122, 26, 0.05), rgba(255, 255, 255, 0.01) 80%);
}

.convergence-card.convergence-human {
  border-color: rgba(255, 255, 255, 0.14);
}


.convergence-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  position: relative;
}

.bridge-stream-lines {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 122, 26, 0.35));
  position: relative;
}


/* Hairline Connectors Shared */
.pulse-point {
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  box-shadow: 0 0 6px var(--accent);
}

/* Result Strip */
.stage-result-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.25rem 0 0;
  position: relative;
  z-index: 1;
}

.stage-result-label {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.stage-result-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink);
}

.stage-result-text strong {
  font-weight: 600;
  color: #ffffff;
}


/* Stage Deep Link */
.stage-deep-link-wrap {
  display: flex;
  justify-content: center;
  padding: 1.25rem 0 0.5rem;
}

.stage-deep-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--motion-fast), border-color var(--motion-fast), background var(--motion-fast);
}

.stage-deep-link:hover,
.stage-deep-link:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* ==========================================================================
   SPOTLIGHT: INTELIGÊNCIA GERENCIAL (#inteligencia-gerencial)
   ========================================================================== */
.manager-intelligence-spotlight {
  margin: clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 4.5vw, 4.5rem) 0;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 122, 26, 0.05) 0%, transparent 65%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(15, 15, 15, 0.99) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 2.2vw, 1.85rem);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  scroll-margin-top: 4rem;
}

.manager-intelligence-spotlight::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
}

/* Header em 2 Colunas: Tese à Esquerda, Microtelemetria à Direita */
.manager-spotlight-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.manager-spotlight-editorial {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.manager-spotlight-kicker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.manager-kicker-tag {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manager-kicker-badge {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--muted-strong);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.manager-spotlight-headline {
  margin: 0;
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  font-weight: 650;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.manager-spotlight-headline .headline-accent {
  color: var(--muted-strong);
  font-weight: 500;
}

.manager-spotlight-copy {
  margin: 0;
  font-size: clamp(0.85rem, 0.98vw, 0.92rem);
  line-height: 1.55;
  color: var(--muted-strong);
  max-width: 34rem;
}

/* Microtelemetria Visual */
.manager-telemetry-surface {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.05rem;
  box-sizing: border-box;
}

.telemetry-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.telemetry-card:last-child {
  border-bottom: none;
}

.telemetry-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.telemetry-label {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 750;
  color: #ffffff;
  letter-spacing: 0.06em;
}

.telemetry-sub {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Sparkline barras */
.telemetry-spark-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 1.2rem;
  padding-bottom: 2px;
}

.spark-bar {
  width: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

.spark-bar.h-1 { height: 5px; }
.spark-bar.h-2 { height: 9px; }
.spark-bar.h-3 { height: 12px; }
.spark-bar.h-4 { height: 15px; }
.spark-bar.h-5 { height: 18px; }

.spark-bar.is-accent {
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/* Track Line com Ponto */
.telemetry-track-wrap {
  width: 5.5rem;
  display: flex;
  align-items: center;
}

.telemetry-track-line {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
}

.telemetry-track-point {
  position: absolute;
  top: -3px;
  left: 62%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/* Ratio Bars: Auto vs Hum */
.telemetry-ratio-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 5.5rem;
}

.telemetry-ratio-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ratio-label {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  color: var(--muted);
  width: 1.6rem;
  text-align: right;
}

.ratio-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.ratio-fill {
  display: block;
  height: 100%;
  border-radius: 2px;
}

.ratio-fill.is-auto {
  width: 82%;
  background: rgba(255, 255, 255, 0.45);
}

.ratio-fill.is-hum {
  width: 32%;
  background: var(--accent);
}

/* Bloco Principal: Perguntas (Vertical) + Micro-Cockpit */
.manager-cockpit-block {
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) 2.4fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.manager-questions-column {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.manager-questions-kicker {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 750;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-left: 0.2rem;
}

.manager-questions-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.manager-question-btn {
  appearance: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.8rem 0.95rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: inherit;
  min-height: 46px;
  box-sizing: border-box;
  transition: all 180ms ease;
  width: 100%;
  font-family: inherit;
}

.manager-question-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
}

.manager-question-btn.is-active {
  background: rgba(255, 122, 26, 0.06);
  border-color: rgba(255, 122, 26, 0.5);
  box-shadow: 0 0 16px rgba(255, 122, 26, 0.08);
}

.manager-question-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.manager-question-btn .q-btn-index {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 750;
  color: var(--muted);
  transition: color 180ms ease;
}

.manager-question-btn.is-active .q-btn-index {
  color: var(--accent);
}

.manager-question-btn .q-btn-text {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--muted-strong);
  transition: color 180ms ease;
}

.manager-question-btn.is-active .q-btn-text {
  color: #ffffff;
}

.manager-question-btn .q-btn-indicator {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--muted);
  transition: all 180ms ease;
}

.manager-question-btn.is-active .q-btn-indicator {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/* Micro-Cockpit Surface */
.manager-cockpit-surface {
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: clamp(1.05rem, 1.8vw, 1.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-sizing: border-box;
  transition: opacity 180ms ease, transform 180ms ease;
}

.manager-cockpit-surface.is-switching {
  opacity: 0.4;
  transform: translateY(3px);
}

.cockpit-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.65rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cockpit-tag-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.cockpit-live-tag {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 750;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.cockpit-clock {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.66rem;
  color: var(--muted);
}

.cockpit-display-body {
  min-height: 8.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cockpit-metric-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted-strong);
}

.cockpit-metric-heading strong {
  color: #ffffff;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
}

.cockpit-metric-heading span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
}

.cockpit-bars-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cockpit-bar-item {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7.5rem) 4rem 1fr;
  align-items: center;
  gap: 0.65rem;
}

.bar-route-code {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.78rem;
  font-weight: 650;
  color: #ffffff;
}

.bar-level-badge {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.56rem;
  font-weight: 700;
  padding: 0.12rem 0.35rem;
  border-radius: 3px;
  text-align: center;
}

.level-high {
  background: rgba(255, 122, 26, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 122, 26, 0.35);
}

.level-mid {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.level-low {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bar-track {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 350ms ease;
}

.bar-fill-high {
  width: 85%;
  background: linear-gradient(90deg, var(--action), var(--accent));
}

.bar-fill-mid {
  width: 58%;
  background: rgba(255, 255, 255, 0.45);
}

.bar-fill-mid-2 {
  width: 44%;
  background: rgba(255, 255, 255, 0.35);
}

.bar-fill-low {
  width: 25%;
  background: rgba(255, 255, 255, 0.2);
}

/* Casos Relacionados / Drill-down */
.cockpit-cases-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cockpit-case-row {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  transition: background 180ms ease, border-color 180ms ease;
}

.cockpit-case-row:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.12);
}

.case-id-badge {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  color: var(--accent);
  background: rgba(255, 122, 26, 0.1);
  padding: 0.12rem 0.38rem;
  border-radius: 3px;
  font-weight: 700;
  border: 1px solid rgba(255, 122, 26, 0.25);
}

.case-route {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.74rem;
  font-weight: 650;
  color: #ffffff;
}

.case-desc {
  font-size: 0.74rem;
  color: var(--muted-strong);
  line-height: 1.35;
  min-width: 0;
}

.case-action-arrow {
  color: var(--accent);
  font-size: 0.78rem;
  opacity: 0.8;
}

/* Rodapé do Cockpit */
.manager-cockpit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.65rem;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.manager-chain-result {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.result-badge {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  font-weight: 750;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
}

.manager-provenance-note {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.64rem;
  color: var(--muted);
}

.provenance-glyph {
  color: var(--accent);
  font-size: 0.65rem;
}

/* Fechamento Estratégico */
.manager-spotlight-closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.closing-title {
  margin: 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(0.78rem, 1.05vw, 0.92rem);
  font-weight: 750;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.closing-sub {
  margin: 0;
  font-size: clamp(0.74rem, 0.88vw, 0.82rem);
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.45;
}

.impact-section {
  padding: clamp(2.5rem, 4.5vw, 4.5rem) clamp(1.5rem, 4.5vw, 4.5rem);
  background: #141414;
  color: var(--ink);
}

.impact-section .section-label {
  color: var(--muted);
}

.impact-section .section-label > span {
  border-color: rgba(255, 122, 26, 0.28);
  color: var(--accent);
}

.impact-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.75rem, 3.5vw, 4rem);
  align-items: end;
  margin-bottom: 1.35rem;
}

.impact-title {
  margin: 0.35rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 44rem;
}

.impact-title-lead {
  color: #ffffff;
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.impact-title-sub {
  color: var(--muted-strong);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.impact-lead {
  margin: 0;
  padding-bottom: 0.15rem;
  color: var(--muted-strong);
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  line-height: 1.55;
  max-width: 34rem;
}

/* Affordance micro-instruction */
.impact-affordance {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.affordance-symbol {
  color: var(--accent);
  font-size: 0.85rem;
  line-height: 1;
}

.affordance-label {
  color: var(--muted);
  transition: color 250ms ease;
}

/* Business Impact Explorer — Superfície Única Editorial */
.impact-explorer {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 122, 26, 0.035), transparent 24rem),
    #171717;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.impact-columns {
  display: flex;
  flex-direction: row;
  min-height: 33.5rem;
  margin: 0;
  padding: 0;
}

.impact-column {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  transition: flex 420ms cubic-bezier(0.16, 1, 0.3, 1), background 300ms ease;
}

.impact-column:not(.is-active) {
  cursor: pointer;
}

.impact-column:not(.is-active) .impact-column-header {
  flex: 1;
  height: 100%;
}

.impact-column:not(.is-active) .impact-col-subtitle {
  display: none !important;
}

.impact-column:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.03);
}

.impact-column:not(.is-active):hover .impact-col-num {
  color: var(--accent);
}

.impact-column:not(.is-active):hover .impact-col-title {
  color: var(--ink);
}

.impact-column:last-child {
  border-right: 0;
}

.impact-column.is-active {
  flex: 3.8;
  background: rgba(255, 122, 26, 0.02);
}

.impact-column-header {
  appearance: none;
  background: none;
  border: none;
  padding: 2rem 1.35rem 1.5rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: background 200ms ease;
  font-family: inherit;
  color: inherit;
}

.impact-column-header:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.impact-col-num {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  transition: color 200ms ease;
}

.impact-column.is-active .impact-col-num {
  color: var(--accent);
  font-weight: 600;
}

.impact-col-titles {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.impact-col-title {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: color 200ms ease;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.25;
}

.impact-column.is-active .impact-col-title {
  color: var(--ink);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.impact-col-subtitle {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.45;
  transition: color 200ms ease;
}

.impact-col-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 250ms ease;
}

.impact-column.is-active .impact-col-indicator {
  background: var(--accent);
}

/* Conteúdo Expandido da Coluna Ativa */
.impact-column-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 0 1.85rem 1.85rem;
  min-width: 0;
}

.impact-column:not(.is-active) .impact-column-content {
  display: none;
}

/* Cadeia Causal em 3 Estágios com Linha de Progressão Contínua */
.impact-chain {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1.75rem 0 2rem;
  border-top: 1px solid var(--line);
  margin-bottom: 1.75rem;
}

.impact-stage {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.impact-stage-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.impact-stage-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
}

.impact-stage-tag {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-stage-title {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 580;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.impact-stage-copy {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.81rem;
  line-height: 1.6;
}

.impact-chain-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.35rem;
}

.impact-chain-track {
  position: relative;
  width: 1.8rem;
  height: 1px;
  background: var(--line-strong);
}

.impact-chain-track::after {
  content: "→";
  position: absolute;
  right: -5px;
  top: -7px;
  font-size: 0.65rem;
  color: var(--muted);
  font-family: monospace;
}

.impact-value-signal {
  position: absolute;
  top: -2.5px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  opacity: 0;
}

/* Footer Editorial da Área Ativa (Sem card dentro de card, sem pills) */
.impact-result-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.impact-result-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.impact-result-label {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-result-text {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 560;
  line-height: 1.45;
  letter-spacing: -0.015em;
}


/* Animações One-Shot do Impact Explorer */
.impact-column.is-animating .impact-stage[data-stage="1"] {
  animation: stageEntranceOneShot 280ms cubic-bezier(0.16, 1, 0.3, 1) 0ms both;
}

.impact-column.is-animating .signal-1 {
  animation: valueSignalTravelOneShot 350ms ease 100ms both;
}

.impact-column.is-animating .impact-stage[data-stage="2"] {
  animation: stageEntranceOneShot 280ms cubic-bezier(0.16, 1, 0.3, 1) 220ms both;
}

.impact-column.is-animating .signal-2 {
  animation: valueSignalTravelOneShot 350ms ease 340ms both;
}

.impact-column.is-animating .impact-stage[data-stage="3"] {
  animation: stageEntranceOneShot 280ms cubic-bezier(0.16, 1, 0.3, 1) 460ms both;
}

.impact-column.is-animating .impact-result-footer {
  animation: stageEntranceOneShot 300ms cubic-bezier(0.16, 1, 0.3, 1) 560ms both;
}

@keyframes stageEntranceOneShot {
  from {
    opacity: 0.25;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes valueSignalTravelOneShot {
  0% {
    left: 0%;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* ==========================================================================
   05 GOVERNANÇA & CONFIANÇA (PILARES DE CONFIANÇA & TRILHA DE DECISÃO)
   ========================================================================== */
/* ==========================================================================
   05 GOVERNANÇA & CONFIANÇA (GOVERNANÇA NA PRÁTICA)
   ========================================================================== */
.governance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(2.5rem, 4.5vw, 4.5rem);
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4.5vw, 4.5rem);
  background:
    radial-gradient(circle at 12% 86%, rgba(196, 75, 0, 0.08), transparent 28rem),
    radial-gradient(circle at 85% 15%, rgba(255, 122, 26, 0.04), transparent 24rem),
    #131313;
  color: var(--ink);
  box-sizing: border-box;
  max-width: 100%;
}

.governance-section .section-label {
  color: var(--muted);
}

.governance-section .section-label > span {
  border-color: rgba(255, 122, 26, 0.28);
  color: var(--accent);
}

.governance-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding-top: 0.35rem;
}

.governance-copy h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.85rem, 2.8vw, 2.6rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #ffffff;
}

.governance-lead {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Tríade Editorial: Base de Confiança */
.governance-triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.triad-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0;
  background: transparent;
  border: none;
}

.triad-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 5px;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.25);
  color: var(--accent);
}

.triad-icon-wrap svg {
  stroke: var(--accent);
}

.triad-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.triad-title {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 750;
  color: #ffffff;
  letter-spacing: 0.06em;
}

.triad-sub {
  font-size: 0.76rem;
  color: var(--muted-strong);
  line-height: 1.35;
}

/* Superfície de Governança na Prática (Painel Direito) */
.governance-surface {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #171717;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.governance-surface-header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

.surface-header-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.surface-header-title {
  margin: 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.surface-header-sub {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.4;
}

.governance-tabs-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.gov-tab {
  appearance: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
  transition: all 180ms ease;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gov-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.gov-tab.is-active {
  background: rgba(255, 122, 26, 0.12);
  border-color: rgba(255, 122, 26, 0.45);
  color: #ffffff;
  font-weight: 750;
}

.gov-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Painéis Estáticos das Abas */
.gov-panels-wrapper {
  min-width: 0;
}

.gov-tabpanel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: opacity 120ms ease, transform 120ms ease;
}

.gov-tabpanel[hidden] {
  display: none !important;
}

.gov-tabpanel.is-switching {
  opacity: 0.3;
  transform: translateY(3px);
}

.gov-panel-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.gov-panel-title {
  margin: 0;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 650;
  color: #ffffff;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.gov-panel-desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted-strong);
}

/* Área de Diagrama Aberta (Sem card pesado interno) */
.gov-diagram-area {
  padding: 0.75rem 0.25rem;
  min-height: 110px;
  display: flex;
  align-items: center;
}

/* 1. ABA PREÇO: Diagrama de Autoridade Monetária */
.price-diagram-wrap {
  width: 100%;
}

.price-flow-axis {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  max-width: 100%;
}

.price-axis-stem {
  color: var(--accent);
  font-size: 0.75rem;
  padding-left: 1.25rem;
  line-height: 1;
  opacity: 0.75;
}

.price-flow-node {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 5px;
  box-sizing: border-box;
}

.price-flow-node .node-tag {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.35rem;
  border-radius: 3px;
}

.price-flow-node .node-title {
  font-family: var(--font-geist-mono), monospace;
  letter-spacing: 0.04em;
}

/* Nó 1: Origem */
.node-origin {
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.node-origin .node-tag {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.node-origin .node-title {
  font-size: 0.66rem;
  font-weight: 650;
  color: var(--muted-strong);
}

/* Nó 2: Núcleo Central de Regras & Conexão Lateral de IA */
.node-core {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  flex-wrap: wrap;
}

.node-core-main {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.node-core-main .node-tag {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.node-core-main .node-title {
  font-size: 0.74rem;
  font-weight: 750;
  color: #ffffff;
}

.node-core-main .node-micro {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  padding-left: 0.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.price-ia-lateral {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.ia-lateral-line {
  width: 1.25rem;
  height: 1px;
  border-top: 1px dashed rgba(255, 122, 26, 0.4);
}

.ia-lateral-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border-radius: 5px;
  background: rgba(255, 122, 26, 0.06);
  border: 1px dashed rgba(255, 122, 26, 0.3);
}

.ia-pill-head {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.6rem;
  font-weight: 750;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.ia-pill-desc {
  font-size: 0.66rem;
  color: var(--muted-strong);
  padding-left: 0.35rem;
  border-left: 1px solid rgba(255, 122, 26, 0.2);
}

/* Nó 3: Saída / Preço */
.node-outcome {
  padding: 0.45rem 0.8rem;
  background: rgba(255, 122, 26, 0.1);
  border: 1px solid rgba(255, 122, 26, 0.38);
}

.node-outcome .node-tag {
  color: var(--accent);
  background: rgba(255, 122, 26, 0.15);
}

.node-outcome .node-title {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--accent);
}

/* 2. ABA EXCEÇÕES: Fluxo de Encaminhamento */
.exceptions-flow-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}

.exc-step-node {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.74rem;
  color: var(--muted-strong);
}

.exc-bullet {
  color: var(--accent);
  font-size: 0.7rem;
}

.exc-step-name {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.node-exc-ia {
  background: rgba(255, 122, 26, 0.06);
  border-color: rgba(255, 122, 26, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.exc-ia-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.exc-ia-top .exc-step-name {
  color: var(--accent);
  font-weight: 700;
}

.exc-ia-chips {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  color: var(--muted-strong);
}

.exc-ia-chips span {
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.node-exc-human {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.node-exc-human .exc-step-name {
  color: #ffffff;
  font-weight: 700;
}

.exc-step-arrow {
  color: var(--muted);
  font-size: 0.7rem;
  padding-left: 0.75rem;
  line-height: 1;
  opacity: 0.6;
}

/* 3. ABA HISTÓRICO: Timeline de Rastreabilidade Real */
.history-timeline-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
}

.history-timeline-step {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.55rem 0.65rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.history-timeline-step.is-highlight {
  background: rgba(255, 122, 26, 0.06);
  border-color: rgba(255, 122, 26, 0.28);
}

.timeline-dot-wrap {
  display: flex;
  align-items: center;
}

.timeline-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--muted);
}

.timeline-dot-wrap.is-highlight .timeline-dot {
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.timeline-step-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.timeline-step-title {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.66rem;
  font-weight: 750;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.timeline-step-desc {
  font-size: 0.68rem;
  color: var(--muted-strong);
  line-height: 1.3;
}

.timeline-step-connector {
  width: 1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 122, 26, 0.3));
}

/* Fechamento Editorial Simples */
.gov-closure-strip {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.gov-closure-label {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  font-weight: 750;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.gov-closure-value {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

/* Assinatura Fixa no Rodapé da Superfície */
.governance-fixed-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  text-align: center;
}

.sig-node {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--muted-strong);
  font-weight: 600;
}

.sig-bullet {
  font-size: 0.55rem;
  opacity: 0.8;
}

.sig-node.is-accent {
  color: var(--accent);
}

.sig-sep {
  color: var(--muted);
  opacity: 0.4;
  font-size: 0.7rem;
}

/* ==========================================================================
   06 POR QUE AGORA (TIMING DE MERCADO & ALAVANCAGEM OPERACIONAL)
   ========================================================================== */
.why-now-section {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: start;
  padding: clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 3.5vw, 3.5rem);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 122, 26, 0.07), transparent 24rem),
    radial-gradient(circle at 90% 80%, rgba(196, 75, 0, 0.05), transparent 22rem),
    #121212;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  box-sizing: border-box;
  overflow: hidden;
}

.why-now-editorial {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.why-now-headline {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 36rem;
}

.headline-part-primary {
  color: #ffffff;
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.headline-part-secondary {
  color: var(--muted-strong);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.why-now-lead {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 32rem;
}

.why-now-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.25rem;
}

.why-now-pillar-item {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.why-now-pillar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pillar-num {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
  font-weight: 750;
  color: var(--accent);
  margin-top: 0.1rem;
}

.pillar-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pillar-title {
  margin: 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
}

.pillar-text {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted-strong);
  line-height: 1.4;
}

.pillar-qualitative-visual {
  margin-top: 0.35rem;
  padding: 0.45rem 0.6rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.qualitative-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}

.qualitative-row:last-child {
  margin-bottom: 0;
}

.qualitative-label {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  color: var(--muted);
  width: 3.8rem;
  flex-shrink: 0;
}

.qualitative-bar-track {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.q-bar-fill {
  display: block;
  height: 100%;
  border-radius: 3px;
}

.bar-fill-accent {
  width: 90%;
  background: linear-gradient(90deg, var(--action), var(--accent));
}

.bar-fill-muted {
  width: 32%;
  background: rgba(255, 255, 255, 0.35);
}

.qualitative-flow-compare {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.q-flow-line {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.q-flow-tag {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 4.8rem;
}

.tag-aq {
  color: var(--accent);
}

.q-flow-chain {
  font-size: 0.68rem;
}

.step-highlight {
  color: #ffffff;
  font-weight: 600;
}

.qualitative-speed-bars {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.speed-bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.speed-label {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.54rem;
  color: var(--muted);
}

.speed-label-aq {
  color: var(--accent);
  font-weight: 600;
}

.speed-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.track-long {
  width: 95%;
}

.track-short {
  width: 30%;
}

.speed-fill {
  display: block;
  height: 100%;
  border-radius: 2px;
}

.fill-long {
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
}

.fill-short {
  width: 100%;
  background: linear-gradient(90deg, var(--action), var(--accent));
}

.why-now-visual {
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-self: start;
}

.why-now-graph-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem 1.45rem;
  background: #161616;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  box-sizing: border-box;
}

.why-now-graph-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why-now-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: 100%;
}

.graph-tab {
  appearance: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  padding: 0.38rem 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms ease;
}

.graph-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.graph-tab.is-active {
  background: rgba(255, 122, 26, 0.1);
  border-color: rgba(255, 122, 26, 0.45);
  color: #ffffff;
  font-weight: 750;
}

.graph-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.tab-curve-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.curve-indicator-airquote {
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.curve-indicator-market {
  background: #94a3b8;
}

.curve-indicator-effort {
  background: rgba(255, 255, 255, 0.4);
}

.why-now-chart-wrap {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding-top: 1.2rem;
  padding-bottom: 1.3rem;
}

.chart-axis-y-label {
  position: absolute;
  top: 0;
  left: 0.25rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted-strong);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 3;
}

.chart-axis-x-label {
  position: absolute;
  bottom: 0;
  right: 0.25rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted-strong);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 3;
}

.why-now-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.curve-group {
  cursor: pointer;
  transition: opacity 250ms ease;
  outline: none;
}

.curve-group.is-dimmed {
  opacity: 0.35;
}

.curve-path {
  transition: stroke-width 200ms ease;
}

.curve-group.is-highlighted .curve-path-airquote {
  stroke-width: 4.2px;
}

.curve-group.is-highlighted .curve-path-market {
  stroke-width: 2.4px;
  stroke: #e2e8f0;
}

.curve-group.is-highlighted .curve-path-effort {
  stroke-width: 3px;
  stroke: rgba(255, 255, 255, 0.7);
}

.curve-area {
  transition: opacity 250ms ease;
}

.curve-area.is-dimmed {
  opacity: 0.03;
}

.endpoint-rail-label {
  font-family: var(--font-geist-mono), monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  pointer-events: none;
  transition: opacity 250ms ease, fill 250ms ease, font-weight 250ms ease;
}

.endpoint-rail-label.label-airquote {
  fill: rgba(255, 122, 26, 0.65);
}

.endpoint-rail-label.label-airquote.is-highlighted {
  fill: var(--accent);
  font-weight: 750;
  opacity: 1;
}

.endpoint-rail-label.label-market {
  fill: #94a3b8;
  opacity: 0.6;
}

.endpoint-rail-label.label-market.is-highlighted {
  fill: #e2e8f0;
  font-weight: 700;
  opacity: 1;
}

.endpoint-rail-label.label-effort {
  fill: rgba(255, 255, 255, 0.45);
  opacity: 0.6;
}

.endpoint-rail-label.label-effort.is-highlighted {
  fill: #ffffff;
  font-weight: 700;
  opacity: 1;
}

.inflection-svg-label {
  font-family: var(--font-geist-mono), monospace;
  font-size: 7.5px;
  font-weight: 750;
  letter-spacing: 0.05em;
  fill: var(--accent);
  pointer-events: none;
}

.leverage-chip-title {
  font-family: var(--font-geist-mono), monospace;
  font-size: 7.5px;
  font-weight: 750;
  letter-spacing: 0.05em;
  fill: var(--accent);
  pointer-events: none;
}

.why-now-series-desc {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  background: rgba(255, 122, 26, 0.04);
  border: 1px solid rgba(255, 122, 26, 0.2);
  min-width: 0;
  box-sizing: border-box;
}

.why-now-series-desc .series-desc-icon {
  color: var(--accent);
  font-size: 0.82rem;
  line-height: 1.3;
  flex-shrink: 0;
}

.why-now-series-desc .series-desc-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.why-now-series-desc .series-desc-name {
  font-size: 0.78rem;
  font-weight: 650;
  color: #ffffff;
}

.why-now-series-desc .series-desc-text {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--muted-strong);
}

.why-now-disclaimer {
  margin: 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  color: var(--muted);
  opacity: 0.65;
  line-height: 1.3;
}

.why-now-section.is-animating .curve-path-market {
  animation: curveFadeIn 500ms cubic-bezier(0.16, 1, 0.3, 1) 150ms both;
}

.why-now-section.is-animating .curve-path-effort {
  animation: curveFadeIn 500ms cubic-bezier(0.16, 1, 0.3, 1) 250ms both;
}

.why-now-section.is-animating .chart-inflection-badge {
  animation: stageEntranceOneShot 350ms cubic-bezier(0.16, 1, 0.3, 1) 450ms both;
}

.why-now-section.is-animating .curve-path-airquote {
  animation: curveAirQuoteEntrance 850ms cubic-bezier(0.16, 1, 0.3, 1) 500ms both;
}

.why-now-section.is-animating .endpoint-rail-label {
  animation: curveFadeIn 400ms cubic-bezier(0.16, 1, 0.3, 1) 900ms both;
}

.why-now-section.is-animating .chart-annotation-leverage {
  animation: stageEntranceOneShot 350ms cubic-bezier(0.16, 1, 0.3, 1) 1000ms both;
}

.why-now-section.is-animating .why-now-series-desc {
  animation: stageEntranceOneShot 300ms cubic-bezier(0.16, 1, 0.3, 1) 1100ms both;
}

@keyframes curveFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes curveAirQuoteEntrance {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ==========================================================================
   07 PRÓXIMA CONVERSA (DIAGNÓSTICO DA SUA OPERAÇÃO)
   ========================================================================== */
.final-cta-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 2.3vw, 1.85rem);
  padding: clamp(2rem, 3.5vw, 3.25rem) clamp(1.5rem, 3.5vw, 3.25rem);
  background:
    radial-gradient(circle at 18% 24%, rgba(196, 75, 0, 0.12), transparent 28rem),
    radial-gradient(circle at 85% 75%, rgba(255, 122, 26, 0.06), transparent 26rem),
    #121212;
  color: var(--ink);
  box-sizing: border-box;
  max-width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}

/* Header Editorial Topo */
.final-cta-header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 48rem;
}

.final-cta-header .final-cta-headline {
  margin: 0.2rem 0 0;
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.final-cta-lead {
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(0.88rem, 1.05vw, 0.96rem);
  line-height: 1.55;
}

/* Statement de Confiança */
.cta-statement-box {
  display: flex;
  align-items: flex-start;
  padding-left: 0.85rem;
  border-left: 2px solid var(--accent);
  margin-top: 0.15rem;
}

.cta-statement-text {
  margin: 0;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.76rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.cta-statement-strong {
  color: #ffffff;
  font-weight: 700;
}

.cta-statement-sub {
  color: var(--muted-strong);
}

/* Seletor de Diagnóstico em Grid Horizontal */
.final-cta-needs-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.05rem, 1.6vw, 1.35rem);
  background: #161616;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.cta-needs-header {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cta-needs-kicker {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-needs-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 650;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.cta-needs-subtitle {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted-strong);
  line-height: 1.45;
}

.cta-needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.cta-need-item {
  appearance: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.95rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  transition: all 180ms ease;
  min-height: 48px;
  box-sizing: border-box;
  width: 100%;
}

.cta-need-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-need-item.is-active {
  border-color: rgba(255, 122, 26, 0.5);
  background: rgba(255, 122, 26, 0.06);
  box-shadow: 0 0 16px rgba(255, 122, 26, 0.08);
}

.cta-need-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.need-header-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.need-num {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.74rem;
  font-weight: 750;
  color: var(--muted);
  transition: color 180ms ease;
}

.cta-need-item.is-active .need-num {
  color: var(--accent);
}

.need-glyph {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: var(--muted);
  transition: all 180ms ease;
}

.cta-need-item.is-active .need-glyph {
  color: var(--accent);
  filter: drop-shadow(0 0 5px rgba(255, 122, 26, 0.65));
}

.cta-need-item:hover .need-glyph {
  color: #ffffff;
}

.need-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  width: 100%;
}

.need-name {
  font-size: 0.86rem;
  font-weight: 650;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.need-sub {
  font-size: 0.73rem;
  color: var(--muted-strong);
  line-height: 1.42;
}

/* Painel de Diagnóstico Central */
.cta-diagnostic-summary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: clamp(1.05rem, 1.6vw, 1.35rem);
  box-sizing: border-box;
  width: 100%;
}

.diagnostic-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.65rem;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.summary-kicker-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.summary-origin-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.summary-kicker {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 750;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.node-signals-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.signal-chip {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 0.25rem;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.25);
  color: var(--accent);
}

/* Sequência das 3 Etapas */
.diagnostic-steps-sequence {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  margin: 0.2rem 0;
}

.diag-step {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  min-width: 0;
}

.diag-step-num {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255, 122, 26, 0.12);
  padding: 0.12rem 0.32rem;
  border-radius: 3px;
  flex-shrink: 0;
}

.diag-step-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.diag-step-name {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.66rem;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.diag-step-text {
  font-size: 0.73rem;
  color: var(--muted-strong);
  line-height: 1.35;
}

.diag-sep {
  color: var(--muted);
  font-size: 0.82rem;
  opacity: 0.6;
}

/* Faixa de Resultado */
.diagnostic-result-strip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.65rem;
  flex-wrap: wrap;
}

.diag-result-kicker {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  font-weight: 750;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.diag-conclusion {
  font-size: 0.8rem;
  font-weight: 550;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

/* Painel de Ação Comercial / CTA Bar */
.cta-action-panel {
  display: flex;
  flex-direction: column;
  padding-top: clamp(0.85rem, 1.4vw, 1.15rem);
  border-top: 1px solid var(--line);
  box-sizing: border-box;
}

.cta-action-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cta-action-context-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
}

.cta-action-kicker {
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-action-highlight {
  color: var(--accent);
  font-weight: 750;
}

.cta-action-main {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.final-cta-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.65rem;
  background: var(--action);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: background 200ms ease, transform 150ms ease, box-shadow 200ms ease;
  min-height: 46px;
  box-sizing: border-box;
}

.final-cta-button:hover {
  background: var(--action-hover);
  box-shadow: 0 0 24px rgba(196, 75, 0, 0.45);
}

.final-cta-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.cta-btn-arrow {
  font-size: 1.05rem;
  transition: transform 200ms ease;
}

.final-cta-button:hover .cta-btn-arrow {
  transform: translate(2px, -2px);
}

.cta-contact-person-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.contact-person-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-person-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.contact-person-name {
  font-size: 0.84rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.cta-microcopy {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.76rem;
  line-height: 1.45;
  max-width: 32rem;
}

.contact-status {
  display: flex;
  max-width: 36rem;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  opacity: 0.75;
}

.contact-status > span {
  flex: 0 0 auto;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.35rem;
}

/* One-Shot Entrance Animations */
.why-now-section.is-animating .why-now-editorial {
  animation: stageEntranceOneShot 400ms cubic-bezier(0.16, 1, 0.3, 1) 100ms both;
}

.why-now-section.is-animating .why-now-visual {
  animation: stageEntranceOneShot 450ms cubic-bezier(0.16, 1, 0.3, 1) 200ms both;
}

.final-cta-section.is-animating .final-cta-header {
  animation: stageEntranceOneShot 400ms cubic-bezier(0.16, 1, 0.3, 1) 100ms both;
}

.final-cta-section.is-animating .final-cta-needs-block {
  animation: stageEntranceOneShot 450ms cubic-bezier(0.16, 1, 0.3, 1) 200ms both;
}

.final-cta-section.is-animating .cta-diagnostic-summary {
  animation: stageEntranceOneShot 450ms cubic-bezier(0.16, 1, 0.3, 1) 350ms both;
}



.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.5rem clamp(1.5rem, 4vw, 4rem);
  background: #0f0f0f;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand > div {
  display: grid;
  gap: 0.4rem;
}

.footer-brand strong {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
}

.site-footer nav a {
  color: var(--muted-strong);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.57rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer nav a:hover {
  color: var(--mint);
}

.footer-meta {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.52rem;
  letter-spacing: 0.045em;
  text-align: right;
  text-transform: uppercase;
}


@media (max-width: 1120px) {
  .mobile-menu {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .section-intro,
  .compact-intro {
    grid-template-columns: 1fr 1.7fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
  }

  .vertical-section {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }

  .governance-section {
    grid-template-columns: 1fr;
  }

  .vertical-diagram-wrap {
    margin-top: 0;
  }

  .vertical-map {
    justify-self: center;
  }

  .intelligence-header {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.25rem 2rem;
  }

  .intelligence-stage {
    margin: 0 1.25rem;
  }

  .bifurcation-trunk {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .bifurcation-stem {
    transform: rotate(90deg);
    margin: 0.25rem auto;
    width: auto;
    height: 1.5rem;
  }

  .bifurcation-branches {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .workspace-gates-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .workspace-gates-track .gate-arrow {
    display: none;
  }

  .stage-geometry-convergence {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .convergence-bridge {
    transform: rotate(90deg);
    margin: 0.25rem auto;
    width: auto;
    height: 1.5rem;
  }

  

  .manager-intelligence-spotlight {
    margin: 2.5rem 1.25rem 0;
    padding: 1.75rem 1.35rem;
  }

  .manager-spotlight-top-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .manager-cockpit-block {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 1240px) {
  .impact-heading {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-bottom: 1.35rem;
  }

  .impact-columns {
    flex-direction: column;
    min-height: auto;
  }

  .impact-column {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    flex: none !important;
  }

  .impact-column:last-child {
    border-bottom: 0;
  }

  .impact-column-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.4rem;
    min-height: 48px;
  }

  .impact-column:not(.is-active) .impact-column-header {
    flex: none;
    height: auto;
  }

  .impact-col-titles {
    flex: 1;
    margin: 0 1rem;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.75rem;
  }

  .impact-column:not(.is-active) .impact-col-subtitle {
    display: inline-block !important;
    color: var(--muted);
    font-size: 0.8rem;
  }

  .impact-column.is-active .impact-col-title {
    font-size: 1.15rem;
  }

  .impact-column.is-active .impact-col-subtitle {
    display: inline-block;
    color: var(--muted-strong);
    font-size: 0.84rem;
  }

  .impact-column.is-active .impact-col-indicator {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 2px;
    height: 100%;
  }

  .impact-column-content {
    padding: 0 1.4rem 1.6rem;
  }

  .impact-chain {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem 0;
    margin-bottom: 1.25rem;
  }

  .impact-chain-connector {
    padding-top: 0;
    justify-content: flex-start;
    margin-left: 0.5rem;
  }

  .impact-chain-track {
    width: 1px;
    height: 1.5rem;
  }

  .impact-chain-track::after {
    content: "↓";
    right: -4px;
    top: auto;
    bottom: -8px;
  }

  .impact-value-signal {
    top: 0;
    left: -2.5px;
  }

  @keyframes valueSignalTravelOneShot {
    0% {
      top: 0%;
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    100% {
      top: 100%;
      opacity: 0;
    }
  }

  .impact-result-footer {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

@media (max-width: 640px) {
  .impact-col-titles {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .impact-column:not(.is-active) .impact-col-subtitle {
    display: none !important;
  }
}

@media (max-width: 1120px) {
  .paradigm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .paradigm-shift {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .paradigm-shift:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .paradigm-shift:nth-child(even) {
    border-right: 0;
  }

  .paradigm-shift:nth-child(n+4) {
    border-bottom: 1px solid var(--line);
  }

  .paradigm-shift:nth-child(n+5) {
    border-bottom: 0;
  }

  .why-now-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .final-cta-needs-block {
    align-self: stretch;
  }

  .cta-needs-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .diagnostic-steps-sequence {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .diag-sep {
    display: none;
  }

  .section-card {
    border-radius: 1.2rem;
  }

  .section-card h2 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .section-intro,
  .compact-intro {
    grid-template-columns: 1fr;
    padding: 3.2rem 1.25rem;
  }

  .section-intro > p:last-child {
    grid-column: auto;
  }

  .paradigm-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "hint"
      "grid"
      "panel";
    gap: 1.5rem;
    padding: 2.5rem 1.25rem 1.75rem;
  }

  .paradigm-grid-bar {
    padding: 0.75rem 1.25rem;
  }

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

  .paradigm-shift,
  .paradigm-shift:nth-child(even),
  .paradigm-shift:nth-child(3n) {
    grid-template-columns: 1.8rem minmax(0, 1fr) auto minmax(0, 1.25fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 0.75rem;
    padding: 1.15rem 1rem;
    min-height: 4.8rem;
  }

  .paradigm-shift:last-child {
    border-bottom: 0;
  }

  .paradigm-shift strong {
    grid-column: auto;
  }

  .vertical-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "diagram"
      "panel"
      "automation";
    row-gap: 2rem;
    padding: 3.2rem 1.25rem;
  }

  .impact-section,
  .governance-section,
  .final-cta-section {
    padding: 3.2rem 1.25rem;
  }

  .orbit,
  .ai-transversal-layer {
    display: none !important;
  }

  .vertical-map {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .vertical-core {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
  }

  .core-title {
    font-size: 0.95rem;
  }

  .os-module-pill {
    position: relative;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    min-height: 44px;
    padding: 0.65rem 0.85rem;
    font-size: 0.78rem;
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
  }

  .intelligence-header {
    padding: 2.5rem 1.25rem 1.75rem;
  }

  .triad-bar-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .triad-separator {
    display: none;
  }

  .stage-nav {
    grid-template-columns: 1fr;
  }

  .stage-tab {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem;
  }

  .stage-tab.is-active {
    border-left: 2px solid var(--accent);
    border-bottom-color: var(--line);
  }

  .stage-tab.is-active .tab-indicator {
    display: none;
  }

  .workspace-gates-track {
    grid-template-columns: 1fr;
  }

  .workspace-playtest-banner {
    flex-direction: column;
    gap: 0.4rem;
  }

  .stage-surface {
    padding: 1.5rem 1.25rem;
  }

  .stage-result-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .final-cta-copy h2 {
    max-width: none;
  }

  .final-cta-button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
    border-radius: 1.2rem;
    padding: 2rem 1.25rem calc(6rem + env(safe-area-inset-bottom, 0px));
  }

  .cockpit-case-row {
    display: grid !important;
    grid-template-areas:
      "id route arrow"
      ". desc desc" !important;
    grid-template-columns: auto 1fr auto !important;
    gap: 0.35rem 0.65rem !important;
    align-items: center !important;
  }
  .case-id-badge { grid-area: id; }
  .case-route { grid-area: route; }
  .case-desc { grid-area: desc; font-size: 0.78rem; color: var(--muted); }
  .case-action-arrow { grid-area: arrow; }

  .cockpit-bar-item {
    display: grid !important;
    grid-template-areas:
      "route level"
      "track track" !important;
    grid-template-columns: 1fr auto !important;
    gap: 0.35rem 0.5rem !important;
    align-items: center !important;
  }
  .bar-route-code { grid-area: route; }
  .bar-level-badge { grid-area: level; }
  .bar-track { grid-area: track; }

  .chart-endpoint-rail,
  .chart-inflection-badge,
  .chart-annotation-leverage {
    display: none !important;
  }

  .footer-meta {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .paradigm-shift {
    grid-template-columns: 1fr !important;
    gap: 0.4rem !important;
    min-height: 44px !important;
    padding: 0.85rem 1rem !important;
    text-align: left;
  }

  .shift-arrow {
    transform: rotate(90deg);
    justify-self: center;
    margin: 0.15rem 0;
  }
}

@media (max-width: 430px) {
  .manager-intelligence-spotlight {
    padding: 1.25rem 1rem;
    margin-top: 2rem;
  }

  .manager-question-btn {
    padding: 0.75rem 0.85rem;
  }

  .telemetry-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .mobile-menu-panel {
    position: fixed;
    top: calc(var(--header-offset, 3.85rem) + 0.5rem);
    right: 1rem;
    left: 1rem;
    width: auto;
    max-height: calc(100svh - var(--header-offset, 3.85rem) - 1.5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .paradigm-shift {
    gap: 0.65rem;
  }

  .governance-surface {
    padding: 1.25rem 0.95rem;
  }


  .stage-surface {
    padding: 1.25rem 1rem;
  }

  .branch-card {
    padding: 1rem 1.15rem;
  }

  .pipeline-workspace-box {
    padding: 1.25rem 1rem;
  }

  .convergence-card {
    padding: 1.15rem 1rem;
  }
}

/* ==========================================================================
   SISTEMA GLOBAL DE SCROLL REVEAL (Progressive & Hardware-Accelerated)
   ========================================================================== */

/* Estado Inicial Oculto (Apenas quando JavaScript está habilitado) */
.js-reveal-enabled [data-reveal],
.js-reveal-enabled [data-reveal-group] [data-reveal],
.js-reveal-enabled .section-label {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

/* Durações e variações semânticas */
.js-reveal-enabled .section-label,
.js-reveal-enabled [data-reveal="label"] {
  transition-duration: 520ms;
}

.js-reveal-enabled [data-reveal="headline"] {
  display: inline-block;
  transition-duration: 720ms;
}

.js-reveal-enabled [data-reveal="copy"] {
  transition-duration: 650ms;
}

.js-reveal-enabled [data-reveal="card"] {
  transition-duration: 720ms;
  transform: translate3d(0, 30px, 0);
}

.js-reveal-enabled [data-reveal="visual"] {
  transition-duration: 820ms;
  transform: translate3d(0, 34px, 0);
}

/* Estado Revelado (Apenas o elemento ou grupo observado ganha .is-revealed) */
.js-reveal-enabled [data-reveal].is-revealed,
.js-reveal-enabled .section-label.is-revealed,
.js-reveal-enabled [data-reveal-group].is-revealed [data-reveal],
.js-reveal-enabled [data-reveal-group].is-revealed .section-label {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* Delays semânticos pré-calculados em CSS */
.js-reveal-enabled [data-reveal-delay="40"] { --reveal-delay: 40ms; }
.js-reveal-enabled [data-reveal-delay="60"] { --reveal-delay: 60ms; }
.js-reveal-enabled [data-reveal-delay="70"] { --reveal-delay: 70ms; }
.js-reveal-enabled [data-reveal-delay="80"] { --reveal-delay: 80ms; }
.js-reveal-enabled [data-reveal-delay="90"] { --reveal-delay: 90ms; }
.js-reveal-enabled [data-reveal-delay="100"] { --reveal-delay: 100ms; }
.js-reveal-enabled [data-reveal-delay="120"] { --reveal-delay: 120ms; }
.js-reveal-enabled [data-reveal-delay="140"] { --reveal-delay: 140ms; }
.js-reveal-enabled [data-reveal-delay="150"] { --reveal-delay: 150ms; }
.js-reveal-enabled [data-reveal-delay="160"] { --reveal-delay: 160ms; }
.js-reveal-enabled [data-reveal-delay="180"] { --reveal-delay: 180ms; }
.js-reveal-enabled [data-reveal-delay="200"] { --reveal-delay: 200ms; }
.js-reveal-enabled [data-reveal-delay="210"] { --reveal-delay: 210ms; }
.js-reveal-enabled [data-reveal-delay="220"] { --reveal-delay: 220ms; }
.js-reveal-enabled [data-reveal-delay="240"] { --reveal-delay: 240ms; }
.js-reveal-enabled [data-reveal-delay="260"] { --reveal-delay: 260ms; }
.js-reveal-enabled [data-reveal-delay="280"] { --reveal-delay: 280ms; }
.js-reveal-enabled [data-reveal-delay="300"] { --reveal-delay: 300ms; }
.js-reveal-enabled [data-reveal-delay="320"] { --reveal-delay: 320ms; }
.js-reveal-enabled [data-reveal-delay="360"] { --reveal-delay: 360ms; }
.js-reveal-enabled [data-reveal-delay="400"] { --reveal-delay: 400ms; }
.js-reveal-enabled [data-reveal-delay="440"] { --reveal-delay: 440ms; }
.js-reveal-enabled [data-reveal-delay="480"] { --reveal-delay: 480ms; }
.js-reveal-enabled [data-reveal-delay="520"] { --reveal-delay: 520ms; }
.js-reveal-enabled [data-reveal-delay="560"] { --reveal-delay: 560ms; }

/* Adaptações para Dispositivos Móveis */
@media (max-width: 760px) {
  .js-reveal-enabled [data-reveal],
  .js-reveal-enabled [data-reveal-group] [data-reveal],
  .js-reveal-enabled .section-label {
    transform: translate3d(0, 14px, 0);
  }
  .js-reveal-enabled [data-reveal="card"],
  .js-reveal-enabled [data-reveal="visual"] {
    transform: translate3d(0, 18px, 0);
  }
}

/* ==========================================================================
   ANIMAÇÕES ONE-SHOT POR CONTEXTO (Event-Driven: animam uma vez e repousam)
   ========================================================================== */

/* Painel 01: Assistente da Mesa (Linear One-Shot) */
.stage-panel[data-stage-panel="mesa"].is-animating .flow-cell {
  animation: oneShotFade 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.stage-panel[data-stage-panel="mesa"].is-animating .cell-input { animation-delay: 0ms; }
.stage-panel[data-stage-panel="mesa"].is-animating .cell-ia { animation-delay: 100ms; }
.stage-panel[data-stage-panel="mesa"].is-animating .cell-context { animation-delay: 200ms; }
.stage-panel[data-stage-panel="mesa"].is-animating .cell-system { animation-delay: 300ms; }
.stage-panel[data-stage-panel="mesa"].is-animating .stage-result-strip {
  animation: oneShotFade 280ms cubic-bezier(0.16, 1, 0.3, 1) 400ms both;
}

/* Painel 02: Assistente do Tarifário (Pipeline One-Shot) */
.stage-panel[data-stage-panel="tarifario"].is-animating .pipeline-intake .flow-cell {
  animation: oneShotFade 280ms cubic-bezier(0.16, 1, 0.3, 1) 0ms both;
}

.stage-panel[data-stage-panel="tarifario"].is-animating .pipeline-connector-band:nth-of-type(1) .pulse-point {
  animation: pulsePointOneShot 320ms ease 100ms both;
}

.stage-panel[data-stage-panel="tarifario"].is-animating .pipeline-workspace-box {
  animation: oneShotFade 280ms cubic-bezier(0.16, 1, 0.3, 1) 160ms both;
}

.stage-panel[data-stage-panel="tarifario"].is-animating .gate-step:nth-child(1) {
  animation: gateStepOneShot 220ms ease 200ms both;
}

.stage-panel[data-stage-panel="tarifario"].is-animating .gate-step:nth-child(3) {
  animation: gateStepOneShot 220ms ease 250ms both;
}

.stage-panel[data-stage-panel="tarifario"].is-animating .gate-step.gate-featured {
  animation: playtestFeaturedOneShot 400ms cubic-bezier(0.16, 1, 0.3, 1) 300ms both;
}

.stage-panel[data-stage-panel="tarifario"].is-animating .gate-step:nth-child(7) {
  animation: gateStepOneShot 220ms ease 380ms both;
}

.stage-panel[data-stage-panel="tarifario"].is-animating .gate-step:nth-child(9) {
  animation: gateStepOneShot 220ms ease 430ms both;
}

.stage-panel[data-stage-panel="tarifario"].is-animating .workspace-playtest-banner {
  animation: oneShotFade 280ms cubic-bezier(0.16, 1, 0.3, 1) 480ms both;
}

.stage-panel[data-stage-panel="tarifario"].is-animating .pipeline-connector-band:nth-of-type(2) .pulse-point {
  animation: pulsePointOneShot 320ms ease 520ms both;
}

.stage-panel[data-stage-panel="tarifario"].is-animating .pipeline-approval .flow-cell {
  animation: oneShotFade 280ms cubic-bezier(0.16, 1, 0.3, 1) 580ms both;
}

.stage-panel[data-stage-panel="tarifario"].is-animating .stage-result-strip {
  animation: oneShotFade 280ms cubic-bezier(0.16, 1, 0.3, 1) 680ms both;
}

/* Painel 03: Analista AirQuote (Convergência One-Shot) */
.stage-panel[data-stage-panel="analise"].is-animating .convergence-system {
  animation: oneShotFade 280ms cubic-bezier(0.16, 1, 0.3, 1) 0ms both;
}

.stage-panel[data-stage-panel="analise"].is-animating .convergence-bridge:nth-of-type(2) .pulse-point {
  animation: pulsePointOneShot 300ms ease 300ms both;
}

.stage-panel[data-stage-panel="analise"].is-animating .convergence-analyst {
  animation: oneShotFade 280ms cubic-bezier(0.16, 1, 0.3, 1) 340ms both;
}

.stage-panel[data-stage-panel="analise"].is-animating .convergence-bridge:nth-of-type(4) .pulse-point {
  animation: pulsePointOneShot 300ms ease 480ms both;
}

.stage-panel[data-stage-panel="analise"].is-animating .convergence-human {
  animation: oneShotFade 280ms cubic-bezier(0.16, 1, 0.3, 1) 520ms both;
}

.stage-panel[data-stage-panel="analise"].is-animating .stage-result-strip {
  animation: oneShotFade 280ms cubic-bezier(0.16, 1, 0.3, 1) 760ms both;
}

/* ==========================================================================
   DEFINIÇÃO DOS KEYFRAMES ONE-SHOT
   ========================================================================== */

@keyframes oneShotFade {
  from {
    opacity: 0.25;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulsePointOneShot {
  0% {
    left: 0%;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes gateStepOneShot {
  from {
    opacity: 0.35;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes playtestFeaturedOneShot {
  0% {
    opacity: 0.35;
    transform: translateY(4px);
    border-color: rgba(255, 255, 255, 0.06);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 122, 26, 0.2);
  }
  100% {
    opacity: 1;
    border-color: rgba(255, 122, 26, 0.35);
    box-shadow: 0 0 16px rgba(255, 122, 26, 0.06);
  }
}

@keyframes metricPillOneShot {
  0% {
    opacity: 0.35;
    transform: translateX(-4px);
  }
  60% {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.2);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes spotlightOneShot {
  0% {
    opacity: 0.35;
    border-color: rgba(255, 122, 26, 0.1);
  }
  50% {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 0 18px rgba(255, 122, 26, 0.16);
  }
  100% {
    opacity: 1;
    border-color: rgba(255, 122, 26, 0.22);
  }
}

/* ==========================================================================
   ACELERAÇÃO E REDUÇÃO DE MOVIMENTO (Acessibilidade Estrita)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-card::after {
    display: none !important;
  }

  .vertical-hint {
    transform: none !important;
    opacity: 1 !important;
  }

  .route-map-pulse {
    animation: none !important;
    opacity: 0 !important;
  }

  .js-reveal-enabled [data-reveal],
  .js-reveal-enabled [data-reveal-group] [data-reveal],
  .js-reveal-enabled .section-label,
  .js-reveal-enabled .is-revealed [data-reveal],
  .js-reveal-enabled [data-reveal-group].is-revealed [data-reveal],
  .js-reveal-enabled .is-revealed .section-label,
  .js-reveal-enabled [data-reveal-group].is-revealed .section-label,
  .js-reveal-enabled [data-reveal].is-revealed,
  .js-reveal-enabled .section-label.is-revealed,
  .js-anim .paradigm-intro-copy,
  .js-anim .paradigm-context-panel,
  .js-anim .paradigm-shift,
  .js-anim .vertical-copy,
  .js-anim .vertical-core,
  .js-anim .ai-transversal-layer,
  .js-anim .orbit-inner,
  .js-anim .orbit-outer,
  .js-anim .os-module-pill,
  .js-anim .automation-proof,
  .js-anim .manager-intelligence-spotlight,
  .js-anim .triad-bar,
  .js-anim .intelligence-stage,
  .js-anim .governance-surface {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  .automation-proof,
  .automation-proof *,
  .automation-proof.is-animating *,
  .manager-intelligence-spotlight,
  .manager-intelligence-spotlight *,
  .manager-intelligence-spotlight.is-animating *,
  .stage-panel .flow-cell,
  .stage-panel .pipeline-workspace-box,
  .stage-panel .convergence-card,
  .stage-panel .gate-step,
  .stage-panel .stage-result-strip,
  .stage-panel.is-animating *,
  .impact-column,
  .impact-column *,
  .impact-column.is-animating *,
  .governance-section,
  .governance-section *,
  .governance-section.is-animating *,
  .final-cta-section,
  .final-cta-section *,
  .final-cta-section.is-animating * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .route-map-plane { transform: translate(660px, 413px) rotate(-55deg); }
}

/* ========================================================================
   FINAL RECONCILIATION — GLOBAL NAVIGATION, DENSITY AND RESPONSIVE POLISH
   ======================================================================== */
:root {
  --header-offset: 4.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 3.85rem;
  margin: 0;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: rgba(15, 15, 15, 0.88);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition:
    min-height var(--motion-fast),
    padding var(--motion-fast),
    background var(--motion-fast),
    border-color var(--motion-fast),
    box-shadow var(--motion-fast);
}

.site-header.is-scrolled {
  min-height: 3.35rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  border-bottom-color: var(--line-strong);
  background: rgba(15, 15, 15, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

.hero-card {
  min-height: calc(100svh - 4.25rem);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.42rem;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity var(--motion-fast), transform var(--motion-fast);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-nav-links a {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  min-height: 3.6rem;
}

.mobile-nav-links a > span {
  min-width: 0;
  color: var(--muted-strong);
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.mobile-nav-links a.is-active {
  background: rgba(255, 122, 26, 0.055);
}

.mobile-nav-links a.is-active > span,
.mobile-nav-links a.is-active > i {
  color: var(--accent);
}

.section-card,
.automation-proof,
.manager-intelligence-spotlight,
#por-que-agora,
#diagnostico {
  scroll-margin-top: calc(var(--header-offset) + 0.75rem);
}

.vertical-module-panel {
  min-height: 17rem;
}

.module-panel-body {
  gap: 0.8rem;
  justify-content: flex-start;
}

.module-panel-impact {
  margin-top: auto;
}

.vertical-diagram-wrap {
  margin-top: clamp(7.5rem, 9vw, 9.75rem);
}

.vertical-hint {
  animation: none;
  will-change: auto;
}

.impact-column.is-active {
  flex: 4.15;
}

.contact-status[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  :root {
    --header-offset: 3.85rem;
  }

  .site-header {
    width: 100%;
    margin: 0;
    padding-inline: 1.25rem;
  }

  .vertical-diagram-wrap {
    margin-top: 0;
  }

  .vertical-module-panel {
    min-height: 0;
  }

  .coverage-convergence-diagram {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .coverage-convergence-bridge .bridge-lines {
    transform: rotate(90deg);
    margin: 0.2rem 0;
  }

  .coverage-core-node {
    margin-top: 0.2rem;
  }

  .governance-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  .hero-card {
    min-height: calc(100svh - 4rem);
  }

  .coverage-inputs-track {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .coverage-checks-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .coverage-check-sep {
    display: none;
  }

  .coverage-paths-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .decision-gate-fork {
    width: 90%;
  }

  .governance-triad {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .triad-item {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
  }

  .node-core {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .price-ia-lateral {
    padding-left: 0.25rem;
  }

  .ia-lateral-line {
    display: none;
  }

  .node-exc-ia {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .exc-ia-chips {
    padding-left: 1.25rem;
  }

  .history-timeline-track {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .timeline-step-connector {
    width: 1px;
    height: 0.65rem;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 122, 26, 0.3));
  }
}

@media (max-width: 430px) {
  .site-header {
    top: 0;
    width: 100%;
    min-height: 3.45rem;
    margin: 0;
    border-radius: 0;
    padding-inline: 1rem;
  }
}

.mobile-menu:not([open]) .mobile-menu-panel {
  display: none;
}

.mobile-menu[open] .mobile-menu-panel {
  display: block;
}



.impact-column:not(.is-active) .impact-column-header {
  padding-inline: 0.9rem;
}

.impact-column:not(.is-active) .impact-col-title {
  max-width: 100%;
  font-size: 0.88rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
  hyphens: auto;
}



/* ==========================================================================
   SEMANTIC SVG ICONS ENRICHMENT & POLISH
   ========================================================================== */
.hero-principle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.principle-glyph {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.9;
}

.pill-glyph {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  color: var(--muted);
  transition: all 180ms ease;
}

.os-module-pill.is-active .pill-glyph,
.os-module-pill:hover .pill-glyph {
  color: var(--accent);
  filter: drop-shadow(0 0 5px rgba(255, 122, 26, 0.65));
}

.signal-glyph {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.9;
}

.impact-col-glyph {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: var(--muted);
  transition: all 180ms ease;
}

.impact-column.is-active .impact-col-glyph,
.impact-column:hover .impact-col-glyph {
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(255, 122, 26, 0.65));
  transform: scale(1.08);
}



.need-glyph {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: var(--muted);
  transition: all 180ms ease;
  margin-top: 0.15rem;
}

.cta-need-item.is-active .need-glyph,
.cta-need-item:hover .need-glyph {
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(255, 122, 26, 0.65));
  transform: scale(1.06);
}

/* ==========================================================================
   WHATSAPP COMMERCIAL INTEGRATION & FLOATING CTA
   ========================================================================== */
.cta-contact-person {
  display: flex;
  justify-content: center;
  margin-top: 0.45rem;
}

.contact-person-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.66rem;
  color: var(--muted-strong);
  letter-spacing: 0.02em;
}

.contact-person-badge strong {
  color: #ffffff;
  font-weight: 650;
}

.contact-person-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 122, 26, 0.2);
}

.floating-whatsapp-wrap {
  position: fixed;
  right: clamp(1rem, 2vw, 1.75rem);
  bottom: clamp(1rem, 2vw, 1.75rem);
  bottom: calc(clamp(1rem, 2vw, 1.75rem) + env(safe-area-inset-bottom, 0px));
  z-index: 990;
  pointer-events: auto;
}

.floating-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.52rem 1rem 0.52rem 0.75rem;
  background: rgba(18, 18, 18, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 122, 26, 0.15);
  transition:
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.floating-whatsapp-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 26, 0.5);
  background: rgba(24, 24, 24, 0.98);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.75),
    0 0 20px rgba(255, 122, 26, 0.25);
  color: #ffffff;
}

.floating-whatsapp-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.floating-whatsapp-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.25);
  flex-shrink: 0;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.floating-whatsapp-cta:hover .floating-whatsapp-icon {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(37, 211, 102, 0.5);
  transform: scale(1.05);
}

.floating-whatsapp-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}

.floating-cta-title {
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 650;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.floating-cta-sub {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .floating-whatsapp-wrap {
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  .floating-whatsapp-cta {
    padding: 0.45rem 0.85rem 0.45rem 0.6rem;
    gap: 0.5rem;
  }

  .floating-whatsapp-icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .floating-whatsapp-icon svg {
    width: 14px;
    height: 14px;
  }

  .floating-cta-title {
    font-size: 0.75rem;
  }

  .floating-cta-sub {
    font-size: 0.5rem;
  }
}

/* ==========================================================================
   RECONCILIATION SUITE — Visual, Semantic & Technical Alignment
   ========================================================================== */

/* --- 1. Seção 01: Mini-Diagrama Reutilizável de Transição de Modelo --- */
.paradigm-flow-visual {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.flow-track-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.flow-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.flow-badge {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.flow-badge-before {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-badge-after {
  background: rgba(255, 122, 26, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 122, 26, 0.3);
}

.flow-chips-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.flow-chip {
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  line-height: 1.2;
}

.chip-disconnected {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.chip-connected {
  background: rgba(255, 122, 26, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 122, 26, 0.35);
  font-weight: 550;
}

.flow-sep {
  color: var(--muted);
  font-size: 0.8rem;
}

.flow-arrow-micro {
  color: var(--accent);
  font-size: 0.75rem;
}

.flow-connector-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.1rem 0;
}

.flow-connector-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 122, 26, 0.3), rgba(255, 255, 255, 0.05));
}

.flow-core-badge {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: #111111;
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(255, 122, 26, 0.3);
  border-radius: 999px;
}



/* --- 3. Seção 03: Stage Linear e Micro-Cockpit --- */
.stage-geometry-linear {
  display: grid;
  grid-template-columns: 1fr auto 1.3fr auto 1.1fr auto 1.2fr;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1.25rem;
  background: rgba(18, 18, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.linear-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.stage-deep-link-wrap {
  margin-top: 1rem;
  text-align: right;
}

.stage-deep-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 122, 26, 0.4);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}

.stage-deep-link:hover {
  color: #ffffff;
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .stage-geometry-linear {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .linear-connector {
    transform: rotate(90deg);
  }
}




