/* Flipper Hub — Marketing site
   Built on top of colors_and_type.css */

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-canvas);
  color: var(--fg-default);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

:root {
  /* Container is fluid: caps at 1360px on large screens, and the gutter
     scales with the viewport so everything breathes proportionally.
     Same .container is used by nav, hero, dobras, CTA e footer — então
     todos os blocos ficam alinhados nos mesmos limites. */
  --container: 1360px;
  --gutter: clamp(20px, 3vw, 40px);
  /* Density-controlled — overridden by JS based on tweak */
  --section-py: 128px;
  --hero-py: 120px;
  --grid-gap: 24px;
}

[data-density="compact"] {
  --section-py: 96px;
  --hero-py: 88px;
  --grid-gap: 20px;
}

.fh-site {
  min-height: 100vh;
}

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

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 251, 252, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav[data-scrolled="true"] {
  border-bottom-color: var(--border-subtle);
  background: rgba(250, 251, 252, 0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo .nav-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg-strong);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-default);
  border-radius: var(--radius-md);
  transition: color 150ms, background 150ms;
}
.nav-link:hover { background: var(--bg-hover); color: var(--fg-strong); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ============== NAV DROPDOWN (Plataforma megamenu) ============== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-default);
  border-radius: var(--radius-md);
  transition: color 150ms, background 150ms;
}
.nav-dropdown-trigger:hover,
.nav-dropdown[data-open="true"] .nav-dropdown-trigger {
  background: var(--bg-hover);
  color: var(--fg-strong);
}
.nav-dropdown-caret {
  width: 10px;
  height: 10px;
  transition: transform 200ms ease;
}
.nav-dropdown[data-open="true"] .nav-dropdown-caret { transform: rotate(180deg); }

.nav-megamenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 720px;
  background: var(--bg-surface, #fff);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.18), 0 4px 12px -4px rgba(15, 23, 42, 0.08);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 60;
}
.nav-dropdown[data-open="true"] .nav-megamenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-mega-col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin: 0 0 10px;
  padding: 0 10px;
}
.nav-mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-mega-link {
  display: block;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-default);
  border-radius: var(--radius-md);
  transition: background 150ms, color 150ms;
}
.nav-mega-link:hover {
  background: var(--bg-hover);
  color: var(--fg-strong);
}
.nav-mega-link .nav-mega-desc {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 10px 18px;
  transition: background 160ms var(--ease-out),
              color 160ms var(--ease-out),
              border-color 160ms var(--ease-out),
              transform 160ms var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-500);
  color: var(--white);
}
.btn-primary:hover { background: var(--brand-600); }
.btn-primary:active { background: var(--brand-700); }
.btn-secondary {
  background: var(--white);
  color: var(--fg-strong);
  border-color: var(--border-default);
}
.btn-secondary:hover { background: var(--bg-hover); border-color: var(--border-strong); }
.btn-ghost {
  background: transparent;
  color: var(--fg-default);
}
.btn-ghost:hover { background: var(--bg-hover); color: var(--fg-strong); }

.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 10px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-600);
  letter-spacing: -0.01em;
}
.btn-arrow svg { transition: transform 200ms var(--ease-out); }
.btn-arrow:hover svg { transform: translateX(3px); }

/* ============== TYPE PRIMITIVES ============== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-500);
}
.eyebrow.muted { color: var(--fg-muted); }
.eyebrow.muted::before { background: var(--neutral-300); }
.eyebrow.on-dark { color: rgba(255,255,255,0.62); }
.eyebrow.on-dark::before { background: var(--brand-400); }

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--fg-strong);
  margin: 0;
  text-wrap: balance;
}
.h-display.xl { font-size: var(--t-display-xl); }
.h-display.lg { font-size: var(--t-display-lg); }
.h-display.md { font-size: var(--t-display-md); }
.h-display.sm { font-size: var(--t-display-sm); }

[data-density="compact"] .h-display.xl { font-size: clamp(40px, 5.2vw, 72px); }
[data-density="compact"] .h-display.lg { font-size: clamp(32px, 3.8vw, 48px); }
[data-density="compact"] .h-display.md { font-size: clamp(24px, 2.8vw, 36px); }

.lede {
  font-size: var(--t-lede);
  line-height: 1.5;
  color: var(--fg-muted);
  font-weight: 400;
  margin: 0;
  max-width: 58ch;
  text-wrap: pretty;
}
[data-density="compact"] .lede { font-size: clamp(14px, 1.05vw, 17px); }
/* Override calibrado pelo painel de Tweaks (slider). Vence o clamp acima. */
:root[data-lede-size] .lede { font-size: var(--lede-size, inherit); }

.body-lg {
  font-size: var(--t-body-lg);
  line-height: 1.6;
  color: var(--fg-default);
  margin: 0;
  text-wrap: pretty;
}

.body {
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  text-wrap: pretty;
}

/* ============== SECTIONS ============== */
.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section.tight { padding: calc(var(--section-py) * 0.7) 0; }
.section.canvas { background: var(--bg-canvas); }
.section.surface { background: var(--white); }
.section.dark {
  background: #0E1218;
  color: rgba(255,255,255,0.92);
}
.section.dark .h-display { color: #fff; }
.section.dark .lede { color: rgba(255,255,255,0.62); }
.section.dark .body { color: rgba(255,255,255,0.62); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }

/* ============== HERO ============== */
.hero {
  padding-top: var(--hero-py);
  padding-bottom: var(--hero-py);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 20px;
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow-wrap { display: flex; justify-content: center; }
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-size: var(--t-display-xl);
  margin: 0;
  color: var(--fg-strong);
  text-wrap: balance;
}
.hero-h1 .accent {
  color: var(--brand-500);
}
.hero-sub {
  font-size: var(--t-lede);
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 8px auto 0;
  max-width: 60ch;
  font-weight: 400;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* SPLIT layout — text left, animation right (Linear/Stripe pattern).
   Container herda os 1200px globais pra alinhar com nav e dobras. */
.hero[data-layout="split"] .hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero[data-layout="split"] .hero-grid {
  text-align: left;
  align-items: flex-start;
  gap: 24px;
}
.hero[data-layout="split"] .hero-h1 {
  font-size: var(--t-display-xl) !important;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.hero[data-layout="split"] .hero-sub {
  margin: 8px 0 0;
  max-width: 52ch;
}
.hero[data-layout="split"] .hero-cta {
  justify-content: flex-start;
  margin-top: 18px;
}
.hero[data-layout="split"] .hero-visual {
  margin-top: 0;
}
.hero[data-layout="split"] .hoc-stage {
  height: 600px;
  /* No card chrome — fica transparente, mescla com o canvas */
  border-radius: 0;
  background: transparent;
  border: none;
}
.hero[data-layout="split"] .orbit-stage {
  --orbit-inner: 140px;
  --orbit-outer: 240px;
  aspect-ratio: 4 / 5;
}
.hero[data-layout="split"] .orbit-ring.r1 { width: 280px; height: 280px; }
.hero[data-layout="split"] .orbit-ring.r2 { width: 480px; height: 480px; }

@media (max-width: 1080px) {
  .hero[data-layout="split"] .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero[data-layout="split"] .hero-grid {
    text-align: center;
    align-items: center;
  }
  .hero[data-layout="split"] .hero-cta { justify-content: center; }
  .hero[data-layout="split"] .hoc-stage { height: 500px; }
}

.hero-meta {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--fg-subtle);
}
.hero-meta-dot {
  width: 4px; height: 4px; border-radius: 999px;
  background: var(--neutral-300);
  align-self: center;
}

/* Hero visual — conceptual centerpiece */
.hero-visual {
  margin-top: 64px;
  position: relative;
}

.orbit-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  --orbit-inner: 180px;
  --orbit-outer: 320px;
}
.orbit-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,24,31,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,24,31,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(60% 50% at 50% 50%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(60% 50% at 50% 50%, black 30%, transparent 85%);
}
.orbit-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.orbit-ring {
  position: absolute;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
}
.orbit-ring.r1 { width: 360px; height: 360px; border-color: var(--brand-200); }
.orbit-ring.r2 { width: 640px; height: 640px; border-style: dashed; border-color: var(--neutral-200); }
.orbit-ring.r3 { display: none; }

/* Spinning orbits — each arm rotates with phase offset; node counter-rotates
   on the SAME timing so it stays upright. */
.orbit-spin {
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  pointer-events: none;
}
.orbit-arm {
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 0;
  transform-origin: 0 0;
}
.orbit-spin.inner .orbit-arm { animation: orbit-rot 32s linear infinite; }
.orbit-spin.outer .orbit-arm { animation: orbit-rot-rev 56s linear infinite; }

.orbit-spin.inner .orbit-arm .orbit-node {
  position: absolute;
  left: 0; top: calc(var(--orbit-inner) * -1);
  animation: orbit-cnt 32s linear infinite;
}
.orbit-spin.outer .orbit-arm .orbit-node {
  position: absolute;
  left: 0; top: calc(var(--orbit-outer) * -1);
  animation: orbit-cnt-rev 56s linear infinite;
}
@keyframes orbit-rot {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbit-rot-rev {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes orbit-cnt {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}
@keyframes orbit-cnt-rev {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-node-feature {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--brand-200);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-strong);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.orbit-node-feature .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--brand-500);
}
.orbit-node-tool {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: var(--neutral-25);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.orbit-node-tool .glyph {
  width: 16px; height: 16px;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  color: white;
  flex-shrink: 0;
}

/* Logo center */
.orbit-logo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 112px; height: 112px;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  filter: drop-shadow(0 8px 24px rgba(58, 130, 246, 0.18));
}
.orbit-logo img {
  width: 100%; height: 100%;
  display: block;
  border-radius: 24px; /* matches the icon's own rounding for any clipping */
}
.orbit-logo::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  border: 1px solid var(--brand-200);
  opacity: 0.5;
  animation: orbit-halo 3.4s ease-in-out infinite;
}
@keyframes orbit-halo {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.2; }
}

.orbit-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 24%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-default);
}
.orbit-center .img {
  width: 100%; height: 100%;
}
.orbit-center .label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 8px 10px;
  background: var(--white);
  border-top: 1px solid var(--border-subtle);
  color: var(--fg-default);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.orbit-center .label .badge {
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 9px;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.orbit-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
  box-shadow: 0 8px 18px -6px rgba(28, 62, 121, 0.16);
  transition: transform 280ms var(--ease-out);
}
.orbit-chip .chip-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  background: var(--neutral-50);
  color: var(--fg-default);
  border: 1px solid var(--border-subtle);
}
.orbit-chip .chip-meta {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0;
}
.orbit-chip .chip-stack {
  display: flex; flex-direction: column;
  line-height: 1.15;
}
@keyframes orbit-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.orbit-chip { animation: orbit-float 5s ease-in-out infinite; }
.orbit-chip:nth-child(2n) { animation-delay: -1.6s; }
.orbit-chip:nth-child(3n) { animation-delay: -3.1s; }

/* ============== HERO MOCKUP VARIANT ============== */
.hero-mockup {
  margin: 56px auto 0;
  max-width: 1180px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px -20px rgba(20, 24, 31, 0.18);
  background: white;
}
.hero-mockup img { width: 100%; display: block; }
.hero-mockup-bg { display: none; }

/* ============== CONTRAST DOBRA (fragmentação) ============== */
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.contrast-grid--full { grid-template-columns: 1fr; }
@media (max-width: 900px) { .contrast-grid { grid-template-columns: 1fr; } }
.contrast-card {
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border-subtle);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 480px;
}
.contrast-card.before {
  background: var(--neutral-50);
  position: relative;
}
.contrast-card .card-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.contrast-card.after .card-eyebrow { color: var(--brand-600); }
.contrast-card h3 {
  font-family: var(--font-display);
  font-size: var(--t-display-sm);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
}
.tool-stacks {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: center;
}
.tool-stacks--full {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 760px) {
  .tool-stacks--full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tool-stacks--full { grid-template-columns: 1fr; }
}
.tool-stack {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 6px -2px rgba(0,0,0,0.05);
}
.ts-logos {
  display: flex;
  align-items: center;
  height: 32px;
}
.ts-logo {
  width: 32px; height: 32px;
  border-radius: 7px;
  border: 2px solid #fff;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  margin-left: -8px;
  position: relative;
  z-index: calc(10 - var(--i, 0));
  display: flex; align-items: center; justify-content: center;
}
.ts-logo:first-child { margin-left: 0; }
.ts-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ts-more {
  margin-left: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  background: var(--neutral-100);
  border-radius: 12px;
  padding: 4px 9px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.ts-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
}
.tool-stacks-footer {
  font-size: 12.5px;
  color: var(--fg-subtle);
  line-height: 1.5;
  padding-top: 4px;
}

/* ── Outro de absorção + emergência (TensaoCards) ────────────────────────────
   Tudo dentro do MESMO card. Scroll-scrubbed em duas fases:
   - Fase 1: tool-stacks convergem para .tensao-absorb-target (banner azul).
   - Fase 2: pelo "outro lado" do banner, .tensao-emerge revela o frame de
     vídeo do Flipper Hub.
*/
.tensao-card { background: var(--white); }
.tensao-card .tool-stack {
  transform-origin: center center;
  will-change: transform, opacity;
}

.tensao-absorb {
  position: relative;
  margin-top: 22px;
  padding: 28px 32px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent;
  margin-left: -32px;
  margin-right: -32px;
}
.tensao-absorb-arrow {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-500);
  opacity: 0;
  line-height: 1;
  letter-spacing: 0.18em;
}
.tensao-absorb-arrow:nth-child(1) { opacity: 0.55; }
.tensao-absorb-arrow:nth-child(2) { opacity: 0.75; margin-top: -10px; }
.tensao-absorb-arrow:nth-child(3) { opacity: 1;    margin-top: -10px; }

.tensao-absorb-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.55);
  width: min(640px, 95%);
  height: 220px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(58, 130, 246, 0.34) 0%,
    rgba(58, 130, 246, 0.10) 42%,
    rgba(58, 130, 246, 0) 70%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

/* Shockwave rings — disparam no impacto da fase C */
.tensao-absorb-shock {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 64px;
  border-radius: 999px;
  border: 2px solid rgba(58, 130, 246, 0.6);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 24px rgba(58, 130, 246, 0.35) inset, 0 0 30px rgba(58, 130, 246, 0.25);
}
.tensao-absorb-shock:nth-of-type(2) {
  width: 220px;
  height: 50px;
  border-color: rgba(58, 130, 246, 0.4);
}

/* Badge brand: azul flat (--brand-500) sólido, sem gradient nem glass.
   Cor sóbria, leitura "essa é a marca". */
.tensao-absorb-target {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 18px 11px 16px;
  background: var(--brand-500);
  color: #fff;
  border-radius: 12px;
  opacity: 0;
  transform: scale(0.9);
  white-space: nowrap;
}
.tensao-absorb-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.tensao-absorb-mark {
  height: 18px;
  width: 18px;
  display: block;
  flex-shrink: 0;
  opacity: 0.98;
}
.tensao-absorb-wordmark {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.tensao-absorb-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.tensao-absorb-tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #fff;
  line-height: 1;
}
@media (max-width: 600px) {
  .tensao-absorb-target {
    flex-wrap: wrap;
    white-space: normal;
    padding: 10px 14px;
  }
  .tensao-absorb-wordmark { font-size: 13px; }
  .tensao-absorb-tag { font-size: 12px; }
}

/* Linha vertical conectora — sai pela base do banner em direção ao vídeo */
.tensao-absorb-conn {
  margin-top: 14px;
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, var(--brand-500), rgba(58, 130, 246, 0));
  transform-origin: top center;
  opacity: 0;
}

/* ── Vídeo emergente ──────────────────────────────────────────────────────── */
.tensao-emerge {
  position: relative;
  margin-top: -2px;
  padding: 4px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: transparent;
  margin-left: -32px;
  margin-right: -32px;
  margin-bottom: -32px;
  opacity: 0;
}
/* Stage — wrapper estável que recebe o lock do ScrollTrigger.
   Mantém dimensões/centralização. O frame dentro é o que tem clip-path
   e demais transforms animados — pin no frame conflitaria com isso.
   Aspecto 16:11.5 acomoda Home da demo (KPIs + 3 charts + 2 cards) sem
   clipar. max-height vh subtrai apenas o necessário pro gate de unlock
   caber abaixo (nav sticky + gate ~240px). */
.tensao-emerge-stage {
  position: relative;
  width: 100%;
  max-height: calc(100vh - 240px);
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16 / 11.5;
}

.tensao-emerge-frame {
  /* Inset vars controlados via GSAP — frame "nasce" da silhueta do pill.
     Estado inicial: clip-path inset(50% 45% 50% 45% round 999px) — apenas
     uma elipse pequena no centro horizontal, mesma forma da pill.
     Estado final: clip-path inset(0 0 0 0 round 18px) — frame completo. */
  --inset-tb: 50%;
  --inset-lr: 45%;
  --inset-radius: 999px;

  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #0E1217;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 50px 110px -36px rgba(15, 23, 42, 0.55),
    0 16px 36px -12px rgba(58, 130, 246, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform-origin: top center;
  will-change: transform, opacity, clip-path;

  clip-path: inset(var(--inset-tb) var(--inset-lr) var(--inset-tb) var(--inset-lr) round var(--inset-radius));
  -webkit-clip-path: inset(var(--inset-tb) var(--inset-lr) var(--inset-tb) var(--inset-lr) round var(--inset-radius));
}
.tensao-emerge-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(15, 18, 23, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tec-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-block;
}
.tec-dot:nth-child(1) { background: #ff5f57; }
.tec-dot:nth-child(2) { background: #febc2e; }
.tec-dot:nth-child(3) { background: #28c840; }
.tec-url {
  flex: 1;
  margin: 0 16px;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.005em;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.tensao-emerge-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0E1217;
}
.tensao-emerge-demo {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: #0E1117;
  position: relative;
}
.tensao-emerge-caption {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  max-width: min(560px, calc(100% - 32px));
  padding: 11px 16px;
  background: rgba(13, 17, 26, 0.78);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  box-shadow: 0 14px 40px -12px rgba(8, 12, 20, 0.45);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: -0.003em;
  text-wrap: pretty;
}
.tensao-emerge-caption strong {
  color: #fff;
  font-weight: 600;
}
.tec-caption-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.62);
  display: inline-flex;
}
.tec-caption-text { display: block; }
.tec-caption-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 4px;
  margin: -4px -6px -4px 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 150ms, background 150ms;
}
.tec-caption-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}
.tec-caption-close:focus-visible {
  outline: 2px solid rgba(58, 130, 246, 0.6);
  outline-offset: 1px;
}

/* ── Gate de resistência ──────────────────────────────────────────────────
   Slider horizontal estilo iOS unlock. O mark do Flipper Hub é o handle —
   conforme o usuário rola, ele desliza pra direita. Ao chegar no fim:
   onda de choque + partículas radiais + libera scroll. */
.tensao-gate {
  --charge: 0;
  --track-w: 280px;
  --handle-size: 44px;
  --handle-pad: 4px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  user-select: none;
}
.tensao-gate-track {
  position: relative;
  width: var(--track-w);
  height: 52px;
  border-radius: 999px;
  background: rgba(58, 130, 246, 0.08);
  border: 1px solid rgba(58, 130, 246, 0.20);
  box-shadow:
    inset 0 1px 2px rgba(20, 24, 31, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.tensao-gate-trail {
  position: absolute;
  top: var(--handle-pad);
  left: var(--handle-pad);
  height: calc(100% - var(--handle-pad) * 2);
  /* preenche desde a esquerda até onde o handle está */
  width: calc(var(--handle-size) + (100% - var(--handle-size) - var(--handle-pad) * 2) * var(--charge));
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(58, 130, 246, 0.20) 0%,
    rgba(58, 130, 246, 0.10) 100%
  );
  pointer-events: none;
  transition: width 60ms linear;
}
.tensao-gate-target {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--brand-500, #3a82f6);
  opacity: calc(0.4 + 0.6 * var(--charge));
  box-shadow: 0 0 calc(4px + 8px * var(--charge)) rgba(58, 130, 246, calc(0.6 * var(--charge)));
  animation: tensaoGateTargetBlink 1.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes tensaoGateTargetBlink {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.4); }
}
.tensao-gate.is-unlocked .tensao-gate-target { display: none; }

.tensao-gate-burst {
  position: absolute;
  top: 50%;
  /* posicionado onde o handle termina (no fim do trilho) */
  right: calc(var(--handle-pad) + var(--handle-size) / 2);
  width: var(--handle-size);
  height: var(--handle-size);
  margin-top: calc(var(--handle-size) / -2);
  border-radius: 50%;
  border: 2px solid var(--brand-500, #3a82f6);
  box-shadow: 0 0 28px rgba(58, 130, 246, 0.45) inset, 0 0 28px rgba(58, 130, 246, 0.35);
  pointer-events: none;
  opacity: 0;
  transform-origin: center;
  z-index: 5;
}

.tensao-gate-handle {
  position: absolute;
  top: var(--handle-pad);
  /* posiciona via `left` (não transform) pra evitar conflito com transforms
     do GSAP no punch da explosão. travel = trackW - handleSize - 2*pad. */
  left: calc(var(--handle-pad) + (var(--track-w) - var(--handle-size) - var(--handle-pad) * 2) * var(--charge));
  width: var(--handle-size);
  height: var(--handle-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  box-shadow:
    0 4px 12px -2px rgba(58, 130, 246, calc(0.25 + 0.25 * var(--charge))),
    0 1px 2px rgba(20, 24, 31, 0.10),
    0 0 0 1px rgba(58, 130, 246, calc(0.15 + 0.25 * var(--charge)));
  transition: left 60ms linear, box-shadow 200ms ease;
  z-index: 4;
}
.tensao-gate-handle img {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 7px;
}

.tensao-gate-spark {
  position: absolute;
  top: 50%;
  /* parte da posição final do handle (fim do trilho) */
  right: calc(var(--handle-pad) + var(--handle-size) / 2);
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--brand-500, #3a82f6);
  box-shadow: 0 0 6px rgba(58, 130, 246, 0.7);
  opacity: 0;
  pointer-events: none;
  z-index: 6;
}

.tensao-gate-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(20, 24, 31, 0.62);
  letter-spacing: -0.003em;
  transition: color 200ms;
}
.tensao-gate.is-unlocked .tensao-gate-label {
  color: var(--brand-500, #3a82f6);
  font-weight: 600;
}

@media (max-width: 600px) {
  .tensao-gate { --track-w: 240px; --handle-size: 40px; }
  .tensao-gate-handle img { width: 26px; height: 26px; }
}

@media (max-width: 600px) {
  .tensao-absorb,
  .tensao-emerge {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .tensao-emerge { padding-bottom: 24px; margin-bottom: -24px; }
}

@media (prefers-reduced-motion: reduce) {
  .tensao-absorb-arrow { opacity: 1 !important; }
  .tensao-absorb-target,
  .tensao-absorb-aura,
  .tensao-absorb-conn,
  .tensao-emerge,
  .tensao-emerge-frame {
    opacity: 1 !important;
    transform: none !important;
  }
  .tensao-emerge-frame {
    --inset-tb: 0% !important;
    --inset-lr: 0% !important;
    --inset-radius: 18px !important;
  }
  .tensao-absorb-shock { display: none; }
}

/* Garantia: tool-stacks só animam se JS está rodando.
   Sem GSAP, ficam 100% visíveis (estado natural). */
.tensao-card .tool-stack { will-change: transform, opacity, filter; }

/* Unified-grid — espelho estrutural do .tool-stacks no card "Com Flipper Hub".
   Mesma grade 2x2, mesma label no rodapé, mas o cluster de logos é
   substituído por uma declaração tipográfica ("1 lista", "1 thread", etc.). */
.unified-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: center;
}
.unified-cell {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 6px -2px rgba(0,0,0,0.05);
}
.uc-statement {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 32px;
}
.uc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(58, 130, 246, 0.10);
  color: var(--brand-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.uc-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}
.uc-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.uc-qualifier {
  font-size: 12.5px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.uc-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.uc-bullets li {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--fg-muted);
  padding-left: 14px;
  position: relative;
  letter-spacing: -0.003em;
}
.uc-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 1px;
  background: var(--brand-500);
  opacity: 0.55;
}
@media (max-width: 540px) {
  .uc-text { flex-direction: column; align-items: flex-start; gap: 2px; }
  .uc-headline { font-size: 16px; }
  .uc-bullets li { font-size: 12px; }
}

.contrast-card.after {
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  box-shadow: 0 1px 0 rgba(58,130,246,0.06), 0 24px 60px -28px rgba(58,130,246,0.18);
}

/* Convergência — diagrama editorial: 4 streams fluem pra um único endpoint */
.conv-stage {
  flex: 1;
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  min-height: 280px;
}
.conv-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.conv-stream {
  stroke: url(#conv-grad);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.conv-trunk {
  stroke: rgba(58,130,246,0.92);
  stroke-width: 4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.conv-source {
  fill: var(--brand-500);
  opacity: 0.45;
}
.conv-merge {
  fill: rgba(58,130,246,0.18);
}
@media (prefers-reduced-motion: no-preference) {
  .conv-stream, .conv-trunk {
    stroke-dasharray: 5 9;
    animation: conv-flow 2.4s linear infinite;
  }
  @keyframes conv-flow {
    to { stroke-dashoffset: -14; }
  }
}
.conv-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.conv-label {
  position: absolute;
  left: 1.5%;
  transform: translateY(-50%);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fg-strong);
  letter-spacing: -0.005em;
  background: var(--white);
  padding: 5px 10px;
  border-radius: 7px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  white-space: nowrap;
}
.conv-dest {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid rgba(58,130,246,0.15);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow:
    0 12px 32px -10px rgba(58,130,246,0.30),
    0 2px 6px -2px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
  z-index: 2;
}
.conv-dest-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--brand-500);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.conv-dest-title {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
  font-family: var(--font-display);
}
.conv-dest-sub {
  font-size: 11.5px;
  color: var(--fg-muted);
}
.conv-dest-pulse {
  position: absolute;
  top: 14px; right: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
}
@media (max-width: 720px) {
  .conv-stage { aspect-ratio: 4 / 3; min-height: 240px; }
  .conv-label { font-size: 11px; padding: 4px 7px; }
  .conv-dest { min-width: 110px; padding: 10px 12px; }
}

.unified {
  flex: 1;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.unified-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--neutral-25);
}
.unified-head .imovel-thumb {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-700) 100%);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(31,88,188,0.2);
}
.unified-head .unified-title-block { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.unified-head .pulse {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--success-500);
  box-shadow: 0 0 0 3px rgba(18,183,106,0.18);
  flex-shrink: 0;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 6px rgba(58,130,246,0); }
}
.unified-head .title {
  font-size: 13px; font-weight: 600; color: var(--fg-strong); letter-spacing: -0.01em;
}
.unified-head .sub { font-size: 11px; color: var(--fg-muted); }
.unified-head .meta { margin-left: auto; font-size: 11px; color: var(--fg-muted); }
.unified-rows {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.unified-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
}
.unified-row:last-child { border-bottom: none; }
.unified-row .row-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-50); color: var(--brand-600);
  border-radius: 6px;
  flex-shrink: 0;
}
.unified-row .row-label { color: var(--fg-default); font-weight: 500; }
.unified-row .row-value { margin-left: auto; color: var(--fg-muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.unified-row .row-pill {
  margin-left: auto;
  font-size: 11px; font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: #FFF4E5; color: #B25C00;
  border: 1px solid #FFE4BF;
}
.unified-row .row-progress {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  min-width: 0;
}
.unified-row .row-progress-bar {
  width: 96px; height: 5px;
  border-radius: 999px;
  background: var(--neutral-100);
  overflow: hidden;
}
.unified-row .row-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
  border-radius: 999px;
}
.unified-row .row-progress-val {
  font-size: 11px; font-weight: 600;
  color: var(--brand-700);
  font-variant-numeric: tabular-nums;
}

/* ============== TENSÃO · variant: WINDOWS ============== */
.windows-grid .contrast-card { padding: 28px; min-height: 520px; overflow: hidden; }
.window-stack {
  position: relative;
  flex: 1;
  min-height: 320px;
  perspective: 1400px;
}
.fake-window {
  position: absolute;
  width: 84%;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  box-shadow: 0 14px 28px -14px rgba(13, 25, 48, 0.18), 0 2px 6px -2px rgba(13, 25, 48, 0.08);
  overflow: hidden;
  transform-origin: 60% 50%;
}
.fake-window.depth-0 { top: 4%;  left: 0%;  transform: rotate(-7deg) translateZ(0); z-index: 5; }
.fake-window.depth-1 { top: 14%; left: 10%; transform: rotate(2deg)  translateZ(0); z-index: 4; }
.fake-window.depth-2 { top: 28%; left: 4%;  transform: rotate(-3deg) translateZ(0); z-index: 3; }
.fake-window.depth-3 { top: 42%; left: 14%; transform: rotate(4deg)  translateZ(0); z-index: 2; opacity: .92; }
.fake-window.depth-4 { top: 58%; left: 6%;  transform: rotate(-2deg) translateZ(0); z-index: 1; opacity: .82; }
.fw-chrome {
  display: flex; align-items: center; gap: 8px;
  height: 28px; padding: 0 10px;
  background: var(--neutral-50);
  border-bottom: 1px solid var(--border-subtle);
}
.fw-dots { display: flex; gap: 5px; }
.fw-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--neutral-200); }
.fw-dots span:nth-child(1) { background: #FF6058; }
.fw-dots span:nth-child(2) { background: #FFBE2E; }
.fw-dots span:nth-child(3) { background: #28CA42; }
.fw-favicon {
  width: 14px; height: 14px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}
.fw-favicon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fw-url {
  font-size: 10px; font-weight: 500;
  color: var(--fg-muted);
  font-family: ui-monospace, monospace;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.fw-tabline {
  padding: 6px 12px 4px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--fg-default);
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fw-content { padding: 10px 12px; display: flex; flex-direction: column; gap: 6px; }
.fw-line { height: 6px; background: var(--neutral-100); border-radius: 3px; }
.fw-line.w90 { width: 90%; }
.fw-line.w80 { width: 80%; }
.fw-line.w70 { width: 70%; }
.fw-line.w50 { width: 50%; }
.fw-line.w40 { width: 40%; }

.hub-window {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-shadow: 0 18px 36px -18px rgba(58,130,246,0.22), 0 2px 6px -2px rgba(13,25,48,0.06);
}
.hw-chrome {
  display: flex; align-items: center; gap: 10px;
  height: 32px; padding: 0 12px;
  background: var(--neutral-25);
  border-bottom: 1px solid var(--border-subtle);
}
.hw-title {
  font-size: 11px; font-weight: 600;
  color: var(--fg-default);
  letter-spacing: -0.01em;
}
.hw-tabs {
  display: flex; gap: 0;
  padding: 0 8px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--neutral-25);
  overflow-x: auto;
  scrollbar-width: none;
}
.hw-tabs::-webkit-scrollbar { display: none; }
.hw-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 12px;
  font-size: 11.5px; font-weight: 500;
  color: var(--fg-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  flex-shrink: 0;
}
.hw-tab.active {
  color: var(--brand-700);
  border-bottom-color: var(--brand-500);
  background: #fff;
}
.hw-pane { flex: 1; padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 14px; }
.hw-pane-h {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
}
.hw-pane-h > span:first-child {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--fg-strong);
  letter-spacing: -0.015em;
}
.hw-pane-meta { font-size: 11px; color: var(--fg-muted); }
.hw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hw-stat {
  display: flex; flex-direction: column; gap: 3px;
  padding: 10px 12px;
  background: var(--neutral-25);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}
.hw-stat-l { font-size: 10px; color: var(--fg-subtle); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.hw-stat-v { font-size: 15px; font-weight: 700; color: var(--fg-strong); font-variant-numeric: tabular-nums; }
.hw-stat-v.hw-pos { color: var(--success-700); }
.hw-bar {
  width: 100%; height: 6px;
  background: var(--neutral-100);
  border-radius: 999px;
  overflow: hidden;
}
.hw-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
  border-radius: 999px;
}
@media (max-width: 900px) {
  .windows-grid .contrast-card { min-height: 440px; }
  .window-stack { min-height: 360px; }
  .fake-window { width: 88%; }
}

/* ============== TENSÃO · variant: CONSTELLATION ============== */
.constellation-wrap {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.constellation-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 720 / 600;
  max-height: 620px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fff 0%, #FAFBFC 100%);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
.constellation-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.con-fragment {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 6px;
  padding: 5px 9px 5px 5px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  box-shadow: 0 2px 6px -2px rgba(0,0,0,0.06);
  font-size: 10.5px;
  color: var(--fg-muted);
  opacity: 0.75;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.con-frag-glyph {
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--neutral-100);
  color: var(--fg-subtle);
  border-radius: 4px;
  font-size: 9px; font-weight: 700;
  letter-spacing: -0.02em;
}
.con-frag-logo {
  width: 18px; height: 18px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
}
.con-frag-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.con-frag-label { font-weight: 500; }
.con-etapa {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  width: 78px;
}
.con-etapa-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--brand-600);
  border: 1px solid rgba(58,130,246,0.22);
  border-radius: 50%;
  box-shadow: 0 4px 12px -4px rgba(58,130,246,0.28);
}
.con-etapa-lbl {
  font-size: 11px; font-weight: 600;
  color: var(--fg-strong);
  text-align: center;
  letter-spacing: -0.01em;
}
.con-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.con-center-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px 14px 14px;
  background: linear-gradient(135deg, #fff 0%, #F4F8FF 100%);
  border: 1px solid rgba(58,130,246,0.32);
  border-radius: 14px;
  box-shadow: 0 18px 40px -14px rgba(58,130,246,0.32), 0 2px 6px rgba(0,0,0,0.04);
}
.con-center-thumb {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  flex-shrink: 0;
}
.con-center-eyebrow {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.con-center-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--fg-strong);
  letter-spacing: -0.015em;
}
.con-center-sub {
  font-size: 11px; color: var(--fg-muted);
}
.constellation-caption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 0 8px;
}
.cc-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 8px;
}
.cc-eyebrow.brand { color: var(--brand-600); }
.constellation-caption p {
  font-size: 14px; line-height: 1.55;
  color: var(--fg-default);
  margin: 0;
}
@media (max-width: 900px) {
  .constellation-stage { aspect-ratio: 4 / 5; max-height: none; }
  .con-fragment { font-size: 9.5px; padding: 4px 7px 4px 4px; }
  .con-frag-glyph { width: 14px; height: 14px; font-size: 8px; }
  .con-etapa { width: 56px; }
  .con-etapa-icon { width: 30px; height: 30px; }
  .con-etapa-lbl { font-size: 9.5px; }
  .con-center-card { padding: 10px 14px 10px 10px; gap: 9px; }
  .con-center-thumb { width: 32px; height: 32px; }
  .con-center-title { font-size: 13px; }
  .constellation-caption { grid-template-columns: 1fr; gap: 20px; }
}

/* ============== TENSÃO · variant: FLOW ============== */
.flow-wrap { margin-top: 56px; }
.flow-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  min-height: 460px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fff 0%, #FAFBFC 100%);
  border: 1px solid var(--border-subtle);
  padding: 28px 24px;
  overflow: hidden;
}
.flow-curves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.flow-col { position: relative; z-index: 2; min-width: 0; }
.flow-col-eyebrow {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 12px;
}
.flow-col-eyebrow.brand { color: var(--brand-600); text-align: right; }
.flow-chaos {
  position: relative;
  height: 380px;
}
.flow-frag {
  position: absolute;
  display: flex; align-items: center; gap: 6px;
  padding: 5px 10px 5px 5px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.08);
  font-size: 10.5px;
  color: var(--fg-muted);
  white-space: nowrap;
  opacity: 0.92;
}
.flow-frag-glyph {
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--neutral-100);
  color: var(--fg-subtle);
  border-radius: 4px;
  font-size: 9px; font-weight: 700;
}
.flow-frag-logo {
  width: 20px; height: 20px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  display: inline-flex;
}
.flow-frag-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.flow-frag-lbl { font-weight: 500; color: var(--fg-default); }
.flow-col-c {
  display: flex; align-items: center; justify-content: center;
}
.flow-lens {
  position: relative;
  width: 92px; height: 92px;
}
.flow-lens-aura {
  position: absolute; inset: -36px;
  background: radial-gradient(circle, rgba(58,130,246,0.22) 0%, rgba(58,130,246,0.04) 60%, transparent 100%);
  border-radius: 50%;
}
.flow-lens-inner {
  position: relative;
  width: 92px; height: 92px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  background: linear-gradient(135deg, #fff 0%, #F4F8FF 100%);
  border: 1px solid rgba(58,130,246,0.32);
  border-radius: 50%;
  box-shadow: 0 12px 28px -10px rgba(58,130,246,0.42);
  z-index: 1;
}
.flow-lens-mark {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
}
.flow-lens-lbl {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-700);
}
.flow-order {
  display: flex; flex-direction: column; gap: 8px;
  margin-left: auto;
  max-width: 220px;
  margin-right: 0;
  margin-left: auto;
}
.flow-etapa {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(13,25,48,0.04);
}
.flow-etapa-icon {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-50);
  color: var(--brand-600);
  border-radius: 6px;
  flex-shrink: 0;
}
.flow-etapa-lbl {
  font-size: 12px; font-weight: 600;
  color: var(--fg-strong);
  flex: 1;
}
.flow-etapa-tick {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(58,130,246,0.18);
}
@media (max-width: 900px) {
  .flow-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
    gap: 20px;
    padding: 20px 16px;
  }
  .flow-curves { display: none; }
  .flow-chaos { height: 280px; }
  .flow-col-c { padding: 12px 0; }
  .flow-order { max-width: 100%; margin: 0; }
  .flow-col-eyebrow.brand { text-align: left; }
}

/* ============== MARGIN DECAY (dobra 3 — diagnóstico de margem) ============== */
/* Paleta sóbria: grafite quente + taupe + acento marca. Sem vermelho de
   alerta. A dobra é leitura consultiva, não post-mortem. */

/* ── Layout: aside sticky (cabeça da dobra) + demonstrativo ─────────── */
.dor-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 960px) { .dor-wrap { grid-template-columns: 1fr; gap: 32px; } }

.dor-aside {
  position: sticky;
  top: 96px;
  display: flex; flex-direction: column;
}
@media (max-width: 960px) { .dor-aside { position: static; top: auto; } }

.dor-aside { gap: 18px; }
.dor-aside .eyebrow,
.dor-aside .h-display,
.dor-aside .lede,
.dor-aside .dor-aside-body { margin: 0; }

.dor-aside-body {
  font-size: 14px; line-height: 1.6;
  color: var(--fg-muted);
  max-width: 56ch;
}

.dor-aside-quote {
  margin-top: 4px;
  font-size: 14px; font-weight: 500; line-height: 1.45;
  color: var(--fg-default); letter-spacing: -0.005em;
  font-style: italic;
  padding: 12px 14px;
  border-left: 2px solid var(--brand-500);
  background: rgba(58,130,246,0.035);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Demonstrativo (balanço editorial) ──────────────────────────────── */
.ledger {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px 28px 22px;
  box-shadow: 0 1px 0 rgba(20,24,31,0.02), 0 16px 40px -28px rgba(20,24,31,0.08);
}
@media (max-width: 720px) {
  .ledger { padding: 20px 18px 18px; border-radius: var(--radius-lg); }
}

.ledger-head {
  display: flex; flex-direction: column; gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}
.ledger-meta-eyebrow {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  color: #9A8F82;
}
.ledger-meta-detail {
  font-size: 13px; color: var(--fg-default);
  font-variant-numeric: tabular-nums;
}

/* ── Barra visual: como os R$ 44.000 viram R$ 24.000 ─────────────────── */
.ledger-bar-block {
  margin: 18px 0 4px;
}
.ledger-bar-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}
.ledger-bar-side {
  display: flex; flex-direction: column; gap: 1px;
  white-space: nowrap;
}
.ledger-bar-side-r { text-align: right; }
.ledger-bar-side-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-subtle);
}
.ledger-bar-side-value {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--fg-strong);
  font-variant-numeric: tabular-nums;
}
.ledger-bar-side-r .ledger-bar-side-value { color: var(--brand-500); }

.ledger-bar {
  display: flex;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
  background: #EDE7DD;
  box-shadow: inset 0 0 0 1px rgba(122,111,98,0.18);
}
.ledger-bar-bite {
  position: relative;
  background: #7A6F62;
  display: flex; align-items: center; justify-content: center;
  border-right: 1.5px solid var(--white);
  min-width: 18px;
  transition: background 0.18s ease;
}
.ledger-bar-bite:hover { background: #5C5852; }
.ledger-bar-bite-num {
  font-size: 9px; font-weight: 800; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.82);
  font-variant-numeric: tabular-nums;
}
.ledger-bar-rest {
  background: var(--brand-500);
  display: flex; align-items: center; justify-content: center;
  min-width: 48px;
  position: relative;
}
.ledger-bar-rest-label {
  font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

.ledger-bar-caption {
  margin-top: 8px;
  font-size: 12px; line-height: 1.5;
  color: var(--fg-muted);
  text-align: center;
}
.ledger-bar-caption strong {
  color: var(--fg-strong);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ── Linhas: número · título + fala · valor ──────────────────────────── */
.ledger-list-eyebrow {
  margin: 16px 0 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  color: #9A8F82;
}
.ledger-list {
  list-style: none; margin: 0; padding: 0;
}
.ledger-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.ledger-row:last-child { border-bottom: none; }

.ledger-row-more {
  grid-template-columns: 24px 1fr;
  opacity: 0.78;
}
.ledger-row-more .ledger-row-num {
  font-size: 14px; font-weight: 700;
  color: #B8AFA3;
  padding-top: 2px;
}
.ledger-row-more .ledger-row-title {
  font-style: italic;
  color: var(--fg-default);
}
.ledger-row-more .ledger-row-quote {
  font-style: normal;
  color: var(--fg-muted);
}

.ledger-row-num {
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
  color: #9A8F82;
  font-variant-numeric: tabular-nums;
  align-self: flex-start;
  padding-top: 3px;
}

.ledger-row-body {
  display: flex; flex-direction: column; gap: 3px;
  min-width: 0;
}
.ledger-row-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--fg-strong);
  letter-spacing: -0.005em;
  line-height: 1.35;
  margin: 0;
}
.ledger-row-quote {
  font-size: 13px; font-style: italic; line-height: 1.4;
  color: var(--fg-muted);
  margin: 0;
}
.ledger-row-delta {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--fg-strong);
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  align-self: flex-start;
  padding-top: 3px;
}

.ledger-foot {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--neutral-700);
}
.ledger-foot-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-default);
}
.ledger-foot-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--neutral-900);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

@media (max-width: 720px) {
  .ledger-bar-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ledger-bar-side-r { text-align: left; }
  .ledger-bar { order: 3; }
}
@media (max-width: 560px) {
  .ledger-row { grid-template-columns: 22px 1fr; gap: 10px; }
  .ledger-row-delta { grid-column: 2; padding-top: 0; font-size: 14px; }
  .ledger-foot { flex-direction: column; align-items: flex-start; gap: 4px; }
}


/* ============== CONCEPT (dobra 4 — virada conceitual) ============== */
.concept-stage {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: 80px 32px;
  background: var(--neutral-25);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
.concept-quote {
  font-family: var(--font-display);
  font-size: var(--t-display-lg);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--fg-strong);
  text-align: center;
  max-width: 18ch;
  margin: 0 auto;
  text-wrap: balance;
}
.concept-quote em {
  font-style: normal;
  color: var(--brand-500);
}
.concept-sub {
  text-align: center;
  margin: 28px auto 0;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  text-wrap: pretty;
}

/* ============== PRODUCT showcase (dobra 5) ============== */
.showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) { .showcase { grid-template-columns: 1fr; gap: 32px; } }
.showcase-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--white);
}
.showcase-image img { width: 100%; display: block; }

.showcase-points {
  display: flex; flex-direction: column;
  gap: 4px;
}
.showcase-point {
  padding: 22px 0;
  border-top: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.showcase-point:last-child { border-bottom: 1px solid var(--border-subtle); }
.showcase-point .icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--brand-50); color: var(--brand-600);
  display: flex; align-items: center; justify-content: center;
}
.showcase-point .t { font-size: 17px; font-weight: 600; color: var(--fg-strong); letter-spacing: -0.01em; margin: 0 0 6px; }
.showcase-point .d { font-size: 14px; color: var(--fg-muted); line-height: 1.55; margin: 0; }

/* ============== JOURNEY (dobra 6) ============== */
.journey-track {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  background: var(--border-subtle);
  overflow: hidden;
}
@media (max-width: 1100px) { .journey-track { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .journey-track { grid-template-columns: repeat(2, 1fr); } }

.journey-step {
  background: var(--white);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  min-height: 220px;
  transition: background 200ms;
  cursor: default;
}
.journey-step:hover { background: var(--neutral-25); }
.journey-step .num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-500);
  letter-spacing: -0.01em;
}
.journey-step .name {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg-strong);
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}
.journey-step .desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.journey-step .icon {
  margin-top: auto;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-subtle);
}
.journey-bar {
  margin-top: 32px;
  height: 4px;
  border-radius: 999px;
  background: var(--neutral-100);
  overflow: hidden;
  position: relative;
}
.journey-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-500);
  transform-origin: left;
  animation: journey-fill 6s ease-in-out infinite;
}
@keyframes journey-fill {
  0%, 100% { transform: scaleX(0.06); }
  50% { transform: scaleX(1); }
}
.journey-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 12px;
  color: var(--fg-subtle);
  letter-spacing: -0.005em;
}

/* ============== PILLARS (dobra 7) ============== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  transition: border-color 200ms, transform 200ms;
}
.pillar:hover { border-color: var(--border-strong); }
.pillar .pill-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-500);
  letter-spacing: 0.04em;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: var(--t-display-sm);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg-strong);
}
.pillar p { margin: 0; font-size: var(--t-body); line-height: 1.6; color: var(--fg-muted); }
.pillar .glyph {
  margin-top: auto;
  height: 60px;
  display: flex;
  align-items: center;
}

/* ============== WARM SECTION (dobra 8 — Brasil) ============== */
.section.br-warm {
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(255, 223, 0, 0.08) 0%, transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(0, 156, 59, 0.06) 0%, transparent 60%),
    #FBF6EB;
  color: var(--fg);
}
.section.br-warm .br-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) { .section.br-warm .br-grid { grid-template-columns: 1fr; } }

.br-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--fg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.br-eyebrow .br-flag {
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 0.5px rgba(0,0,0,0.1);
}

.br-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.br-tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--fg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* Stage with stacked Brazilian operational documents */
.br-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
}
.br-doc {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 12px 32px -12px rgba(0,0,0,0.18);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.br-doc:hover {
  transform: translateY(-3px) rotate(0deg) !important;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.05),
    0 24px 48px -16px rgba(0,0,0,0.22);
  z-index: 10;
}
.br-doc-1 {
  top: 4%; left: 2%; width: 60%;
  transform: rotate(-2.5deg);
  z-index: 1;
}
.br-doc-2 {
  top: 32%; right: 2%; width: 56%;
  transform: rotate(1.8deg);
  z-index: 2;
}
.br-doc-3 {
  bottom: 22%; left: 6%; width: 46%;
  transform: rotate(-1.2deg);
  z-index: 3;
}
.br-doc-4 {
  bottom: 4%; right: 4%; width: 50%;
  transform: rotate(2.4deg);
  z-index: 4;
}
.bd-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.bd-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.bd-stamp {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brand-500);
  border: 1px solid var(--brand-500);
  border-radius: 4px;
  padding: 2px 6px;
  text-transform: uppercase;
}
.bd-stamp.ok {
  color: #009C3B;
  border-color: #009C3B;
  background: rgba(0, 156, 59, 0.06);
}
.bd-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.bd-rows { display: flex; flex-direction: column; gap: 5px; }
.bd-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12.5px;
}
.bd-row span { color: var(--fg-muted); }
.bd-row b {
  font-weight: 600;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.bd-row b.bd-pos { color: #009C3B; }
.bd-row b.bd-warn { color: #C77700; }
.bd-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

@media (max-width: 720px) {
  .br-stage { aspect-ratio: 4 / 5; }
  .br-doc-1, .br-doc-2, .br-doc-3, .br-doc-4 { width: 78%; }
  .br-doc-1 { left: 2%; }
  .br-doc-2 { right: 2%; }
  .br-doc-3 { left: 8%; }
  .br-doc-4 { right: 4%; }
}

/* ============== CONVERSION (dobra 9) ============== */
.cta-stage {
  border-radius: var(--radius-2xl);
  padding: 96px 48px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-stage h2 {
  font-family: var(--font-display);
  font-size: var(--t-display-lg);
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--fg-strong);
  line-height: 1.02;
  text-wrap: balance;
}
.cta-stage p {
  max-width: 56ch;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  text-wrap: pretty;
}
.cta-stage .cta-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--fg-strong);
  letter-spacing: -0.005em;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 150ms;
}
.footer ul a:hover { color: var(--fg-strong); }
.footer-brand {
  display: flex; flex-direction: column; gap: 16px;
}
.footer-brand > img { height: 28px; width: auto; }
.footer-logo { text-decoration: none; }
.footer-logo img { height: 40px; width: auto; }
.footer-brand p {
  font-size: 14px; color: var(--fg-muted); line-height: 1.55;
  max-width: 28ch; margin: 0;
}
.footer-legal {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  font-size: 13px; color: var(--fg-subtle); line-height: 1.55;
}
.footer-legal-info { display: flex; flex-direction: column; gap: 4px; }
.footer-legal p { margin: 0; }
.footer-legal .footer-made-in {
  justify-self: end;
  font-size: 13px;
  color: var(--fg-subtle);
}
.footer-disclaimer {
  margin: 20px 0 0;
  font-size: 11px;
  color: var(--fg-subtle);
  opacity: 0.6;
  line-height: 1.55;
  max-width: 72ch;
}
@media (max-width: 760px) {
  .footer-legal {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }
  .footer-legal .footer-made-in {
    justify-self: start;
  }
}
.footer-made-in {
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-made-in .br-flag {
  display: block;
  flex: 0 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 0 0.5px rgba(0,0,0,0.08);
}

/* ============== Reveal animation ============== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============== Misc ============== */
.kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--neutral-100);
  border: 1px solid var(--border-subtle);
  color: var(--fg-muted);
}
.divider-soft {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

/* ====================================================================
   PARA QUEM EXISTIMOS — Pills (default), Grid 3x2
   Section is .section.canvas. Renderizado entre Tensão e Virada.
   ==================================================================== */
.pq-head h2,
.pq-grid-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.04;
  color: var(--fg-strong);
  text-wrap: balance;
  margin: 0;
}

.pq-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.pq-head h2 {
  font-size: var(--t-display-lg);
}
.pq-head h2 span { color: var(--brand-500); font-style: italic; font-weight: 700; }

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.pill {
  background: var(--white);
  border: 1px solid var(--border-default);
  color: var(--fg-default);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms, border-color 180ms, color 180ms;
}
.pill:hover { border-color: var(--neutral-300); }
.pill.active {
  background: var(--brand-500);
  border-color: var(--brand-500);
  color: #fff;
}

.pq-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .pq-grid { grid-template-columns: 1fr; } }

.pq-feature {
  background: var(--neutral-900);
  color: rgba(255,255,255,0.92);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pq-feature::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 70%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(58,130,246,0.32), transparent 75%);
  pointer-events: none;
}
.pq-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
}
.pq-mark img { width: 22px; height: 22px; }
.pq-feature h3 {
  font-family: var(--font-display);
  font-size: var(--t-display-md);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin: 0;
}
.pq-feature p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.55;
  max-width: 520px;
  margin: 0;
}
.pq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-400);
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}
.pq-cta:hover { color: #fff; }

.pq-card {
  margin-top: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  z-index: 1;
}
.pq-card-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.62);
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}
.pq-card-head .dot { width: 7px; height: 7px; border-radius: 999px; background: #4DD09A; }
.pq-card-rows .r {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.86);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pq-card-rows .r:last-child { border-bottom: none; }
.pq-card-rows .r b { font-family: var(--font-display); color: #fff; }

.pq-side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
}
.pq-stats {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 22px;
}
.pq-stat .v {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--fg-strong);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pq-stat .l {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
}

.pq-quote {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 28px;
  position: relative;
}
.pq-quote .qm {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.6;
  color: var(--brand-200);
  margin-bottom: 12px;
}
.pq-quote p {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.45;
  color: var(--fg-strong);
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: pretty;
}
.pq-quote .qa {
  margin-top: 14px;
  font-size: 12px;
  color: var(--fg-muted);
}

/* PARA QUEM — Grid 3x2 */
.pq-grid-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .pq-grid-head { grid-template-columns: 1fr; } }
.pq-grid-head h2 { font-size: var(--t-display-lg); }
.pq-grid-head h2 + p, .pq-grid-head p {
  font-size: var(--t-body-lg);
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 420px;
  margin: 0;
}

.pq-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .pq-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pq-card-grid { grid-template-columns: 1fr; } }

.pq-pcard {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 180ms, box-shadow 180ms;
}
.pq-pcard:hover {
  border-color: var(--brand-200);
  box-shadow: 0 12px 32px -16px rgba(58, 130, 246, 0.18);
}
.pq-pcard-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand-600);
  display: flex; align-items: center; justify-content: center;
}
.pq-pcard h3 {
  font-family: var(--font-display);
  font-size: var(--t-display-sm);
  font-weight: 700;
  color: var(--fg-strong);
  letter-spacing: -0.014em;
  line-height: 1.2;
  margin: 0;
}
.pq-pcard p {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.pq-pcard-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-600);
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   IMÓVEL-PROTAGONISTA (dobra 5) — composição editorial
   simulando um snapshot do produto. Apto Vila Mariana é o
   "personagem" que volta na Jornada e na Profundidade.
   ============================================================ */
.hub-stage {
  margin-top: 44px;
}
.hub-frame {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(20, 24, 31, 0.18),
              0 4px 12px -6px rgba(20, 24, 31, 0.08);
}
.hub-frame-head {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--neutral-25);
}
.hub-frame-dots {
  display: flex; gap: 6px;
}
.hub-frame-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--neutral-200);
}
.hub-frame-path {
  flex: 1;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: -0.005em;
  text-align: center;
}
.hub-frame-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 4px 10px;
  border-radius: 999px;
}

.hub-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border-subtle);
}
@media (max-width: 900px) {
  .hub-grid { grid-template-columns: 1fr; }
}

.hub-card {
  background: var(--bg-surface);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hub-card-hero {
  grid-row: 1 / span 2;
}
@media (max-width: 900px) {
  .hub-card-hero { grid-row: auto; }
}

.hub-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.hub-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--fg-strong);
  margin: 0;
}
.hub-meta {
  font-size: 13px;
  color: var(--fg-muted);
  margin: 0;
}

.hub-photo {
  position: relative;
  margin-top: 6px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-50), var(--neutral-50));
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-400);
}
.hub-photo-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--fg-muted);
  border: 1px solid var(--border-subtle);
}

.hub-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 6px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.hub-stats div { display: flex; flex-direction: column; gap: 4px; }
.hub-stats dt {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-subtle);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hub-stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg-strong);
  letter-spacing: -0.012em;
  font-variant-numeric: tabular-nums;
}
.hub-stats dd.pos { color: #16a34a; }

.hub-card-head {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--fg-subtle);
}
.hub-rows {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.hub-rows li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-subtle);
  font-size: 13.5px;
}
.hub-rows li:last-child { border-bottom: 0; }
.hub-rows li span { color: var(--fg-muted); }
.hub-rows li b {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--fg-strong);
}
.hub-rows li.row-total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border-strong, var(--neutral-200));
  border-bottom: 0;
}
.hub-rows li.row-total span { color: var(--fg-strong); font-weight: 600; }
.hub-rows li.row-total b { font-size: 15px; }

.hub-bar {
  height: 6px;
  background: var(--neutral-100);
  border-radius: 999px;
  overflow: hidden;
}
.hub-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-600));
  border-radius: 999px;
}

.hub-checks {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px;
}
.hub-checks li {
  display: flex; align-items: center; gap: 8px;
  color: var(--fg-default);
}
.hub-checks li.ok { color: var(--fg-muted); text-decoration: line-through; text-decoration-color: var(--neutral-200); }
.hub-checks li.ok svg { color: #16a34a; }
.hub-checks li.run::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(58, 130, 246, 0.18);
  animation: hub-pulse 1.6s ease-in-out infinite;
}
.hub-checks li.next { color: var(--fg-subtle); }
.hub-checks li.next::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--neutral-200);
}

@keyframes hub-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(58, 130, 246, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(58, 130, 246, 0.06); }
}

.hub-foot {
  margin-top: auto;
  padding-top: 6px;
}
.hub-tag-warn,
.hub-tag-info {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: -0.005em;
}
.hub-tag-warn {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}
.hub-tag-info {
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
}

.hub-note {
  margin: 28px auto 0;
  max-width: 60ch;
  text-align: center;
  font-size: 13.5px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ============================================================
   STORY-TRACK (dobra 6 — Jornada com verbos + protagonista)
   ============================================================ */
.protag-card {
  margin-top: 32px;
  padding: 18px 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 14px);
  background: var(--bg-surface);
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 8px 24px -16px rgba(20, 24, 31, 0.12);
}
.protag-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.protag-row {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.protag-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
}
.protag-state {
  font-size: 13px;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}

.story-track {
  list-style: none; padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
}
.story-track::before {
  content: '';
  position: absolute;
  left: 5%; right: 5%;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg,
    var(--brand-500) 0%,
    var(--brand-500) 64%,
    var(--neutral-200) 64%,
    var(--neutral-200) 100%);
  border-radius: 999px;
  z-index: 0;
}
@media (max-width: 1100px) {
  .story-track { grid-template-columns: repeat(4, 1fr); }
  .story-track::before { display: none; }
}
@media (max-width: 600px) {
  .story-track { grid-template-columns: repeat(2, 1fr); }
}

.story-step {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.story-node {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--neutral-200);
  display: flex; align-items: center; justify-content: center;
  transition: transform 200ms, border-color 200ms, background 200ms;
}
.story-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-subtle);
  font-variant-numeric: tabular-nums;
}
.story-step.is-done .story-node {
  border-color: var(--brand-500);
  background: var(--brand-500);
}
.story-step.is-done .story-num { color: var(--white); }

.story-step.is-now .story-node {
  border-color: var(--brand-500);
  background: var(--brand-50);
  box-shadow: 0 0 0 4px rgba(58, 130, 246, 0.12);
  transform: scale(1.08);
}
.story-step.is-now .story-num { color: var(--brand-700); }

.story-step.is-next .story-node {
  border-color: var(--neutral-200);
  background: var(--bg-surface);
  border-style: dashed;
}

.story-body {
  display: flex; flex-direction: column; gap: 4px;
  align-items: center;
  width: 100%;
}
.story-verb {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-strong);
  letter-spacing: -0.014em;
}
.story-step.is-next .story-verb { color: var(--fg-subtle); font-weight: 600; }
.story-date {
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.story-step.is-now .story-date {
  color: var(--brand-600);
  font-weight: 700;
}
.story-desc {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--fg-muted);
  max-width: 18ch;
}
.story-here {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 3px 10px;
  border-radius: 999px;
}

.story-foot {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--fg-subtle);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.story-foot span:nth-child(2) {
  flex: 1;
  text-align: center;
  color: var(--fg-disabled);
}

/* ============================================================
   PROFUNDIDADE BRASILEIRA (dobra 8 — substitui pilares abstratos)
   ============================================================ */
.proofs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 960px) { .proofs { grid-template-columns: 1fr; } }

.proof-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: border-color 180ms, box-shadow 180ms, transform 180ms;
}
.proof-card:hover {
  border-color: var(--brand-200);
  box-shadow: 0 12px 32px -16px rgba(58, 130, 246, 0.16);
  transform: translateY(-2px);
}
.proof-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-500);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.proof-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: var(--fg-strong);
  margin: 0;
}
.proof-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
}
.proof-ex {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--border-subtle);
  display: flex; flex-direction: column; gap: 4px;
}
.proof-ex-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.proof-ex-value {
  font-size: 13px;
  color: var(--fg-default);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   MOBILE NAV — hamburguer toggle + drawer
   Hidden on ≥769px; assume drawer never opens on desktop.
   ============================================================ */
.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--fg-strong);
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--bg-hover); }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms var(--ease-out), opacity 160ms var(--ease-out);
}
.nav[data-mobile-open="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav[data-mobile-open="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav[data-mobile-open="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FAFBFC;
  border-top: 1px solid var(--border-subtle);
  z-index: 100;
  padding: 24px var(--gutter) 32px;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: nav-mobile-slide 220ms var(--ease-out);
}
@keyframes nav-mobile-slide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile-drawer[hidden] { display: none !important; }

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 24px;
}
.nav-mobile-link {
  display: block;
  padding: 14px 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
  border-radius: var(--radius-md);
}
.nav-mobile-link:hover { background: var(--bg-hover); }

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-mobile-actions .btn { width: 100%; justify-content: center; }

@media (max-width: 860px) {
  .nav-links,
  .nav-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav[data-mobile-open="true"] .nav-mobile-drawer { display: flex; }
  /* Quando o drawer está aberto, eleva a nav inteira pra cima de qualquer
     elemento absoluto/animado da página (hero orbit, demos, etc). */
  .nav[data-mobile-open="true"] { z-index: 100; }
}

/* ============================================================
   GLOBAL MOBILE TUNING
   Reduces section padding, tightens gutters, scales hero,
   and contains everything to the viewport.
   ============================================================ */

/* Prevent any horizontal scroll caused by stray full-bleed elements.
   `overflow-x: clip` em vez de `hidden` pra não quebrar position: sticky
   da nav em Safari. Aplicado só no body. */
body { overflow-x: clip; max-width: 100%; }

@media (max-width: 860px) {
  :root {
    --section-py: 72px;
    --hero-py: 56px;
    --grid-gap: 18px;
    --gutter: 18px;
  }
  [data-density="compact"] {
    --section-py: 56px;
    --hero-py: 48px;
  }
  .nav-inner { height: 64px; }
  .nav-mobile-drawer { top: 64px; }
  .nav-logo img { height: 32px; }
  .nav-logo .nav-wordmark { font-size: 18px; }

  /* Tighten oversized hero copy on phones */
  .hero-h1 { letter-spacing: -0.03em; line-height: 1.04; }
  .h-display.xl { font-size: clamp(34px, 8.4vw, 52px); }
  .h-display.lg { font-size: clamp(28px, 7vw, 40px); }
  .h-display.md { font-size: clamp(22px, 5.6vw, 30px); }
  .h-display.sm { font-size: clamp(19px, 4.8vw, 24px); }
  [data-density="compact"] .h-display.xl { font-size: clamp(32px, 7.6vw, 48px); }
  [data-density="compact"] .h-display.lg { font-size: clamp(26px, 6.2vw, 36px); }
  [data-density="compact"] .h-display.md { font-size: clamp(20px, 5vw, 28px); }

  .section-head { margin-bottom: 36px; gap: 14px; }

  /* Buttons fit comfortably side-by-side on phones */
  .btn-lg { padding: 12px 18px; font-size: 14px; }
  .hero-cta .btn { flex: 1 1 auto; }

  /* Hero split — already collapses at 1080, but reduce padding */
  .hero[data-layout="split"] .hero-split { gap: 24px; }
  .hero[data-layout="split"] .hoc-stage { height: 380px; }

  /* CTA stage */
  .cta-stage { padding: 56px 24px; }
  .cta-stage h2 { font-size: clamp(26px, 6.4vw, 36px); }
  .cta-stage p { font-size: 15px; }

  /* Concept dobra */
  .concept-stage { padding: 48px 20px; }
  .concept-quote { font-size: clamp(26px, 6.6vw, 36px); }
  .concept-sub { font-size: 15px; margin-top: 20px; }

  /* Contrast cards (Tensão variant=cards) */
  .contrast-grid { margin-top: 32px; gap: 18px; }
  .contrast-card { padding: 22px; min-height: 0; }
  .contrast-card h3 { font-size: 22px; }
  .tensao-absorb { margin-left: -22px; margin-right: -22px; padding: 22px 22px 18px; }
  .tensao-emerge { margin-left: -22px; margin-right: -22px; margin-bottom: -22px; padding-left: 22px; padding-right: 22px; }
  .tensao-emerge-stage { aspect-ratio: 4 / 5; max-height: none; }
  .tensao-emerge-caption { font-size: 11px; padding: 9px 12px; bottom: 10px; }

  /* Showcase / pq feature card */
  .showcase { gap: 24px; }
  .pq-feature { padding: 28px 22px; border-radius: 18px; }
  .pq-feature h3 { font-size: clamp(22px, 5.6vw, 30px); }
  .pq-feature p { font-size: 15px; }
  .pq-stats, .pq-quote { padding: 22px; border-radius: 18px; }
  .pq-stat .v { font-size: 28px; }

  /* Pillars / proofs / pq-pcards / cn-cards / addons */
  .pillar { padding: 24px; min-height: 0; }
  .pillar h3 { font-size: clamp(20px, 5vw, 26px); }
  .proof-card { padding: 24px 22px; }
  .pq-pcard { padding: 22px; border-radius: 14px; }

  /* Journey track — stack 2 cols compactly */
  .journey-step { padding: 20px 16px; min-height: 0; gap: 10px; }
  .journey-step .name { font-size: 16px; }
  .journey-step .desc { font-size: 12.5px; }
  .journey-step .icon { display: none; }

  /* Story track — full-width flow on mobile, no horizontal track line */
  .story-track { gap: 18px 0; margin-top: 22px; }
  .story-step { padding: 0 6px; }
  .story-track::before { display: none; }

  /* Hub frame (Imóvel-protagonista) */
  .hub-frame-head { padding: 10px 14px; gap: 10px; }
  .hub-frame-path { display: none; }
  .hub-card { padding: 18px 18px; gap: 12px; }
  .hub-title { font-size: 22px; }
  .hub-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hub-stats dd { font-size: 15px; }

  /* Brasil dobra — docs stage scales down */
  .br-stage { aspect-ratio: 1 / 1.05; }

  /* Footer */
  .footer { padding: 48px 0 28px; }
  .footer-grid { gap: 28px; }
  .footer-legal { margin-top: 32px; }
}

@media (max-width: 480px) {
  :root {
    --section-py: 56px;
    --hero-py: 40px;
    --gutter: 16px;
  }
  [data-density="compact"] {
    --section-py: 48px;
    --hero-py: 36px;
  }
  .nav-logo .nav-wordmark { font-size: 17px; }
  .nav-logo img { height: 28px; }

  /* H1 do hero estoura por causa dos <br> hardcoded; deixa o navegador
     quebrar onde fizer sentido. */
  .hero-h1 br { display: none; }
  .hero-h1 { font-size: clamp(34px, 11vw, 48px); }
  .hero-sub { font-size: 15px; }
  .hero[data-layout="split"] .hoc-stage { height: 320px; }

  /* Botões ocupam linha cheia em mobile pequeno */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .cta-stage .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-stage .cta-actions .btn { width: 100%; }

  .contrast-card { padding: 18px; border-radius: 14px; }
  .contrast-card h3 { font-size: 19px; }
  .tensao-absorb { margin-left: -18px; margin-right: -18px; padding: 16px 18px 12px; }
  .tensao-emerge { margin-left: -18px; margin-right: -18px; margin-bottom: -18px; padding-left: 18px; padding-right: 18px; }

  .cta-stage { padding: 40px 18px; border-radius: 18px; }
  .concept-stage { padding: 36px 18px; }

  .journey-track { border-radius: 14px; }
  .journey-step { padding: 16px 14px; }

  .pq-feature { padding: 22px 18px; }
  .pq-feature h3 { font-size: 22px; }

  .pillar { padding: 20px 18px; border-radius: 14px; }
  .proof-card { padding: 20px 18px; border-radius: 14px; }

  .hub-card { padding: 16px; }
  .hub-title { font-size: 19px; }
}

/* ====================================================================
   DOBRA 5 — PROFUNDIDADE E VISÃO (editorial puro)
   Sem numerais ornamentais, sem mockup. Apenas dois blocos editoriais
   lado a lado com hairline central. Tipografia carrega tudo.
   Namespace .dv-*.
   ==================================================================== */

.dv-em {
  font-style: normal;
  color: var(--brand-500);
}

.dv-edit {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.dv-side {
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.dv-side:first-child {
  padding-right: 32px;
  border-right: 1px solid var(--border-subtle);
}
.dv-side:last-child {
  padding-left: 32px;
}

.dv-side-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-600);
}

/* ── Ornamentos geométricos · profundidade × visão ──────────────────
   Não imitam UI. Carregam o conceito: concêntricos = afundar (camadas),
   grid 4×3 = abranger (carteira em fases). 160px de aresta, posicionados
   entre eyebrow e título. Color tokens permitem trocar o tom sem editar. */
.dv-orn {
  width: 160px;
  height: 160px;
  margin: 6px 0 4px;
  color: var(--neutral-300);
}
.dv-orn svg { width: 100%; height: 100%; display: block; }

.dv-orn-broad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}
.dv-orn-cell {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  transition: transform 200ms var(--ease-out);
}
.dv-orn-cell-on {
  background: var(--brand-500);
  border: 1px solid var(--brand-500);
}
.dv-orn-cell-soft {
  background: var(--brand-100);
  border: 1px solid var(--brand-200);
}
.dv-orn-cell-out {
  background: transparent;
  border: 1px solid var(--neutral-200);
}

.dv-side-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--fg-strong);
  margin: 0;
  text-wrap: balance;
}

.dv-side-body {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  max-width: 50ch;
  text-wrap: pretty;
}

/* Frase de fechamento editorial */
.dv-close {
  margin: 56px auto 0;
  max-width: 60ch;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--fg-default);
  text-wrap: balance;
}
.dv-close em {
  font-style: normal;
  color: var(--fg-strong);
  font-weight: 600;
}

/* ── Mobile ───────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .dv-edit {
    margin-top: 36px;
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .dv-side {
    padding: 28px 0;
  }
  .dv-side:first-child {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .dv-side:last-child {
    padding-left: 0;
  }
  .dv-orn { width: 128px; height: 128px; }
  .dv-orn-broad { gap: 10px; }
  .dv-side-title { font-size: clamp(24px, 6vw, 32px); }
  .dv-side-body { font-size: 16px; max-width: none; }
  .dv-close { margin-top: 36px; font-size: 16px; }
}

/* ====================================================================
   DOBRA 6 — A JORNADA (editorial · conexões entre etapas)
   Sai do timeline linear e entra em manifesto. 4 conexões em grid 2×2,
   cada uma com numeral, par, claim em display + body. Namespace .jr-*.
   ==================================================================== */

.jr-em {
  font-style: normal;
  color: var(--brand-500);
}

.jr-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.jr-conn {
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
/* Hairline horizontal entre rows (apenas nas duas primeiras conexões) */
.jr-conn:nth-child(1),
.jr-conn:nth-child(2) {
  border-bottom: 1px solid var(--border-subtle);
}
/* Hairline vertical entre colunas (par) */
.jr-conn:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--border-subtle);
}
.jr-conn:nth-child(even) {
  padding-left: 32px;
}

.jr-conn-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.jr-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand-500);
  font-variant-numeric: tabular-nums;
}
.jr-pair {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.jr-claim {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--fg-strong);
  margin: 0;
  text-wrap: balance;
}

.jr-body {
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  max-width: 50ch;
  text-wrap: pretty;
}

/* Frase de fechamento — espelha .dv-close pra coesão entre dobras 5 e 6 */
.jr-close {
  margin: 56px auto 0;
  max-width: 60ch;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--fg-default);
  text-wrap: balance;
}
.jr-close em {
  font-style: normal;
  color: var(--fg-strong);
  font-weight: 600;
}

/* ── Mobile ──────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .jr-grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .jr-conn {
    padding: 28px 0;
  }
  .jr-conn:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  .jr-conn:nth-child(even) {
    padding-left: 0;
  }
  .jr-conn:nth-child(1),
  .jr-conn:nth-child(2),
  .jr-conn:nth-child(3) {
    border-bottom: 1px solid var(--border-subtle);
  }
  .jr-claim { font-size: clamp(22px, 5.4vw, 28px); }
  .jr-body { font-size: 15px; }
  .jr-close { margin-top: 36px; font-size: 16px; }
}
