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

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

.lukc-root {
  --lukc-foreground: #f5f5f1;
  --lukc-muted: rgba(245, 245, 241, .54);
  --lukc-divider: rgba(245, 245, 241, .2);
  display: inline-flex;
  align-items: center;
  gap: .7em;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--lukc-foreground);
  font-family: inherit;
  font-size: .875rem;
  font-weight: var(--lukc-weight, 500);
  line-height: 1;
  letter-spacing: var(--lukc-tracking, 0);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.lukc-root[data-appearance='light'] {
  --lukc-foreground: #0a0a0b;
  --lukc-muted: rgba(10, 10, 11, .5);
  --lukc-divider: rgba(10, 10, 11, .18);
}

.lukc-root[data-size='medium'] { font-size: 1rem; }
.lukc-root[data-size='large'] { font-size: 1.2rem; }
.lukc-root[data-flag-position='right'] { flex-direction: row-reverse; }

.lukc-flag {
  display: block;
  flex: 0 0 auto;
  width: var(--lukc-flag-width, 24px);
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .16);
}

.lukc-copy {
  display: inline-flex;
  align-items: center;
  gap: .68em;
}

.lukc-label {
  color: var(--lukc-muted);
}

.lukc-time {
  position: relative;
  padding-left: .7em;
  color: var(--lukc-foreground);
}

.lukc-time::before {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 0;
  width: 1px;
  background: var(--lukc-divider);
  content: '';
}

.lukc-label:empty { display: none; }
.lukc-label:empty + .lukc-time,
.lukc-copy > .lukc-time:first-child { padding-left: 0; }
.lukc-copy > .lukc-time:first-child::before { display: none; }

