:root {
  --paper: #f2efe7;
  --paper-dark: #dedad0;
  --ink: #10100f;
  --ink-soft: #252522;
  --red: #6950e8;
  --acid: #a9a5ff;
  --blue: #3b299d;
  --amber: #febf04;
  --white: #fffdf7;
  --muted: #77756f;
  --line: rgba(16, 16, 15, .22);
  --font: "Inter Tight", Arial, sans-serif;
  --display: "Archivo Black", "Arial Black", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  background: var(--paper);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  z-index: 9990;
  inset: 0;
  content: "";
  opacity: .045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

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

button {
  color: inherit;
  font: inherit;
}

.mono {
  font-family: var(--mono);
}

.section-kicker {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* entrada */
.boot {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 38px 34px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.boot-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  font: 11px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.boot-message > span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font: 11px var(--mono);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.boot-message strong {
  display: block;
  max-width: 1100px;
  font: 400 clamp(48px, 9vw, 150px)/.85 var(--display);
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.boot-progress {
  height: 12px;
  border: 1px solid rgba(255, 255, 255, .4);
}

.boot-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
}

/* cursor */
.cursor {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  color: var(--ink);
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s, opacity .25s;
}

.cursor span {
  opacity: 0;
  font: 600 9px var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity .2s;
}

.cursor.is-big {
  width: 72px;
  height: 72px;
  background: var(--acid);
}

.cursor.is-big span {
  opacity: 1;
}

/* faixa fixa e navegação */
.nav {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 60px;
  padding: 0 34px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: rgba(16, 16, 15, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  justify-self: start;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.brand svg {
  width: 24px;
  height: 24px;
}

.nav-state {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
  font: 500 9px var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00a66a;
  box-shadow: 0 0 0 4px rgba(0, 166, 106, .12);
  animation: live 1.4s ease infinite;
}

@keyframes live {
  50% { box-shadow: 0 0 0 8px rgba(0, 166, 106, 0); }
}

.nav-cta {
  justify-self: end;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, .75);
  font: 600 10px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  min-height: 100svh;
  padding: 115px 3vw 54px;
  overflow: hidden;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  background: #0d0c12;
}

.hero-grid {
  position: absolute;
  inset: 60px 0 0;
  opacity: .24;
  background-image:
    linear-gradient(to right, rgba(140, 141, 255, .34) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(140, 141, 255, .24) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  pointer-events: none;
}

.hero-index {
  position: absolute;
  top: 84px;
  left: 3vw;
  z-index: 2;
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--acid);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding-right: 3vw;
}

.hero h1 {
  font: 400 clamp(62px, 8.65vw, 145px)/.82 var(--display);
  letter-spacing: -.068em;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line > span {
  display: block;
  will-change: transform;
}

.hero-red {
  color: var(--acid);
}

.hero .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .9);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(250px, 430px) auto;
  align-items: end;
  gap: 4vw;
  padding-top: 38px;
}

.hero-bottom p {
  color: rgba(255, 255, 255, .68);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.56;
}

.hero-bottom p b {
  color: var(--white);
  font-weight: 800;
}

.arrow-link {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 210px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .65);
  font: 600 10px/1.4 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.arrow-link span {
  margin-left: auto;
  color: var(--amber);
  font-size: 18px;
}

.live-proof {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 650px;
  color: var(--white);
  background: #17131f;
  border: 1px solid rgba(169, 165, 255, .65);
}

.proof-head {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  font-size: 9px;
  letter-spacing: .08em;
}

.proof-head span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.proof-person {
  padding: 28px 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.proof-id {
  display: block;
  margin-bottom: 32px;
  color: var(--amber);
  font-size: 9px;
  letter-spacing: .12em;
}

.proof-person strong {
  display: block;
  margin-bottom: 9px;
  font: 400 clamp(32px, 3.2vw, 58px)/.92 var(--display);
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.proof-person p {
  max-width: 34ch;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  line-height: 1.55;
}

.proof-log {
  list-style: none;
}

.proof-log li {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 9px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  opacity: .32;
  font: 9px var(--mono);
  letter-spacing: .02em;
  transition: opacity .35s, color .35s, background .35s;
}

.proof-log li.is-on {
  opacity: 1;
  color: var(--ink);
  background: var(--acid);
}

.proof-log li.is-done {
  opacity: 1;
}

.proof-log time {
  color: inherit;
}

.proof-log b {
  color: var(--red);
  font-weight: 500;
}

.proof-log li.is-on b {
  color: var(--ink);
}

.proof-result {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  padding: 22px 20px;
  color: var(--white);
  background: var(--red);
}

.proof-result > span {
  margin-bottom: 12px;
  font-size: 8px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .7);
}

.proof-result strong {
  font: 400 clamp(64px, 8vw, 125px)/.78 var(--display);
  letter-spacing: -.07em;
}

.proof-result small {
  margin-top: 13px;
  font: 500 9px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* problema e linha do tempo */
.delay {
  padding: 12vh 5vw 11vh;
  background: var(--paper);
}

.delay-title {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 6vw;
  margin-top: 30px;
}

.delay h2,
.record h2,
.engine-head h2,
.scenario-intro h2,
.dependency h2,
.layer h2,
.respect h2,
.outcome-title h2 {
  font: 400 clamp(56px, 8.4vw, 142px)/.83 var(--display);
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.delay h2 em,
.record h2 em,
.engine-head h2 em,
.scenario-intro h2 em,
.layer h2 em,
.respect h2 em,
.outcome-title h2 em {
  color: var(--red);
  font-style: normal;
}

.delay-title > p {
  max-width: 39ch;
  padding-bottom: 10px;
  color: #4f4e49;
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.55;
}

.time-race {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 10vh;
  border: 1px solid var(--ink);
  background: var(--white);
}

.time-race::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--ink);
}

.race-head {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 9px;
  letter-spacing: .14em;
}

.race-head span {
  padding: 0 18px;
}

.race-row {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  min-height: 86px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ink);
}

.race-row time {
  font: 600 11px var(--mono);
}

.race-row strong {
  font-size: clamp(18px, 1.7vw, 27px);
  letter-spacing: -.02em;
}

.race-row > span {
  font: 9px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.client-row {
  grid-column: 1;
}

.operation-row {
  grid-column: 2;
}

.operation-row:nth-of-type(5) {
  grid-row: 2;
}

.operation-row:nth-of-type(6) {
  grid-row: 3;
}

.operation-row:nth-of-type(7) {
  grid-row: 4;
}

.client-row {
  background: var(--acid);
}

.client-row.lost {
  color: var(--white);
  background: var(--ink);
}

.operation-row {
  background: var(--paper-dark);
}

.operation-row.too-late {
  color: var(--white);
  background: var(--red);
}

.race-verdict {
  grid-column: 1 / 3;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 18px;
  background: var(--white);
}

.race-verdict span {
  font: 10px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.race-verdict b {
  color: var(--red);
  font: 400 clamp(34px, 5vw, 80px)/.9 var(--display);
  letter-spacing: -.05em;
  text-transform: uppercase;
}

/* arquivo CRM */
.record {
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 7vw;
  padding: 12vh 5vw;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.record::before {
  position: absolute;
  top: 0;
  right: 28%;
  bottom: 0;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, .14);
}

.record-stamp {
  position: absolute;
  top: 28px;
  right: 5vw;
  color: var(--red);
  font-size: 9px;
  letter-spacing: .13em;
}

.record-copy {
  align-self: center;
}

.record-copy .section-kicker {
  color: var(--acid);
}

.record-copy h2 {
  margin: 27px 0 34px;
  font-size: clamp(52px, 6.7vw, 110px);
}

.record-copy p {
  max-width: 39ch;
  color: rgba(255, 255, 255, .64);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
}

.customer-file {
  position: relative;
  align-self: center;
  padding: 22px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--white);
  transform: rotate(1.2deg);
  box-shadow: 18px 18px 0 var(--red);
}

.customer-file::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .3;
  background-image: repeating-linear-gradient(0deg, transparent 0 23px, rgba(16, 16, 15, .12) 24px);
  pointer-events: none;
}

.file-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--ink);
  font-size: 9px;
}

.file-name {
  position: relative;
  padding: 24px 0 18px;
  font: 400 clamp(55px, 7vw, 110px)/.76 var(--display);
  letter-spacing: -.065em;
}

.customer-file dl {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.customer-file dl > div {
  min-height: 70px;
  padding: 11px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.customer-file dt {
  margin-bottom: 15px;
  font: 8px var(--mono);
  letter-spacing: .1em;
}

.customer-file dd {
  font-size: 14px;
  font-weight: 700;
}

.customer-file .unknown {
  color: var(--red);
  text-decoration: line-through 2px;
}

.file-events {
  position: relative;
  margin-top: 20px;
  padding: 14px;
  color: var(--white);
  background: var(--blue);
}

.file-events > span {
  display: block;
  margin-bottom: 12px;
  color: var(--acid);
  font-size: 8px;
  letter-spacing: .12em;
}

.file-events > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid rgba(255, 255, 255, .25);
  font: 10px var(--mono);
}

.file-events time {
  color: rgba(255, 255, 255, .55);
}

.file-mark {
  position: absolute;
  top: 32%;
  right: -4%;
  padding: 9px 16px;
  border: 4px solid var(--red);
  color: var(--red);
  font: 400 clamp(22px, 3vw, 46px)/1 var(--display);
  letter-spacing: -.04em;
  transform: rotate(-12deg);
}

.record-foot {
  grid-column: 1 / 3;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 4vw;
  margin-top: 5vh;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.record-foot p {
  color: rgba(255, 255, 255, .55);
  font: 10px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.record-foot strong {
  max-width: 25ch;
  color: var(--acid);
  font-size: clamp(24px, 3.2vw, 50px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

/* corte tipográfico */
.switch-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 80svh;
  overflow: hidden;
  color: var(--ink);
  background: var(--red);
}

.switch-word {
  position: absolute;
  font: 400 20vw/.78 var(--display);
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.switch-word.old {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.switch-word.new {
  color: var(--acid);
  transform: translateY(115%);
}

.switch-cross {
  position: absolute;
  z-index: 2;
  width: 0;
  height: 5.5vw;
  background: var(--ink);
  transform: rotate(-5deg);
}

.switch-section p {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 28px;
  max-width: 44ch;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-align: right;
}

/* engine */
.engine {
  padding: 12vh 4vw 0;
  color: var(--white);
  background: var(--blue);
}

.engine-head {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 5vw;
}

.engine-head .section-kicker {
  grid-column: 1 / 3;
  color: var(--acid);
}

.engine-head h2 {
  margin-top: 25px;
}

.engine-head h2 em {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.engine-head > p {
  max-width: 44ch;
  padding-bottom: 12px;
  color: rgba(255, 255, 255, .73);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.58;
}

.engine-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 9vh;
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
}

.engine-flow article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 22px 20px;
  overflow: hidden;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  transition: color .3s, background .3s;
}

.engine-flow article:hover {
  color: var(--ink);
  background: var(--acid);
}

.flow-number {
  font-size: 9px;
  letter-spacing: .1em;
}

.engine-flow h3 {
  margin-top: auto;
  font: 400 clamp(38px, 4vw, 66px)/.86 var(--display);
  letter-spacing: -.055em;
}

.engine-flow p {
  min-height: 7em;
  margin-top: 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.55;
}

.engine-flow article:hover p {
  color: var(--ink-soft);
}

.flow-viz {
  position: relative;
  height: 110px;
  margin: 20px -20px -22px;
  border-top: 1px solid var(--white);
}

.engine-flow article:hover .flow-viz {
  border-color: var(--ink);
}

.signal-viz {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.signal-viz i {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--white);
  border-radius: 50%;
}

.signal-viz i:nth-child(2) {
  width: 22px;
  height: 22px;
  background: var(--red);
}

.signal-viz b {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: -1;
  border-top: 1px solid var(--white);
}

.identity-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.identity-viz span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--white);
  border-radius: 50%;
  font: 10px var(--mono);
}

.identity-viz i {
  width: 20px;
  border-top: 1px solid var(--white);
}

.rule-viz {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px 10px;
  padding: 15px 20px;
  font-size: 8px;
}

.rule-viz span {
  color: var(--acid);
}

.rule-viz b {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.action-viz {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.action-viz span {
  font-size: 48px;
}

.action-viz b {
  color: var(--acid);
  font: 400 28px var(--display);
}

/* cenário vivo */
.scenario {
  display: grid;
  grid-template-columns: .64fr 1.36fr;
  gap: 5vw;
  padding: 13vh 4vw;
  color: var(--white);
  background: var(--ink);
}

.scenario-intro {
  align-self: center;
}

.scenario-intro .section-kicker {
  color: var(--red);
}

.scenario-intro h2 {
  margin: 28px 0 30px;
  font-size: clamp(54px, 6.5vw, 108px);
}

.scenario-intro h2 em {
  color: var(--acid);
}

.scenario-intro > p {
  max-width: 34ch;
  color: rgba(255, 255, 255, .62);
  font-size: 16px;
  line-height: 1.6;
}

.replay {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  padding: 12px 0 7px;
  border: 0;
  border-bottom: 1px solid var(--white);
  cursor: pointer;
  color: var(--white);
  background: transparent;
  font: 600 9px var(--mono);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.replay span {
  color: var(--red);
  font-size: 20px;
}

.signal-room {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--white);
  background: #181816;
}

.signal-room::after {
  position: absolute;
  z-index: 4;
  top: 39px;
  bottom: 34px;
  left: -6%;
  width: 3px;
  content: "";
  opacity: 0;
  background: var(--acid);
  box-shadow: 0 0 26px var(--acid);
  pointer-events: none;
}

.signal-room.is-scanning::after {
  opacity: .7;
  animation: scan 1.2s ease both;
}

@keyframes scan {
  to { left: 106%; }
}

.room-top,
.room-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  font-size: 8px;
  letter-spacing: .1em;
}

.room-top > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.room-top b {
  justify-self: end;
  color: var(--acid);
}

.room-main {
  display: grid;
  grid-template-columns: 1fr 215px;
  min-height: 575px;
}

.room-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7%;
  overflow: hidden;
}

.room-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .12;
  background-image:
    linear-gradient(to right, #fff 1px, transparent 1px),
    linear-gradient(to bottom, #fff 1px, transparent 1px);
  background-size: 56px 56px;
}

.stage-count {
  position: absolute;
  top: 2%;
  right: 3%;
  color: transparent;
  font-size: clamp(110px, 15vw, 240px);
  letter-spacing: -.12em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .16);
}

.stage-copy,
.stage-action {
  position: relative;
  z-index: 1;
}

.stage-copy > span,
.stage-action > span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 8px;
  letter-spacing: .13em;
}

.stage-copy strong {
  display: block;
  max-width: 11ch;
  font: 400 clamp(34px, 4vw, 70px)/.89 var(--display);
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.stage-copy p {
  max-width: 35ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  line-height: 1.55;
}

.stage-action {
  margin-top: 55px;
  padding: 14px 0 0 20%;
  border-top: 1px solid rgba(255, 255, 255, .35);
}

.stage-action > span {
  color: var(--acid);
}

.stage-action b {
  font-size: clamp(20px, 2vw, 32px);
  letter-spacing: -.02em;
}

.room-rail {
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.rail-person {
  padding: 20px 16px;
  color: var(--ink);
  background: var(--acid);
}

.rail-person span {
  display: block;
  font-size: 8px;
}

.rail-person strong {
  display: block;
  margin: 32px 0 4px;
  font: 400 32px var(--display);
  letter-spacing: -.04em;
}

.rail-person small {
  font: 8px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.room-rail ol {
  list-style: none;
  padding: 22px 16px;
}

.room-rail li {
  position: relative;
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 10px;
  min-height: 70px;
  opacity: .28;
  transition: opacity .3s;
}

.room-rail li::after {
  position: absolute;
  top: 11px;
  bottom: -1px;
  left: 4px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, .35);
}

.room-rail li:last-child::after {
  display: none;
}

.room-rail li i {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  margin-top: 2px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: #181816;
}

.room-rail li.active,
.room-rail li.done {
  opacity: 1;
}

.room-rail li.active i {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 61, 31, .18);
}

.room-rail li.done i {
  background: var(--acid);
  border-color: var(--acid);
}

.room-rail li span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font: 9px var(--mono);
  text-transform: uppercase;
}

.room-rail li b {
  color: rgba(255, 255, 255, .48);
  font-weight: 400;
}

.room-bottom {
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  min-height: 34px;
  border-top: 1px solid rgba(255, 255, 255, .35);
  border-bottom: 0;
  color: rgba(255, 255, 255, .45);
}

.room-bottom span:first-child {
  color: var(--red);
}

/* dependência operacional */
.dependency {
  padding: 12vh 4vw;
  overflow: hidden;
  background: var(--paper);
}

.dependency h2 {
  max-width: 13ch;
  margin-top: 30px;
}

.old-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 9vh;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.old-path > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  padding: 15px 12px;
  overflow: hidden;
}

.old-path > div::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 5px;
  content: "";
  background: var(--red);
  transform: rotate(-4deg) scaleX(0);
  transform-origin: left;
}

.old-path.is-cut > div::after {
  transform: rotate(-4deg) scaleX(1);
  transition: transform .8s cubic-bezier(.7, 0, .2, 1);
}

.old-path > div > span,
.old-path > div > small {
  font: 8px var(--mono);
  letter-spacing: .08em;
}

.old-path > div > b {
  font: 400 clamp(18px, 1.6vw, 27px)/.95 var(--display);
  letter-spacing: -.04em;
}

.old-path > i {
  font-style: normal;
  font-size: 28px;
}

.old-path .path-late {
  color: var(--white);
  background: var(--red);
}

.path-cut {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 5vw;
  margin-top: 45px;
  padding: 36px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}

.cut-copy span {
  display: block;
  margin-bottom: 15px;
  font-size: 9px;
  letter-spacing: .1em;
}

.cut-copy strong {
  font: 400 clamp(31px, 4vw, 65px)/.9 var(--display);
  letter-spacing: -.05em;
}

.path-cut p {
  max-width: 45ch;
  font-size: 16px;
  line-height: 1.55;
}

/* camada no ecossistema */
.layer {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 6vw;
  padding: 12vh 4vw;
  color: var(--white);
  background: var(--blue);
}

.layer-copy {
  align-self: center;
}

.layer-copy .section-kicker {
  color: var(--acid);
}

.layer-copy h2 {
  margin: 26px 0 32px;
  font-size: clamp(54px, 6vw, 100px);
}

.layer-copy h2 em {
  color: var(--acid);
}

.layer-copy p {
  max-width: 38ch;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  line-height: 1.6;
}

.layer-stack {
  align-self: center;
  perspective: 1000px;
}

.stack-row {
  position: relative;
  min-height: 165px;
  padding: 21px;
  border: 1px solid var(--white);
  transform: skewY(-2deg);
  transition: transform .35s;
}

.stack-row:hover {
  transform: skewY(0) translateX(-12px);
}

.stack-row + .stack-row {
  margin-top: 18px;
}

.stack-row > span {
  display: block;
  margin-bottom: 40px;
  font-size: 9px;
  letter-spacing: .13em;
}

.stack-row > b {
  display: block;
  font: 400 clamp(25px, 2.9vw, 47px)/.9 var(--display);
  letter-spacing: -.045em;
}

.stack-row > p {
  position: absolute;
  right: 21px;
  bottom: 20px;
  max-width: 27ch;
  font-size: 11px;
  line-height: 1.4;
  text-align: right;
}

.stack-row.channels {
  color: var(--ink);
  background: var(--white);
}

.stack-row.prisma {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--ink);
  transform: skewY(-2deg) translateX(-28px);
  box-shadow: 18px 18px 0 var(--red);
}

.stack-row.prisma:hover {
  transform: skewY(0) translateX(-40px);
}

.stack-row.data {
  background: var(--ink);
}

.stack-pulse {
  position: absolute;
  right: 22px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stack-pulse i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-row 1.1s infinite alternate;
}

.stack-pulse i:nth-child(2) { animation-delay: .15s; }
.stack-pulse i:nth-child(3) { animation-delay: .3s; }
.stack-pulse i:nth-child(4) { animation-delay: .45s; }
.stack-pulse i:nth-child(5) { animation-delay: .6s; }

@keyframes pulse-row {
  to { transform: scale(2.4); opacity: .25; }
}

/* ativação responsável */
.respect {
  padding: 12vh 4vw 0;
  background: var(--white);
}

.respect-head {
  display: flex;
  flex-direction: column;
}

.respect-head h2 {
  margin-top: 30px;
}

.respect-head h2 em {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.respect-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 9vh;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.respect-list article {
  min-height: 360px;
  padding: 22px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.respect-list article > span {
  color: var(--red);
  font-size: 9px;
  letter-spacing: .12em;
}

.respect-list h3 {
  max-width: 11ch;
  margin-top: 16vh;
  font: 400 clamp(27px, 3vw, 50px)/.93 var(--display);
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.respect-list p {
  max-width: 32ch;
  margin-top: 17px;
  color: #5d5b55;
  font-size: 14px;
  line-height: 1.5;
}

.respect-statement {
  margin-inline: -4vw;
  margin-top: 9vh;
  padding: 7vh 4vw;
  color: var(--white);
  background: var(--red);
}

.respect-statement span {
  display: block;
  margin-bottom: 10px;
  font: 9px var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.respect-statement b {
  display: block;
  max-width: 14ch;
  font: 400 clamp(48px, 8vw, 132px)/.83 var(--display);
  letter-spacing: -.06em;
  text-transform: uppercase;
}

/* efeitos na operação */
.outcomes {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 6vw;
  padding: 12vh 4vw;
  background: var(--paper);
}

.outcome-title {
  align-self: start;
}

.outcome-title h2 {
  margin-top: 27px;
  font-size: clamp(54px, 6.7vw, 110px);
}

.outcome-title h2 em {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.outcome-lines {
  border-top: 1px solid var(--ink);
}

.outcome-lines > div {
  display: grid;
  grid-template-columns: 52px 1fr 52px 1fr;
  gap: 18px;
  align-items: baseline;
  min-height: 125px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
}

.outcome-lines span,
.outcome-lines strong {
  font: 600 8px var(--mono);
  letter-spacing: .1em;
}

.outcome-lines span {
  color: var(--muted);
}

.outcome-lines strong {
  color: var(--red);
}

.outcome-lines b,
.outcome-lines em {
  font-size: clamp(20px, 2.2vw, 35px);
  line-height: 1;
  letter-spacing: -.03em;
}

.outcome-lines b {
  font-weight: 500;
}

.outcome-lines em {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}

/* fechamento */
.final {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 12vh 4vw 8vh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.final-noise {
  position: absolute;
  top: 40%;
  left: -5%;
  color: transparent;
  font: 400 12vw/.8 var(--display);
  letter-spacing: -.06em;
  white-space: nowrap;
  opacity: .12;
  transform: rotate(-7deg);
  -webkit-text-stroke: 1px var(--white);
}

.final .section-kicker {
  position: relative;
  color: var(--red);
}

.final h2 {
  position: relative;
  margin-top: 4vh;
  font: 400 clamp(70px, 13vw, 210px)/.75 var(--display);
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.final h2 > span {
  display: block;
  overflow: hidden;
}

.final h2 i {
  display: block;
  font-style: normal;
}

.final-outline i {
  color: var(--acid);
}

.final-bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(460px, 1fr);
  align-items: end;
  gap: 7vw;
  margin-top: 8vh;
}

.final-bottom p {
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  line-height: 1.65;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 115px;
  padding: 0 26px;
  border: 1px solid var(--white);
  color: var(--ink);
  background: var(--red);
  transition: background .25s;
}

.final-cta:hover {
  background: var(--acid);
}

.final-cta span {
  font: 400 clamp(20px, 2.7vw, 43px)/1 var(--display);
  letter-spacing: -.04em;
}

.final-cta b {
  font-size: 45px;
  font-weight: 400;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 4vw;
  border-top: 1px solid rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .5);
  background: var(--ink);
  font: 8px var(--mono);
  letter-spacing: .12em;
}

footer a {
  color: var(--white);
}

/* responsividade */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr .55fr;
  }

  .hero h1 {
    font-size: 9.4vw;
  }

  .live-proof {
    min-height: 590px;
  }

  .proof-person strong {
    font-size: 38px;
  }

  .record {
    gap: 4vw;
  }

  .engine-flow article {
    min-height: 450px;
  }

  .scenario {
    grid-template-columns: .55fr 1.45fr;
    gap: 3vw;
  }

  .room-main {
    grid-template-columns: 1fr 180px;
  }

  .old-path > i {
    font-size: 18px;
  }

  .old-path > div {
    min-height: 160px;
    padding-inline: 8px;
  }

  .layer {
    gap: 4vw;
  }
}

@media (max-width: 820px) {
  .nav {
    top: 0;
    grid-template-columns: 1fr auto;
    min-height: 56px;
    padding-inline: 20px;
  }

  .nav-state {
    display: none;
  }

  .nav-cta {
    font-size: 8px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 96px 20px 24px;
  }

  .hero-index {
    top: 72px;
    left: 20px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: 14.6vw;
    line-height: .84;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 30px;
  }

  .live-proof {
    min-height: 0;
    margin-top: 38px;
  }

  .proof-result strong {
    font-size: 18vw;
  }

  .proof-person {
    padding: 22px 18px;
  }

  .proof-id {
    margin-bottom: 18px;
  }

  .proof-person strong {
    font-size: clamp(32px, 9vw, 48px);
  }

  .proof-result {
    min-height: 150px;
  }

  .delay,
  .record,
  .engine,
  .scenario,
  .dependency,
  .layer,
  .respect,
  .outcomes,
  .final {
    padding-left: 20px;
    padding-right: 20px;
  }

  .delay-title,
  .record,
  .engine-head,
  .scenario,
  .layer,
  .outcomes {
    grid-template-columns: 1fr;
  }

  .delay h2,
  .record h2,
  .engine-head h2,
  .scenario-intro h2,
  .dependency h2,
  .layer h2,
  .respect h2,
  .outcome-title h2 {
    font-size: 14vw;
  }

  .delay-title > p {
    max-width: 48ch;
  }

  .time-race {
    grid-template-columns: 1fr;
  }

  .time-race::before {
    display: none;
  }

  .race-head {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .race-head span:last-child {
    display: none;
  }

  .client-row,
  .operation-row,
  .operation-row:nth-of-type(5),
  .operation-row:nth-of-type(6),
  .operation-row:nth-of-type(7) {
    grid-column: 1;
    grid-row: auto;
  }

  .race-verdict {
    grid-column: 1;
    align-items: flex-start;
    flex-direction: column;
  }

  .record {
    gap: 7vh;
  }

  .record::before {
    display: none;
  }

  .customer-file {
    transform: none;
    box-shadow: 9px 9px 0 var(--red);
  }

  .record-foot {
    grid-column: 1;
    align-items: flex-start;
    flex-direction: column;
  }

  .switch-section {
    min-height: 55svh;
  }

  .switch-word {
    font-size: 28vw;
  }

  .engine-head .section-kicker {
    grid-column: 1;
  }

  .engine-flow {
    grid-template-columns: 1fr 1fr;
  }

  .scenario {
    gap: 7vh;
  }

  .scenario-intro > p {
    max-width: 48ch;
  }

  .signal-room {
    min-height: 620px;
  }

  .old-path {
    grid-template-columns: 1fr;
  }

  .old-path > div {
    min-height: 120px;
    border-bottom: 1px solid var(--ink);
  }

  .old-path > i {
    display: none;
  }

  .path-cut {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .layer {
    gap: 8vh;
  }

  .stack-row.prisma {
    transform: skewY(-2deg) translateX(-8px);
  }

  .stack-row.prisma:hover {
    transform: skewY(0) translateX(-8px);
  }

  .respect-list {
    grid-template-columns: 1fr;
  }

  .respect-list article {
    min-height: 280px;
  }

  .respect-list h3 {
    margin-top: 10vh;
  }

  .respect-statement {
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .outcomes {
    gap: 8vh;
  }

  .final-bottom {
    grid-template-columns: 1fr;
    gap: 5vh;
  }
}

@media (max-width: 520px) {
  .boot {
    padding: 22px 20px;
  }

  .boot-message strong {
    font-size: 13vw;
  }

  .brand {
    font-size: 13px;
  }

  .brand svg {
    width: 20px;
  }

  .hero h1 {
    font-size: 14.7vw;
  }

  .hero-bottom p {
    font-size: 14px;
    line-height: 1.5;
  }

  .arrow-link {
    max-width: 100%;
  }

  .live-proof {
    margin-inline: -20px;
    margin-bottom: -24px;
    border-right: 0;
    border-left: 0;
  }

  .proof-head {
    padding-inline: 20px;
  }

  .proof-person {
    padding-inline: 20px;
  }

  .proof-person p {
    max-width: 30ch;
    font-size: 12px;
  }

  .proof-log li {
    grid-template-columns: 58px 1fr;
    padding: 10px 20px;
  }

  .proof-log li b {
    display: none;
  }

  .proof-result {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: end;
    min-height: 126px;
    padding-inline: 20px;
  }

  .proof-result > span {
    grid-column: 1;
    margin-bottom: 6px;
  }

  .proof-result strong {
    grid-column: 2;
    grid-row: 1 / 3;
    font-size: 18vw;
  }

  .proof-result small {
    grid-column: 1;
    margin: 0;
  }

  .hero .outline,
  .engine-head h2 em,
  .respect-head h2 em,
  .outcome-title h2 em {
    -webkit-text-stroke-width: 1px;
  }

  .race-row {
    grid-template-columns: 65px 1fr;
    gap: 9px;
    min-height: 75px;
    padding-inline: 12px;
  }

  .race-row > span {
    display: none;
  }

  .race-row strong {
    font-size: 18px;
  }

  .race-verdict {
    padding-inline: 12px;
  }

  .customer-file {
    padding: 14px;
  }

  .file-name {
    font-size: 17vw;
  }

  .customer-file dl {
    grid-template-columns: 1fr;
  }

  .file-mark {
    top: 34%;
    font-size: 20px;
  }

  .file-events > div {
    grid-template-columns: 70px 1fr;
    font-size: 8px;
  }

  .switch-section {
    min-height: 45svh;
  }

  .switch-section p {
    left: 20px;
    right: 20px;
  }

  .engine-flow {
    grid-template-columns: 1fr;
    margin-inline: -20px;
  }

  .engine-flow article {
    min-height: 370px;
  }

  .engine-flow p {
    min-height: 0;
  }

  .signal-room {
    min-height: 720px;
  }

  .room-main {
    grid-template-columns: 1fr;
  }

  .room-stage {
    min-height: 480px;
    padding: 24px;
  }

  .stage-copy strong {
    font-size: 10vw;
  }

  .stage-action {
    padding-left: 0;
  }

  .room-rail {
    border-top: 1px solid rgba(255, 255, 255, .35);
    border-left: 0;
  }

  .rail-person {
    display: none;
  }

  .room-rail ol {
    display: flex;
    justify-content: space-between;
    padding: 18px 12px;
  }

  .room-rail li {
    display: block;
    min-height: 44px;
  }

  .room-rail li::after {
    top: 4px;
    bottom: auto;
    left: 8px;
    width: calc(20vw - 4px);
    height: 1px;
  }

  .room-rail li i {
    display: block;
    margin-bottom: 9px;
  }

  .room-rail li span {
    font-size: 7px;
  }

  .room-rail li b {
    display: none;
  }

  .room-bottom {
    grid-template-columns: 1fr auto;
  }

  .room-bottom span:nth-child(2) {
    display: none;
  }

  .path-cut {
    box-shadow: 7px 7px 0 var(--ink);
  }

  .cut-copy strong {
    font-size: 9vw;
  }

  .stack-row {
    min-height: 145px;
    padding: 17px;
  }

  .stack-row > p {
    position: static;
    margin-top: 13px;
    text-align: left;
  }

  .stack-row > span {
    margin-bottom: 25px;
  }

  .respect-list {
    margin-inline: -20px;
  }

  .respect-list article {
    padding-inline: 20px;
  }

  .outcome-lines > div {
    grid-template-columns: 45px 1fr;
    gap: 8px 12px;
  }

  .outcome-lines strong {
    grid-column: 1;
  }

  .outcome-lines em {
    grid-column: 2;
  }

  .final {
    min-height: 92svh;
  }

  .final h2 {
    font-size: 17vw;
  }

  .final-cta {
    min-height: 95px;
    padding-inline: 17px;
  }

  .final-cta span {
    font-size: 19px;
  }

  footer {
    flex-direction: column;
    padding-inline: 20px;
  }
}

@media (hover: none) {
  .cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .boot { display: none; }
}
