/* ==========================================================================
   Allybi Homepage v3.0 — Conversion & Visual Polish
   ========================================================================== */

/* ── 1 · HERO — 2-column editorial ── */
.home-hero {
  background: #FFFFFF;
  border-bottom: 1px solid #E6E6EC;
  overflow: clip;
  position: relative;
  min-height: clamp(680px, calc(100svh - var(--site-header-height, 64px)), 780px);
  display: flex;
  align-items: center;
}
.home-hero-container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 48px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(460px, 0.88fr);
  gap: 64px;
  align-items: center;
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .home-hero-container { gap: 48px; padding-left: 40px; padding-right: 40px; }
}
/* 2-col only above 1180px */
@media (max-width: 1179px) {
  .home-hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 40px 80px;
  }
}

.home-hero-copy {
  min-width: 0;
  align-self: center;
  max-width: 700px;
}

#home-hero-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(60px, 4.2vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.047em;
  font-weight: 800;
  color: #181818;
  margin: 0;
  text-wrap: balance;
  text-decoration: none;
}
#home-hero-title > span {
  display: block;
  text-decoration: none;
}
/* Title wraps within the copy column. (Previously forced nowrap ≥1180px, which
   overflowed under the 2-col hero image since the container is capped at 1320px.) */

.home-hero-subtitle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #55534E;
  max-width: 610px;
  margin: 28px 0 0;
  text-wrap: pretty;
}
.home-hero-channel {
  font-size: 15px;
  line-height: 23px;
  font-weight: 500;
  color: #6C6B6E;
  max-width: 610px;
  margin: 14px 0 0;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.home-hero-primary {
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: #181818;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out, background-color 150ms ease-out;
}
.home-hero-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(24, 24, 24, 0.14);
  background: #000000;
}
.home-hero-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(24, 24, 24, 0.10);
}
.home-hero-primary:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: -4px;
}
.home-hero-secondary {
  height: 56px;
  padding: 0 8px 0 14px;
  background: transparent;
  border: 0;
  color: #181818;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.home-hero-secondary__arrow {
  display: inline-block;
  transition: transform 150ms ease-out;
}
.home-hero-secondary:hover .home-hero-secondary__arrow { transform: translateX(4px); }
.home-hero-secondary:hover { text-decoration: underline; text-underline-offset: 5px; }
.home-hero-secondary:focus-visible {
  outline: 2px solid #181818;
  outline-offset: 4px;
  border-radius: 6px;
}

.home-hero-price {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #6C6B6E;
  margin: 18px 0 0;
}

.home-hero-trust {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 28px 0 0;
}
.home-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  color: #55534E;
}
.home-hero-trust li::before {
  content: '';
  flex: none;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  border: 1px solid rgba(24, 24, 24, 0.28);
  background: transparent center no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355534E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 9px 9px;
}

/* Proof column */
.home-hero-proof {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
/* Desktop 2-col only: shift the product shot down so its vertical center
   lines up with the center of the title + subtitle block.
   Uses position offset, NOT transform: the `hero-image-enter` keyframe
   animation (fill: both, ends at translateY(0)) outranks author transform
   declarations, so a `transform` here would be ignored. `top` is untouched
   by that animation and does not reflow the copy column.
   Offset measured: image center vs (#home-hero-title top → .home-hero-subtitle bottom) center. */
@media (min-width: 1180px) {
  .home-hero-proof { position: relative; top: 90px; }
}

/* Product demo frame — the ONLY allowed visual box (it IS the product) */

/* Rail */

/* Main */

/* Chips desktop */

/* Question */

/* Answer */

/* Review */

/* Copy column reveal */
.home-hero-copy {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms ease-out, transform 320ms ease-out;
}
.home-hero.is-revealed .home-hero-copy { opacity: 1; transform: translateY(0); }

/* TABLET / mid 768–1179 */
@media (min-width: 768px) and (max-width: 1179px) {
  .home-hero-copy { max-width: 760px; }
  #home-hero-title { font-size: 64px; }
  .home-hero-proof { justify-content: flex-start; }
  
}

/* MOBILE */
@media (max-width: 767px) {
  .home-hero {
    min-height: auto;
    display: block;
  }
  .home-hero-container {
    display: block;
    padding: 48px 20px 64px;
  }
  .home-hero-copy { max-width: none; }
  #home-hero-title {
    font-size: clamp(38px, 10.4vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.042em;
    font-weight: 800;
  }
  #home-hero-title > span { white-space: normal; }
  .home-hero-subtitle { font-size: 17px; line-height: 26px; margin-top: 22px; }
  .home-hero-channel  { font-size: 14px; line-height: 21px; margin-top: 12px; }
  .home-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }
  .home-hero-primary { width: 100%; height: 52px; }
  .home-hero-secondary {
    width: 100%;
    height: 46px;
    justify-content: center;
    padding: 0;
  }
  .home-hero-price { font-size: 13px; line-height: 19px; margin-top: 14px; text-align: center; }
  .home-hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 24px;
  }
  .home-hero-trust li { font-size: 13px; line-height: 19px; }
  .home-hero-proof {
    margin-top: 40px;
    display: block;
  }
  
  
  
  
  
  
  
  
  
  
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .home-hero * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  
  
}

/* ════════════════════════════════════════════════════════════════════
   2 · ACHAR NÃO BASTA - editorial 3-scene section
   Section root: #home-find-gap (.find-gap-section)
   Spec §§7, 9-13, 22-26, 32, 35
   ════════════════════════════════════════════════════════════════════ */
.find-gap-section {
  background: #F1F0EF;
  border-top: 1px solid #E6E6EC;
  border-bottom: 1px solid #E6E6EC;
  overflow: clip;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #181818;
}

.find-gap-container {
  width: auto;
  margin: 0;
  display: block;
  padding-top: 56px;
  padding-bottom: calc(64px + env(safe-area-inset-bottom));
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
}

.find-gap-eyebrow {
  font-size: 11px;
  line-height: 17px;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0 0 14px;
  text-transform: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}

.find-gap-live-copy {
  min-height: 240px;
}

#find-gap-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(36px, 10.4vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.042em;
  font-weight: 800;
  color: #181818;
  margin: 0;
  max-width: 360px;
}
#find-gap-title span { display: block; white-space: nowrap; }

.find-gap-body {
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
  color: #55534E;
  max-width: 350px;
  margin: 17px 0 0;
}

/* Copy live transitions §19 */
.find-gap-live-copy.is-out {
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 110ms ease-out, transform 110ms ease-out;
}
.find-gap-live-copy.is-in {
  animation: find-gap-enter 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes find-gap-enter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tabs */
.find-gap-tabs {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  border-top: 1px solid rgba(24, 24, 24, 0.18);
}

/* Autoplay progress bar — spans the full tab row, fills left→right across one full cycle */
.find-gap-autoplay-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 2px;
  background: #181818;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  opacity: 0;
  will-change: transform;
}
.find-gap-section[data-autoplay="active"] .find-gap-autoplay-bar {
  opacity: 1;
  animation: find-gap-autoplay-progress var(--find-gap-cycle-ms, 18000ms) linear infinite;
}
/* While autoplay is running, swap the per-tab indicator for the continuous bar */
.find-gap-section[data-autoplay="active"] .find-gap-tab-indicator { opacity: 0; }

@keyframes find-gap-autoplay-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .find-gap-section[data-autoplay="active"] .find-gap-autoplay-bar { animation: none; }
}
.find-gap-tabs button {
  position: relative;
  min-width: 0;
  min-height: 52px;
  padding: 11px 4px 8px 0;
  background: transparent;
  border: 0;
  color: #8C8A86;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  font-family: inherit;
}
.find-gap-tabs button:hover[aria-selected="false"] { color: #32302C; }
.find-gap-tabs button[aria-selected="true"] { color: #181818; }
.find-gap-tabs button:focus-visible {
  outline: 2px solid #181818;
  outline-offset: 4px;
}
.find-gap-tab-num {
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 0.09em;
  font-weight: 700;
}
.find-gap-tab-label {
  font-size: 10px;
  line-height: 15px;
  font-weight: 700;
  white-space: normal;
}
.find-gap-tab-indicator {
  position: absolute;
  left: 0;
  right: 5px;
  top: -1px;
  height: 2px;
  background: #181818;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.find-gap-tabs button[aria-selected="true"] .find-gap-tab-indicator { transform: scaleX(1); }

/* Panel */
.find-gap-panel {
  height: 290px;
  width: 100%;
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  outline: none;
}
.find-gap-visual-desktop { display: none; }
.find-gap-visual-mobile {
  display: block;
  width: 100%;
  height: 100%;
}
.find-gap-visual-desktop,
.find-gap-visual-mobile { overflow: visible; }

/* Scene group default state */
.find-gap-scene {
  opacity: 0;
  visibility: hidden;
  transition: opacity 120ms ease-out;
}
.find-gap-scene[data-active="true"] {
  opacity: 1;
  visibility: visible;
  transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* SVG element styling §13 */
.fg-primary-path,
.fg-context-path,
.fg-warning-path,
.fg-warning-arc,
.fg-stop-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fg-primary-path { stroke: rgba(24, 24, 24, 0.58); stroke-width: 1.5; }
.fg-context-path { stroke: rgba(24, 24, 24, 0.32); stroke-width: 1.5; }
.fg-warning-path { stroke: rgba(251, 188, 4, 0.82); stroke-width: 1.5; }
.fg-warning-arc  { stroke: rgba(251, 188, 4, 0.82); stroke-width: 1.5; }
.fg-stop-line    { stroke: #FBBC04; stroke-width: 2; }
.fg-primary-dot  { fill: #181818; }
.fg-hollow-warning {
  fill: #F1F0EF;
  stroke: #FBBC04;
  stroke-width: 1.5;
}
.fg-label,
.fg-label--mobile {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  fill: #55534E;
}
.fg-label--mobile { font-size: 11px; }
.fg-primary-annotation {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  fill: #181818;
}
.fg-primary-annotation-mobile {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  fill: #181818;
}
.fg-question-mobile {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  fill: #181818;
}
.fg-small-annotation {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  fill: #6C6B6E;
}
.fg-warning-annotation {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  fill: #805400;
}
.fg-filename,
.fg-filename-mobile {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  font-weight: 600;
  fill: #181818;
}
.fg-filename-mobile { font-size: 11px; }
.fg-metadata-mobile {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  fill: #805400;
}
.fg-metadata-mobile--neutral { fill: #6C6B6E; font-weight: 600; }

/* Stroke-dashoffset draw-in §20 - applied once per scene activation by JS */
.find-gap-scene[data-active="true"] .fg-primary-path,
.find-gap-scene[data-active="true"] .fg-context-path,
.find-gap-scene[data-active="true"] .fg-warning-path,
.find-gap-scene[data-active="true"] .fg-warning-arc,
.find-gap-scene[data-active="true"] .fg-stop-line {
  animation: find-gap-draw 460ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.find-gap-scene[data-active="true"] .fg-primary-path:nth-of-type(2) { animation-delay: 45ms; }
.find-gap-scene[data-active="true"] .fg-primary-path:nth-of-type(3) { animation-delay: 90ms; }
.find-gap-scene[data-active="true"] .fg-primary-path:nth-of-type(4) { animation-delay: 135ms; }
.find-gap-scene[data-active="true"] .fg-primary-path:nth-of-type(5) { animation-delay: 180ms; }
.find-gap-scene[data-active="true"] .fg-primary-path:nth-of-type(6) { animation-delay: 225ms; }
@keyframes find-gap-draw {
  from { stroke-dashoffset: var(--find-gap-len, 2000); }
  to   { stroke-dashoffset: 0; }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1099px) {
  .find-gap-container {
    width: auto;
    padding: 72px 32px 80px;
    display: block;
  }
  .find-gap-copy { max-width: 720px; }
  .find-gap-live-copy { min-height: 175px; }
  #find-gap-title {
    font-size: 48px;
    line-height: 50px;
    max-width: 620px;
  }
  .find-gap-body { font-size: 17px; line-height: 26px; max-width: 600px; }
  .find-gap-tabs { max-width: 560px; margin-top: 28px; }
  .find-gap-panel { height: 400px; margin-top: 22px; }
}

/* Desktop */
@media (min-width: 1100px) {
  .find-gap-section {
    min-height: clamp(660px, calc(100svh - var(--site-header-height, 72px)), 780px);
  }
  .find-gap-container {
    width: min(1280px, calc(100% - 96px));
    margin: 0 auto;
    padding: 80px 0 88px;
    display: grid;
    /* The title spans use white-space: nowrap so each line is as wide as
       its content (longest line is ~520px) and visually overflows the
       410px column. A wider gap pushes the SVG panel clear of the title. */
    grid-template-columns: 410px minmax(0, 1fr);
    gap: 128px;
    align-items: start;
  }
  .find-gap-copy { padding-top: 16px; min-width: 0; }
  .find-gap-eyebrow {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.12em;
    margin: 0 0 18px;
  }
  .find-gap-live-copy { min-height: 340px; }
  #find-gap-title {
    font-size: clamp(54px, 4.1vw, 64px);
    line-height: 1.01;
    letter-spacing: -0.045em;
    max-width: 410px;
  }
  .find-gap-body {
    font-size: 18px;
    line-height: 28px;
    max-width: 390px;
    margin-top: 22px;
  }
  .find-gap-tabs {
    margin-top: 30px;
    max-width: 390px;
  }
  .find-gap-tabs button { min-height: 58px; padding: 13px 8px 10px 0; }
  .find-gap-tab-num { font-size: 10px; line-height: 15px; }
  .find-gap-tab-label { font-size: 12px; line-height: 18px; }
  .find-gap-tab-indicator { right: 8px; }
  /* Offset the diagram from the left so it sits clear of the title. */
  .find-gap-panel { height: 520px; margin-top: 0; padding-left: 24px; }
  .find-gap-visual-desktop { display: block; width: 100%; height: 100%; }
  .find-gap-visual-mobile { display: none; }
}
@media (min-width: 1100px) and (max-width: 1365px) {
  .find-gap-container {
    width: calc(100% - 80px);
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 88px;
  }
}

/* Narrow mobile */
@media (max-width: 359px) {
  .find-gap-container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
    padding-top: 48px;
    padding-bottom: calc(56px + env(safe-area-inset-bottom));
  }
  .find-gap-panel { height: 250px; }
  #find-gap-title { font-size: 35px; line-height: 37px; }
  .find-gap-live-copy { min-height: 215px; }
}

/* Reveal entrance §21 */
.find-gap-section:not(.is-revealed) .find-gap-eyebrow,
.find-gap-section:not(.is-revealed) .find-gap-live-copy,
.find-gap-section:not(.is-revealed) .find-gap-tabs,
.find-gap-section:not(.is-revealed) .find-gap-panel {
  opacity: 0;
  transform: translateY(8px);
}
.find-gap-section.is-revealed .find-gap-eyebrow {
  animation: find-gap-reveal-eyebrow 220ms ease-out both;
}
.find-gap-section.is-revealed .find-gap-live-copy {
  animation: find-gap-reveal-copy 300ms ease-out 40ms both;
}
.find-gap-section.is-revealed .find-gap-tabs {
  animation: find-gap-reveal-tabs 240ms ease-out 90ms both;
}
.find-gap-section.is-revealed .find-gap-panel {
  animation: find-gap-reveal-panel 340ms ease-out 80ms both;
}
@keyframes find-gap-reveal-eyebrow {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes find-gap-reveal-copy {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes find-gap-reveal-tabs {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes find-gap-reveal-panel {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* sr-only utility (scoped here in case it's not in base) */
.find-gap-section .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion §35 */
@media (prefers-reduced-motion: reduce) {
  #home-find-gap *,
  #home-find-gap *::before,
  #home-find-gap *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .find-gap-section .find-gap-eyebrow,
  .find-gap-section .find-gap-live-copy,
  .find-gap-section .find-gap-tabs,
  .find-gap-section .find-gap-panel {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── 3 · MEDIR O TRABALHO ESCONDIDO (tools editorial paths) ── */
.measure-section {
  background: #181818;
  color: #F5F5F5;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
  overflow: clip;
  position: relative;
}
.measure-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 112px 48px 120px;
}
@media (min-width: 1440px) {
  .measure-container { padding-left: 32px; padding-right: 32px; }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .measure-container { padding: 88px 40px 96px; }
}
.measure-header {
  display: block;
  max-width: 820px;
}
.measure-eyebrow {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.56);
  margin: 0 0 16px;
}
#home-flow-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(52px, 4.3vw, 68px);
  line-height: 1.01;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #FFFFFF;
  max-width: 760px;
  margin: 0;
  text-wrap: balance;
}
.measure-subtitle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
  margin: 22px 0 0;
}
.measure-trust {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #6C6B6E;
  margin: 16px 0 0;
}
.measure-method-link {
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  color: #181818;
  text-decoration: none;
  padding-bottom: 4px;
  white-space: nowrap;
}
.measure-method-link:hover,
.measure-method-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.measure-method-link:focus-visible {
  outline: 2px solid #181818;
  outline-offset: 4px;
}

/* Two paths separated by a single vertical hairline — NO card boxes */
.measure-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid rgba(24, 24, 24, 0.16);
  border-bottom: 1px solid rgba(24, 24, 24, 0.16);
}
.measure-path {
  min-height: 530px;
  padding: 40px 44px 38px;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: transparent;
  transition: background-color 180ms ease-out, color 180ms ease-out;
}
.measure-path + .measure-path {
  border-left: 1px solid rgba(24, 24, 24, 0.16);
}
.measure-path:hover { background: rgba(255, 255, 255, 0.42); }
.measure-path:focus-visible {
  outline: 2px solid #181818;
  outline-offset: -2px;
}

.measure-path-eyebrow {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0;
}
.measure-path h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #181818;
  max-width: 470px;
  margin: 14px 0 0;
  text-wrap: balance;
}
.measure-path-copy > p {
  font-size: 17px;
  line-height: 26px;
  color: #55534E;
  max-width: 450px;
  margin: 18px 0 0;
}
.measure-path-cta {
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  padding: 0 22px;
  margin-top: 28px;
  border-radius: 999px;
  background: #181818;
  color: #FFFFFF;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}
.measure-path-cta__arrow {
  display: inline-block;
  transition: transform 160ms ease-out;
}
.measure-path:hover .measure-path-cta__arrow { transform: translateX(4px); }

/* Calculator preview — no inner box */
.measure-time-preview {
  margin-top: auto;
  padding-top: 40px;
  min-height: 218px;
  position: relative;
}
.measure-time-preview__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.measure-time-preview__number {
  display: block;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #181818;
  font-feature-settings: 'tnum';
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms ease;
}
.measure-time-preview__subtitle {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #6C6B6E;
  margin-top: 8px;
}
.measure-time-preview__bars {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.measure-bar-row {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}
.measure-bar-row__label {
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  color: #55534E;
}
.measure-bar-row__track {
  height: 7px;
  background: rgba(24, 24, 24, 0.09);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.measure-bar-row__fill {
  display: block;
  height: 100%;
  background: #181818;
  border-radius: 999px;
  width: var(--w);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.measure-bar-row__marker {
  position: absolute;
  right: 22%;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #FBBC04;
  pointer-events: none;
}
.measure-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(251, 188, 4, 0.14);
  color: #805400;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 220ms ease;
}

/* Animation reveal */
.measure-section.is-revealed .measure-time-preview__number,
.measure-section.is-revealed .measure-flow-preview__score { opacity: 1; transform: translateY(0); }
.measure-section.is-revealed .measure-bar-row__fill { transform: scaleX(1); }
.measure-section.is-revealed .measure-bar-row:nth-child(1) .measure-bar-row__fill { transition-delay: 0ms; }
.measure-section.is-revealed .measure-bar-row:nth-child(2) .measure-bar-row__fill { transition-delay: 70ms; }
.measure-section.is-revealed .measure-bar-row:nth-child(3) .measure-bar-row__fill { transition-delay: 140ms; }
.measure-section.is-revealed .measure-bar-row:nth-child(4) .measure-bar-row__fill { transition-delay: 210ms; }
.measure-section.is-revealed .measure-badge { opacity: 1; transition-delay: 360ms; }

/* Diagnostic preview */
.measure-flow-preview {
  margin-top: auto;
  padding-top: 40px;
  min-height: 218px;
  position: relative;
}
.measure-flow-preview__score {
  display: block;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #181818;
  font-feature-settings: 'tnum';
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms ease;
}
.measure-flow-preview__subtitle {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #6C6B6E;
  margin-top: 8px;
}
.measure-flow-preview__map {
  margin-top: 30px;
  display: grid;
  grid-template-columns: auto 18px auto 18px auto 18px auto 18px auto 18px auto;
  align-items: center;
  justify-content: start;
}
.measure-flow-node {
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(24, 24, 24, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
  color: #55534E;
  white-space: nowrap;
  position: relative;
  opacity: 0.45;
  transition: opacity 220ms ease;
}
.measure-section.is-revealed .measure-flow-node { opacity: 1; }
.measure-section.is-revealed .measure-flow-node:nth-child(1)  { transition-delay: 0ms; }
.measure-section.is-revealed .measure-flow-node:nth-child(3)  { transition-delay: 70ms; }
.measure-section.is-revealed .measure-flow-node:nth-child(5)  { transition-delay: 140ms; }
.measure-section.is-revealed .measure-flow-node:nth-child(7)  { transition-delay: 210ms; }
.measure-section.is-revealed .measure-flow-node:nth-child(9)  { transition-delay: 280ms; }
.measure-section.is-revealed .measure-flow-node:nth-child(11) { transition-delay: 350ms; }
.measure-flow-connector {
  width: 18px;
  height: 1px;
  background: rgba(24, 24, 24, 0.18);
}
.measure-flow-node--stuck {
  border-color: rgba(251, 188, 4, 0.78);
  background: rgba(251, 188, 4, 0.14);
  color: #805400;
}
.measure-flow-node__dot {
  position: absolute;
  top: -5px;
  right: -3px;
  width: 6px;
  height: 6px;
  background: #FBBC04;
  border-radius: 999px;
}
.measure-path-flow .measure-badge { transition-delay: 440ms; }

/* Tablet: stack paths */
@media (max-width: 1040px) {
  .measure-header { grid-template-columns: 1fr; }
  .measure-method-link { margin-top: 20px; justify-self: start; }
  .measure-paths { grid-template-columns: 1fr; }
  .measure-path + .measure-path {
    border-left: 0;
    border-top: 1px solid rgba(24, 24, 24, 0.16);
  }
  .measure-path { min-height: auto; padding: 42px 0; }
  .measure-time-preview, .measure-flow-preview { max-width: 680px; }
}

/* Mobile */
@media (max-width: 767px) {
  .measure-container { padding: 72px 20px 80px; }
  .measure-header { display: block; }
  #measure-title { font-size: 42px; line-height: 44px; letter-spacing: -0.04em; max-width: 350px; }
  .measure-subtitle { font-size: 16px; line-height: 24px; margin-top: 18px; max-width: 350px; }
  .measure-trust { font-size: 13px; line-height: 18px; margin-top: 14px; }
  .measure-method-link { display: inline-flex; margin-top: 20px; }
  .measure-paths { margin-top: 44px; display: block; border-top: 1px solid rgba(24, 24, 24, 0.16); border-bottom: 1px solid rgba(24, 24, 24, 0.16); }
  .measure-path { min-height: auto; padding: 32px 0 40px; background: transparent; }
  .measure-path + .measure-path { border-left: 0; border-top: 1px solid rgba(24, 24, 24, 0.16); }
  .measure-path h3 { font-size: 30px; line-height: 34px; letter-spacing: -0.035em; max-width: 350px; }
  .measure-path-copy > p { font-size: 16px; line-height: 24px; margin-top: 16px; }
  .measure-path-cta { width: 100%; height: 52px; margin-top: 24px; }
  .measure-time-preview, .measure-flow-preview { margin-top: 30px; padding-top: 0; min-height: auto; }
  .measure-time-preview__number, .measure-flow-preview__score { font-size: 46px; }
  .measure-bar-row { grid-template-columns: 112px minmax(0, 1fr); gap: 12px; }
  .measure-flow-preview__map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .measure-flow-connector { display: none; }
  .measure-flow-node {
    min-height: 42px;
    padding: 6px 8px;
    white-space: normal;
    text-align: center;
    font-size: 11px;
  }
}

/* ── 4 · WORKFLOW PROOF — Dark stepper + product theater ── */
.workflow-section {
  background: #181818;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  overflow: clip;
  position: relative;
}
.workflow-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 112px 48px 120px;
}
@media (min-width: 1440px) {
  .workflow-container { padding-left: 32px; padding-right: 32px; }
}
.workflow-header {
  max-width: 1000px;
}
.workflow-eyebrow {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.56);
  margin: 0 0 18px;
}
#workflow-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(58px, 5vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #FFFFFF;
  max-width: 1000px;
  margin: 0;
  text-wrap: balance;
}
.workflow-subtitle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  max-width: 820px;
  margin: 24px 0 0;
}
.workflow-trust {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.54);
  margin: 16px 0 0;
}

/* Desktop theater */

@media (max-width: 1099px) {
  
  
}

/* Stepper */

/* Product stage */

/* App shell */

/* Elements 1-5 — visibility/opacity per active step */

/* Visibility per active step */

/* Review panel */

/* Success toast */

/* Actions */

/* Mobile */
@media (max-width: 1099px) {
  .workflow-container { padding: 72px 20px 80px; }
  .workflow-header { max-width: none; }
  #workflow-title { font-size: 42px; line-height: 44px; letter-spacing: -0.04em; max-width: 360px; }
  .workflow-subtitle { font-size: 16px; line-height: 24px; margin-top: 18px; max-width: 360px; color: rgba(255, 255, 255, 0.70); }
  .workflow-trust { font-size: 13px; line-height: 19px; margin-top: 14px; color: rgba(255, 255, 255, 0.52); }

  
  
  
  
  
  
  

  
  
  

  
  

  
  
  
  
  

  
  
  
  
  
  
  
  
  
  
  
  

  
  
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #meça-o-trabalho-escondido *,
  #workflow-proof * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .measure-time-preview__number,
  .measure-flow-preview__score,
  .measure-badge { opacity: 1 !important; transform: none !important; }
  .measure-bar-row__fill { transform: scaleX(1) !important; }
  .measure-flow-node { opacity: 1 !important; }
  
  
}

/* ── 4 · INTEGRATION FLOW — Suas fontes e seus envios no mesmo fluxo ── */
.integration-flow-section {
  background: #FFFFFF;
  border-top: 1px solid #E6E6EC;
  border-bottom: 1px solid #E6E6EC;
  overflow: clip;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.integration-flow-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 104px 48px 112px;
}

/* Header */
.integration-flow-header {
  display: grid;
  grid-template-columns: minmax(0, 850px) auto;
  gap: 48px;
  align-items: end;
  justify-content: space-between;
}

.integration-flow-headcopy {
  min-width: 0;
}

.integration-flow-eyebrow {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0 0 16px;
  text-transform: none;
}

.integration-flow-header h2 {
  font-size: clamp(52px, 4.2vw, 66px);
  line-height: 1.01;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #181818;
  max-width: 820px;
  margin: 0;
  text-wrap: balance;
}

.integration-flow-subtitle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #55534E;
  max-width: 790px;
  margin: 22px 0 0;
}

.integration-flow-link {
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  color: #181818;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 150ms ease-out;
}
.integration-flow-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.integration-flow-link-arrow {
  display: inline-block;
  transition: transform 150ms ease-out;
}
.integration-flow-link:hover .integration-flow-link-arrow {
  transform: translateX(4px);
}
.integration-flow-link:focus-visible {
  outline: 2px solid #181818;
  outline-offset: 4px;
  border-radius: 2px;
}

/* Desktop layout */
.integration-flow-desktop {
  display: none;
}
@media (min-width: 1100px) {
  .integration-flow-desktop {
    display: grid;
    grid-template-columns:
      250px
      32px
      minmax(440px, 1fr)
      32px
      250px;
    align-items: center;
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(24, 24, 24, 0.16);
    border-bottom: 1px solid rgba(24, 24, 24, 0.16);
  }
}

@media (min-width: 1100px) and (max-width: 1439px) {
  .integration-flow-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Column labels (desktop) */
.integration-column-label {
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0 0 14px;
}

/* Source column */
.integration-source-column {
  min-width: 0;
}
.integration-source-list {
  border-top: 1px solid rgba(24, 24, 24, 0.14);
}
.integration-source-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 82px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(24, 24, 24, 0.14);
  background: transparent;
}
.integration-source-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.integration-source-icon img,
.integration-source-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}
.integration-source-text {
  display: grid;
  min-width: 0;
}
.integration-source-title {
  font-size: 15px;
  line-height: 21px;
  font-weight: 800;
  color: #181818;
}
.integration-source-desc {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #6C6B6E;
  margin-top: 3px;
}

/* Connectors */
.integration-connector {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.integration-connector-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(24, 24, 24, 0.22);
}
.integration-connector-arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(24, 24, 24, 0.36);
  border-right: 1px solid rgba(24, 24, 24, 0.36);
  transform: rotate(45deg);
  margin-left: -4px;
}

/* Product proof */

/* Review block */

/* Action column */

/* Mobile (<1100px) */
.integration-flow-mobile {
  display: block;
  margin-top: 40px;
}
@media (min-width: 1100px) {
  .integration-flow-mobile { display: none; }
}

.integration-flow-mobile-label {
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0 0 14px;
}
.integration-flow-mobile-sources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(24, 24, 24, 0.14);
  border-bottom: 1px solid rgba(24, 24, 24, 0.14);
}
.integration-flow-mobile-source {
  min-height: 72px;
  padding: 13px 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.integration-flow-mobile-source:nth-child(odd) {
  padding-right: 12px;
  border-right: 1px solid rgba(24, 24, 24, 0.14);
}
.integration-flow-mobile-source:nth-child(even) {
  padding-left: 12px;
}
.integration-flow-mobile-source:nth-child(1),
.integration-flow-mobile-source:nth-child(2) {
  border-bottom: 1px solid rgba(24, 24, 24, 0.14);
}
.integration-flow-mobile-source-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}
.integration-flow-mobile-source-icon img,
.integration-flow-mobile-source-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}
.integration-flow-mobile-source-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  color: #181818;
}

.integration-flow-mobile-marker {
  margin: 26px 0;
  display: grid;
  justify-items: center;
  gap: 8px;
}
.integration-flow-mobile-marker-line {
  width: 1px;
  height: 28px;
  background: rgba(24, 24, 24, 0.22);
}
.integration-flow-mobile-marker-label {
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.10em;
  font-weight: 700;
  color: #6C6B6E;
}

.integration-flow-mobile-cta {
  width: 100%;
  height: 52px;
  margin-top: 28px;
  border-radius: 999px;
  border: 1px solid #181818;
  background: transparent;
  color: #181818;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}
.integration-flow-mobile-cta:hover { background: #181818; color: #FFFFFF; }
.integration-flow-mobile-cta:focus-visible {
  outline: 2px solid #181818;
  outline-offset: 4px;
}

/* Mobile breakpoint shifts */
@media (max-width: 1099px) {
  .integration-flow-container { padding: 64px 20px 80px; }
  .integration-flow-header {
    display: block;
  }
  .integration-flow-header h2 {
    font-size: clamp(38px, 10.2vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.042em;
    font-weight: 800;
    max-width: 360px;
  }
  .integration-flow-subtitle {
    font-size: 16px;
    line-height: 24px;
    max-width: 360px;
    margin-top: 18px;
  }
  .integration-flow-link {
    display: none;
  }
}

/* Reveal */

.integration-flow-section.is-revealed .integration-source-row { opacity: 1; transform: translateY(0); }
.integration-flow-section.is-revealed .integration-source-row:nth-child(1) { transition-delay: 0ms; }
.integration-flow-section.is-revealed .integration-source-row:nth-child(2) { transition-delay: 45ms; }
.integration-flow-section.is-revealed .integration-source-row:nth-child(3) { transition-delay: 90ms; }
.integration-flow-section.is-revealed .integration-source-row:nth-child(4) { transition-delay: 135ms; }

/* ── 5 · PRESSURE — Momentos em que ninguém quer adivinhar ── */
.pressure-section {
  background: #F1F0EF;
  color: #181818;
  border-top: 1px solid #E6E6EC;
  border-bottom: 1px solid #E6E6EC;
  overflow: clip;
  position: relative;
}
.pressure-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 112px 48px 120px;
}
@media (min-width: 1100px) and (max-width: 1439px) {
  .pressure-container { padding-left: 40px; padding-right: 40px; }
}
.pressure-header { max-width: 980px; }
.pressure-eyebrow {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0 0 16px;
}
#pressure-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(54px, 4.6vw, 72px);
  line-height: 1.01;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #181818;
  max-width: 980px;
  margin: 0;
  text-wrap: balance;
}
.pressure-subtitle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #55534E;
  max-width: 720px;
  margin: 22px 0 0;
}

/* Desktop ≥1100 */
.pressure-desktop {
  display: none;
}

@media (min-width: 1100px) {
  .pressure-desktop {
    display: grid;
    grid-template-columns: 246px minmax(0, 1fr);
    margin-top: 64px;
    border-top: 1px solid rgba(24, 24, 24, 0.16);
    border-bottom: 1px solid rgba(24, 24, 24, 0.16);
    min-height: 570px;
  }
  
}

/* Tabs */

/* Stage */
.pressure-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.28fr);
  gap: 48px;
  padding: 48px 0 48px 48px;
  align-items: center;
  min-width: 0;
}
@media (min-width: 1100px) and (max-width: 1240px) {
  .pressure-stage {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    padding-left: 34px;
  }
}

/* Copy column — transparent, no card */
.pressure-copy {
  background: transparent;
  border: 0;
  box-shadow: none;
  align-self: center;
  min-width: 0;
}
.pressure-copy__role {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0;
  transition: opacity 240ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pressure-copy__moment {
  font-size: clamp(38px, 3vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #181818;
  margin: 14px 0 0;
  text-wrap: balance;
  transition: opacity 240ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pressure-copy__desc {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #55534E;
  margin: 18px 0 0;
  max-width: 360px;
  transition: opacity 240ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pressure-copy__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  margin-top: 28px;
  border-radius: 999px;
  background: #181818;
  color: #FFFFFF;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, opacity 240ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pressure-copy__cta:hover { background: #000000; }
.pressure-copy__cta:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: -4px;
}
.pressure-copy__cta-arrow {
  display: inline-block;
  transition: transform 150ms ease-out;
}
.pressure-copy__cta:hover .pressure-copy__cta-arrow { transform: translateX(4px); }

/* Exit/enter pattern on tab change */
.pressure-stage.is-transitioning .pressure-copy__role,
.pressure-stage.is-transitioning .pressure-copy__moment,
.pressure-stage.is-transitioning .pressure-copy__desc,
.pressure-stage.is-transitioning .pressure-copy__cta,
.pressure-stage.is-transitioning .pressure-frame__chips,
.pressure-stage.is-transitioning .pressure-frame__question,
.pressure-stage.is-transitioning .pressure-frame__answer-main,
.pressure-stage.is-transitioning .pressure-frame__answer-sub,
.pressure-stage.is-transitioning .pressure-detail,
.pressure-stage.is-transitioning .pressure-frame__metrics,
.pressure-stage.is-transitioning .pressure-frame__source,
.pressure-stage.is-transitioning .pressure-frame__status-confirm {
  opacity: 0;
  transform: translateY(-6px);
  transition-duration: 120ms;
}

/* Product proof column */
.pressure-proof {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.pressure-frame {
  width: 100%;
  max-width: 650px;
  min-height: 660px; /* Sized to the tallest context to prevent height jump on tab change */
  background: #FFFFFF;
  border: 1px solid #E6E6EC;
  border-radius: 22px;
  box-shadow: 0 22px 66px rgba(24, 24, 24, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pressure-frame__topbar {
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid #E6E6EC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: none;
}
.pressure-frame__title {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  color: #32302C;
}
.pressure-frame__status {
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
  color: #6C6B6E;
}
.pressure-frame__content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.pressure-frame__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.pressure-chip {
  height: 28px;
  padding: 0 9px;
  border: 1px solid #E6E6EC;
  border-radius: 999px;
  background: #FFFFFF;
  font-size: 10px;
  line-height: 14px;
  font-weight: 600;
  color: #55534E;
  display: inline-flex;
  align-items: center;
}
.pressure-frame__question {
  margin-top: 18px;
  margin-left: auto;
  width: min(440px, 84%);
  padding: 14px 17px;
  background: #181818;
  color: #FFFFFF;
  border-radius: 17px 17px 4px 17px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
}
.pressure-frame__answer {
  margin-top: 16px;
  width: 100%;
  padding: 17px;
  background: #FFFFFF;
  border: 1px solid rgba(52, 168, 83, 0.30);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(24, 24, 24, 0.06);
}
.pressure-frame__answer-label {
  display: block;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: #6C6B6E;
}
.pressure-frame__answer-main {
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #181818;
  margin: 8px 0 0;
}
.pressure-frame__answer-sub {
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
  color: #55534E;
  margin: 4px 0 0;
}

/* Details (legal + ops) */
.pressure-frame__details {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.pressure-frame__details[hidden],
.pressure-frame__metrics[hidden],
.pressure-frame__answer-sub[hidden] { display: none !important; }
.pressure-detail {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 9px 10px;
  background: #F5F5F5;
  border-radius: 10px;
}
.pressure-detail__num {
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
  color: #6C6B6E;
}
.pressure-detail__text {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: #32302C;
}

/* Metrics (finance) */
.pressure-frame__metrics {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.pressure-metric {
  padding: 11px;
  background: #F5F5F5;
  border-radius: 10px;
}
.pressure-metric__label {
  display: block;
  font-size: 10px;
  line-height: 15px;
  color: #6C6B6E;
  font-weight: 600;
}
.pressure-metric__value {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #181818;
  font-weight: 800;
  margin-top: 3px;
}

/* Source */
.pressure-frame__source {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid #E6E6EC;
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}
.pressure-frame__source-dot {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 999px;
  background: #34A853;
}
.pressure-frame__source-main {
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  color: #32302C;
  overflow-wrap: anywhere;
}
.pressure-frame__source-meta {
  display: block;
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
  color: #6C6B6E;
  margin-top: 2px;
}

.pressure-frame__status-confirm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 11px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(52, 168, 83, 0.14);
  color: #237A3B;
  font-size: 11px;
  line-height: 16px;
  font-weight: 700;
  width: max-content;
}

/* Mobile */

@media (min-width: 1100px) {
  
}
@media (max-width: 1099px) {
  .pressure-container { padding: 64px 20px 80px; }
  #pressure-title { font-size: clamp(38px, 10.2vw, 44px); line-height: 1.02; letter-spacing: -0.042em; max-width: 360px; }
  .pressure-subtitle { font-size: 16px; line-height: 24px; max-width: 350px; margin-top: 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pressure-section * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  
}

/* ── 6 · SECURITY — Você escolhe o que conecta. Nada sai sem confirmação. ── */
/* Mobile-first per spec. Desktop override at @media (min-width: 1100px). */

.security-control-section {
  background: #181818;
  color: #FFFFFF;
  overflow: clip;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.security-control-container {
  padding: 64px 20px 80px;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Header (mobile defaults per spec §3) */
.security-control-header { display: block; }

.security-control-eyebrow {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.50);
  margin: 0;
  text-transform: none;
}

.security-control-section h2#security-control-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(38px, 10.2vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.042em;
  font-weight: 800;
  color: #FFFFFF;
  max-width: 370px;
  margin: 15px 0 0;
  text-wrap: balance;
}
.security-control-section h2#security-control-title span {
  display: inline;
}

.security-control-subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  max-width: 360px;
  margin: 18px 0 0;
}

.security-control-trust {
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.50);
  max-width: 355px;
  margin: 14px 0 0;
}

.security-control-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: 14px;
  padding: 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  color: #FFFFFF;
  background: transparent;
  border: 0;
  text-decoration: none;
}
.security-control-link:hover,
.security-control-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.security-control-link:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 4px;
}
.security-control-link-arrow {
  display: inline-block;
  transition: transform 150ms ease-out;
}
.security-control-link:hover .security-control-link-arrow {
  transform: translateX(4px);
}

/* Footer placement: link sits below the facts grid */
.security-control-link--footer {
  margin-top: 40px;
}

/* Layout: mobile flex column with proof order:1, facts order:2 */
.security-control-layout {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}

.security-control-proof {
  order: 1;
  width: 100%;
  padding: 0;
}

/* Product frame (mobile) */
.security-product-frame {
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: 46px auto auto;
  background: #FFFFFF;
  border: 1px solid #E6E6EC;
  border-radius: 20px;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  color: #181818;
}

/* Topbar (mobile) */
.security-product-topbar {
  height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E6E6EC;
  background: #FFFFFF;
}
.security-product-topbar-title {
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  color: #32302C;
}
.security-product-topbar-status {
  font-size: 10px;
  line-height: 15px;
  font-weight: 600;
  color: #6C6B6E;
  text-align: right;
  max-width: 138px;
}

/* Body — display block on mobile so connections + workflow stack vertically */
.security-product-body {
  display: block;
  min-height: 0;
}

/* Connections panel (mobile) */
.security-connections-panel {
  padding: 14px;
  background: #F5F5F5;
  border-right: 0;
  border-bottom: 1px solid #E6E6EC;
}
.security-connections-heading {
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0;
}
.security-connections-list {
  display: block;
  margin-top: 10px;
  border-top: 1px solid #E6E6EC;
}
.security-connection-row {
  min-height: 42px;
  padding: 8px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid #E6E6EC;
}
.security-connection-text {
  display: grid;
  min-width: 0;
}
.security-connection-name {
  font-size: 11px;
  line-height: 17px;
  font-weight: 700;
  color: #181818;
}
.security-connection-status {
  font-size: 9px;
  line-height: 14px;
  font-weight: 700;
  margin-top: 1px;
}
.security-connection-status--ok { color: #237A3B; }
.security-connection-status--off { color: #6C6B6E; }
.security-connection-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  justify-self: end;
}
.security-connection-dot--ok { background: #34A853; }
.security-connection-dot--off { background: rgba(24, 24, 24, 0.22); }
.security-connections-micro {
  font-size: 10px;
  line-height: 15px;
  font-weight: 500;
  color: #6C6B6E;
  margin: 10px 0 0;
}

/* Workflow panel (mobile) */
.security-workflow-panel {
  padding: 14px;
  background: #FFFFFF;
}
.security-workflow-question {
  width: calc(100% - 26px);
  margin-left: auto;
  padding: 12px 14px;
  background: #181818;
  color: #FFFFFF;
  border-radius: 15px 15px 4px 15px;
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
}

/* Answer (mobile) */
.security-workflow-answer {
  margin-top: 11px;
  padding: 13px;
  background: #FFFFFF;
  border: 1px solid rgba(52, 168, 83, 0.30);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(24, 24, 24, 0.06);
}
.security-workflow-answer-eyebrow {
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: #6C6B6E;
  display: block;
}
.security-workflow-answer-main {
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  color: #181818;
  margin: 5px 0 0;
  overflow-wrap: anywhere;
}
.security-workflow-source {
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid #E6E6EC;
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 7px;
}
.security-workflow-source-dot {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 999px;
  background: #34A853;
}
.security-workflow-source-text {
  font-size: 10px;
  line-height: 16px;
  font-weight: 600;
  color: #55534E;
  overflow-wrap: anywhere;
  white-space: normal;
  text-overflow: clip;
}

/* Review panel (mobile) */
.security-workflow-review {
  margin-top: 11px;
  padding: 11px;
  background: #F5F5F5;
  border: 1px solid #E6E6EC;
  border-radius: 13px;
}
.security-workflow-review-heading {
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0;
}
.security-workflow-review-rows {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}
.security-workflow-review-row {
  min-height: 34px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 18px;
  gap: 7px;
  align-items: center;
}
.security-workflow-review-row--source { min-height: 46px; }
.security-workflow-review-label {
  font-size: 9px;
  line-height: 14px;
  font-weight: 600;
  color: #6C6B6E;
}
.security-workflow-review-value {
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
  color: #181818;
  overflow-wrap: anywhere;
  white-space: normal;
  min-width: 0;
  text-overflow: clip;
}
.security-workflow-review-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(52, 168, 83, 0.14);
  color: #34A853;
  display: grid;
  place-items: center;
}
.security-workflow-review-status {
  display: inline-flex;
  height: 28px;
  align-items: center;
  padding: 0 10px;
  margin-top: 9px;
  border-radius: 999px;
  background: rgba(52, 168, 83, 0.14);
  color: #237A3B;
  font-size: 10px;
  font-weight: 700;
}
.security-workflow-review-button {
  height: 42px;
  width: 100%;
  margin-top: 9px;
  border-radius: 999px;
  background: #181818;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}
.security-workflow-review-micro {
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  color: #6C6B6E;
  margin: 6px 0 0;
}

/* WhatsApp handoff strip (mobile) */
.security-handoff-strip {
  padding: 13px 14px;
  border-top: 1px solid #E6E6EC;
  background: #FFFFFF;
  display: block;
}
.security-handoff-title {
  font-size: 11px;
  line-height: 17px;
  font-weight: 800;
  color: #181818;
  margin: 0;
}
.security-handoff-body {
  font-size: 10px;
  line-height: 16px;
  font-weight: 500;
  color: #6C6B6E;
  margin: 4px 0 0;
}

/* Facts (mobile §13) */
.security-control-facts {
  order: 2;
  display: block;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  border-right: 0;
}
.security-control-fact {
  padding: 23px 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.security-control-fact:last-child {
  border-bottom: 0;
}
.security-control-fact-eyebrow {
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
}
.security-control-fact-title {
  font-size: 16px;
  line-height: 23px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 7px 0 0;
}
.security-control-fact-body {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  margin: 6px 0 0;
  max-width: 350px;
}

/* Reveal (mobile §15) */
.security-product-frame,
.security-workflow-question,
.security-workflow-answer,
.security-workflow-review,
.security-workflow-review-check,
.security-handoff-strip,
.security-connection-row,
.security-control-fact {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}
.security-product-frame { transform: translateY(10px); transition-duration: 280ms; }
.security-workflow-question { transform: translateY(5px); transition-duration: 190ms; }
.security-workflow-review-check { transform: none; transition-duration: 120ms; }

.security-control-section.is-revealed .security-product-frame { opacity: 1; transform: translateY(0); }
.security-control-section.is-revealed .security-connection-row:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 30ms; }
.security-control-section.is-revealed .security-connection-row:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 75ms; }
.security-control-section.is-revealed .security-connection-row:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 120ms; }
.security-control-section.is-revealed .security-workflow-question { opacity: 1; transform: translateY(0); transition-delay: 100ms; }
.security-control-section.is-revealed .security-workflow-answer { opacity: 1; transform: translateY(0); transition-delay: 170ms; transition-duration: 220ms; }
.security-control-section.is-revealed .security-workflow-review { opacity: 1; transform: translateY(0); transition-delay: 240ms; transition-duration: 220ms; }
.security-control-section.is-revealed .security-workflow-review-row:nth-child(1) .security-workflow-review-check { opacity: 1; transition-delay: 360ms; }
.security-control-section.is-revealed .security-workflow-review-row:nth-child(2) .security-workflow-review-check { opacity: 1; transition-delay: 405ms; }
.security-control-section.is-revealed .security-workflow-review-row:nth-child(3) .security-workflow-review-check { opacity: 1; transition-delay: 450ms; }
.security-control-section.is-revealed .security-workflow-review-row:nth-child(4) .security-workflow-review-check { opacity: 1; transition-delay: 495ms; }
.security-control-section.is-revealed .security-handoff-strip { opacity: 1; transform: translateY(0); transition-delay: 360ms; transition-duration: 180ms; }
.security-control-section.is-revealed .security-control-fact { opacity: 1; transform: translateY(0); }
.security-control-section.is-revealed .security-control-fact:nth-child(1) { transition-delay: 0ms; }
.security-control-section.is-revealed .security-control-fact:nth-child(2) { transition-delay: 80ms; }
.security-control-section.is-revealed .security-control-fact:nth-child(3) { transition-delay: 160ms; }
.security-control-section.is-revealed .security-control-fact:nth-child(4) { transition-delay: 240ms; }

/* Desktop (≥1100px) — wide horizontal layout. Per spec: must NOT compress mobile,
   must NOT scale down product frame, must NOT use 2-col at narrow widths. */
@media (min-width: 1100px) {
  .security-control-container {
    padding: 104px 48px 112px;
  }

  /* Header */
  .security-control-header {
    max-width: 880px;
  }
  .security-control-section h2#security-control-title {
    font-size: clamp(52px, 4.2vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 820px;
    margin-top: 16px;
  }
  .security-control-section h2#security-control-title span {
    display: inline;
  }
  .security-control-subtitle {
    font-size: 20px;
    line-height: 30px;
    max-width: 760px;
    margin-top: 22px;
  }
  .security-control-trust {
    font-size: 15px;
    line-height: 22px;
    max-width: 760px;
    margin-top: 16px;
  }
  .security-control-link {
    font-size: 15px;
    line-height: 22px;
    margin-top: 22px;
  }
  .security-control-link--footer {
    margin-top: 48px;
  }

  /* Layout — facts as 2×2 grid (proof removed) */
  .security-control-layout {
    display: block;
    margin-top: 72px;
  }
  .security-control-facts {
    order: 0;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    border-right: 0;
    max-width: 1120px;
  }
  .security-control-fact {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
  .security-control-fact:nth-child(odd) {
    padding-right: 56px;
  }
  .security-control-fact:nth-child(even) {
    padding-left: 56px;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }
  .security-control-fact:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  /* Product frame larger interior on desktop (no scaling, real sizes) */
  .security-product-frame {
    grid-template-rows: 56px auto auto;
    border-radius: 24px;
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.34);
  }
  .security-product-topbar { height: 56px; padding: 0 22px; }
  .security-product-topbar-title { font-size: 14px; line-height: 20px; }
  .security-product-topbar-status { font-size: 12px; line-height: 18px; max-width: 220px; }
  .security-product-body {
    display: grid;
    grid-template-columns: 232px minmax(0, 1fr);
  }
  .security-connections-panel {
    padding: 22px;
    border-right: 1px solid #E6E6EC;
    border-bottom: 0;
  }
  .security-connections-heading { font-size: 10px; line-height: 15px; }
  .security-connection-row { min-height: 52px; padding: 12px 0; }
  .security-connection-name { font-size: 13px; line-height: 19px; }
  .security-connection-status { font-size: 11px; line-height: 16px; }
  .security-connections-micro { font-size: 11px; line-height: 17px; margin-top: 16px; }

  .security-workflow-panel { padding: 22px; }
  .security-workflow-question {
    width: min(420px, 84%);
    padding: 14px 18px;
    font-size: 14px;
    line-height: 21px;
  }
  .security-workflow-answer { padding: 18px; border-radius: 16px; margin-top: 16px; }
  .security-workflow-answer-eyebrow { font-size: 10px; line-height: 15px; }
  .security-workflow-answer-main { font-size: 16px; line-height: 23px; margin-top: 7px; }
  .security-workflow-source { margin-top: 12px; padding-top: 11px; }
  .security-workflow-source-text { font-size: 11px; line-height: 17px; }

  .security-workflow-review { padding: 16px; border-radius: 14px; margin-top: 16px; }
  .security-workflow-review-heading { font-size: 10px; line-height: 15px; }
  .security-workflow-review-rows { gap: 8px; margin-top: 11px; }
  .security-workflow-review-row { min-height: 36px; grid-template-columns: 92px minmax(0, 1fr) 20px; gap: 10px; }
  .security-workflow-review-row--source { min-height: 36px; }
  .security-workflow-review-label { font-size: 11px; line-height: 16px; }
  .security-workflow-review-value { font-size: 12px; line-height: 18px; }
  .security-workflow-review-check { width: 20px; height: 20px; }
  .security-workflow-review-status { height: 30px; font-size: 11px; padding: 0 12px; margin-top: 12px; }
  .security-workflow-review-button { height: 46px; font-size: 13px; margin-top: 12px; }
  .security-workflow-review-micro { font-size: 11px; line-height: 17px; margin-top: 8px; }

  .security-handoff-strip { padding: 18px 22px; }
  .security-handoff-title { font-size: 13px; line-height: 19px; }
  .security-handoff-body { font-size: 12px; line-height: 19px; margin-top: 5px; }

  /* Facts on desktop — vertical list with hairlines, same treatment but breathy */
  .security-control-facts {
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    border-right: 0;
  }
  .security-control-fact { padding: 26px 0; }
  .security-control-fact-eyebrow { font-size: 11px; line-height: 16px; }
  .security-control-fact-title { font-size: 18px; line-height: 25px; margin-top: 9px; }
  .security-control-fact-body { font-size: 14px; line-height: 22px; margin-top: 8px; max-width: none; }
}

/* Tablet ≤1099px keeps mobile vertical layout per §1; only container padding scales */
@media (min-width: 768px) and (max-width: 1099px) {
  .security-control-container {
    padding: 80px 32px 96px;
  }
  .security-control-section h2#security-control-title {
    font-size: clamp(40px, 5.8vw, 56px);
    max-width: 560px;
  }
  .security-control-subtitle { max-width: 560px; font-size: 17px; line-height: 25px; }
  .security-control-trust { max-width: 560px; font-size: 14px; line-height: 21px; }
  .security-product-frame { max-width: 640px; margin: 0 auto; }
  .security-control-fact-body { max-width: 560px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #security *,
  #security {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  #security .security-product-frame,
  #security .security-connection-row,
  #security .security-workflow-question,
  #security .security-workflow-answer,
  #security .security-workflow-review,
  #security .security-workflow-review-check,
  #security .security-handoff-strip,
  #security .security-control-fact {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── 8 · FAQ ── */
.s-faq {
  padding: var(--allybi-section-py) 0;
}

.s-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.s-faq__header h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--allybi-text-strongest);
}

.s-faq .allybi-accordion {
  max-width: 680px;
  margin: 0 auto;
}

.allybi-accordion__item {
  border-bottom: 1px solid var(--allybi-border-default);
}

.s-faq__more {
  text-align: center;
  margin-top: 40px;
}

/* ── 10 · Large button ── */
.allybi-btn--lg {
  height: 52px;
  padding: 0 32px;
  font-size: 15px;
  border-radius: 14px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .s-hero__grid { column-gap: 48px; row-gap: 0; }
}

@media (max-width: 1024px) {
  .s-hero__grid { grid-template-columns: 1fr; column-gap: 32px; row-gap: 0; align-items: start; }
  .s-hero__visual, .s-hero__copy-col { order: 2; padding-bottom: 0; }
  .s-hero__copy-col .s-hero__sub { max-width: 620px; }
  .s-hero { min-height: auto; padding: 112px 0 56px; }
  .s-hero__h1 { max-width: 100%; margin-bottom: 24px; }
  .hero-scene { max-width: 520px; margin: 0 auto; }
  .s-workflow__flow { flex-wrap: wrap; gap: 12px; }
  .s-workflow__flow-step { min-width: 120px; }
  .s-workflow__flow-arrow { display: none; }
  .s-cases__cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .s-pain .allybi-grid-3 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .s-workflow__flow-step { min-width: 100%; max-width: 100%; }
  .s-workflow__cta { flex-direction: column; align-items: center; }
  .s-workflow__cta .allybi-btn { width: 100%; max-width: 280px; justify-content: center; }
  .s-tools__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .s-hero { padding: 96px 0 40px; }
  .s-hero__h1 { font-size: clamp(28px, 8vw, 36px); line-height: 1.05; margin-bottom: 20px; }
  .s-hero__sub { font-size: 15px; margin-bottom: 28px; }
  .s-hero__eyebrow { font-size: 11px; margin-bottom: 16px; padding: 5px 12px 5px 8px; }
  .s-hero__ctas { flex-direction: column; gap: 14px; align-items: stretch; }
  .s-hero__ctas .allybi-btn { width: 100%; justify-content: center; }
  .s-hero__link { width: 100%; justify-content: center; }
  .s-hero__proof { gap: 8px; }
  .s-hero__chip { font-size: 11px; padding: 4px 8px; background: var(--allybi-bg-alt-1); border-radius: var(--allybi-radius-full); }

  .s-workflow__header { margin-bottom: 40px; }

  .s-cases__tab { flex: 1; text-align: center; padding: 10px 8px; font-size: 13px; min-height: 44px; }

  .allybi-btn--lg { height: 48px; padding: 0 28px; font-size: 15px; }
  .s-cta__ctas { flex-direction: column; align-items: center; }
  .s-cta__ctas .allybi-btn { width: 100%; max-width: 280px; justify-content: center; }

  .hero-scene__action-chips { flex-wrap: wrap; }
}

@media (max-width: 390px) {
  .s-hero { padding: 88px 0 36px; }
  .s-hero__h1 { font-size: 26px; }
  .s-hero__sub { font-size: 14px; }
  .s-pain__text { padding: 20px; }
  .s-pain__illustration { height: 200px; }
  .s-cases__card { padding: 24px; }
}

/* ── PRICING — 30 dias grátis. Depois R$170/mês. ── */
.home-pricing-section {
  background: #F1F0EF;
  border-top: 1px solid #E6E6EC;
  border-bottom: 1px solid #E6E6EC;
  overflow: clip;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.home-pricing-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 104px 48px 112px;
}

@media (min-width: 1100px) and (max-width: 1439px) {
  .home-pricing-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.home-pricing-content {
  display: block;
}
@media (min-width: 1050px) {
  .home-pricing-content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
    gap: 80px;
    align-items: start;
  }
}
@media (min-width: 1050px) and (max-width: 1240px) {
  .home-pricing-content {
    gap: 56px;
    grid-template-columns: minmax(0, 1fr) 420px;
  }
}

/* Copy column */
.home-pricing-copy { min-width: 0; }

.home-pricing-eyebrow {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0 0 16px;
  text-transform: none;
}

.home-pricing-section h2#home-pricing-title {
  font-size: clamp(54px, 4.5vw, 70px);
  line-height: 1.01;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #181818;
  max-width: 720px;
  margin: 0;
  text-wrap: balance;
}

.home-pricing-subtitle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #55534E;
  max-width: 650px;
  margin: 22px 0 0;
}

.home-pricing-path-heading {
  font-size: 24px;
  line-height: 31px;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #181818;
  margin: 48px 0 0;
}

.home-pricing-path {
  position: relative;
  margin: 24px 0 0;
  padding: 0 0 0 30px;
  list-style: none;
}
.home-pricing-path::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(24, 24, 24, 0.18);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 520ms ease-out 120ms;
}
.home-pricing-section.is-revealed .home-pricing-path::before { transform: scaleY(1); }

.home-pricing-step {
  position: relative;
  padding: 0 0 24px;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}
.home-pricing-step:last-child { padding-bottom: 0; }
.home-pricing-step-node {
  position: absolute;
  left: -30px;
  top: 5px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 2px solid #181818;
  box-sizing: border-box;
}
.home-pricing-step-title {
  font-size: 15px;
  line-height: 21px;
  font-weight: 800;
  color: #181818;
  margin: 0;
}
.home-pricing-step-body {
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #55534E;
  max-width: 560px;
  margin: 3px 0 0;
}

.home-pricing-section.is-revealed .home-pricing-step:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 300ms; }
.home-pricing-section.is-revealed .home-pricing-step:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 365ms; }
.home-pricing-section.is-revealed .home-pricing-step:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 430ms; }
.home-pricing-section.is-revealed .home-pricing-step:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 495ms; }
.home-pricing-section.is-revealed .home-pricing-step:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 560ms; }

.home-pricing-details-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  color: #181818;
  text-decoration: none;
  transition: color 150ms ease-out;
}
.home-pricing-details-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.home-pricing-details-link:focus-visible {
  outline: 2px solid #181818;
  outline-offset: 4px;
  border-radius: 2px;
}
.home-pricing-details-arrow {
  display: inline-block;
  transition: transform 150ms ease-out;
}
.home-pricing-details-link:hover .home-pricing-details-arrow { transform: translateX(4px); }

/* Panel */
.home-pricing-panel {
  width: 100%;
  max-width: 470px;
  justify-self: end;
  align-self: center;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid #E6E6EC;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(24, 24, 24, 0.09);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 340ms ease-out 100ms, transform 340ms ease-out 100ms;
  box-sizing: border-box;
}
.home-pricing-section.is-revealed .home-pricing-panel { opacity: 1; transform: translateY(0); }

.home-pricing-panel-badge {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(52, 168, 83, 0.14);
  color: #237A3B;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 180ms ease-out 250ms;
}
.home-pricing-section.is-revealed .home-pricing-panel-badge { opacity: 1; }

.home-pricing-panel-title {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #181818;
  margin: 20px 0 0;
  text-wrap: balance;
}

.home-pricing-panel-priceline {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #55534E;
  margin: 10px 0 0;
}

.home-pricing-panel-cta {
  width: 100%;
  height: 54px;
  margin-top: 24px;
  border-radius: 999px;
  background: #181818;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition:
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    background-color 150ms ease-out;
}
.home-pricing-panel-cta:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(24, 24, 24, 0.14);
}
.home-pricing-panel-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(24, 24, 24, 0.10);
}
.home-pricing-panel-cta:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: -4px;
}

.home-pricing-panel-micro {
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
  color: #6C6B6E;
  text-align: center;
  margin: 10px 0 0;
}

/* Groups */
.home-pricing-panel-groups {
  margin-top: 28px;
  border-top: 1px solid #E6E6EC;
}
.home-pricing-panel-group {
  display: grid;
  grid-template-columns: 20px 92px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid #E6E6EC;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 200ms ease-out, transform 200ms ease-out;
}
.home-pricing-section.is-revealed .home-pricing-panel-group:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.home-pricing-section.is-revealed .home-pricing-panel-group:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 555ms; }
.home-pricing-section.is-revealed .home-pricing-panel-group:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 610ms; }
.home-pricing-section.is-revealed .home-pricing-panel-group:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 665ms; }

.home-pricing-panel-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(52, 168, 83, 0.14);
  color: #34A853;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.home-pricing-panel-group-label {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  color: #6C6B6E;
}
.home-pricing-panel-group-value {
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  color: #32302C;
}

/* Tablet (768–1049px) */
@media (max-width: 1049px) {
  .home-pricing-container { padding: 80px 32px 88px; }
  .home-pricing-content { display: flex; flex-direction: column; }
  .home-pricing-copy { order: 1; display: contents; }
  .home-pricing-eyebrow { order: 1; }
  .home-pricing-section h2#home-pricing-title { order: 2; }
  .home-pricing-subtitle { order: 3; }
  .home-pricing-panel { order: 4; justify-self: start; max-width: 560px; margin-top: 40px; }
  .home-pricing-path-heading { order: 5; }
  .home-pricing-path { order: 6; }
  .home-pricing-details-link { order: 7; }
}

/* Mobile (<768px) */
@media (max-width: 767px) {
  .home-pricing-container { padding: 64px 20px 80px; }
  .home-pricing-section h2#home-pricing-title {
    font-size: clamp(40px, 10.5vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.042em;
    font-weight: 800;
    max-width: 360px;
  }
  .home-pricing-subtitle {
    font-size: 16px;
    line-height: 24px;
    max-width: 350px;
    margin-top: 18px;
  }
  .home-pricing-panel {
    width: 100%;
    max-width: none;
    margin-top: 36px;
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 18px 52px rgba(24, 24, 24, 0.08);
  }
  .home-pricing-panel-badge { height: 30px; }
  .home-pricing-panel-title {
    font-size: 28px;
    line-height: 34px;
    margin-top: 18px;
  }
  .home-pricing-panel-priceline { font-size: 15px; line-height: 22px; }
  .home-pricing-panel-cta { height: 52px; margin-top: 22px; }
  .home-pricing-panel-groups { margin-top: 24px; }
  .home-pricing-panel-group {
    grid-template-columns: 18px 82px minmax(0, 1fr);
    gap: 9px;
    padding: 15px 0;
  }
  .home-pricing-panel-group-label { font-size: 11px; line-height: 17px; }
  .home-pricing-panel-group-value { font-size: 12px; line-height: 19px; }
  .home-pricing-path-heading {
    font-size: 24px;
    line-height: 30px;
    margin-top: 48px;
  }
  .home-pricing-path { padding-left: 28px; }
  .home-pricing-details-link { margin-top: 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #home-integrations-flow *,
  #home-pricing * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  
  #home-pricing .home-pricing-path::before {
    transform: scaleY(1) !important;
  }
}

/* Final CTA micro */
.s-cta__micro {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* Mobile (≤480) — primary full-width, secondary as text link; prevent hero overflow */
@media (max-width: 480px) {
  .s-hero { padding: 96px 0 56px; }
  .s-hero__text,
  .s-hero__h1,
  .s-hero__sub,
  .s-hero__ctas,
  .s-hero__pricing-line,
  .s-hero__proof {
    max-width: 100%;
    min-width: 0;
  }
  .s-hero__ctas {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .s-hero__ctas .allybi-btn--primary {
    width: 100%;
    justify-content: center;
  }
  .s-hero__ctas .allybi-btn--secondary {
    background: transparent;
    border: none;
    padding: 4px;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--allybi-text-strongest);
    width: auto;
    align-self: center;
  }
  .s-hero__h1 { font-size: 30px; line-height: 1.08; }
  .s-hero__proof { gap: 8px; }
  .s-hero__chip { font-size: 11px; }
}

/* ════════════════════════════════════════════════════════════════════
   FAQ + FINAL CTA — mirror of pricing.css (pricing-faq-*, pricing-final-cta-*)
   so the home page matches the rest of the site.
   ════════════════════════════════════════════════════════════════════ */
.home-faq-section {
  background: #FFFFFF;
  border-bottom: 1px solid #E6E6EC;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
.home-faq-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 64px 20px 80px;
}
.home-faq-header { max-width: 700px; }
.home-faq-eyebrow {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0;
  text-transform: none;
}
.home-faq-section h2#home-faq-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: -0.042em;
  font-weight: 800;
  color: #181818;
  margin: 17px 0 0;
  text-wrap: balance;
}
.home-faq-list {
  margin-top: 36px;
  border-top: 1px solid rgba(24, 24, 24, 0.16);
}
.home-faq-item { border-bottom: 1px solid rgba(24, 24, 24, 0.16); }
.home-faq-trigger {
  width: 100%;
  min-height: 64px;
  padding: 17px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  background: transparent;
  border: 0;
  font-size: 16px;
  line-height: 23px;
  font-weight: 800;
  color: #181818;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}
.home-faq-trigger:focus-visible {
  outline: 2px solid #181818;
  outline-offset: 4px;
  border-radius: 4px;
}
.home-faq-icon {
  width: 20px;
  height: 20px;
  color: #181818;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease-out;
}
.home-faq-trigger[aria-expanded="true"] .home-faq-icon { transform: rotate(45deg); }
.home-faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 180ms ease-out, opacity 180ms ease-out;
}
.home-faq-trigger[aria-expanded="true"] + .home-faq-answer {
  max-height: 600px;
  opacity: 1;
}
.home-faq-answer p {
  margin: 0;
  padding: 0 0 22px;
  font-size: 14px;
  line-height: 22px;
  color: #55534E;
}
.home-faq-more {
  text-align: center;
  margin-top: 40px;
}
.home-faq-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #181818;
  text-decoration: none;
  border-bottom: 1px solid rgba(24, 24, 24, 0.32);
  padding: 4px 0;
}
.home-faq-more-link:hover { border-bottom-color: #181818; }
@media (min-width: 1100px) {
  .home-faq-container { padding: 96px 48px 104px; }
  .home-faq-section h2#home-faq-title {
    font-size: clamp(50px, 4.2vw, 64px);
    line-height: 1.01;
    letter-spacing: -0.045em;
  }
  .home-faq-list { margin-top: 48px; }
  .home-faq-trigger {
    min-height: 72px;
    padding: 20px 0;
    gap: 20px;
    font-size: 17px;
    line-height: 24px;
  }
  .home-faq-icon { width: 24px; height: 24px; }
  .home-faq-answer p {
    padding: 0 48px 24px 0;
    font-size: 15px;
    line-height: 24px;
  }
}

.home-final-cta-section {
  background: #181818;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
.home-final-cta-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 20px 80px;
  text-align: center;
}
.home-final-cta-eyebrow {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 auto;
  text-transform: none;
}
.home-final-cta-section h2#home-final-cta-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: -0.042em;
  font-weight: 800;
  color: #FFFFFF;
  margin: 17px 0 0;
  text-wrap: balance;
}
.home-final-cta-subtitle {
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.66);
  max-width: 720px;
  margin: 22px auto 0;
}
.home-final-cta-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}
.home-final-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #181818;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 150ms ease-out;
}
.home-final-cta-primary:hover { background: #F5F5F5; }
.home-final-cta-primary:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 4px;
  border-radius: 999px;
}
.home-final-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  background: transparent;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.home-final-cta-secondary:hover { text-decoration: underline; text-underline-offset: 5px; }
.home-final-cta-secondary:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 4px;
  border-radius: 4px;
}
.home-final-cta-trust {
  font-size: 13px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.52);
  margin: 24px 0 0;
}
.home-final-cta-micro {
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.42);
  margin: 8px 0 0;
}
@media (min-width: 1100px) {
  .home-final-cta-container { padding: 96px 48px 104px; }
  .home-final-cta-section h2#home-final-cta-title {
    font-size: clamp(52px, 4.5vw, 68px);
    line-height: 1.01;
    letter-spacing: -0.045em;
  }
  .home-final-cta-subtitle { font-size: 19px; line-height: 29px; }
  .home-final-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
  }
  .home-final-cta-primary { width: auto; height: 56px; padding: 0 28px; }
  .home-final-cta-secondary { width: auto; height: 56px; padding: 0 18px; }
}

/* ════════════════════════════════════════════════════════════════════
   HOMEPAGE PRODUCT IMAGES - integration of /assets/landing-shots/
   Spec §§5, 7-13, 14-20, 21-24, 27, 30, 31
   ════════════════════════════════════════════════════════════════════ */

/* §5 base rendering rule for every product shot */
.product-shot-picture {
  display: block;
  width: 100%;
}
.product-shot-picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  border: 0;
  background: transparent;
}

/* §7 HERO image (the picture replaces the old hero-product-demo) */
.home-hero-proof.homepage-product-images {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}
.home-hero-proof.homepage-product-images .product-shot-picture {
  width: 100%;
  max-width: 560px;
}
.home-hero-proof.homepage-product-images img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 28px 64px -28px rgba(24, 24, 24, 0.34), 0 2px 8px rgba(24, 24, 24, 0.06);
}

@media (min-width: 768px) and (max-width: 1099px) {
  .home-hero-proof.homepage-product-images .product-shot-picture { max-width: 460px; }
}
@media (min-width: 1400px) {
  .home-hero-proof.homepage-product-images .product-shot-picture { max-width: 600px; }
}
.home-hero-proof.homepage-product-images {
  animation: hero-image-enter 320ms ease-out 90ms both;
}
@keyframes hero-image-enter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* §§8-13 FLOW showcase */
.workflow-section.homepage-product-images {
  background: #181818;
  color: #FFFFFF;
  overflow: clip;
}
.workflow-section.homepage-product-images .workflow-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 72px 20px 88px;
}
.workflow-section.homepage-product-images .workflow-header { max-width: 760px; }
.workflow-section.homepage-product-images .workflow-eyebrow {
  font-size: 11px;
  line-height: 17px;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 14px;
  text-transform: none;
}
.workflow-section.homepage-product-images h2#workflow-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(36px, 10vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.042em;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  text-wrap: balance;
  max-width: 720px;
}
.workflow-section.homepage-product-images .workflow-subtitle {
  font-size: 16px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.68);
  margin: 18px 0 0;
  max-width: 680px;
}
.workflow-section.homepage-product-images .workflow-trust { display: none; }

/* Desktop showcase */
.flow-showcase { display: none; }
@media (min-width: 1100px) {
  .workflow-section.homepage-product-images .workflow-container { padding: 104px 48px 112px; }
  .workflow-section.homepage-product-images h2#workflow-title {
    font-size: clamp(54px, 4.5vw, 68px);
    line-height: 1.01;
    letter-spacing: -0.045em;
  }
  .workflow-section.homepage-product-images .workflow-subtitle {
    font-size: 20px;
    line-height: 30px;
    margin-top: 22px;
  }
  .flow-mobile { display: none; }
  /* Scroll-pinned showcase: the section header scrolls away, then the card
     (controls + stage) locks in the viewport and scroll position drives the
     active step (JS in homepage-tools-workflow.js maps track progress → step).
     Track height = 5 steps × ~1 viewport of scroll + 1 viewport of pin room.
     The card is centered in the space BELOW the sticky site nav, so no
     half-viewport void opens (the reason the earlier centered version, which
     kept the section header in view, was removed). */
  .flow-scrolltrack {
    position: relative;
    height: 600svh;
    margin-top: 48px;
  }
  .flow-showcase {
    position: sticky;
    top: var(--site-header-height, 64px);
    height: calc(100svh - var(--site-header-height, 64px));
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    align-content: center;
  }
  .flow-controls {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }
  .flow-control {
    position: relative;
    display: block;
    width: 100%;
    min-height: 112px;
    padding: 18px 8px 18px 28px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: rgba(255, 255, 255, 0.44);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
  }
  .flow-control:focus-visible { outline: 2px solid #FFFFFF; outline-offset: 4px; }
  .flow-control.is-active { color: #FFFFFF; }
  .flow-control__indicator {
    position: absolute;
    left: -1px;
    top: 17px;
    bottom: 17px;
    width: 2px;
    background: #FFFFFF;
    border-radius: 999px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .flow-control.is-active .flow-control__indicator { transform: scaleY(1); }
  .flow-control__label {
    display: block;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.10em;
    font-weight: 700;
  }
  .flow-control__title {
    display: block;
    font-size: 17px;
    line-height: 23px;
    font-weight: 800;
    margin-top: 5px;
  }
  .flow-control__desc {
    display: block;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.46);
    margin-top: 5px;
    max-width: 230px;
  }
  .flow-control.is-active .flow-control__desc { color: rgba(255, 255, 255, 0.68); }
  .flow-stage {
    min-width: 0;
    position: relative;
    aspect-ratio: 940 / 580;
  }
  .flow-stage__shot {
    position: absolute;
    inset: 0;
    width: min(100%, 940px);
    margin-left: auto;
    margin-right: 0;
    opacity: 0;
    transition: opacity 110ms ease-out, transform 110ms ease-out;
    pointer-events: none;
    transform: translateY(-5px);
    border-radius: 18px;
    overflow: hidden;
    background: #181818;
  }
  .flow-stage__shot img { border-radius: inherit; }
  .flow-stage__shot[data-active="true"] {
    opacity: 1;
    transform: translateY(0);
    animation: flow-stage-enter 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    pointer-events: auto;
  }
  @keyframes flow-stage-enter {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* Reduced motion: disable the scrollytelling pin so tabs are the only nav. */
@media (min-width: 1100px) and (prefers-reduced-motion: reduce) {
  .flow-scrolltrack { height: auto; }
  .flow-showcase { position: static; height: auto; align-items: start; }
}

/* Flow mobile (5 articles vertical) */
.flow-mobile {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.flow-m-story {
  padding: 34px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.flow-m-story__num {
  display: block;
  font-size: 10px;
  letter-spacing: 0.10em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.48);
}
.flow-m-story__title {
  font-size: 28px;
  line-height: 33px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 8px 0 0;
}
.flow-m-story__desc {
  font-size: 15px;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.64);
  margin: 10px 0 0;
}
.flow-m-story__shot {
  width: min(100%, 350px);
  margin: 23px auto 0;
  aspect-ratio: 350 / 440;
  border-radius: 14px;
  overflow: hidden;
  background: #181818;
}
.flow-m-story__shot img { aspect-ratio: 350 / 440; border-radius: inherit; }

/* §§14-20 USE CASES showcase */
.pressure-section.homepage-product-images {
  background: #FFFFFF;
  overflow: clip;
}
.pressure-section.homepage-product-images .pressure-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 72px 20px 88px;
}
.pressure-section.homepage-product-images .pressure-header { max-width: 760px; }
.pressure-section.homepage-product-images .pressure-eyebrow {
  font-size: 11px;
  line-height: 17px;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0 0 14px;
}
.pressure-section.homepage-product-images h2#pressure-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(36px, 10vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.042em;
  font-weight: 800;
  color: #181818;
  margin: 0;
  text-wrap: balance;
}
.pressure-section.homepage-product-images .pressure-subtitle {
  font-size: 16px;
  line-height: 25px;
  color: #55534E;
  margin: 18px 0 0;
}

.usecase-showcase { display: none; }
@media (min-width: 1100px) {
  .pressure-section.homepage-product-images .pressure-container { padding: 104px 48px 112px; }
  .pressure-section.homepage-product-images h2#pressure-title {
    font-size: clamp(54px, 4.5vw, 68px);
    line-height: 1.01;
    letter-spacing: -0.045em;
  }
  .pressure-section.homepage-product-images .pressure-subtitle {
    font-size: 20px;
    line-height: 30px;
    margin-top: 22px;
  }
  .usecase-mobile { display: none; }
  .usecase-showcase {
    display: grid;
    grid-template-columns: 220px 290px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    margin-top: 58px;
  }
  .usecase-controls {
    border-left: 1px solid rgba(24, 24, 24, 0.16);
  }
  .usecase-control {
    position: relative;
    width: 100%;
    min-height: 122px;
    padding: 20px 8px 20px 28px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(24, 24, 24, 0.14);
    text-align: left;
    color: #8B8985;
    cursor: pointer;
    font-family: inherit;
    display: block;
  }
  .usecase-control:focus-visible { outline: 2px solid #181818; outline-offset: 4px; }
  .usecase-control.is-active { color: #181818; }
  .usecase-control__indicator {
    position: absolute;
    left: -1px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: #181818;
    border-radius: 999px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .usecase-control.is-active .usecase-control__indicator { transform: scaleY(1); }
  .usecase-control__num {
    display: block;
    font-size: 10px;
    letter-spacing: 0.10em;
    font-weight: 700;
  }
  .usecase-control__category {
    display: block;
    font-size: 17px;
    line-height: 23px;
    font-weight: 800;
    margin-top: 7px;
  }
  .usecase-control__moment {
    display: block;
    font-size: 12px;
    line-height: 18px;
    margin-top: 5px;
    color: #6C6B6E;
  }
  .usecase-copies {
    position: relative;
    min-height: 200px;
  }
  .usecase-copy {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(7px);
    transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
  }
  .usecase-copy.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .usecase-copy__title {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: #181818;
    margin: 0;
  }
  .usecase-copy__desc {
    font-size: 15px;
    line-height: 23px;
    color: #55534E;
    margin: 12px 0 0;
    max-width: 290px;
  }
  .usecase-copy__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #181818;
    margin-top: 16px;
    text-decoration: none;
  }
  .usecase-copy__cta:hover { text-decoration: underline; text-underline-offset: 4px; }
  .usecase-stage {
    min-width: 0;
    position: relative;
    aspect-ratio: 720 / 520;
    width: 100%;
    max-width: 580px;
    margin-left: auto;
    margin-right: 0;
  }
  .usecase-stage__shot {
    position: absolute;
    inset: 0;
    width: 100%;
    aspect-ratio: 720 / 520;
    opacity: 0;
    transition: opacity 220ms ease-out, transform 220ms ease-out;
    pointer-events: none;
    transform: translateY(7px);
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
  }
  .usecase-stage__shot img {
    aspect-ratio: 720 / 520;
    border-radius: inherit;
  }
  .usecase-stage__shot[data-active="true"] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Use case tablet (768-1099) */
@media (min-width: 768px) and (max-width: 1099px) {
  .usecase-mobile { display: none; }
  .usecase-showcase {
    display: block;
    margin-top: 38px;
  }
  .usecase-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(24, 24, 24, 0.16);
    border-left: 0;
  }
  .usecase-control {
    position: relative;
    min-height: 92px;
    padding: 16px;
    border-right: 1px solid rgba(24, 24, 24, 0.14);
    border-bottom: 0;
    background: transparent;
    color: #8B8985;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    border-top: 0;
    border-left: 0;
    display: block;
  }
  .usecase-control:focus-visible { outline: 2px solid #181818; outline-offset: 4px; }
  .usecase-control.is-active { color: #181818; }
  .usecase-control__indicator {
    position: absolute;
    left: 16px;
    right: 16px;
    top: auto;
    bottom: -1px;
    height: 2px;
    width: auto;
    background: #181818;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .usecase-control.is-active .usecase-control__indicator { transform: scaleX(1); }
  .usecase-control__num { font-size: 10px; letter-spacing: 0.10em; font-weight: 700; display: block; }
  .usecase-control__category { font-size: 15px; line-height: 21px; font-weight: 800; margin-top: 6px; display: block; }
  .usecase-control__moment { font-size: 11px; line-height: 16px; margin-top: 4px; color: #6C6B6E; display: block; }
  .usecase-copies {
    position: relative;
    margin-top: 24px;
    min-height: 130px;
  }
  .usecase-copy {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 220ms ease-out;
  }
  .usecase-copy.is-active { opacity: 1; }
  .usecase-copy__title { font-size: 26px; line-height: 32px; font-weight: 800; color: #181818; margin: 0; }
  .usecase-copy__desc { font-size: 15px; line-height: 23px; color: #55534E; margin: 10px 0 0; }
  .usecase-copy__cta { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: #181818; margin-top: 14px; text-decoration: none; }
  .usecase-stage {
    position: relative;
    aspect-ratio: 720 / 520;
    margin-top: 34px;
  }
  .usecase-stage__shot {
    position: absolute;
    inset: 0;
    width: min(100%, 720px);
    margin: 0 auto;
    opacity: 0;
    transition: opacity 220ms ease-out;
  }
  .usecase-stage__shot[data-active="true"] { opacity: 1; }
}

/* Use case mobile (3 articles vertical) */
@media (max-width: 767px) {
  .usecase-showcase { display: none; }
}
.usecase-mobile {
  margin-top: 38px;
}
.usecase-m-story {
  padding: 36px 0 46px;
  border-top: 1px solid rgba(24, 24, 24, 0.16);
}
.usecase-m-story:last-child { border-bottom: 1px solid rgba(24, 24, 24, 0.16); }
.usecase-m-story__num {
  display: block;
  font-size: 10px;
  letter-spacing: 0.10em;
  font-weight: 700;
  color: #6C6B6E;
}
.usecase-m-story__category {
  font-size: 15px;
  font-weight: 800;
  color: #181818;
  margin: 6px 0 0;
}
.usecase-m-story__moment {
  font-size: 12px;
  color: #6C6B6E;
  margin: 3px 0 0;
}
.usecase-m-story__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 800;
  color: #181818;
  margin: 12px 0 0;
}
.usecase-m-story__desc {
  font-size: 15px;
  line-height: 23px;
  color: #55534E;
  margin: 10px 0 0;
}
.usecase-m-story__shot {
  width: min(100%, 350px);
  margin: 23px auto 0;
  aspect-ratio: 350 / 430;
}
.usecase-m-story__shot img { aspect-ratio: 350 / 430; }
.usecase-m-story__cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #181818;
  margin-top: 16px;
  text-decoration: none;
}
.usecase-m-story__cta:hover { text-decoration: underline; text-underline-offset: 4px; }

/* §§21-24 INTEGRATION SYSTEM blocks (Outlook + WhatsApp editorial pair) */
.integration-system-blocks {
  margin-top: 24px;
}
.integration-system-block {
  display: block;
  padding: 40px 0 48px;
  border-top: 1px solid rgba(24, 24, 24, 0.16);
  opacity: 0;
  transform: translateY(8px);
}
.integration-system-block:last-child {
  border-bottom: 1px solid rgba(24, 24, 24, 0.16);
}
.integration-system-block.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease-out, transform 260ms ease-out;
}
.integration-system-eyebrow {
  font-size: 11px;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #6C6B6E;
  margin: 0;
  text-transform: uppercase;
}
.integration-system-title {
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #181818;
  margin: 10px 0 0;
}
.integration-system-body {
  font-size: 15px;
  line-height: 23px;
  color: #55534E;
  margin: 12px 0 0;
}
.integration-system-micro {
  font-size: 13px;
  line-height: 20px;
  color: #6C6B6E;
  margin: 16px 0 0;
  font-weight: 700;
}
.integration-system-shot {
  margin-top: 22px;
  width: 100%;
  aspect-ratio: 350 / 500;
}
.integration-system-shot img { aspect-ratio: 350 / 500; border-radius: inherit; }
.integration-system-shot picture {
  width: min(100%, 350px);
  margin: 0 auto;
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

@media (min-width: 1100px) {
  .integration-system-blocks { margin-top: 12px; }
  .integration-system-block {
    display: grid;
    align-items: center;
    gap: 64px;
    padding: 48px 0;
  }
  .integration-system-block--outlook {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  }
  .integration-system-block--whatsapp {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  }
  .integration-system-block--whatsapp .integration-system-shot { order: -1; }
  .integration-system-block .integration-system-copy { align-self: center; }
  .integration-system-title { font-size: 28px; line-height: 35px; }
  .integration-system-body { font-size: 16px; line-height: 25px; }
  .integration-system-shot {
    margin: 0;
    aspect-ratio: auto;
    align-self: center;
  }
  /* Override the global portrait aspect-ratio so the picture matches the
     landscape screenshot — without this the wrapper is much taller than
     the image, throwing off vertical centering and leaving empty space. */
  .integration-system-shot picture {
    aspect-ratio: 720 / 540;
    width: min(100%, 720px);
    margin-left: auto;
    margin-right: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #F4F2EE;
  }
  .integration-system-shot img {
    aspect-ratio: 720 / 540;
    border-radius: inherit;
  }
  .integration-system-block--whatsapp .integration-system-shot picture {
    width: min(100%, 580px);
    margin-left: 0;
    margin-right: auto;
  }
}

/* §27 prevent CLS by reserving aspect-ratio on every picture wrapper.
   Default = mobile portrait (350/460). Per-instance overrides below.
   The hero image follows its natural ratio (1280/1120 ≈ 8/7) so the
   wrapper does not introduce empty space around the actual screenshot. */
.product-shot-picture { aspect-ratio: 350 / 460; }

/* HERO image — picture wrapper + inner <img> share one ratio so the
   wrapper height tracks the image height. */
.hero-product-image,
.hero-product-image img { aspect-ratio: 700 / 920; }
.hero-product-image {
  width: min(100%, 350px);
  margin: 26px auto 0;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.hero-product-image img {
  border-radius: inherit;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .hero-product-image,
  .hero-product-image img { aspect-ratio: 8 / 7; }
  .hero-product-image {
    width: min(100%, 620px);
    margin: 42px auto 0;
  }
}
@media (min-width: 1100px) {
  .hero-product-image,
  .hero-product-image img { aspect-ratio: 8 / 7; }
  .hero-product-image {
    width: min(100%, 540px);
    margin: 0;
  }
}
@media (min-width: 1400px) {
  .hero-product-image { width: min(100%, 600px); }
}

/* §31 reduced motion */
@media (prefers-reduced-motion: reduce) {
  .homepage-product-images *,
  .homepage-product-images *::before,
  .homepage-product-images *::after,
  .integration-flow-section.homepage-product-images *,
  .integration-flow-section.homepage-product-images *::before,
  .integration-flow-section.homepage-product-images *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .home-hero-proof.homepage-product-images,
  .integration-system-block,
  .flow-stage__shot[data-active="true"],
  .usecase-stage__shot[data-active="true"],
  .usecase-copy.is-active {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   RESTORE: integration-product chat mockup + integration-action cards
   + integration-flow-mobile-actions (dropped by an over-broad CSS sweep
   earlier; the markup still uses them).
   ════════════════════════════════════════════════════════════════════ */
.integration-product-proof {
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms ease-out 100ms, transform 320ms ease-out 100ms;
}
.integration-flow-section.is-revealed .integration-product-proof {
  opacity: 1;
  transform: translateY(0);
}
/* Central proof: the Allybi chat message bar with the "Add context" menu open.
   Transparent PNG rendered from the real webapp composer — no card/background. */
.integration-product-shot {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
}
.integration-product-frame {
  width: 100%;
  max-width: 460px;
  border: 1px solid rgba(24, 24, 24, 0.12);
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 24px 70px rgba(24, 24, 24, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #181818;
}
.integration-product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.10);
  background: #FAFAF8;
}
.integration-product-title { font-size: 13px; font-weight: 800; color: #181818; }
.integration-product-status { font-size: 11px; color: #6C6B6E; font-weight: 600; }
.integration-product-content {
  padding: 20px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.integration-product-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.integration-product-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(24, 24, 24, 0.14);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #32302C;
  background: #FFFFFF;
}
.integration-product-question {
  align-self: flex-end;
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px 14px 4px 14px;
  background: #181818;
  color: #FFFFFF;
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease-out 200ms, transform 220ms ease-out 200ms;
}
.integration-flow-section.is-revealed .integration-product-question {
  opacity: 1; transform: translateY(0);
}
.integration-product-answer {
  padding: 14px 16px;
  border: 1px solid rgba(24, 24, 24, 0.10);
  border-radius: 14px;
  background: #F5F5F5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms ease-out 360ms, transform 240ms ease-out 360ms;
}
.integration-flow-section.is-revealed .integration-product-answer {
  opacity: 1; transform: translateY(0);
}
.integration-product-answer-eyebrow {
  font-size: 9px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #6C6B6E;
  text-transform: uppercase;
}
.integration-product-answer-main {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #181818;
  margin: 6px 0 8px;
}
.integration-product-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(52, 168, 83, 0.10);
  font-size: 10px;
  font-weight: 700;
  color: #2A8843;
}
.integration-product-source-dot {
  width: 6px; height: 6px; border-radius: 999px; background: #34A853;
}
.integration-product-source-text { color: #2A8843; }
.integration-product-review {
  padding: 14px 16px;
  border: 1px solid rgba(24, 24, 24, 0.10);
  border-radius: 14px;
  background: #FFFFFF;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms ease-out 520ms, transform 240ms ease-out 520ms;
}
.integration-flow-section.is-revealed .integration-product-review {
  opacity: 1; transform: translateY(0);
}
.integration-product-review-heading {
  font-size: 9px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #6C6B6E;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.integration-product-review-rows { display: grid; gap: 6px; }
.integration-product-review-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 16px;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  line-height: 17px;
}
.integration-product-review-label { font-weight: 700; color: #6C6B6E; }
.integration-product-review-value {
  color: #181818;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.integration-product-review-check {
  color: #34A853;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Integration action rows (small Outlook + WhatsApp status rows).
   Mirrors the source-side list: floating icons (no card), divider lines top/between/bottom. */
.integration-action-column { min-width: 0; }
.integration-action-list {
  margin-top: 14px;
  border-top: 1px solid rgba(24, 24, 24, 0.14);
}
.integration-action-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 82px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(24, 24, 24, 0.14);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms ease-out, transform 240ms ease-out;
}
.integration-flow-section.is-revealed .integration-action-row { opacity: 1; transform: translateY(0); }
.integration-flow-section.is-revealed .integration-action-row:nth-child(1) { transition-delay: 700ms; }
.integration-flow-section.is-revealed .integration-action-row:nth-child(2) { transition-delay: 760ms; }
.integration-action-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.integration-action-icon img,
.integration-action-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}
.integration-action-text { display: flex; flex-direction: column; }
.integration-action-title { font-size: 15px; line-height: 21px; font-weight: 800; color: #181818; letter-spacing: -0.005em; }
.integration-action-desc { font-size: 12px; line-height: 18px; color: #55534E; margin-top: 3px; }
.integration-action-micro { font-size: 11px; line-height: 16px; color: #6C6B6E; margin-top: 4px; font-weight: 700; }

/* Mobile actions */
.integration-flow-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}
.integration-flow-mobile-action {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(24, 24, 24, 0.10);
}
.integration-flow-mobile-action:first-child { border-top: 0; padding-top: 0; }
.integration-flow-mobile-action-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
}
.integration-flow-mobile-action-text { display: flex; flex-direction: column; }
.integration-flow-mobile-action-title { font-size: 14px; font-weight: 800; color: #181818; }
.integration-flow-mobile-action-desc { font-size: 12px; line-height: 18px; color: #55534E; margin-top: 3px; }
.integration-flow-mobile-action-micro { font-size: 11px; line-height: 16px; color: #6C6B6E; margin-top: 4px; font-weight: 700; }
