.lh-root,
.lh-root * {
  box-sizing: border-box;
}

.lh-root {
  --lh-accent: #641cff;
  --lh-background: #050505;
  --lh-foreground: #f5f5f1;
  --lh-muted: rgba(245, 245, 241, 0.66);
  --lh-button: rgba(245, 245, 241, 0.58);
  --lh-button-line: rgba(245, 245, 241, 0.2);
  --lh-button-active: #fff;
  --lh-border: rgba(255, 255, 255, 0.4);
  --lh-shadow: rgba(0, 0, 0, 0.34);
  --lh-hint: rgba(245, 245, 241, 0.46);
  --lh-progress-track: rgba(255, 255, 255, 0.1);
  --lh-ambient-glow: rgba(255, 255, 255, 0.12);
  --lh-ambient-glow-soft: rgba(255, 255, 255, 0.038);
  --lh-ambient-lift: rgba(255, 255, 255, 0.018);
  --lh-noise-opacity: 0.022;
  color-scheme: dark;
  width: 100%;
  background: var(--lh-background);
  color: var(--lh-foreground);
  font-family: inherit;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.lh-root[data-appearance='light'] {
  --lh-background: #f5f5f1;
  --lh-foreground: #171717;
  --lh-muted: #595955;
  --lh-button: #62625d;
  --lh-button-line: rgba(23, 23, 23, 0.25);
  --lh-button-active: #050505;
  --lh-border: rgba(23, 23, 23, 0.3);
  --lh-shadow: rgba(0, 0, 0, 0.16);
  --lh-hint: #686862;
  --lh-progress-track: rgba(23, 23, 23, 0.12);
  --lh-ambient-glow: rgba(255, 255, 255, 0.3);
  --lh-ambient-glow-soft: rgba(255, 255, 255, 0.12);
  --lh-ambient-lift: rgba(255, 255, 255, 0.18);
  --lh-noise-opacity: 0.014;
  color-scheme: light;
}

.lh-track {
  position: relative;
  height: 300svh;
}

.lh-stage {
  --lh-scroll-progress: 0;
  --lh-copy-opacity: 1;
  --lh-ambient-x: -1.5%;
  --lh-ambient-y: 1%;
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--lh-background);
}

.lh-stage::before,
.lh-stage::after {
  position: absolute;
  pointer-events: none;
  content: '';
}

.lh-stage::before {
  z-index: 0;
  inset: -14%;
  background:
    radial-gradient(ellipse 34% 28% at 76% 53%, var(--lh-ambient-glow) 0%, var(--lh-ambient-glow-soft) 48%, transparent 79%),
    radial-gradient(ellipse 25% 39% at 97% 73%, var(--lh-ambient-glow-soft) 0%, transparent 82%),
    radial-gradient(ellipse 31% 24% at 23% 14%, var(--lh-ambient-lift) 0%, transparent 76%);
  transform: translate3d(var(--lh-ambient-x), var(--lh-ambient-y), 0);
  will-change: transform;
}

.lh-stage::after {
  z-index: 1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox=%270 0 180 180%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cfilter id=%27n%27%3E%3CfeTurbulence type=%27fractalNoise%27 baseFrequency=%27.72%27 numOctaves=%273%27 stitchTiles=%27stitch%27/%3E%3C/filter%3E%3Crect width=%27100%25%27 height=%27100%25%27 filter=%27url%28%23n%29%27 opacity=%27.7%27/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  opacity: var(--lh-noise-opacity);
}

.lh-copy {
  position: absolute;
  z-index: 50;
  top: var(--lh-top-padding, 140px);
  left: 50%;
  width: min(1380px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: var(--lh-copy-opacity);
  transform: translateX(-50%);
  pointer-events: auto;
}

.lh-copy h1 {
  width: var(--lh-heading-width, 100%);
  max-width: min(var(--lh-heading-max-width, 1380px), 100%);
  margin: 0;
  color: var(--lh-foreground);
  font-family: inherit;
  font-size: var(--lh-heading-size);
  font-weight: var(--lh-heading-weight);
  line-height: var(--lh-heading-leading);
  letter-spacing: var(--lh-heading-tracking);
  white-space: pre-line;
}

.lh-copy p {
  width: 100%;
  max-width: min(var(--lh-body-max-width, 60ch), 100%);
  margin: clamp(24px, 3vh, 34px) 0 0;
  color: var(--lh-muted);
  font-family: inherit;
  font-size: var(--lh-body-size);
  font-weight: var(--lh-body-weight);
  line-height: var(--lh-body-leading);
  letter-spacing: var(--lh-body-tracking);
}

.lh-reviews {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.15vw, 18px);
  margin-top: clamp(18px, 2.4vh, 26px);
  color: var(--lh-foreground);
  font-family: inherit;
  font-size: var(--lh-body-size);
  font-weight: var(--lh-body-weight);
  line-height: 1;
  letter-spacing: var(--lh-body-tracking);
}

.lh-review-stars {
  color: var(--lh-star-color, #fff);
  font-size: 1.15em;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.lh-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: clamp(154px, 12vw, 186px);
  margin-top: clamp(30px, 4vh, 44px);
  padding: 0 0 11px;
  color: var(--lh-button);
  font-family: inherit;
  font-size: var(--lh-cta-size, 14px);
  font-weight: var(--lh-cta-weight);
  line-height: var(--lh-cta-leading);
  letter-spacing: var(--lh-cta-tracking);
  text-decoration: none;
  transition: color 280ms ease;
}

.lh-cta::before,
.lh-cta::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: '';
}

.lh-cta::before { background: var(--lh-button-line); }
.lh-cta::after {
  background: var(--lh-button-active);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(0.22, 0.78, 0.24, 1);
}

.lh-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 320ms cubic-bezier(0.22, 0.78, 0.24, 1);
}

.lh-cta:hover,
.lh-cta:focus-visible { color: var(--lh-button-active); }
.lh-cta:hover::after,
.lh-cta:focus-visible::after { transform: scaleX(1); }
.lh-cta:hover svg,
.lh-cta:focus-visible svg { transform: translate(2px, -2px); }
.lh-cta:focus-visible { outline: 2px solid var(--lh-accent); outline-offset: 5px; }

.lh-screen-field {
  position: absolute;
  z-index: 60;
  inset: 0;
  pointer-events: none;
}

.lh-screen {
  container-type: inline-size;
  position: absolute;
  left: 50%;
  top: 55%;
  width: min(63vw, 980px);
  aspect-ratio: 1.58;
  overflow: hidden;
  border: 2px solid var(--lh-border);
  border-radius: 9px;
  background: #f0f0eb;
  box-shadow: 0 18px 54px var(--lh-shadow);
  will-change: transform;
  transform-origin: center;
  backface-visibility: hidden;
  transition: transform 720ms cubic-bezier(0.22, 0.78, 0.24, 1);
}

.lh-stage.is-scrolling .lh-screen { transition: transform 140ms linear; }

.lh-image-project {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #272727;
}

.lh-image-project img,
.lh-image-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lh-project-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lh-image-project img { filter: saturate(0.72) contrast(1.08); }
.lh-image-placeholder {
  background:
    radial-gradient(circle at 67% 35%, rgba(255,255,255,.18), transparent 18%),
    linear-gradient(135deg, #1a1a1a 0 42%, #747474 42% 46%, #292929 46% 100%);
}

.lh-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08) 70%);
}

.lh-image-copy {
  position: absolute;
  z-index: 2;
  left: 7%;
  top: 14%;
  max-width: 46%;
  color: #fff;
}

.lh-image-copy small,
.lh-mini-nav,
.lh-index {
  font-size: var(--lh-screen-label-size);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.lh-image-copy h2 {
  margin: 10px 0 18px;
  font-family: inherit;
  font-size: var(--lh-screen-title-size);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.lh-image-copy > span {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: var(--lh-screen-label-size);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lh-preview {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 4.5%;
}

.lh-mini-nav { position: relative; z-index: 4; display: flex; justify-content: space-between; gap: 12px; padding-bottom: 2.4%; border-bottom: 1px solid currentColor; }
.lh-mini-nav > span:last-child { opacity: .6; text-align: right; }
.lh-preview h2 {
  position: relative;
  z-index: 4;
  max-width: 7.5ch;
  margin: 8% 0 0;
  font-family: inherit;
  font-size: var(--lh-screen-title-size);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.lh-discipline-name {
  position: relative;
  z-index: 5;
  margin: 10% 0 0;
  font-size: var(--lh-screen-label-size);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lh-discipline h2 {
  width: 41%;
  max-width: 10ch;
  margin-top: 2.5%;
  line-height: .98;
  letter-spacing: -.052em;
  overflow-wrap: normal;
  font-size: min(var(--lh-screen-title-size), 6.4cqw);
}

.lh-design,
.lh-development,
.lh-branding,
.lh-cro { background: #f5f5f1; color: #111; }
.lh-webflow,
.lh-seo,
.lh-aeo { background: #090909; color: #f5f5f1; }


.lh-index { position: absolute; z-index: 5; left: 4.5%; bottom: 4.5%; }

.lh-scroll-hint {
  position: absolute;
  z-index: 80;
  left: clamp(18px, 2.4vw, 38px);
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--lh-hint);
  font-size: var(--lh-scroll-hint-size, 11px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: var(--lh-copy-opacity);
}

.lh-scroll-hint svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.lh-progress { position: absolute; z-index: 90; left: 0; right: 0; bottom: 0; height: 2px; background: var(--lh-progress-track); }
.lh-progress span { display: block; width: calc(var(--lh-scroll-progress) * 100%); height: 100%; background: var(--lh-accent); }

@media (max-width: 900px) {
  .lh-screen { top: 57%; width: min(68vw, 720px); }
}

@media (max-width: 700px) {
  .lh-track { height: 260svh; }
  .lh-copy { top: var(--lh-mobile-top-padding, 86px); }
  .lh-copy h1 { font-size: var(--lh-heading-mobile-size); }
  .lh-reviews { gap: 10px; margin-top: 16px; }
  .lh-cta { margin-top: 18px; min-width: 150px; padding-bottom: 10px; }
  .lh-screen { top: 59%; width: 78vw; }
  .lh-scroll-hint { display: none; }
}

@media (max-height: 720px) and (min-width: 701px) {
  .lh-copy p { margin-top: 14px; }
  .lh-reviews { margin-top: 12px; }
  .lh-cta { margin-top: 14px; }
  .lh-screen { top: 58%; width: min(54vw, 720px); }
}

@media (prefers-reduced-motion: reduce) {
  .lh-track { height: 100svh; }
  .lh-screen,
  .lh-progress span,
  .lh-cta::after,
  .lh-cta svg { transition: none; }
}

.lhwf-logo-scene {
  --lhwf-logo-colour: #146ef5;
}

.lhm-palette-light .lhwf-logo-scene {
  --lhwf-logo-colour: #050505;
}

.lhwf-logo-fill {
  fill: var(--lhwf-logo-colour);
  opacity: 0;
}

.lhwf-logo-line {
  fill: none;
  stroke: var(--lhwf-logo-colour);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.lhwf-status {
  fill: var(--lhwf-logo-colour);
}

.lhwf-status-pulse {
  fill: none;
  stroke: var(--lhwf-logo-colour);
  stroke-width: 1;
  opacity: 0;
}

[data-motion='on'] [data-active='true'] .lhwf-logo-line {
  animation: lhwf-logo-draw 4.8s cubic-bezier(.65, 0, .2, 1) both;
}

[data-motion='on'] [data-active='true'] .lhwf-logo-fill {
  animation: lhwf-logo-fill 4.8s ease both;
}

[data-motion='on'] [data-active='true'] .lhwf-status-pulse {
  animation: lhwf-status-pulse 2s ease-out 3s infinite;
}

@keyframes lhwf-logo-draw {
  0%, 10% { stroke-dashoffset: 1; opacity: 1; }
  64%, 82% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes lhwf-logo-fill {
  0%, 58% { opacity: 0; }
  76%, 100% { opacity: 1; }
}

@keyframes lhwf-status-pulse {
  0% { opacity: .7; transform: scale(1); transform-origin: 319px 277px; }
  100% { opacity: 0; transform: scale(2.5); transform-origin: 319px 277px; }
}

@media (prefers-reduced-motion: reduce) {
  .lhwf-logo-scene * { animation: none !important; }
  .lhwf-logo-fill { opacity: 1; }
  .lhwf-logo-line { opacity: 0; }
}

.lh-motion-art {
  --lhm-ink: #050505;
  --lhm-paper: #f5f5f1;
  --lhm-muted: rgba(5, 5, 5, .48);
  --lhm-line: rgba(5, 5, 5, .19);
  --lhm-grid: rgba(5, 5, 5, .075);
  --lhm-quiet: rgba(5, 5, 5, .05);
  --lhm-highlight: #641cff;
  --lhm-glass: rgba(255, 255, 255, .65);
  --lhm-glass-line: rgba(5, 5, 5, .16);
  --lhm-glass-shadow: rgba(5, 5, 5, .1);
  --lhm-glass-blur: 12px;
  position: absolute;
  top: 22%;
  right: 5%;
  width: 46%;
  height: 65%;
  pointer-events: none;
}

.lh-motion-art::before {
  position: absolute;
  z-index: 0;
  inset: 6.8% 3.5%;
  border: 1px solid var(--lhm-glass-line);
  border-radius: 4px;
  background: var(--lhm-glass);
  box-shadow: 0 14px 38px var(--lhm-glass-shadow), inset 0 1px rgba(255, 255, 255, .22);
  -webkit-backdrop-filter: blur(var(--lhm-glass-blur)) saturate(115%);
  backdrop-filter: blur(var(--lhm-glass-blur)) saturate(115%);
  content: '';
}

.lh-motion-art.lhm-palette-dark {
  --lhm-ink: #f5f5f1;
  --lhm-paper: #050505;
  --lhm-muted: rgba(245, 245, 241, .48);
  --lhm-line: rgba(245, 245, 241, .22);
  --lhm-grid: rgba(245, 245, 241, .1);
  --lhm-quiet: rgba(245, 245, 241, .08);
  --lhm-glass: rgba(17, 17, 17, .69);
  --lhm-glass-line: rgba(245, 245, 241, .22);
  --lhm-glass-shadow: rgba(0, 0, 0, .32);
  --lhm-glass-blur: 24px;
}

.lh-motion-art.lhm-palette-purple {
  --lhm-ink: #f5f5f1;
  --lhm-paper: #641cff;
  --lhm-muted: rgba(245, 245, 241, .65);
  --lhm-line: rgba(245, 245, 241, .3);
  --lhm-grid: rgba(245, 245, 241, .14);
  --lhm-quiet: rgba(245, 245, 241, .08);
  --lhm-highlight: #f5f5f1;
  --lhm-glass: rgba(52, 10, 143, .58);
  --lhm-glass-line: rgba(245, 245, 241, .3);
  --lhm-glass-shadow: rgba(24, 0, 74, .24);
  --lhm-glass-blur: 12px;
}

.lhm-scene { position: relative; z-index: 1; display: block; width: 100%; height: 100%; overflow: visible; font-family: inherit; }
.lhm-panel { fill: transparent; stroke: transparent; }
.lhm-rule { stroke: var(--lhm-line); stroke-width: 1; }
.lhm-grid { stroke: var(--lhm-grid); stroke-width: 1; }
.lhm-ink { fill: var(--lhm-ink); }
.lhm-ink-stroke { stroke: var(--lhm-ink); stroke-width: 1; }
.lhm-purple { fill: #641cff; }
.lhm-paper { fill: var(--lhm-paper); }
.lhm-accent-stroke { stroke: var(--lhm-highlight); stroke-width: 1; }
.lhm-quiet-fill { fill: var(--lhm-quiet); stroke: var(--lhm-line); stroke-width: .75; }
.lhm-dim-fill { fill: var(--lhm-muted); }
.lhm-micro { fill: var(--lhm-ink); font-size: 8px; font-weight: 500; letter-spacing: .85px; }
.lhm-small { fill: var(--lhm-ink); font-size: 12px; letter-spacing: .08px; }
.lhm-tiny { fill: var(--lhm-ink); font-size: 8px; font-weight: 600; letter-spacing: .3px; }
.lhm-service-scene .lhm-tiny { font-weight: 500; letter-spacing: .5px; }
.lhm-service-scene .lhm-small { font-weight: 400; letter-spacing: .2px; }
.lhm-cursor-label { letter-spacing: .15px; }
.lhm-dim { fill: var(--lhm-muted); }
.lhm-display { font-weight: 500; letter-spacing: -1.6px; }
.lhm-handle { fill: #f5f5f1; stroke: #641cff; stroke-width: 1; }
.lhm-code { fill: var(--lhm-ink); font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 10.4px; letter-spacing: -.18px; }
.lhm-code-accent { fill: #641cff; }
.lhm-line-number { fill: var(--lhm-muted); font-size: 8px; font-family: "SFMono-Regular", Consolas, monospace; }
.lhm-code-reveal, .lhm-answer-reveal { transform-box: fill-box; transform-origin: left center; }
.lhm-build-meter { fill: #641cff; transform-origin: 30px 245px; }
.lhm-status-ring { stroke: var(--lhm-line); stroke-width: 1; }
.lhm-check { stroke: var(--lhm-highlight); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; }
.lhm-chart-comparison { stroke: var(--lhm-line); stroke-width: 1.25; stroke-dasharray: 3 4; }
.lhm-chart-line { stroke: #641cff; stroke-width: 2.7; stroke-linecap: round; stroke-dasharray: 1; }
.lhm-chart-point { fill: #641cff; stroke: #f5f5f1; stroke-width: 2; transform-box: fill-box; transform-origin: center; }
.lhm-brand-specimen, .lhm-brand-weights { fill: var(--lhm-ink); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; letter-spacing: normal; font-kerning: normal; }
.lhm-brand-specimen { font-size: 88px; font-weight: 400; }
.lhm-brand-weights { font-size: 17px; }
.lhm-brand-type-rule { fill: none; stroke: #641cff; stroke-width: 1.5; stroke-dasharray: 1; }
.lhm-answer-text { fill: var(--lhm-ink); font-size: 15px; font-weight: 500; letter-spacing: -.35px; }
.lhm-answer-rule { stroke: var(--lhm-line); stroke-width: 1; stroke-dasharray: 1; }
.lhm-chip { fill: rgba(245, 245, 241, .05); stroke: rgba(245, 245, 241, .5); stroke-width: .75; }
.lhm-citation-label { fill: #f5f5f1; font-size: 9px; letter-spacing: .1px; }
.lhm-track-fill { fill: var(--lhm-quiet); }
.lhm-design-square-outline { stroke: #641cff; stroke-width: 1.5; stroke-dasharray: 1; }
.lhm-cro-control-button { fill: var(--lhm-muted); }
.lhm-cro-variant-image { fill: var(--lhm-quiet); stroke: var(--lhm-line); }
.lhm-cro-selection { stroke: #641cff; stroke-width: 1.5; stroke-dasharray: 1; }
.lhm-cro-result-a { fill: var(--lhm-muted); transform-origin: 30px 254px; }
.lhm-cro-result-b { fill: #641cff; transform-origin: 193px 254px; }
.lhm-build-check { stroke: var(--lhm-highlight); }
.lhm-cms-status { fill: var(--lhm-highlight); }
.lhm-cms-meter { fill: var(--lhm-highlight); transform-origin: 30px 255px; }
.lhm-webdesign-selection { fill: none; stroke: var(--lhm-highlight); stroke-width: 1.5; stroke-dasharray: 1; }
.lhm-webdesign-cursor { transform-box: fill-box; transform-origin: center; }
.lhm-integration-line { fill: none; stroke: var(--lhm-highlight); stroke-width: 1.5; stroke-linecap: round; stroke-dasharray: 1; }
.lhm-integration-node { transform-box: fill-box; transform-origin: center; }
.lhm-integration-dot { fill: var(--lhm-highlight); }
.lhm-integration-label { fill: var(--lhm-ink); font-size: 8px; font-weight: 500; letter-spacing: .55px; }
.lhm-integration-hub rect { fill: var(--lhm-highlight); }
.lhm-integration-hub text { fill: #f5f5f1; font-size: 8px; font-weight: 600; letter-spacing: .65px; }
.lhm-integration-pulse { fill: none; stroke: var(--lhm-highlight); stroke-width: 1; opacity: 0; transform-box: fill-box; transform-origin: center; }
.lhm-migration-arrow { fill: none; stroke: var(--lhm-highlight); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.lhm-migration-route { fill: none; stroke: var(--lhm-line); stroke-width: 1; stroke-dasharray: 2 5; }
/* The W touches its viewBox edges; keep the outer half of its outline visible. */
.lhm-migration-webflow { overflow: visible; }
.lhm-migration-logo-fill { fill: var(--lhm-ink); }
.lhm-migration-logo-outline { fill: none; stroke: var(--lhm-ink); stroke-width: 6; stroke-linejoin: round; }
.lhm-migration-sheet { fill: var(--lhm-paper); stroke: var(--lhm-highlight); stroke-width: 1; }
.lhm-migration-sheet-lines { fill: none; stroke: var(--lhm-highlight); stroke-width: 1; stroke-linecap: round; }

/* A scene runs once at the front. All base styles are complete stills. */
[data-motion='on'] [data-active='true'] .lhm-design-square-outline { animation: lhm-design-draw 4.2s linear both; }
[data-motion='on'] [data-active='true'] .lhm-design-square-fill { animation: lhm-design-fill 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-design-square-detail { animation: lhm-design-detail 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-design-cursor { animation: lhm-design-cursor 4.2s linear both; }
[data-motion='on'] [data-active='true'] .lhm-code-reveal { animation: lhm-type-1 4.2s steps(24, end) both; }
[data-motion='on'] [data-active='true'] .lhm-code-reveal-1 { animation-name: lhm-type-2; }
[data-motion='on'] [data-active='true'] .lhm-code-reveal-2 { animation-name: lhm-type-3; }
[data-motion='on'] [data-active='true'] .lhm-code-reveal-3 { animation-name: lhm-type-4; }
[data-motion='on'] [data-active='true'] .lhm-code-reveal-4 { animation-name: lhm-type-5; }
[data-motion='on'] [data-active='true'] .lhm-code-reveal-5 { animation-name: lhm-type-6; }
[data-motion='on'] [data-active='true'] .lhm-build-meter { animation: lhm-build-progress 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-build-check,
[data-motion='on'] [data-active='true'] .lhm-answer-check,
[data-motion='on'] [data-active='true'] .lhm-cro-check { animation: lhm-complete 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-chart-line { animation: lhm-chart-draw 4.2s cubic-bezier(.3,.2,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-chart-point { animation: lhm-chart-point 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-brand-type-rule { animation: lhm-brand-rule 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-brand-swatch-ink { animation: lhm-brand-ink 4.2s cubic-bezier(.22,.7,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-brand-swatch-paper { animation: lhm-brand-paper 4.2s cubic-bezier(.22,.7,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-brand-swatch-purple { animation: lhm-brand-purple 4.2s cubic-bezier(.22,.7,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-answer-reveal-1 { animation: lhm-answer-one 4.2s steps(28, end) both; }
[data-motion='on'] [data-active='true'] .lhm-answer-reveal-2 { animation: lhm-answer-two 4.2s steps(28, end) both; }
[data-motion='on'] [data-active='true'] .lhm-answer-rule { animation: lhm-chart-draw 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-citation { animation: lhm-citation-align 4.2s cubic-bezier(.22,.7,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-citation-1 { animation-delay: .1s; }
[data-motion='on'] [data-active='true'] .lhm-citation-2 { animation-delay: .2s; }
[data-motion='on'] [data-active='true'] .lhm-cro-variant-copy { animation: lhm-cro-rearrange-copy 4.2s cubic-bezier(.22,.7,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-cro-variant-image { animation: lhm-cro-rearrange-image 4.2s cubic-bezier(.22,.7,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-cro-variant-proof { animation: lhm-cro-proof 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-cro-selection { animation: lhm-cro-select 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-cro-result-a,
[data-motion='on'] [data-active='true'] .lhm-cro-result-b { animation: lhm-cro-results 4.2s cubic-bezier(.22,.7,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-cms-row-1 { animation: lhm-cms-row-1 4.2s cubic-bezier(.22,.7,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-cms-row-2 { animation: lhm-cms-row-2 4.2s cubic-bezier(.22,.7,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-cms-row-3 { animation: lhm-cms-row-3 4.2s cubic-bezier(.22,.7,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-cms-meter { animation: lhm-cms-meter 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-cms-check,
[data-motion='on'] [data-active='true'] .lhm-integrations-check { animation: lhm-complete 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-webdesign-selection { animation: lhm-webdesign-select 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-webdesign-layout { animation: lhm-webdesign-layout 4.2s cubic-bezier(.22,.7,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-webdesign-cursor { animation: lhm-webdesign-cursor 4.2s cubic-bezier(.22,.7,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-integration-line-1 { animation: lhm-integration-line-1 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-integration-line-2 { animation: lhm-integration-line-2 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-integration-line-3 { animation: lhm-integration-line-3 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-integration-line-4 { animation: lhm-integration-line-4 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-integration-node-1 { animation: lhm-integration-node-1 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-integration-node-2 { animation: lhm-integration-node-2 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-integration-node-3 { animation: lhm-integration-node-3 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-integration-node-4 { animation: lhm-integration-node-4 4.2s ease both; }
[data-motion='on'] [data-active='true'] .lhm-integration-pulse { animation: lhm-integration-pulse 2.1s ease-out 2.3s infinite; }
[data-motion='on'] [data-active='true'] .lhm-migration-page-1 { animation: lhm-migration-page-1 4.8s cubic-bezier(.4,0,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-migration-page-2 { animation: lhm-migration-page-2 4.8s cubic-bezier(.4,0,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-migration-page-3 { animation: lhm-migration-page-3 4.8s cubic-bezier(.4,0,.2,1) both; }
[data-motion='on'] [data-active='true'] .lhm-migration-logo-fill { animation: lhm-migration-fill 4.8s ease both; }
[data-motion='on'] [data-active='true'] .lhm-migration-check { animation: lhm-migration-complete 4.8s ease both; }

[data-visible='false'] .lh-motion-art *,
[data-visible='false'] .lh-motion-art { animation-play-state: paused !important; }

@keyframes lhm-design-draw { 0%, 8% { stroke-dashoffset: 1; } 68%, 100% { stroke-dashoffset: 0; } }
@keyframes lhm-design-fill { 0%, 68% { fill-opacity: 0; } 76%, 100% { fill-opacity: 1; } }
@keyframes lhm-design-detail { 0%, 72% { opacity: 0; } 80%, 100% { opacity: 1; } }
@keyframes lhm-design-cursor {
  0%, 8% { transform: translate(192px, 131px); }
  23% { transform: translate(306px, 131px); }
  38% { transform: translate(306px, 245px); }
  53% { transform: translate(192px, 245px); }
  68%, 72% { transform: translate(192px, 131px); }
  82%, 100% { transform: translate(263px, 270px); }
}
@keyframes lhm-type-1 { 0%, 3% { transform: scaleX(0); } 15%, 100% { transform: scaleX(1); } }
@keyframes lhm-type-2 { 0%, 15% { transform: scaleX(0); } 27%, 100% { transform: scaleX(1); } }
@keyframes lhm-type-3 { 0%, 27% { transform: scaleX(0); } 39%, 100% { transform: scaleX(1); } }
@keyframes lhm-type-4 { 0%, 39% { transform: scaleX(0); } 48%, 100% { transform: scaleX(1); } }
@keyframes lhm-type-5 { 0%, 48% { transform: scaleX(0); } 52%, 100% { transform: scaleX(1); } }
@keyframes lhm-type-6 { 0%, 52% { transform: scaleX(0); } 64%, 100% { transform: scaleX(1); } }
@keyframes lhm-build-progress { 0%, 57% { transform: scaleX(0); } 71%, 100% { transform: scaleX(1); } }
@keyframes lhm-complete { 0%, 64% { stroke-dashoffset: 1; } 77%, 100% { stroke-dashoffset: 0; } }
@keyframes lhm-chart-draw { 0%, 6% { stroke-dashoffset: 1; } 67%, 100% { stroke-dashoffset: 0; } }
@keyframes lhm-chart-point { 0%, 58% { transform: scale(0); } 70% { transform: scale(1.35); } 81%, 100% { transform: scale(1); } }
@keyframes lhm-brand-rule { 0%, 12% { stroke-dashoffset: 1; } 62%, 100% { stroke-dashoffset: 0; } }
@keyframes lhm-brand-ink { 0%, 12% { transform: translateY(8px); } 42%, 100% { transform: translateY(0); } }
@keyframes lhm-brand-paper { 0%, 22% { transform: translateY(8px); } 52%, 100% { transform: translateY(0); } }
@keyframes lhm-brand-purple { 0%, 32% { transform: translateY(8px); } 62%, 100% { transform: translateY(0); } }
@keyframes lhm-answer-one { 0%, 10% { transform: scaleX(0); } 32%, 100% { transform: scaleX(1); } }
@keyframes lhm-answer-two { 0%, 32% { transform: scaleX(0); } 55%, 100% { transform: scaleX(1); } }
@keyframes lhm-citation-align { 0%, 47% { transform: translateY(7px); } 68%, 100% { transform: translateY(0); } }
@keyframes lhm-cro-rearrange-copy { 0%, 12% { transform: translate(14px, 33px); } 45%, 100% { transform: translate(0, 0); } }
@keyframes lhm-cro-rearrange-image { 0%, 12% { x: 204px; width: 115px; height: 37px; } 45%, 100% { x: 264px; width: 55px; height: 66px; } }
@keyframes lhm-cro-proof { 0%, 35% { opacity: 0; } 50%, 100% { opacity: 1; } }
@keyframes lhm-cro-results { 0%, 42% { transform: scaleX(0); } 71%, 100% { transform: scaleX(1); } }
@keyframes lhm-cro-select { 0%, 65% { stroke-dashoffset: 1; } 81%, 100% { stroke-dashoffset: 0; } }
@keyframes lhm-cms-row-1 { 0%, 8% { opacity: 0; transform: translateX(-8px); } 24%, 100% { opacity: 1; transform: translateX(0); } }
@keyframes lhm-cms-row-2 { 0%, 20% { opacity: 0; transform: translateX(-8px); } 38%, 100% { opacity: 1; transform: translateX(0); } }
@keyframes lhm-cms-row-3 { 0%, 34% { opacity: 0; transform: translateX(-8px); } 52%, 100% { opacity: 1; transform: translateX(0); } }
@keyframes lhm-cms-meter { 0%, 42% { transform: scaleX(0); } 72%, 100% { transform: scaleX(1); } }
@keyframes lhm-webdesign-select { 0%, 8% { stroke-dashoffset: 1; } 48%, 100% { stroke-dashoffset: 0; } }
@keyframes lhm-webdesign-layout { 0%, 14% { opacity: .25; transform: translateY(7px); } 48%, 100% { opacity: 1; transform: translateY(0); } }
@keyframes lhm-webdesign-cursor {
  0%, 8% { transform: translate(42px, 123px); }
  38% { transform: translate(254px, 123px); }
  64%, 100% { transform: translate(254px, 216px); }
}
@keyframes lhm-integration-line-1 { 0%, 7% { stroke-dashoffset: 1; } 27%, 100% { stroke-dashoffset: 0; } }
@keyframes lhm-integration-line-2 { 0%, 21% { stroke-dashoffset: 1; } 41%, 100% { stroke-dashoffset: 0; } }
@keyframes lhm-integration-line-3 { 0%, 35% { stroke-dashoffset: 1; } 55%, 100% { stroke-dashoffset: 0; } }
@keyframes lhm-integration-line-4 { 0%, 49% { stroke-dashoffset: 1; } 69%, 100% { stroke-dashoffset: 0; } }
@keyframes lhm-integration-node-1 { 0%, 19% { opacity: .3; transform: scale(.92); } 31%, 100% { opacity: 1; transform: scale(1); } }
@keyframes lhm-integration-node-2 { 0%, 33% { opacity: .3; transform: scale(.92); } 45%, 100% { opacity: 1; transform: scale(1); } }
@keyframes lhm-integration-node-3 { 0%, 47% { opacity: .3; transform: scale(.92); } 59%, 100% { opacity: 1; transform: scale(1); } }
@keyframes lhm-integration-node-4 { 0%, 61% { opacity: .3; transform: scale(.92); } 73%, 100% { opacity: 1; transform: scale(1); } }
@keyframes lhm-integration-pulse { 0% { opacity: .55; transform: scale(.8); } 100% { opacity: 0; transform: scale(1.45); } }
@keyframes lhm-migration-page-1 {
  0%, 8% { opacity: 0; transform: translateX(-180px); }
  12% { opacity: 1; transform: translateX(-180px); }
  44%, 100% { opacity: 1; transform: translateX(0); }
}
@keyframes lhm-migration-page-2 {
  0%, 20% { opacity: 0; transform: translateX(-180px); }
  24% { opacity: 1; transform: translateX(-180px); }
  56%, 100% { opacity: 1; transform: translateX(0); }
}
@keyframes lhm-migration-page-3 {
  0%, 32% { opacity: 0; transform: translateX(-180px); }
  36% { opacity: 1; transform: translateX(-180px); }
  68%, 100% { opacity: 1; transform: translateX(0); }
}
@keyframes lhm-migration-fill { 0%, 62% { fill-opacity: 0; } 76%, 100% { fill-opacity: 1; } }
@keyframes lhm-migration-complete { 0%, 68% { stroke-dashoffset: 1; } 80%, 100% { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  .lh-motion-art, .lh-motion-art * { animation: none !important; transition: none !important; }
}

