.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; }
}

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

.lfa-root {
  width: 100%;
  padding: 0;
  color: var(--lfa-text, #0a0a0a);
  font-family: inherit;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.lfa-list {
  display: grid;
  width: 100%;
  gap: var(--lfa-row-gap, 12px);
}

.lfa-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--lfa-row-radius, 8px);
  background: var(--lfa-row, #f3f3f3);
  transition: background-color 340ms ease, box-shadow 340ms ease, transform 340ms cubic-bezier(.22, .75, .2, 1);
}

.lfa-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--lfa-accent, #641cff);
  content: '';
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 460ms cubic-bezier(.22, .75, .2, 1);
}

.lfa-item:hover {
  transform: translateX(-4px);
  box-shadow: 0 7px 16px color-mix(in srgb, var(--lfa-text, #0a0a0a) 4.5%, transparent);
}

.lfa-item[data-open='true']::before {
  transform: scaleY(1);
}

.lfa-trigger {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 28px;
  align-items: center;
  width: 100%;
  min-height: calc((var(--lfa-row-padding-y, 29px) * 2) + 1.35em);
  margin: 0;
  padding: var(--lfa-row-padding-y, 29px) var(--lfa-row-padding-x, 38px);
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.lfa-trigger:focus-visible {
  outline: 2px solid var(--lfa-accent, #641cff);
  outline-offset: -3px;
}

.lfa-question {
  font-size: var(--lfa-question-size, clamp(1rem, 1.2vw, 1.24rem));
  font-weight: var(--lfa-question-weight, 500);
  line-height: 1.18;
  letter-spacing: var(--lfa-question-letter-spacing, -.035em);
}

.lfa-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--lfa-icon-size, 42px);
  height: var(--lfa-icon-size, 42px);
  justify-self: end;
  border-radius: 50%;
  transform: rotate(0deg);
  transition: transform 560ms cubic-bezier(.2, .85, .2, 1);
}

.lfa-icon-line {
  position: absolute;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: width 380ms cubic-bezier(.2, .85, .2, 1), background-color 280ms ease;
}

.lfa-icon-line-vertical {
  transform: rotate(90deg);
}

.lfa-item:hover .lfa-icon {
  transform: rotate(90deg);
}

.lfa-item[data-open='true'] .lfa-icon {
  color: var(--lfa-accent, #641cff);
  transform: rotate(135deg);
}

.lfa-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 540ms cubic-bezier(.22, .75, .2, 1), opacity 260ms ease;
}

.lfa-item[data-open='true'] .lfa-answer-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
}

.lfa-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.lfa-answer-inner p {
  max-width: 62ch;
  margin: 0;
  padding: 0 calc(var(--lfa-row-padding-x, 38px) + var(--lfa-icon-size, 42px) + 28px) var(--lfa-row-padding-y, 29px) var(--lfa-row-padding-x, 38px);
  color: var(--lfa-muted, #5f5f5f);
  font-size: var(--lfa-answer-size, clamp(.9rem, .95vw, 1rem));
  font-weight: var(--lfa-answer-weight, 400);
  letter-spacing: var(--lfa-answer-letter-spacing, 0em);
  line-height: 1.55;
}

@media (max-width: 767px) {
  .lfa-list {
    gap: min(var(--lfa-row-gap, 12px), 9px);
  }

  .lfa-item:hover {
    transform: none;
  }

  .lfa-trigger {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 16px;
    min-height: calc((min(var(--lfa-row-padding-y, 29px), 19px) * 2) + 1.35em);
    padding: min(var(--lfa-row-padding-y, 29px), 19px) min(var(--lfa-row-padding-x, 38px), 20px);
  }

  .lfa-answer-inner p {
    padding: 0 calc(min(var(--lfa-row-padding-x, 38px), 20px) + var(--lfa-icon-size, 42px) + 14px) min(var(--lfa-row-padding-y, 29px), 22px) min(var(--lfa-row-padding-x, 38px), 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lfa-item,
  .lfa-item::before,
  .lfa-icon,
  .lfa-icon-line,
  .lfa-answer-wrap {
    transition-duration: .01ms !important;
  }
}

