:root {
  --bronze: #a56c2f;
  --bronze-deep: #82501f;
  --bronze-soft: #f4ece3;
  --green: #0eb26d;
  --green-deep: #078c55;
  --green-soft: #e7f8f1;
  --blue: #2563eb;
  --blue-deep: #1748ba;
  --blue-soft: #e9effe;
  --system-clientes: #2563eb;
  --system-fiscal: #f97316;
  --system-erp: #16a34a;
  --system-saas: #7c3aed;
  --system-agro: #c49a3a;
  --system-integracoes: #0ea5e9;
  --yellow-brasil: #ffcd29;
  --yellow-text: #ffcd29;
  --graphite: #1f2937;
  --ink: #101a26;
  --muted: #647286;
  --line: #dfe5ec;
  --light: #f5f7fa;
  --white: #fff;
  --dark: #0b1218;
  --dark-surface: #101b25;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 18px 55px rgba(31, 41, 55, .09);
  --container: 1220px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  color: var(--graphite);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.brand-word { white-space: nowrap; }
.brand-eco { color: var(--yellow-text); -webkit-text-stroke: .28px #7b5b00; paint-order: stroke fill; text-shadow: 0 1px 0 rgba(77,55,0,.16); }
.brand-x { color: var(--green-deep); }
.brand-ml { color: var(--blue-deep); }
.button .brand-eco, .architecture .brand-eco, .security-band .brand-eco, .manifesto .brand-eco, .final-cta .brand-eco, .site-footer .brand-eco, .module-dark .brand-eco { color: var(--yellow-brasil); -webkit-text-stroke: 0; text-shadow: none; }
.button .brand-x, .architecture .brand-x, .security-band .brand-x, .manifesto .brand-x, .final-cta .brand-x, .site-footer .brand-x, .module-dark .brand-x { color: #45dc9a; }
.button .brand-ml, .architecture .brand-ml, .security-band .brand-ml, .manifesto .brand-ml, .final-cta .brand-ml, .site-footer .brand-ml, .module-dark .brand-ml { color: #8fb0ff; }
.button-ghost .brand-eco, .button-light .brand-eco { color: var(--yellow-text); -webkit-text-stroke: .28px #7b5b00; text-shadow: 0 1px 0 rgba(77,55,0,.16); }
.button-ghost .brand-x, .button-light .brand-x { color: var(--green-deep); }
.button-ghost .brand-ml, .button-light .brand-ml { color: var(--blue-deep); }
.button-dark-ghost .brand-eco { color: var(--yellow-brasil); -webkit-text-stroke: 0; text-shadow: none; }
.button-dark-ghost .brand-x { color: #45dc9a; }
.button-dark-ghost .brand-ml { color: #8fb0ff; }

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .42);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--dark);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(31, 41, 55, .1);
  box-shadow: 0 8px 28px rgba(31, 41, 55, .05);
  backdrop-filter: blur(14px);
}

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img { width: 154px; height: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(17px, 2vw, 30px); font-size: .86rem; font-weight: 650; color: #445165; }
.site-nav > a:not(.button) { position: relative; padding: 12px 0; }
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 100%; bottom: 6px; left: 0;
  height: 2px;
  background: var(--green);
  transition: right .2s ease;
}
.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after { right: 0; }

.nav-toggle { display: none; width: 44px; height: 44px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--graphite); transition: .2s ease; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid var(--graphite);
  border-radius: 10px;
  background: var(--graphite);
  color: var(--white);
  font-size: .91rem;
  font-weight: 720;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--ink); border-color: var(--ink); box-shadow: 0 10px 24px rgba(16, 26, 38, .14); }
.button-small { min-height: 40px; padding: 10px 15px; font-size: .82rem; border-color: var(--blue); background: var(--blue); }
.button-ghost { border-color: #cfd7e2; background: transparent; color: var(--graphite); }
.button-ghost:hover { border-color: var(--graphite); background: var(--white); color: var(--graphite); }

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 146px 0 84px;
  background-color: #fbfcfd;
  background-image:
    linear-gradient(rgba(31, 41, 55, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 41, 55, .035) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0; left: 0;
  height: 105px;
  background: linear-gradient(to top, #fff, rgba(255,255,255,0));
  pointer-events: none;
}

.hero-grid { display: grid; grid-template-columns: minmax(0, .91fr) minmax(520px, 1.09fr); align-items: center; gap: 64px; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 14px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #536176;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow > span { display: inline-block; width: 28px; height: 2px; background: var(--green); }
.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.4rem, 5.1vw, 5rem);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: .99;
}
.hero h1 em { color: var(--green-deep); font-style: normal; }
.hero-lead { max-width: 650px; margin: 29px 0 0; color: #536176; font-size: 1.08rem; line-height: 1.75; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 48px; color: #5b687b; font-size: .72rem; font-weight: 650; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; }
.dot-bronze { background: var(--bronze); }.dot-yellow { background: var(--yellow-brasil); box-shadow: 0 0 0 1px rgba(31,41,55,.12); }.dot-green { background: var(--green); }.dot-blue { background: var(--blue); }

.ecosystem-map {
  position: relative;
  width: 100%;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid #dbe2e9;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 32px 90px rgba(31, 41, 55, .11);
}
.ecosystem-map::before {
  content: "";
  position: absolute; inset: 39px 0 36px;
  background-image:
    linear-gradient(rgba(37, 99, 235, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .04) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-topline, .map-footer {
  position: absolute; z-index: 3; right: 0; left: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px;
  color: #69768a;
  font-family: "JetBrains Mono", ui-monospace, Consolas, monospace;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.map-topline { top: 0; height: 40px; border-bottom: 1px solid #e6ebf0; }
.map-footer { bottom: 0; height: 37px; justify-content: flex-start; gap: 26px; border-top: 1px solid #e6ebf0; }
.map-status { display: inline-flex; align-items: center; gap: 7px; color: var(--green-deep); }
.map-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(14, 178, 109, .12); }
.map-lines { position: absolute; z-index: 1; inset: 39px 0 36px; width: 100%; height: calc(100% - 75px); }
.map-lines path { fill: none; stroke: #c8d1dc; stroke-width: 1.6; stroke-dasharray: 5 7; animation: line-flow 18s linear infinite; }
.map-lines circle { fill: var(--green); stroke: #fff; stroke-width: 3; }

.map-card {
  position: absolute; z-index: 2;
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  width: 154px; min-height: 66px; padding: 12px 12px;
  border: 1px solid #d9e0e8; border-radius: 11px;
  background: #fff; box-shadow: 0 10px 30px rgba(31, 41, 55, .07);
}
.map-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; border-radius: 11px 0 0 11px; background: var(--card-accent, var(--green)); }
.map-code { grid-row: 1 / 3; align-self: stretch; display: flex; align-items: center; margin-right: 10px; padding-right: 10px; border-right: 1px solid #e5eaf0; color: var(--card-accent, var(--green)); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .62rem; font-weight: 800; }
.map-card b { color: var(--graphite); font-size: .83rem; line-height: 1.2; }
.map-card small { color: #748094; font-size: .61rem; line-height: 1.3; }
.map-order { --card-accent: var(--bronze); top: 13%; left: 4%; }
.map-sale { --card-accent: var(--blue); top: 13%; right: 4%; }
.map-client { --card-accent: var(--green); top: 43%; left: 2%; }
.map-stock { --card-accent: var(--bronze); top: 43%; right: 2%; }
.map-fiscal { --card-accent: var(--blue); bottom: 11%; left: 4%; }
.map-data { --card-accent: var(--green); right: 4%; bottom: 11%; }

.map-core {
  position: absolute; z-index: 3; top: 50%; left: 50%;
  width: 132px; height: 132px; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid #cfd8e2; border-radius: 50%; background: #fff;
  box-shadow: 0 18px 50px rgba(31, 41, 55, .12), 0 0 0 14px rgba(14, 178, 109, .045);
}
.map-core::after { content: ""; position: absolute; inset: -22px; border: 1px solid rgba(14,178,109,.09); border-radius: 50%; box-shadow: 0 0 0 9px rgba(14,178,109,.025); }
.map-core > span, .map-core > img, .map-core > strong, .map-core > small { position: relative; z-index: 2; }
.map-core > span, .map-core > strong, .map-core > small { display: none; }
.map-core img { width: 62px; height: 62px; margin: 0; }
.product-orbit { position: absolute; z-index: 1; top: 50%; left: 50%; width: 258px; max-width: none; transform: translate(-50%, -50%); overflow: visible; pointer-events: none; }
.orbit-base, .orbit-arc { fill: none; transform-origin: 130px 130px; }
.orbit-base { stroke: #dbe3ea; stroke-width: 1; stroke-dasharray: 1 2; }
.orbit-arc { stroke-width: 5; stroke-linecap: round; stroke-dasharray: 14 86; animation-duration: 48s; animation-timing-function: linear; animation-iteration-count: infinite; animation-play-state: paused; }
.orbit-arc-yellow { stroke: var(--yellow-brasil); animation-name: orbit-flow-yellow; }
.orbit-arc-green { stroke: var(--green); animation-name: orbit-flow-green; }
.orbit-arc-blue { stroke: var(--blue); animation-name: orbit-flow-blue; }
.orbit-copy { fill: #657489; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 5.3px; font-weight: 800; letter-spacing: .58px; }
.orbit-copy-static { display: none; }

.brazil-strip { position: relative; z-index: 4; border-top: 1px solid #e2e7ec; border-bottom: 1px solid #e2e7ec; background: #fff; }
.brazil-strip::before { content: ""; position: absolute; top: -1px; left: 0; width: 23%; height: 3px; background: var(--yellow-brasil); }
.brazil-strip-inner { min-height: 112px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 54px; }
.brazil-signature { display: flex; align-items: center; gap: 14px; }
.brazil-symbol { position: relative; display: grid; place-items: center; width: 42px; height: 42px; transform: rotate(45deg); border-radius: 7px; background: var(--yellow-brasil); }
.brazil-symbol i { display: block; width: 20px; height: 20px; border-radius: 50%; background: var(--blue); box-shadow: inset 0 0 0 5px var(--green); }
.brazil-signature div { display: flex; flex-direction: column; }
.brazil-signature small { color: #778497; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .55rem; font-weight: 750; letter-spacing: .1em; }
.brazil-signature strong { color: var(--ink); font-size: .86rem; }
.brazil-strip-inner > p { max-width: 590px; margin: 0; color: #5c697b; font-size: .8rem; line-height: 1.65; }
.brazil-domain { padding: 8px 11px; border: 1px solid #dce3ea; border-radius: 7px; color: var(--blue); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .64rem; font-weight: 750; }

.section { padding: 122px 0; }
.section-soft { background: var(--light); }
.split-intro { display: grid; grid-template-columns: .7fr 1.7fr; gap: 60px; align-items: start; }
.section-kicker { color: var(--bronze-deep); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .7rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.section-heading h2, .section-top h2, .architecture-copy h2, .convergence-copy h2, .trace-copy h2, .security-title h2, .economy-copy h2 {
  margin: 0; color: var(--ink); font-size: clamp(2.35rem, 4.2vw, 4.25rem); font-weight: 740; letter-spacing: -.045em; line-height: 1.08;
}
.section-heading p { max-width: 780px; margin: 28px 0 0; color: #59677a; font-size: 1.07rem; line-height: 1.8; }

.operation-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1.2fr auto 1.25fr auto .9fr; align-items: stretch; gap: 9px; margin-top: 70px; }
.operation-flow > i { align-self: center; color: #9aa6b7; font-style: normal; }
.flow-step { min-width: 0; padding: 22px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.flow-step span { display: block; margin-bottom: 23px; color: var(--bronze); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .65rem; font-weight: 750; }
.flow-step b, .flow-step small { display: block; }
.flow-step b { color: var(--graphite); font-size: .95rem; line-height: 1.3; }
.flow-step small { margin-top: 6px; color: #778396; font-size: .69rem; line-height: 1.4; }
.flow-final { border-color: var(--graphite); background: var(--graphite); }
.flow-final b { color: #fff; }.flow-final small { color: #bbc4cf; }.flow-final span { color: var(--green); }

.section-top { display: grid; grid-template-columns: 1.65fr .7fr; align-items: end; gap: 70px; margin-bottom: 60px; }
.section-top > p { margin: 0 0 8px; color: #667386; font-size: .98rem; line-height: 1.75; }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.module-card {
  --module-color: var(--green);
  position: relative; overflow: hidden; min-height: 306px; padding: 24px;
  border: 1px solid #dfe5eb; border-radius: var(--radius-lg); background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.module-card::after { content: ""; position: absolute; right: -20px; bottom: -52px; width: 150px; height: 150px; border: 1px solid color-mix(in srgb, var(--module-color) 20%, transparent); border-radius: 50%; box-shadow: 0 0 0 18px color-mix(in srgb, var(--module-color) 4%, transparent); }
.module-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--module-color) 40%, #dfe5eb); box-shadow: var(--shadow); }
.module-clientes { --module-color: var(--system-clientes); }
.module-fiscal { --module-color: var(--system-fiscal); }
.module-erp { --module-color: var(--system-erp); }
.module-saas { --module-color: var(--system-saas); }
.module-agro { --module-color: var(--system-agro); }
.module-integrations { --module-color: var(--system-integracoes); }
.module-meta { display: flex; justify-content: space-between; gap: 15px; color: var(--module-color); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .6rem; font-weight: 750; letter-spacing: .08em; }
.tag { padding: 5px 7px; border-radius: 5px; background: color-mix(in srgb, var(--module-color) 9%, #fff); color: color-mix(in srgb, var(--module-color) 80%, #17202b); letter-spacing: 0; }
.module-card h3 { margin: 48px 0 12px; color: var(--ink); font-size: 1.55rem; letter-spacing: -.025em; }
.module-card h3 b { color: var(--module-color); }
.module-card p { max-width: 330px; margin: 0; color: #667386; font-size: .88rem; line-height: 1.7; }
.module-foot { position: absolute; z-index: 1; right: 24px; bottom: 16px; left: 24px; display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid #e7ebef; color: #697588; font-size: .67rem; font-weight: 700; }
.module-link { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid color-mix(in srgb, var(--module-color) 28%, #dfe5eb); border-radius: 50%; background: color-mix(in srgb, var(--module-color) 8%, #fff); color: var(--module-color); font-size: 1rem; font-weight: 900; line-height: 1; transition: transform .2s ease, color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.module-link:hover, .module-link:focus-visible { transform: translateY(-2px); background: var(--module-color); color: #fff; box-shadow: 0 9px 22px color-mix(in srgb, var(--module-color) 22%, transparent); }
.availability-note { margin: 22px 0 0; color: #7a8595; font-size: .72rem; }

.architecture { overflow: hidden; background: var(--dark); color: #dfe7ee; }
.architecture-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 85px; }
.eyebrow-light { color: #96a4b3; }
.architecture-copy h2, .security-title h2 { color: #fff; }
.architecture-copy > p { max-width: 480px; margin: 28px 0 0; color: #a8b4c0; line-height: 1.8; }
.architecture-copy blockquote { margin: 52px 0 0; padding: 0 0 0 20px; border-left: 2px solid var(--green); color: #c3cdd6; font-size: 1.03rem; }
.architecture-copy blockquote strong { color: #fff; font-size: 1.2rem; }
.stack-map { position: relative; padding: 15px; border: 1px solid #263541; border-radius: var(--radius-lg); background: #0e1821; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.stack-map::after { content: "ARCHITECTURE / LIVE"; position: absolute; top: -28px; right: 4px; color: #5d6d7b; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .58rem; letter-spacing: .1em; }
.stack-row { position: relative; display: grid; grid-template-columns: 104px 1fr auto; align-items: center; gap: 22px; min-height: 105px; padding: 20px 25px; border-bottom: 1px solid #25333e; }
.stack-row:last-child { border-bottom: 0; }
.stack-index { color: #697988; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .57rem; letter-spacing: .1em; }
.stack-row b { color: #fff; font-size: 1rem; }
.stack-row p { margin: 5px 0 0; color: #8f9ba7; font-size: .76rem; }
.stack-row > i { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid #34424d; border-radius: 50%; color: #7d8b97; font-style: normal; }
.stack-row::before { content: ""; position: absolute; top: 22px; bottom: 22px; left: 0; width: 3px; border-radius: 4px; background: var(--row-color); }
.stack-channels { --row-color: var(--bronze); }.stack-operation { --row-color: var(--green); background: rgba(14, 178, 109, .035); }.stack-services { --row-color: var(--blue); }.stack-intelligence { --row-color: var(--green); }
.stack-live { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .55rem; font-weight: 750; }
.stack-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(14,178,109,.1); }

.integration-board { display: grid; grid-template-columns: 1fr 70px 1.15fr 70px 1fr; align-items: center; min-height: 410px; padding: 46px; border: 1px solid #dae1e8; border-radius: var(--radius-lg); background-color: #fbfcfd; background-image: linear-gradient(rgba(37,99,235,.045) 1px, transparent 1px), linear-gradient(90deg,rgba(37,99,235,.045) 1px, transparent 1px); background-size: 30px 30px; box-shadow: var(--shadow); }
.integration-side { display: flex; flex-direction: column; gap: 9px; }
.integration-side > span { margin-bottom: 10px; color: #718094; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .59rem; font-weight: 750; letter-spacing: .1em; }
.integration-side b { padding: 14px 17px; border: 1px solid #dce3ea; border-left: 3px solid var(--bronze); border-radius: 8px; background: #fff; color: #485568; font-size: .78rem; }
.integration-services b { border-left-color: var(--blue); }
.integration-arrows { display: flex; flex-direction: column; gap: 28px; align-items: center; color: var(--green); font-family: monospace; }
.integration-arrows i { font-style: normal; animation: arrow-pulse 2.4s ease-in-out infinite; }
.integration-arrows i:nth-child(2) { animation-delay: .3s; }.integration-arrows i:nth-child(3) { animation-delay: .6s; }
.arrows-out { color: var(--blue); }
.integration-core { position: relative; width: 260px; min-height: 0; aspect-ratio: 1.45 / 1; justify-self: center; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #cfd8e2; border-radius: 50%; background: #fff; box-shadow: 0 0 0 15px rgba(14,178,109,.045), 0 18px 50px rgba(31,41,55,.11); text-align: center; }
.integration-core > img, .integration-core > span, .integration-core > strong, .integration-core > small { position: relative; z-index: 2; }
.integration-core > span, .integration-core > strong, .integration-core > small { display: none; }
.integration-core .integration-symbol { width: 62px; height: 62px; margin: 0; }
.integration-orbit { position: absolute; z-index: 1; top: 50%; left: 50%; width: calc(100% + 76px); max-width: none; height: calc(100% + 46px); transform: translate(-50%, -50%); overflow: visible; pointer-events: none; }
.integration-orbit-base, .integration-orbit-arc { fill: none; }
.integration-orbit-base { stroke: #d8e1e9; stroke-width: 1; stroke-dasharray: 1 2; }
.integration-orbit-arc { stroke-width: 4; stroke-linecap: round; stroke-dasharray: 14 86; animation-duration: 48s; animation-timing-function: linear; animation-iteration-count: infinite; animation-play-state: paused; }
.integration-orbit-yellow { stroke: var(--yellow-brasil); animation-name: orbit-flow-yellow; }
.integration-orbit-green { stroke: var(--green); animation-name: orbit-flow-green; }
.integration-orbit-blue { stroke: var(--blue); animation-name: orbit-flow-blue; }
.integration-orbit-copy { fill: #657489; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 5.3px; font-weight: 800; letter-spacing: .62px; }
.orbit-agro { fill: var(--bronze); stroke: #fff; stroke-width: .55px; paint-order: stroke fill; font-size: 6.3px; font-weight: 900; letter-spacing: .72px; }
.integration-orbit-copy-static { display: none; }
.board-caption { margin: 22px 0 0; color: #687588; text-align: center; font-size: .82rem; }

.convergence-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.convergence-copy h2 { margin-top: 25px; }
.convergence-copy > p { max-width: 520px; margin: 26px 0 0; color: #5e6c7e; line-height: 1.8; }
.concept-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.concept-list span { padding: 8px 11px; border: 1px solid #d9e0e7; border-radius: 7px; background: #fff; color: #667386; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .62rem; font-weight: 650; }
.event-console { overflow: hidden; border: 1px solid #21303b; border-radius: var(--radius-lg); background: var(--dark); color: #dfe7ee; box-shadow: 0 30px 65px rgba(11,18,24,.18); }
.console-head { display: flex; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #26343f; color: #778795; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .58rem; letter-spacing: .1em; }
.console-head span:last-child { display: flex; align-items: center; gap: 7px; color: var(--green); }
.console-head i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.event-row { display: grid; grid-template-columns: 64px 10px 1fr auto; align-items: center; gap: 13px; padding: 18px 20px; border-bottom: 1px solid #1e2b35; }
.event-row time { color: #71808e; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .58rem; }
.event-mark { width: 7px; height: 7px; border-radius: 50%; }.event-mark.green { background: var(--green); }.event-mark.blue { background: var(--blue); }.event-mark.bronze { background: var(--bronze); }
.event-row b { color: #e9eef3; font-size: .79rem; }
.event-row small { color: #748391; font-size: .65rem; }
.console-result { display: grid; grid-template-columns: 76px 1fr; padding: 22px 20px; background: rgba(14,178,109,.06); }
.console-result span { grid-row: 1/3; color: var(--green); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .58rem; font-weight: 750; }
.console-result strong { color: #fff; font-size: .85rem; }.console-result small { color: #7f908e; font-size: .65rem; }

.trace-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; }
.trace-panel { overflow: hidden; padding-bottom: 18px; border: 1px solid #dce3e9; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.trace-head { display: flex; justify-content: space-between; padding: 17px 22px; border-bottom: 1px solid #e3e8ed; background: #fafbfc; color: #748194; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .59rem; font-weight: 750; letter-spacing: .08em; }
.trace-panel ol { position: relative; margin: 0; padding: 17px 22px; list-style: none; }
.trace-panel ol::before { content: ""; position: absolute; top: 46px; bottom: 46px; left: 37px; width: 1px; background: #dce3e9; }
.trace-panel li { position: relative; z-index: 1; display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 13px; padding: 16px 0; }
.trace-panel li > i { width: 31px; height: 31px; border: 8px solid #fff; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 1px #b8ddcc; }
.trace-panel li.current > i { background: var(--blue); box-shadow: 0 0 0 1px #a8c0f7; }
.trace-panel li b, .trace-panel li small { display: block; }.trace-panel li b { color: #334052; font-size: .82rem; }.trace-panel li small { color: #7b8798; font-size: .68rem; }
.trace-panel time { color: #7c8897; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .58rem; }
.trace-copy > p:not(.eyebrow) { margin: 27px 0 0; color: #5f6d7f; line-height: 1.8; }
.trace-copy blockquote { margin: 35px 0 0; padding: 22px 24px; border-left: 3px solid var(--green); background: var(--light); color: #3f4d5f; font-size: .95rem; font-weight: 620; }

.security-band { padding: 116px 0; background: var(--dark); color: #dce4eb; }
.security-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: start; }
.security-title p:not(.eyebrow) { max-width: 470px; margin: 25px 0 0; color: #9eabb7; line-height: 1.8; }
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #2a3843; border-left: 1px solid #2a3843; }
.security-item { min-height: 150px; padding: 24px; border-right: 1px solid #2a3843; border-bottom: 1px solid #2a3843; }
.security-item span { color: var(--green); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .59rem; font-weight: 750; }
.security-item b, .security-item small { display: block; }.security-item b { margin-top: 22px; color: #fff; font-size: .91rem; }.security-item small { margin-top: 5px; color: #8594a1; font-size: .7rem; line-height: 1.5; }

.segment-list { border-top: 1px solid #dce2e8; }
.segment { display: grid; grid-template-columns: 70px 1fr 1.2fr auto; align-items: center; gap: 25px; min-height: 104px; border-bottom: 1px solid #dce2e8; transition: padding .2s ease, background-color .2s ease; }
.segment:hover { padding-inline: 14px; background: var(--light); }
.segment > span { color: var(--bronze); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .65rem; font-weight: 750; }
.segment h3 { margin: 0; color: var(--ink); font-size: 1.15rem; }
.segment p { margin: 0; color: #697689; font-size: .85rem; }
.segment i { color: #8792a1; font-size: 1.2rem; font-style: normal; }

.real-economy { background: #f3eee8; }
.economy-grid { display: grid; grid-template-columns: .87fr 1.13fr; align-items: center; gap: 100px; }
.economy-copy h2 { margin-top: 26px; }
.economy-copy p { max-width: 510px; margin: 24px 0 0; color: #5e5e5b; line-height: 1.85; }
.economy-diagram { position: relative; min-height: 445px; padding: 42px 35px; border: 1px solid rgba(165,108,47,.22); border-radius: var(--radius-lg); background: rgba(255,255,255,.62); }
.economy-line { position: absolute; top: 50%; right: 14%; left: 14%; height: 2px; background: linear-gradient(90deg, var(--bronze), var(--green), var(--blue)); }
.economy-node { position: absolute; width: 165px; padding: 18px; border: 1px solid #ded4c9; border-radius: 12px; background: #fff; box-shadow: 0 14px 30px rgba(92,67,41,.08); }
.economy-node::after { content: ""; position: absolute; width: 8px; height: 8px; border: 4px solid #fff; border-radius: 50%; background: var(--node-color); box-shadow: 0 0 0 1px var(--node-color); }
.economy-node span { color: var(--node-color); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .6rem; font-weight: 750; }
.economy-node b, .economy-node small { display: block; }.economy-node b { margin-top: 18px; color: var(--graphite); font-size: .88rem; }.economy-node small { margin-top: 4px; color: #817a71; font-size: .65rem; }
.node-origin { --node-color: var(--bronze); top: 36px; left: 5%; }.node-origin::after { right: 15px; bottom: -26px; }
.node-business { --node-color: var(--bronze); bottom: 39px; left: 27%; }.node-business::after { top: -26px; right: 22px; }
.node-data { --node-color: var(--green); top: 36px; right: 27%; }.node-data::after { bottom: -26px; left: 22px; }
.node-tech { --node-color: var(--blue); right: 5%; bottom: 39px; }.node-tech::after { top: -26px; left: 15px; }
.economy-caption { position: absolute; bottom: 16px; left: 24px; display: flex; align-items: center; gap: 8px; color: #8e8275; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .57rem; font-weight: 750; }
.economy-caption i { width: 34px; height: 1px; background: #b8aa9b; }

.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #dce2e8; border-left: 1px solid #dce2e8; }
.pillar { position: relative; min-height: 230px; padding: 28px; border-right: 1px solid #dce2e8; border-bottom: 1px solid #dce2e8; background: #fff; }
.pillar::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; transform: scaleX(0); transform-origin: left; background: var(--green); transition: transform .25s ease; }
.pillar:hover::after { transform: scaleX(1); }
.pillar span { color: var(--blue); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .6rem; font-weight: 750; }
.pillar h3 { margin: 42px 0 10px; color: var(--ink); font-size: 1.15rem; }
.pillar p { max-width: 300px; margin: 0; color: #6b788a; font-size: .8rem; line-height: 1.65; }

.manifesto { padding: 128px 0; background: var(--light); }
.manifesto-inner { max-width: 1050px; }
.manifesto-label { display: block; margin-bottom: 36px; color: var(--bronze); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .66rem; font-weight: 750; letter-spacing: .12em; }
.manifesto h2 { max-width: 1020px; margin: 0; color: var(--ink); font-size: clamp(2.4rem, 4.4vw, 4.5rem); font-weight: 720; letter-spacing: -.045em; line-height: 1.12; }
.manifesto h2 em { color: var(--green-deep); font-style: normal; }
.manifesto p { max-width: 760px; margin: 38px 0 25px; color: #5d6a7b; font-size: 1.08rem; line-height: 1.8; }
.manifesto strong { color: var(--blue); font-size: .95rem; }

.final-cta { position: relative; overflow: hidden; padding: 132px 0; background: var(--dark); color: #fff; }
.final-cta::before { content: ""; position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(37,99,235,.12) 1px, transparent 1px), linear-gradient(90deg,rgba(37,99,235,.12) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to right, transparent, #000 50%, transparent); }
.cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta-symbol { display: grid; place-items: center; width: 106px; height: 106px; margin-bottom: 35px; border: 1px solid #2b3944; border-radius: 50%; background: #0f1a23; box-shadow: 0 0 0 12px rgba(14,178,109,.035); }
.cta-symbol img { width: 72px; }
.cta-inner h2 { margin: 0; font-size: clamp(2.55rem, 5vw, 4.8rem); line-height: 1.08; letter-spacing: -.05em; }
.cta-inner > p:not(.eyebrow) { margin: 24px 0 0; color: #abb7c2; font-size: 1.05rem; }
.button-row-center { justify-content: center; }
.button-light { border-color: #fff; background: #fff; color: var(--ink); }.button-light:hover { border-color: var(--green); background: var(--green); color: #07150e; }
.button-dark-ghost { border-color: #35434e; background: transparent; color: #dbe3ea; }.button-dark-ghost:hover { border-color: #83919d; background: rgba(255,255,255,.04); }

.site-footer { padding: 78px 0 0; background: #080e13; color: #c1cbd4; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .6fr); gap: 60px; padding-bottom: 66px; }
.footer-brand img { width: 174px; height: auto; }
.footer-brand p { margin: 25px 0 0; color: #758390; font-size: .83rem; line-height: 1.8; }
.footer-origin { display: inline-flex; align-items: center; gap: 8px; margin-top: 23px; color: #778590; font-size: .64rem; }
.footer-origin i { width: 8px; height: 8px; transform: rotate(45deg); border-radius: 2px; background: var(--yellow-brasil); box-shadow: 5px -5px 0 -2px var(--green), -5px 5px 0 -2px var(--blue); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h2 { margin: 0 0 12px; color: #fff; font-size: .73rem; letter-spacing: .02em; }
.footer-col a { width: fit-content; color: #82909c; font-size: .76rem; transition: color .2s ease; }.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0 26px; border-top: 1px solid #1d2932; color: #5f6d79; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .61rem; }

.product-page { --product-accent: var(--blue); --product-soft: var(--blue-soft); background: #fff; }
.product-erp { --product-accent: var(--system-erp); --product-soft: #effaf3; }
.product-fiscal { --product-accent: var(--system-fiscal); --product-soft: #fff4ea; }
.product-clientes { --product-accent: var(--system-clientes); --product-soft: #eef4ff; }
.product-saas { --product-accent: var(--system-saas); --product-soft: #f5f0ff; }
.product-agro { --product-accent: var(--system-agro); --product-soft: #fbf7e9; }
.product-integracoes { --product-accent: var(--system-integracoes); --product-soft: #ecf9fe; }
.product-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); }
.product-header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.product-header-brand img { width: 154px; height: auto; }
.product-header-actions { display: flex; align-items: center; gap: 12px; }
.product-back { color: #59677a; font-size: .78rem; font-weight: 700; }
.product-header-cta { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 9px; background: var(--product-accent); color: #fff; font-size: .78rem; font-weight: 780; }
.product-hero { position: relative; overflow: hidden; padding: 104px 0 90px; background-color: #fbfcfd; background-image: linear-gradient(rgba(37,99,235,.045) 1px, transparent 1px), linear-gradient(90deg,rgba(37,99,235,.045) 1px, transparent 1px); background-size: 34px 34px; }
.product-hero::after { content: ""; position: absolute; top: -180px; right: -150px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--product-accent) 16%, transparent), transparent 68%); pointer-events: none; }
.product-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.05fr) minmax(350px,.75fr); align-items: center; gap: 86px; }
.product-kicker { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--product-accent); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .67rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.product-kicker::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.product-title { max-width: 790px; margin: 0; color: var(--ink); font-size: clamp(3.25rem, 5.8vw, 5.8rem); letter-spacing: -.06em; line-height: .98; }
.product-title em { color: var(--product-accent); font-style: normal; }
.product-lead { max-width: 690px; margin: 28px 0 0; color: #56657a; font-size: 1.08rem; line-height: 1.75; }
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.product-cta { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 13px 20px; border: 1px solid var(--product-accent); border-radius: 10px; background: var(--product-accent); color: #fff; font-weight: 780; line-height: 1; transition: transform .2s ease, box-shadow .2s ease; }
.product-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px color-mix(in srgb, var(--product-accent) 24%, transparent); }
.product-cta-outline { border-color: #cfd8e2; background: #fff; color: var(--graphite); }
.product-summary { position: relative; overflow: hidden; padding: 30px; border: 1px solid #d9e1e9; border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: 0 28px 75px rgba(31,41,55,.12); }
.product-summary::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--product-accent); }
.product-summary-head { display: flex; align-items: center; gap: 15px; padding-bottom: 23px; border-bottom: 1px solid #e4e9ef; }
.product-summary-symbol { display: grid; width: 62px; height: 62px; place-items: center; border: 1px solid color-mix(in srgb, var(--product-accent) 24%, #d9e1e9); border-radius: 50%; background: var(--product-soft); }
.product-summary-symbol img { width: 42px; height: 42px; }
.product-summary-head span { display: block; color: #778497; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .56rem; font-weight: 800; letter-spacing: .09em; }
.product-summary-head strong { display: block; margin-top: 2px; color: var(--ink); font-size: 1.13rem; }
.product-summary dl { display: grid; gap: 0; margin: 8px 0 0; }
.product-summary dl div { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid #edf0f3; }
.product-summary dl div:last-child { border-bottom: 0; }
.product-summary dt { color: var(--product-accent); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .58rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.product-summary dd { margin: 0; color: #536176; font-size: .78rem; line-height: 1.55; }
.product-proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.product-proof-grid { min-height: 92px; display: grid; grid-template-columns: repeat(3,1fr); }
.product-proof-item { display: flex; align-items: center; gap: 12px; padding: 20px 28px; border-right: 1px solid var(--line); color: #536176; font-size: .76rem; font-weight: 700; }
.product-proof-item:last-child { border-right: 0; }
.product-proof-item i { flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%; background: var(--product-accent); box-shadow: 0 0 0 5px var(--product-soft); }
.product-section { padding: 108px 0; }
.product-section-soft { background: var(--product-soft); }
.product-section-head { max-width: 820px; }
.product-section-head span { color: var(--product-accent); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .66rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.product-section-head h2 { margin: 18px 0 0; color: var(--ink); font-size: clamp(2.35rem, 4.5vw, 4.5rem); letter-spacing: -.055em; line-height: 1.02; }
.product-section-head p { max-width: 690px; margin: 22px 0 0; color: #5c6a7d; line-height: 1.75; }
.product-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 54px; }
.product-benefit { min-height: 260px; padding: 26px; border: 1px solid #dfe5eb; border-radius: 18px; background: #fff; box-shadow: 0 14px 40px rgba(31,41,55,.055); }
.product-benefit b { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: var(--product-soft); color: var(--product-accent); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .67rem; }
.product-benefit h3 { margin: 35px 0 11px; color: var(--ink); font-size: 1.17rem; }
.product-benefit p { margin: 0; color: #667386; font-size: .84rem; line-height: 1.7; }
.product-process { padding: 108px 0; background: var(--dark); color: #fff; }
.product-process .product-section-head h2 { color: #fff; }
.product-process .product-section-head p { color: #a8b4c0; }
.product-process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 52px; }
.product-step { position: relative; min-height: 205px; padding: 25px; border: 1px solid #26343f; border-radius: 17px; background: rgba(255,255,255,.035); }
.product-step span { color: var(--product-accent); font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .64rem; font-weight: 850; }
.product-step h3 { margin: 44px 0 9px; color: #fff; font-size: 1rem; }
.product-step p { margin: 0; color: #8998a6; font-size: .77rem; line-height: 1.65; }
.product-fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 52px; }
.product-fit-card { padding: 30px; border: 1px solid #dfe5eb; border-radius: 20px; background: #fff; }
.product-fit-card h3 { margin: 0; color: var(--ink); font-size: 1.25rem; }
.product-fit-card ul { display: grid; gap: 13px; margin: 25px 0 0; padding: 0; list-style: none; }
.product-fit-card li { position: relative; padding-left: 23px; color: #5f6d7f; font-size: .84rem; line-height: 1.55; }
.product-fit-card li::before { content: "✓"; position: absolute; top: 0; left: 0; color: var(--product-accent); font-weight: 900; }
.product-conversion { position: relative; overflow: hidden; padding: 110px 0; background: #0b1218; color: #fff; text-align: center; }
.product-conversion::before { content: ""; position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(color-mix(in srgb, var(--product-accent) 16%, transparent) 1px, transparent 1px), linear-gradient(90deg,color-mix(in srgb, var(--product-accent) 16%, transparent) 1px, transparent 1px); background-size: 42px 42px; }
.product-conversion-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.product-conversion h2 { max-width: 840px; margin: 0; font-size: clamp(2.5rem, 5vw, 4.8rem); letter-spacing: -.055em; line-height: 1.05; }
.product-conversion p { max-width: 650px; margin: 23px 0 0; color: #aab6c1; }
.product-conversion .product-actions { justify-content: center; }
.product-conversion .brand-eco { color: var(--yellow-brasil); -webkit-text-stroke: 0; text-shadow: none; }
.product-conversion .brand-x { color: #45dc9a; }
.product-conversion .brand-ml { color: #8fb0ff; }
.product-footer { padding: 28px 0; border-top: 1px solid #1d2932; background: #080e13; color: #76838f; }
.product-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .62rem; }
.product-footer a { color: #aab6c1; }

@media (max-width: 920px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .product-summary { width: min(100%, 620px); }
  .product-benefits { grid-template-columns: 1fr 1fr; }
  .product-process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .product-header-inner { min-height: 70px; }
  .product-header-brand img { width: 138px; }
  .product-back { display: none; }
  .product-header-cta { min-height: 40px; padding-inline: 12px; font-size: .7rem; }
  .product-hero { padding: 78px 0 68px; }
  .product-title { font-size: clamp(2.7rem, 13vw, 4rem); }
  .product-lead { font-size: .97rem; }
  .product-actions { align-items: stretch; }
  .product-actions .product-cta { width: 100%; }
  .product-summary { padding: 23px; }
  .product-summary dl div { grid-template-columns: 1fr; gap: 5px; }
  .product-proof-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .product-proof-item { min-height: 64px; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-proof-item:last-child { border-bottom: 0; }
  .product-section, .product-process { padding: 82px 0; }
  .product-benefits, .product-process-grid, .product-fit-grid { grid-template-columns: 1fr; }
  .product-benefit { min-height: 230px; }
  .product-step { min-height: 180px; }
  .product-conversion { padding: 86px 0; }
  .product-footer-inner { flex-direction: column; align-items: flex-start; }
}

.contact-dialog { width: min(calc(100% - 32px), 820px); max-height: min(92vh, 920px); margin: auto; padding: 38px; overflow: auto; border: 0; border-radius: var(--radius-lg); box-shadow: 0 30px 100px rgba(11,18,24,.28); }
.contact-dialog::backdrop { background: rgba(11,18,24,.75); backdrop-filter: blur(4px); }
.contact-heading { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; padding-right: 44px; }
.contact-heading img { width: 54px; height: 54px; margin: 0; }
.contact-heading .eyebrow { margin-bottom: 7px; }
.contact-dialog h2 { margin: 0; color: var(--ink); font-size: 1.8rem; letter-spacing: -.03em; }
.contact-intro { max-width: 680px; margin: 20px 0 24px; color: #627083; font-size: .88rem; line-height: 1.7; }
.dialog-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--light); color: var(--graphite); font-size: 1.5rem; cursor: pointer; }
.dialog-close:hover, .dialog-close:focus-visible { background: #e7ecf1; }
.contact-form { margin-top: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.contact-field { display: grid; gap: 7px; min-width: 0; }
.contact-field > span { color: #344154; font-size: .73rem; font-weight: 760; }
.contact-field small { color: #7b8796; font-size: .67rem; font-weight: 600; }
.contact-field input, .contact-field select, .contact-field textarea {
  width: 100%; min-height: 47px; padding: 11px 13px; border: 1px solid #cfd8e2; border-radius: 9px; outline: 0; background: #fff; color: var(--ink); font: inherit; font-size: .84rem; transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.contact-field textarea { min-height: 108px; resize: vertical; line-height: 1.55; }
.contact-field input::placeholder, .contact-field textarea::placeholder { color: #9aa5b3; }
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.11); }
.contact-field input:user-invalid, .contact-field select:user-invalid, .contact-field textarea:user-invalid { border-color: #c63d32; }
.contact-full { grid-column: 1 / -1; }
.contact-consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin-top: 18px; color: #5f6d7f; font-size: .73rem; line-height: 1.55; }
.contact-consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--green); }
.contact-consent a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.contact-security-note { margin-top: 14px; padding: 11px 13px; border-left: 3px solid var(--yellow-brasil); background: #fffaf0; color: #626b78; font-size: .7rem; line-height: 1.5; }
.contact-security-note strong { color: var(--ink); }
.contact-trap { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.contact-actions { display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; gap: 16px; margin-top: 18px; }
.contact-submit { margin: 0; }
.contact-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.contact-status { margin: 0; color: #677487; font-size: .72rem; line-height: 1.5; }
.contact-status:empty { display: none; }
.contact-status.is-success { padding: 9px 11px; border-radius: 8px; background: #ecf9f2; color: #087849; }
.contact-status.is-error { padding: 9px 11px; border-radius: 8px; background: #fff0ee; color: #a32f26; }

.legal-page { background: #fbfcfd; }
.legal-header { border-bottom: 1px solid var(--line); background: #fff; }
.legal-header .container { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-header img { width: 154px; height: auto; }
.legal-header .container > a:last-child { color: #59677a; font-size: .8rem; font-weight: 680; }
.legal-main { padding: 90px 0 110px; }
.legal-content { max-width: 820px; }
.legal-content h1 { margin: 0; color: var(--ink); font-size: clamp(3rem, 8vw, 5rem); letter-spacing: -.055em; line-height: 1; }
.legal-updated { margin: 18px 0 40px; color: #7a8696; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .66rem; }
.legal-notice { margin: 0 0 46px; padding: 22px 24px; border-left: 3px solid var(--green); background: var(--light); }
.legal-notice strong { color: var(--ink); font-size: .84rem; }.legal-notice p { margin: 7px 0 0; }
.legal-content h2 { margin: 38px 0 10px; color: var(--ink); font-size: 1.15rem; }
.legal-content p { color: #5f6d7f; line-height: 1.8; }
.legal-footer { padding: 24px 0; border-top: 1px solid #1e2b35; background: var(--dark); color: #7d8995; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: .62rem; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes line-flow { to { stroke-dashoffset: -240; } }
@keyframes arrow-pulse { 0%,100% { opacity: .35; transform: translateX(-2px); } 50% { opacity: 1; transform: translateX(3px); } }
@keyframes orbit-flow-yellow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -200; } }
@keyframes orbit-flow-green { from { stroke-dashoffset: -33; } to { stroke-dashoffset: -233; } }
@keyframes orbit-flow-blue { from { stroke-dashoffset: -66; } to { stroke-dashoffset: -266; } }
.motion-active .orbit-arc, .motion-active .integration-orbit-arc { animation-play-state: running; }

@media (max-width: 1120px) {
  .site-nav { gap: 16px; }
  .site-nav > a:not(.button) { font-size: .78rem; }
  .hero-grid { grid-template-columns: minmax(0,.88fr) minmax(470px,1.12fr); gap: 35px; }
  .hero h1 { font-size: clamp(3.1rem, 5.2vw, 4.2rem); }
  .ecosystem-map { min-height: 530px; }
  .map-card { width: 140px; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .integration-board { padding: 35px 26px; grid-template-columns: 1fr 48px 1.15fr 48px 1fr; }
  .economy-grid { gap: 55px; }
}

@media (max-width: 920px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .site-header { height: 70px; }
  .brand img { width: 140px; }
  .nav-toggle { display: block; position: relative; z-index: 102; }
  .site-nav {
    position: fixed; z-index: 101; inset: 0;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px;
    padding: 90px 32px 42px; background: #fff;
    visibility: hidden; opacity: 0; transform: translateY(-10px); transition: .22s ease;
  }
  .site-nav.open { visibility: visible; opacity: 1; transform: none; }
  .site-nav > a:not(.button) { width: 100%; padding: 9px 0; color: var(--ink); font-size: 1.45rem; font-weight: 700; }
  .site-nav .nav-cta { width: 100%; margin-top: 20px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 118px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 760px; }
  .ecosystem-map { max-width: 720px; min-height: 570px; margin-inline: auto; }
  .split-intro, .section-top, .architecture-grid, .convergence-grid, .trace-grid, .security-inner, .economy-grid { grid-template-columns: 1fr; }
  .split-intro { gap: 25px; }
  .section-top { gap: 25px; align-items: start; }
  .section-top > p { max-width: 590px; }
  .operation-flow { grid-template-columns: 1fr; gap: 8px; }
  .brazil-strip-inner { grid-template-columns: auto 1fr; gap: 22px 34px; padding-block: 24px; }
  .brazil-domain { grid-column: 2; width: fit-content; }
  .operation-flow > i { transform: rotate(90deg); justify-self: center; }
  .flow-step { display: grid; grid-template-columns: 48px 1fr; align-items: center; min-height: 88px; }
  .flow-step span { grid-row: 1/3; margin: 0; }.flow-step small { margin-top: 2px; }
  .architecture-grid, .convergence-grid, .trace-grid, .security-inner { gap: 60px; }
  .architecture-copy { max-width: 680px; }
  .integration-board { grid-template-columns: 1fr; gap: 20px; }
  .integration-arrows { flex-direction: row; justify-content: center; }
  .integration-arrows i { transform: rotate(90deg); }.integration-arrows.arrows-out i { transform: rotate(90deg); }
  .integration-core { width: 260px; min-height: 0; margin-inline: auto; }
  .integration-side { width: min(100%, 520px); margin-inline: auto; }
  .segment { grid-template-columns: 48px 1fr auto; padding: 18px 0; }
  .segment p { grid-column: 2 / 4; }
  .economy-copy { max-width: 680px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3, .6fr); gap: 35px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 88px 0; }
  .hero { min-height: auto; padding-top: 108px; }
  .eyebrow { margin-bottom: 18px; font-size: .61rem; letter-spacing: .1em; }
  .hero h1 { font-size: clamp(2.55rem, 12.2vw, 3.4rem); line-height: 1.02; }
  .hero-lead { margin-top: 22px; font-size: .98rem; }
  .button-row { align-items: stretch; margin-top: 28px; }
  .button-row .button { flex: 1 1 100%; }
  .hero-proof { display: grid; gap: 10px; margin-top: 35px; }
  .brazil-strip-inner { grid-template-columns: 1fr; gap: 15px; padding-block: 27px; }
  .brazil-signature { display: grid; grid-template-columns: 42px minmax(0, 1fr); width: 100%; align-items: center; }
  .brazil-signature div { display: flex; min-width: 0; flex-direction: column; gap: 2px; }
  .brazil-signature small, .brazil-signature strong { display: block; }
  .brazil-domain { grid-column: auto; }
  .ecosystem-map { min-height: 510px; border-radius: 16px; }
  .map-topline { padding: 0 12px; }
  .map-footer { gap: 12px; padding: 0 12px; font-size: .48rem; }
  .map-card { width: 116px; min-height: 62px; padding: 9px 8px; }
  .map-code { margin-right: 6px; padding-right: 6px; font-size: .52rem; }
  .map-card b { font-size: .7rem; }.map-card small { display: block; font-size: .5rem; }
  .map-order { top: 15%; left: 3%; }.map-sale { top: 15%; right: 3%; }
  .map-client { top: 43%; left: 1.5%; }.map-stock { top: 43%; right: 1.5%; }
  .map-fiscal { bottom: 12%; left: 3%; }.map-data { right: 3%; bottom: 12%; }
  .map-core { width: 112px; height: 112px; }
  .map-core::after { inset: -14px; border-color: rgba(14,178,109,.16); box-shadow: 0 0 0 8px rgba(14,178,109,.03); }
  .map-core img { width: 54px; height: 54px; margin: 0; }
  .product-orbit { width: 204px; }

  .section-heading h2, .section-top h2, .architecture-copy h2, .convergence-copy h2, .trace-copy h2, .security-title h2, .economy-copy h2 { font-size: clamp(2rem, 9.8vw, 3rem); }
  .section-heading p { font-size: .96rem; }
  .operation-flow { margin-top: 45px; }
  .module-grid { grid-template-columns: 1fr; }
  .module-card { min-height: 290px; }
  .architecture { padding-block: 90px; }
  .architecture-copy blockquote { margin-top: 35px; }
  .stack-map { padding: 8px; }
  .stack-row { grid-template-columns: 1fr auto; gap: 10px; padding: 19px 16px; }
  .stack-index { grid-column: 1/3; }
  .stack-row p { font-size: .67rem; line-height: 1.55; }
  .stack-live { grid-column: 1/3; margin-top: 8px; }
  .integration-board { min-height: auto; padding: 28px 18px; }
  .integration-core { width: 210px; min-height: 0; }
  .integration-core .integration-symbol { width: 54px; height: 54px; margin: 0; }
  .event-row { grid-template-columns: 52px 8px 1fr; padding: 15px; gap: 9px; }
  .event-row small { grid-column: 3; }
  .console-result { grid-template-columns: 70px 1fr; padding-inline: 15px; }
  .trace-panel li { grid-template-columns: 30px 1fr; }.trace-panel time { grid-column: 2; }.trace-panel ol::before { left: 36px; }
  .security-grid { grid-template-columns: 1fr; }
  .segment { grid-template-columns: 36px 1fr auto; gap: 12px; }
  .segment h3 { font-size: 1rem; }.segment p { font-size: .77rem; }
  .economy-diagram { min-height: 570px; padding: 22px; }
  .economy-line { top: 12%; bottom: 12%; left: 50%; width: 2px; height: auto; background: linear-gradient(var(--bronze), var(--green), var(--blue)); }
  .economy-node { width: 154px; }
  .economy-node::after { display: none; }
  .node-origin { top: 28px; left: 4%; }.node-business { top: 162px; right: 4%; bottom: auto; left: auto; }.node-data { top: 296px; right: auto; left: 4%; }.node-tech { right: 4%; bottom: 28px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { min-height: 190px; }.pillar h3 { margin-top: 30px; }
  .manifesto { padding: 92px 0; }.manifesto h2 { font-size: clamp(2.1rem, 9.8vw, 3.15rem); }
  .final-cta { padding: 100px 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }.footer-brand { grid-column: 1/3; }
  .footer-bottom { flex-direction: column; }
  .contact-dialog { width: min(calc(100% - 20px), 820px); max-height: calc(100vh - 20px); padding: 28px 20px; border-radius: 16px; }
  .contact-heading { grid-template-columns: 42px 1fr; gap: 12px; padding-right: 32px; }
  .contact-heading img { width: 42px; height: 42px; }
  .contact-dialog h2 { font-size: 1.42rem; }
  .contact-intro { margin: 17px 0 21px; font-size: .81rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-full { grid-column: auto; }
  .contact-actions { grid-template-columns: 1fr; gap: 12px; }
  .contact-submit { width: 100%; }
}

@media (max-width: 390px) {
  .map-card { width: 104px; }
  .map-core { width: 104px; height: 104px; }
  .map-core img { width: 48px; height: 48px; }
  .economy-node { width: 145px; padding: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .orbit-copy-moving, .integration-orbit-copy-moving { display: none; }
  .orbit-copy-static, .integration-orbit-copy-static { display: block; }
}

@media print {
  .site-header, .button-row, .nav-toggle, .contact-dialog { display: none !important; }
  .hero { min-height: auto; padding-top: 40px; }
  .section, .manifesto, .final-cta, .security-band { break-inside: avoid; }
  .reveal { opacity: 1; transform: none; }
}
