:root {
  --blue: #4b1aff;
  --deep-blue: #2600b2;
  --purple: #a994ff;
  --yellow: #a6ff15;
  --grey: #dedede;
  --soft-grey: #ddd8ee;
  --grid-size: calc(100vw / 96);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --page-gutter: clamp(1.25rem, 5vw, 3.75rem);
}

@font-face {
  font-family: SequelSansHeadline;
  src: url("https://cdn.prod.website-files.com/6717ae652c13a07892c7857d/6717ae652c13a07892c785a8_font.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: SequelSansBook;
  src: url("https://cdn.prod.website-files.com/6717ae652c13a07892c7857d/6717ae652c13a07892c78596_font.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--blue);
  background: var(--grey);
  font-family: SequelSansBook, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  position: relative;
}

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

a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 0.35rem;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem clamp(1.25rem, 4vw, 3.75rem);
  color: var(--blue);
  background: linear-gradient(180deg, rgba(221, 216, 238, 0.86), rgba(221, 216, 238, 0.62));
  border-bottom: 1px solid rgba(75, 26, 255, 0.1);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-0.4rem);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.is-loaded .site-header {
  opacity: 1;
  transform: translateY(0);
}

.brand {
  font-family: SequelSansHeadline, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  text-transform: lowercase;
}

.contact-link {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.nav-links {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 1.5rem;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--soft-grey);
}

.hero-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
}

.hero-base {
  position: absolute;
  inset: 0;
  background: #ddd8ee;
}

.hero-bg::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  background-image: url("https://cdn.prod.website-files.com/6717ae652c13a07892c7857d/6717ae652c13a07892c785f3_szum-bg.png");
  background-position: 50%;
  background-repeat: repeat;
  background-size: 50px;
  content: "";
  opacity: 0.15;
  pointer-events: none;
}

#hero-noise-canvas,
#hero-gradient-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#hero-noise-canvas {
  z-index: 4;
  opacity: 0.15;
  mix-blend-mode: normal;
  image-rendering: pixelated;
}

#hero-gradient-canvas {
  z-index: 2;
  opacity: 0.82;
  mix-blend-mode: soft-light;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(100%, 1120px);
  min-height: 100svh;
  align-items: center;
  margin: 0 auto;
  padding: 4rem clamp(1.25rem, 5vw, 3.75rem) 3rem;
}

.hero-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--blue);
  font-family: SequelSansHeadline, sans-serif;
  font-size: clamp(2.5rem, 5.4vw, 4.55rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  transform: translateX(-10px);
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.data-wrap {
  position: relative;
  width: max-content;
}

.byte-dots {
  position: absolute;
  right: calc(var(--grid-size) * -4);
  bottom: 0.52em;
  display: flex;
  gap: 0;
  transform: translateX(calc(var(--dots-shift, 0px) + 10px));
}

.byte-dots span {
  display: block;
  width: var(--grid-size);
  height: var(--grid-size);
  opacity: 0;
  filter: blur(3px);
}

.byte-dots span:nth-child(1) {
  background: var(--blue);
}

.byte-dots span:nth-child(2) {
  background: var(--purple);
}

.byte-dots span:nth-child(3),
.byte-dots span:nth-child(4) {
  background: var(--yellow);
}

.is-loaded .byte-dots span {
  animation: dot-pop 360ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.is-loaded .byte-dots span:nth-child(1) {
  animation-delay: 0.95s;
}

.is-loaded .byte-dots span:nth-child(2) {
  animation-delay: 1s;
}

.is-loaded .byte-dots span:nth-child(3) {
  animation-delay: 1.05s;
}

.is-loaded .byte-dots span:nth-child(4) {
  animation-delay: 1.1s;
}

@keyframes dot-pop {
  0% {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(0);
  }

  60% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(calc(var(--grid-size) * -0.45));
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.char {
  display: inline-block;
  opacity: 0;
  filter: blur(1px);
  transform: translateY(0.08em);
  transition: opacity 360ms ease, filter 360ms ease, transform 360ms ease;
  transition-delay: calc(var(--char-index, 0) * 16ms + var(--line-delay, 0ms));
}

.is-loaded .char {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.blast-flash {
  position: absolute;
  z-index: 2;
  left: 67%;
  top: 52%;
  width: 8rem;
  height: 8rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.1);
  box-shadow: 0 0 34px rgba(166, 255, 21, 0.3);
}

.is-loaded .blast-flash {
  animation: flash-out 800ms cubic-bezier(0.16, 1, 0.3, 1) 1.35s forwards;
}

@keyframes flash-out {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
  }

  35% {
    opacity: 0.42;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.4);
  }
}

.pixel-edge {
  --pixel: var(--grid-size);
  position: relative;
  z-index: 7;
  height: calc((var(--pixel) * 4) + 54px);
  margin-top: calc((var(--pixel) * -4) - 54px);
  background: linear-gradient(transparent 0 calc(var(--pixel) * 4), var(--blue) calc(var(--pixel) * 4));
  overflow: hidden;
  pointer-events: none;
}

.data-trail {
  position: absolute;
  z-index: 9;
  top: var(--trail-top, 0px);
  left: var(--trail-left, 0px);
  width: var(--trail-size, 12px);
  height: var(--trail-height, 0px);
  background: var(--yellow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms linear;
}

body.trail-ready .data-trail {
  opacity: 1;
}

.pixel-stacks {
  position: absolute;
  right: 0;
  bottom: 54px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(96, minmax(0, 1fr));
  align-items: end;
  gap: 0;
}

.pixel-stack {
  display: flex;
  min-width: 0;
  flex-direction: column-reverse;
}

.pixel-edge::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54px;
  background-image:
    linear-gradient(90deg, rgba(222, 222, 222, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(222, 222, 222, 0.1) 1px, transparent 1px);
  background-position: 0 0;
  background-size: var(--grid-size) var(--grid-size);
  content: "";
  pointer-events: none;
}

.pixel-edge .pixel {
  display: block;
  width: 100%;
  height: var(--pixel);
  background: var(--blue);
  box-shadow:
    inset 1px 0 rgba(222, 222, 222, 0.1),
    inset 0 1px rgba(222, 222, 222, 0.1);
  transition: background-color 160ms linear, box-shadow 160ms linear;
}

.pixel-stack.is-green .pixel {
  background: var(--yellow);
  box-shadow: none;
  transition-delay: calc(var(--swarm-delay, 0ms) + var(--row-delay, 0ms));
}

.statement {
  position: relative;
  min-height: 54svh;
  overflow: hidden;
  background: var(--blue);
  color: var(--grey);
}

.statement::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(222, 222, 222, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(222, 222, 222, 0.1) 1px, transparent 1px);
  background-position: 0 -54px;
  background-size: var(--grid-size) var(--grid-size);
  content: "";
}

.swarm-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  pointer-events: none;
}

.statement-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1120px);
  min-height: 54svh;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.36fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-content: center;
  align-items: start;
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.75rem) clamp(1.25rem, 5vw, 3.75rem) 4rem;
}

.statement-inner .section-label {
  grid-column: 1 / -1;
}

.statement-note {
  align-self: end;
  max-width: 25rem;
  margin: 0;
  color: rgba(222, 222, 222, 0.74);
  font-size: clamp(0.94rem, 1.5vw, 1.12rem);
  line-height: 1.5;
}

h2 {
  max-width: 980px;
  margin: 0;
  font-family: SequelSansHeadline, sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h2 span {
  display: inline-block;
  padding: 0 0.12em 0.06em;
  background: var(--yellow);
  color: var(--blue);
}

.section-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) var(--page-gutter);
}

.section-label {
  margin: 0 0 1.35rem;
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.section-label-dark {
  color: var(--blue);
}

.section-copy {
  max-width: 37rem;
  margin: 1.75rem 0 0;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.5;
}

.section-copy-light {
  color: rgba(222, 222, 222, 0.74);
}

.problem-section {
  position: relative;
  overflow: hidden;
  background: var(--grey);
  color: var(--blue);
}

.kinetic-line {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(75, 26, 255, 0.22);
  color: var(--blue);
  white-space: nowrap;
}

.kinetic-line span {
  display: block;
  width: max-content;
  padding: 0.78rem 0;
  font-family: SequelSansHeadline, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-4%);
}

.problem-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 9vw, 8rem);
  padding-top: clamp(8rem, 14vw, 12rem);
  padding-bottom: clamp(9rem, 15vw, 13rem);
}

.problem-intro {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.pain-list {
  border-bottom: 1px solid rgba(75, 26, 255, 0.25);
}

.pain-row {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding: clamp(1.5rem, 4vw, 2.4rem) 0;
  border-top: 1px solid rgba(75, 26, 255, 0.25);
}

.pain-index,
.offer-number,
.process-number {
  padding-top: 0.25rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.pain-row h3,
.offer-row h3,
.process-list h3 {
  margin: 0;
  font-family: SequelSansHeadline, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.pain-row p,
.offer-row p,
.process-list p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.pixel-river {
  position: absolute;
  z-index: 1;
  right: -3vw;
  bottom: -2vw;
  display: flex;
  align-items: flex-end;
  gap: 0;
  transform: rotate(-8deg);
  transform-origin: right bottom;
}

.pixel-river span {
  display: block;
  width: clamp(2rem, 6vw, 6rem);
  height: clamp(2rem, 6vw, 6rem);
  background: var(--yellow);
}

.pixel-river span:nth-child(2),
.pixel-river span:nth-child(5) {
  transform: translateY(-100%);
}

.pixel-river span:nth-child(3) {
  transform: translateY(-200%);
}

.offer-section {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--grey);
  isolation: isolate;
}

.offer-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.45fr);
  gap: 1rem clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(4rem, 9vw, 7rem);
}

.offer-heading .section-label,
.offer-heading h2 {
  grid-column: 1;
}

.offer-heading .section-copy {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
}

.offer-list {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(222, 222, 222, 0.28);
}

.offer-row {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) minmax(10rem, 0.35fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(1.8rem, 4vw, 2.8rem) 0;
  border-top: 1px solid rgba(222, 222, 222, 0.28);
  background-image: linear-gradient(
    90deg,
    rgba(166, 255, 21, 0.1) 0%,
    rgba(166, 255, 21, 0.035) 42%,
    transparent 78%
  );
  background-repeat: no-repeat;
  background-size: 0% 100%;
}

.offer-row h3 {
  margin-bottom: 0.75rem;
  transition: color 220ms var(--ease-out);
}

.offer-row p {
  max-width: 42rem;
  color: rgba(222, 222, 222, 0.74);
  transition: color 220ms var(--ease-out);
}

.offer-number {
  transition: color 220ms var(--ease-out);
}

.offer-output {
  justify-self: end;
  padding: 0.45rem 0.62rem;
  border: 1px solid rgba(166, 255, 21, 0.52);
  color: var(--yellow);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    color 180ms var(--ease-out),
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.offer-orbit {
  position: absolute;
  z-index: 0;
  width: min(56vw, 48rem);
  aspect-ratio: 1;
  border: 1px solid rgba(169, 148, 255, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.offer-orbit::before,
.offer-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.offer-orbit::before {
  inset: 18%;
  border: 1px solid rgba(166, 255, 21, 0.18);
}

.offer-orbit::after {
  top: 9%;
  left: 50%;
  width: var(--grid-size);
  height: var(--grid-size);
  background: var(--yellow);
}

.offer-orbit-one {
  top: -22%;
  right: -16%;
}

.offer-orbit-two {
  bottom: -40%;
  left: -28%;
  transform: scale(0.8);
}

.record-section {
  position: relative;
  overflow: hidden;
  background: var(--purple);
  color: var(--deep-blue);
}

.record-word {
  position: absolute;
  z-index: 0;
  top: 3%;
  left: -0.04em;
  color: rgba(38, 0, 178, 0.1);
  font-family: SequelSansHeadline, sans-serif;
  font-size: clamp(12rem, 34vw, 36rem);
  letter-spacing: -0.09em;
  line-height: 0.8;
  pointer-events: none;
}

.record-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.record-intro {
  position: sticky;
  top: 7rem;
}

.record-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--grey);
  box-shadow: 18px 18px 0 var(--deep-blue);
}

.record-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(38, 0, 178, 0.24);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.record-block {
  padding: 1.2rem;
  background: var(--soft-grey);
}

.record-block p {
  margin: 0.6rem 0 0;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.45;
}

.record-label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.record-user {
  margin-top: 1.2rem;
}

.record-comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) 2rem minmax(0, 1.3fr);
  align-items: stretch;
  margin-top: 1.2rem;
}

.record-before {
  background: rgba(169, 148, 255, 0.28);
}

.record-after {
  background: var(--yellow);
}

.record-arrow {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-family: SequelSansHeadline, sans-serif;
  font-size: 1.35rem;
}

.record-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.record-tags span {
  padding: 0.45rem 0.62rem;
  border: 1px solid rgba(38, 0, 178, 0.3);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.motion-ready .record-card .record-arrow,
.motion-ready .record-card .record-after,
.motion-ready .record-card .record-before {
  transition:
    opacity 360ms var(--ease-out),
    transform 480ms var(--ease-out),
    clip-path 560ms var(--ease-out);
}

.motion-ready .record-card .record-arrow {
  opacity: 0;
  transform: translateX(-35%) rotate(-12deg);
}

.motion-ready .record-card .record-after {
  clip-path: inset(0 100% 0 0);
  transform: translateX(-0.6rem);
}

.motion-ready .record-card.is-visible .record-arrow {
  opacity: 1;
  transform: none;
  transition-delay: 360ms;
}

.motion-ready .record-card.is-visible .record-after {
  clip-path: inset(0 0 0 0);
  transform: none;
  transition-delay: 470ms;
}

.motion-ready .record-card.is-visible .record-before {
  opacity: 0.76;
  transition-delay: 680ms;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--deep-blue);
  color: var(--grey);
}

.process-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.process-heading {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.process-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  left: 1.08rem;
  width: 1px;
  background: rgba(166, 255, 21, 0.35);
  content: "";
}

.process-list::after {
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  left: 1.05rem;
  width: 3px;
  background: var(--yellow);
  content: "";
  transform: scaleY(0);
  transform-origin: 50% 0%;
  transition: transform 1100ms var(--ease-in-out);
}

.process-list.is-motion-active::after {
  transform: scaleY(1);
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 1.5rem;
  padding: 0 0 clamp(3rem, 7vw, 5rem);
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  padding: 0;
  background: var(--yellow);
  color: var(--deep-blue);
  transition:
    transform 460ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.motion-ready .process-list li .process-number {
  transform: rotate(-9deg) scale(0.92);
}

.motion-ready .process-list li.is-visible .process-number {
  box-shadow: 0 0 0 0.36rem rgba(166, 255, 21, 0.12);
  transform: none;
  transition-delay: calc(var(--reveal-delay, 0ms) + 80ms);
}

.process-list h3 {
  margin-top: 0.18rem;
  margin-bottom: 0.75rem;
}

.process-list p {
  max-width: 34rem;
  color: rgba(222, 222, 222, 0.7);
}

.pilot-section {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  background: var(--yellow);
  color: var(--blue);
}

.pilot-shell {
  display: flex;
  min-height: 86svh;
  flex-direction: column;
  justify-content: space-between;
}

.pilot-shell h2 {
  max-width: 1000px;
  font-size: clamp(3rem, 8vw, 7.3rem);
  line-height: 0.93;
}

.pilot-bottom {
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  justify-content: space-between;
}

.pilot-bottom > p {
  max-width: 36rem;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.45;
}

.pilot-link {
  display: inline-flex;
  min-width: 12rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 1.15rem;
  background: var(--blue);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease-out), background-color 180ms linear;
}

.pilot-link:active {
  transform: scale(0.97);
}

.pilot-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(75, 26, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(75, 26, 255, 0.08) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
}

.pilot-signal {
  position: absolute;
  z-index: 1;
  width: clamp(3rem, 8vw, 8rem);
  aspect-ratio: 1;
  background: var(--purple);
  pointer-events: none;
}

.pilot-signal::before,
.pilot-signal::after {
  position: absolute;
  content: "";
  animation-play-state: paused;
}

.pilot-signal::before {
  inset: -34%;
  border: 1px solid currentColor;
  opacity: 0.42;
  animation: signal-square-spin 9s linear infinite;
  animation-play-state: paused;
}

.pilot-signal::after {
  inset: 25%;
  background: currentColor;
  opacity: 0.22;
  animation: signal-square-spin-reverse 6s linear infinite;
  animation-play-state: paused;
}

.pilot-section.is-motion-active .pilot-signal::before,
.pilot-section.is-motion-active .pilot-signal::after {
  animation-play-state: running;
}

.pilot-signal-one {
  top: 18%;
  right: 8%;
}

.pilot-signal-two {
  right: 21%;
  bottom: 22%;
  width: clamp(1.5rem, 3vw, 3rem);
  background: var(--blue);
}

.sprint-section {
  position: relative;
  overflow: hidden;
  background: var(--soft-grey);
  color: var(--deep-blue);
}

.sprint-word {
  position: absolute;
  z-index: 0;
  right: -0.04em;
  bottom: -0.13em;
  color: rgba(75, 26, 255, 0.07);
  font-family: SequelSansHeadline, sans-serif;
  font-size: clamp(9rem, 25vw, 26rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
  pointer-events: none;
}

.sprint-intro {
  max-width: 52rem;
}

.sprint-groups {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-areas:
    "audit build"
    "audit prove";
  margin-top: clamp(4rem, 8vw, 7rem);
}

.sprint-group {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1.2rem;
  min-height: 15rem;
  padding: clamp(1.5rem, 4vw, 2.8rem);
}

.sprint-group-audit {
  grid-area: audit;
  align-content: end;
  min-height: 30rem;
  background: var(--yellow);
}

.sprint-group-build {
  grid-area: build;
  background: var(--purple);
}

.sprint-group-prove {
  grid-area: prove;
  background: var(--grey);
}

.sprint-group-index,
.service-index {
  padding-top: 0.2rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.sprint-group h3,
.service-cell h3,
.fit-column h3 {
  margin: 0;
  font-family: SequelSansHeadline, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.sprint-group p,
.service-cell p {
  max-width: 36rem;
  margin: 1rem 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.sprint-outcome {
  max-width: 55rem;
  margin: clamp(3rem, 7vw, 5rem) 0 0 auto;
  font-family: SequelSansHeadline, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.evidence-section {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  background: var(--purple);
  color: var(--deep-blue);
}

.evidence-shell {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 78svh;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(3.5rem, 8vw, 7rem);
}

.data-cube-field {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  contain: layout paint;
  pointer-events: none;
}

.data-cube {
  position: absolute;
  top: var(--cube-y);
  left: var(--cube-x);
  width: var(--cube-size);
  height: var(--cube-size);
  perspective: 520px;
  opacity: 0.26;
  transform: translate3d(-50%, -50%, 0);
}

.data-cube-core {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: data-cube-spin var(--cube-duration) linear var(--cube-delay) infinite;
  animation-play-state: paused;
}

.data-cube:nth-child(even) .data-cube-core {
  animation-direction: reverse;
}

.evidence-section.is-motion-active .data-cube-core {
  animation-play-state: running;
}

.data-cube-face {
  position: absolute;
  inset: 0;
  display: block;
  border: 1px solid rgba(166, 255, 21, 0.82);
  background: rgba(75, 26, 255, 0.08);
  backface-visibility: visible;
}

.data-cube-face-front {
  transform: translateZ(var(--cube-depth));
}

.data-cube-face-back {
  transform: rotateY(180deg) translateZ(var(--cube-depth));
}

.data-cube-face-right {
  transform: rotateY(90deg) translateZ(var(--cube-depth));
}

.data-cube-face-left {
  transform: rotateY(-90deg) translateZ(var(--cube-depth));
}

.data-cube-face-top {
  transform: rotateX(90deg) translateZ(var(--cube-depth));
}

.data-cube-face-bottom {
  transform: rotateX(-90deg) translateZ(var(--cube-depth));
}

.evidence-shell h2 {
  max-width: 48rem;
}

.evidence-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.12em 0.28em;
  align-items: baseline;
  margin: 0;
  font-family: SequelSansHeadline, sans-serif;
  font-size: clamp(2.4rem, 6.8vw, 7rem);
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.evidence-line strong {
  color: var(--yellow);
  font-weight: 400;
}

.evidence-line span {
  color: rgba(38, 0, 178, 0.45);
}

.evidence-notes {
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(38, 0, 178, 0.25);
}

.evidence-notes p {
  max-width: 46rem;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.evidence-notes a {
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease-out);
}

.control-section {
  background: var(--grey);
  color: var(--blue);
}

.control-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.control-intro {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.control-bands {
  border-bottom: 1px solid rgba(75, 26, 255, 0.28);
}

.control-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(1.8rem, 4vw, 2.8rem) 0;
  border-top: 1px solid rgba(75, 26, 255, 0.28);
}

.control-band p {
  margin: 0;
}

.control-band strong,
.control-band span {
  display: block;
}

.control-band strong {
  margin-bottom: 0.7rem;
  font-family: SequelSansHeadline, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.control-band span {
  font-size: 0.9rem;
  line-height: 1.55;
}

.fit-section {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--grey);
}

.fit-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.fit-heading {
  align-self: start;
}

.fit-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
}

.fit-column {
  min-height: 32rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(222, 222, 222, 0.32);
}

.fit-column-yes {
  background: var(--yellow);
  color: var(--deep-blue);
}

.fit-column-no {
  border-right: 1px solid rgba(222, 222, 222, 0.32);
  border-bottom: 1px solid rgba(222, 222, 222, 0.32);
  color: rgba(222, 222, 222, 0.76);
}

.fit-column ul {
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.fit-column li {
  padding: 0.9rem 0;
  border-top: 1px solid currentColor;
  font-size: 0.9rem;
  line-height: 1.45;
}

.fit-applications {
  grid-column: 2;
  max-width: 52rem;
  margin: 0;
  color: rgba(222, 222, 222, 0.7);
  font-size: 0.86rem;
  line-height: 1.55;
}

.services-section {
  position: relative;
  overflow: hidden;
  background: var(--soft-grey);
  color: var(--deep-blue);
}

.services-heading {
  max-width: 54rem;
  margin-bottom: clamp(4rem, 9vw, 7rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.service-cell {
  position: relative;
  display: flex;
  min-height: 18rem;
  grid-column: span 5;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  background: var(--blue);
  color: var(--grey);
  overflow: hidden;
}

.service-cell > * {
  position: relative;
  z-index: 2;
}

.service-cell::before,
.service-cell::after {
  position: absolute;
  z-index: 1;
  top: clamp(1.2rem, 3vw, 2rem);
  right: clamp(1.2rem, 3vw, 2rem);
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  transition:
    opacity 260ms var(--ease-out),
    transform 520ms var(--ease-out);
}

.service-cell::before {
  width: clamp(4rem, 8vw, 7.5rem);
  border: 1px solid currentColor;
  opacity: 0.12;
  transform: rotate(-24deg) scale(0.76);
}

.service-cell::after {
  width: clamp(1rem, 2vw, 1.8rem);
  margin: clamp(1.4rem, 2.8vw, 2.6rem);
  background: currentColor;
  opacity: 0.18;
  transform: rotate(34deg) scale(0.72);
}

.service-cell.is-visible::before {
  opacity: 0.18;
  transform: rotate(12deg) scale(1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 140ms);
}

.service-cell.is-visible::after {
  opacity: 0.24;
  transform: rotate(-8deg) scale(1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 210ms);
}

.service-cell-wide {
  grid-column: span 7;
}

.service-cell:nth-child(1) {
  background: var(--purple);
  color: var(--deep-blue);
}

.service-cell:nth-child(3) {
  background: var(--deep-blue);
}

.service-cell:nth-child(4) {
  background: var(--yellow);
  color: var(--deep-blue);
}

.service-cell p {
  color: currentColor;
  opacity: 0.76;
}

.faq-section {
  background: var(--deep-blue);
  color: var(--grey);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.faq-heading {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.faq-list {
  border-bottom: 1px solid rgba(222, 222, 222, 0.26);
}

.faq-list details {
  border-top: 1px solid rgba(222, 222, 222, 0.26);
}

.faq-list summary {
  position: relative;
  padding: 1.55rem 3rem 1.55rem 0;
  font-family: SequelSansHeadline, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--yellow);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
  transition: transform 180ms var(--ease-out);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 0.35rem;
}

.faq-list details p {
  max-width: 46rem;
  margin: 0;
  padding: 0 3rem 1.65rem 0;
  color: rgba(222, 222, 222, 0.7);
  font-size: 0.94rem;
  line-height: 1.58;
}

.pilot-section .pilot-shell h2 {
  max-width: 1100px;
  font-size: clamp(2.8rem, 6.4vw, 5.8rem);
  line-height: 0.96;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.3rem var(--page-gutter);
  background: var(--deep-blue);
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(222, 222, 222, 0.68);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer a {
  transition: color 180ms linear;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity 300ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 400ms var(--ease-out) var(--reveal-delay, 0ms);
}

.motion-ready .pain-row[data-reveal],
.motion-ready .offer-row[data-reveal],
.motion-ready .process-list li[data-reveal],
.motion-ready .sprint-group[data-reveal],
.motion-ready .control-band[data-reveal],
.motion-ready .fit-column[data-reveal],
.motion-ready .service-cell[data-reveal],
.motion-ready .faq-list details[data-reveal] {
  transform: translateX(1.5rem);
}

.motion-ready .record-card[data-reveal] {
  transform: translateY(1.4rem) scale(0.985);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@supports (animation-timeline: view()) {
  .kinetic-line span {
    animation: kinetic-drift linear both;
    animation-timeline: view(block);
    animation-range: entry -10% exit 110%;
  }

  .offer-orbit-one {
    animation: orbit-drift-one linear both;
    animation-timeline: view(block);
    animation-range: entry -20% exit 120%;
  }

  .offer-orbit-two {
    animation: orbit-drift-two linear both;
    animation-timeline: view(block);
    animation-range: entry -20% exit 120%;
  }

  .record-word {
    animation: record-drift linear both;
    animation-timeline: view(block);
    animation-range: entry -10% exit 110%;
  }

  .pilot-signal-one {
    animation: signal-drift-one linear both;
    animation-timeline: view(block);
    animation-range: entry -20% exit 120%;
  }

  .pilot-signal-two {
    animation: signal-drift-two linear both;
    animation-timeline: view(block);
    animation-range: entry -20% exit 120%;
  }

  .sprint-word {
    animation: sprint-drift linear both;
    animation-timeline: view(block);
    animation-range: entry -15% exit 115%;
  }
}

@keyframes kinetic-drift {
  from { transform: translateX(-4%); }
  to { transform: translateX(-28%); }
}

@keyframes orbit-drift-one {
  from { transform: translate3d(0, -8%, 0) rotate(0deg); }
  to { transform: translate3d(-8%, 22%, 0) rotate(28deg); }
}

@keyframes orbit-drift-two {
  from { transform: translate3d(-6%, -14%, 0) scale(0.8) rotate(0deg); }
  to { transform: translate3d(10%, 20%, 0) scale(0.8) rotate(-24deg); }
}

@keyframes record-drift {
  from { transform: translate3d(-5%, -8%, 0); }
  to { transform: translate3d(7%, 28%, 0); }
}

@keyframes signal-drift-one {
  from { transform: translate3d(0, -80%, 0) rotate(-8deg); }
  to { transform: translate3d(-30%, 140%, 0) rotate(14deg); }
}

@keyframes signal-drift-two {
  from { transform: translate3d(20%, -100%, 0); }
  to { transform: translate3d(-80%, 160%, 0); }
}

@keyframes sprint-drift {
  from { transform: translate3d(5%, 18%, 0); }
  to { transform: translate3d(-6%, -14%, 0); }
}

@keyframes data-cube-spin {
  from { transform: rotateX(18deg) rotateY(0deg) rotateZ(8deg); }
  to { transform: rotateX(378deg) rotateY(360deg) rotateZ(188deg); }
}

@keyframes signal-square-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes signal-square-spin-reverse {
  from { transform: rotate(45deg); }
  to { transform: rotate(-315deg); }
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover,
  .site-footer a:hover {
    color: var(--yellow);
  }

  .offer-row {
    transition:
      background-size 360ms var(--ease-out),
      border-color 220ms var(--ease-out);
  }

  .offer-row:hover {
    border-color: rgba(166, 255, 21, 0.72);
    background-size: 100% 100%;
  }

  .offer-row:hover h3,
  .offer-row:hover .offer-number {
    color: var(--yellow);
  }

  .offer-row:hover p {
    color: rgba(222, 222, 222, 0.92);
  }

  .offer-row:hover .offer-output {
    color: var(--deep-blue);
    background-color: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 0 0 1px rgba(166, 255, 21, 0.2);
  }

  .pilot-link:hover {
    background: var(--deep-blue);
    transform: translateY(-0.18rem);
  }

  .evidence-notes a:hover {
    transform: translateY(-0.18rem);
  }

  .faq-list summary:hover {
    color: var(--yellow);
  }

  .service-cell:hover::before {
    opacity: 0.3;
    transform: rotate(102deg) scale(1.08);
    transition-delay: 0ms;
  }

  .service-cell:hover::after {
    opacity: 0.42;
    transform: rotate(-98deg) scale(1.12);
    transition-delay: 0ms;
  }
}

@media (max-width: 991px) {
  .site-header {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  .hero-title {
    font-size: clamp(2.7rem, 6.2vw, 3.9rem);
    line-height: 1.04;
  }

  .problem-shell,
  .record-shell,
  .process-shell,
  .control-shell,
  .fit-shell,
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .problem-intro,
  .record-intro,
  .process-heading,
  .control-intro,
  .faq-heading {
    position: relative;
    top: auto;
  }

  .fit-applications {
    grid-column: 1;
  }

  .offer-heading {
    grid-template-columns: 1fr;
  }

  .offer-heading .section-copy {
    grid-column: 1;
    grid-row: auto;
    margin-top: 1rem;
  }

}

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

  .nav-links {
    display: none;
  }

  .hero-inner {
    align-items: center;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9.7vw, 2.9rem);
    letter-spacing: -0.035em;
  }

  .motion-ready .pain-row[data-reveal],
  .motion-ready .offer-row[data-reveal],
  .motion-ready .process-list li[data-reveal],
  .motion-ready .sprint-group[data-reveal],
  .motion-ready .control-band[data-reveal],
  .motion-ready .fit-column[data-reveal],
  .motion-ready .service-cell[data-reveal],
  .motion-ready .faq-list details[data-reveal] {
    transform: translateY(1rem);
  }

  .hero-line {
    white-space: normal;
  }

  .statement-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-content: center;
    align-items: flex-start;
    padding-top: 6rem;
  }

  .statement-note {
    align-self: start;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .section-shell {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .problem-shell {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .pain-row {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.8rem 1rem;
  }

  .pain-row p {
    grid-column: 2;
  }

  .offer-row {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .offer-output {
    grid-column: 2;
    justify-self: start;
  }

  .record-card {
    box-shadow: 9px 9px 0 var(--deep-blue);
  }

  .record-comparison {
    grid-template-columns: 1fr;
  }

  .record-arrow {
    min-height: 2rem;
    transform: rotate(90deg);
  }

  .motion-ready .record-card .record-arrow {
    transform: translateY(-35%) rotate(78deg);
  }

  .motion-ready .record-card.is-visible .record-arrow {
    transform: rotate(90deg);
  }

  .record-meta,
  .pilot-bottom,
  .evidence-notes {
    align-items: flex-start;
    flex-direction: column;
  }

  .sprint-groups {
    grid-template-columns: 1fr;
    grid-template-areas:
      "audit"
      "build"
      "prove";
  }

  .sprint-group-audit {
    min-height: 18rem;
  }

  .evidence-line {
    font-size: clamp(2.2rem, 12vw, 4.8rem);
  }

  .data-cube:nth-child(3),
  .data-cube:nth-child(5),
  .data-cube:nth-child(7) {
    display: none;
  }

  .control-band,
  .fit-comparison {
    grid-template-columns: 1fr;
  }

  .fit-column {
    min-height: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-cell,
  .service-cell-wide {
    min-height: 16rem;
    grid-column: 1;
  }

  .pilot-section .pilot-shell h2 {
    font-size: clamp(2.55rem, 11vw, 4.2rem);
  }

  .pilot-link {
    width: 100%;
  }

  .faq-list summary {
    padding-right: 2.25rem;
  }

  .site-footer {
    flex-wrap: wrap;
  }

  .site-footer a {
    width: 100%;
    margin-top: 0.4rem;
  }
}

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

  .site-header,
  .char,
  .byte-dots span,
  .blast-flash,
  .pixel-edge .pixel,
  .kinetic-line span,
  .offer-orbit,
  .record-word,
  .pilot-signal,
  .data-cube-core,
  .pilot-signal::before,
  .pilot-signal::after {
    animation: none !important;
    transition: none !important;
  }

  .char,
  .site-header,
  .byte-dots span,
  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .offer-orbit,
  .record-word,
  .sprint-word,
  .pilot-signal,
  .pixel-river,
  .swarm-canvas {
    display: none;
  }

  .faq-list summary::after,
  .evidence-notes a,
  .process-list::after,
  .process-number,
  .record-card .record-arrow,
  .record-card .record-after,
  .record-card .record-before,
  .service-cell::before,
  .service-cell::after {
    transition: none;
  }

  .process-list::after {
    display: none;
  }

  .record-card .record-arrow,
  .record-card .record-after,
  .record-card .record-before {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .data-cube-field {
    display: none;
  }
}
