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

.lh-beam-hero { position: relative; isolation: isolate; overflow: hidden; width: 100%; min-height: var(--bh-height); display: flex; background: var(--bh-bg); color: var(--bh-heading-color); font-family: var(--bh-font); -webkit-font-smoothing: antialiased; }
.lh-beam-hero, .lh-beam-hero *, .lh-beam-hero *::before, .lh-beam-hero *::after { box-sizing: border-box; }
.lh-beam-hero__container { display: flex; flex: 1; flex-direction: column; width: 100%; min-width: 0; max-width: var(--bh-container); margin-inline: auto; padding-inline: var(--bh-sides); }
.lh-beam-hero__body { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: var(--bh-media-gap); padding-block: var(--bh-top) var(--bh-bottom); min-width: 0; }
.lh-beam-hero[data-vertical="top"] .lh-beam-hero__body { justify-content: flex-start; }
.lh-beam-hero[data-vertical="bottom"] .lh-beam-hero__body { justify-content: flex-end; }
.lh-beam-hero__copy { min-width: 0; }
.lh-beam-hero__eyebrow { margin-bottom: var(--bh-eyebrow-gap); }
.lh-beam-hero__eyebrow:empty { display: none; }
.lh-beam-hero__heading { margin: 0; padding: 0; max-width: var(--bh-heading-width); color: var(--bh-heading-color); font: inherit; font-size: var(--bh-heading-size); font-weight: var(--bh-heading-weight); line-height: var(--bh-heading-leading); letter-spacing: var(--bh-heading-tracking); overflow-wrap: anywhere; }
.lh-beam-hero__heading > span { display: block; white-space: pre-line; }
.lh-beam-hero__heading > .lh-beam-hero__muted { color: var(--bh-muted); }
.lh-beam-hero__intro { margin: var(--bh-intro-gap) 0 0; max-width: var(--bh-intro-width); color: var(--bh-intro-color); font-size: var(--bh-intro-size); font-weight: var(--bh-intro-weight); line-height: var(--bh-intro-leading); letter-spacing: var(--bh-intro-tracking); white-space: pre-line; }
.lh-beam-hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: var(--bh-slot-gap); margin-top: var(--bh-actions-gap); }
.lh-beam-hero__actions > div { min-width: 0; max-width: 100%; }
.lh-beam-hero[data-align="centre"] .lh-beam-hero__copy { text-align: center; }
.lh-beam-hero[data-align="centre"] .lh-beam-hero__heading, .lh-beam-hero[data-align="centre"] .lh-beam-hero__intro { margin-inline: auto; }
.lh-beam-hero[data-align="centre"] .lh-beam-hero__actions { justify-content: center; }
.lh-beam-hero[data-layout="side"] .lh-beam-hero__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, var(--bh-side-fraction)); align-content: center; align-items: center; }
.lh-beam-hero[data-layout="side"][data-vertical="top"] .lh-beam-hero__body { align-content: start; }
.lh-beam-hero[data-layout="side"][data-vertical="bottom"] .lh-beam-hero__body { align-content: end; }
.lh-beam-hero[data-layout="side"][data-media-side="left"] .lh-beam-hero__body { grid-template-columns: minmax(0, var(--bh-side-fraction)) minmax(0, 1fr); }
.lh-beam-hero[data-layout="side"][data-media-side="left"] .lh-beam-hero__media--main { order: -1; }
.lh-beam-hero__media { display: flex; flex-direction: column; min-width: 0; align-items: var(--bh-image-align); }
.lh-beam-hero__image-frame, .lh-beam-hero__projects { width: var(--bh-image-width); max-width: var(--bh-image-max); }
.lh-beam-hero__image-frame { height: var(--bh-image-height); aspect-ratio: var(--bh-image-aspect); overflow: hidden; border-radius: var(--bh-image-radius); background: var(--bh-image-bg); }
.lh-beam-hero__image-frame picture { display: block; width: 100%; height: 100%; }
.lh-beam-hero__image-frame img { display: block; width: 100%; height: 100%; object-fit: var(--bh-image-fit); object-position: var(--bh-image-position); }
.lh-beam-hero__projects .lh-beam-hero__image-frame { width: 100%; max-width: none; }
.lh-beam-hero__projects a { color: inherit; text-decoration: none; display: block; }
.lh-beam-hero__project-images { position: relative; }
.lh-beam-hero__project-images picture { position: absolute; inset: 0; }
.lh-beam-hero__project-images img { position: absolute; inset: 0; opacity: 0; z-index: 0; transition: opacity var(--bh-fade) ease; }
.lh-beam-hero__project-images img[data-previous="true"] { opacity: 1; z-index: 1; transition: none; }
.lh-beam-hero__project-images img[data-active="true"] { opacity: 1; z-index: 2; }
.lh-beam-hero__caption { display: flex; justify-content: space-between; align-items: end; gap: 16px; padding-top: 20px; }
.lh-beam-hero__caption span { display: block; font-size: var(--bh-label-size); color: var(--bh-label-color); }
.lh-beam-hero__caption strong { display: block; margin-top: 5px; font-size: var(--bh-title-size); font-weight: 400; }
.lh-beam-hero__media--mobile { display: none; }
.lh-beam-hero__spotlight { width: var(--bh-spotlight-width); max-width: 100%; margin: var(--bh-media-mobile-gap) 0 0 auto; text-align: left; }
.lh-beam-hero__spotlight a { display: block; color: inherit; text-decoration: none; }
.lh-beam-hero__spotlight-image { aspect-ratio: var(--bh-spotlight-aspect); overflow: hidden; border-radius: var(--bh-spotlight-radius); background: #ffffff08; }
.lh-beam-hero__spotlight-image picture, .lh-beam-hero__spotlight-image img { display: block; width: 100%; height: 100%; }
.lh-beam-hero__spotlight-image img { object-fit: var(--bh-spotlight-fit); object-position: var(--bh-spotlight-position); transition: transform .5s ease; }
.lh-beam-hero__spotlight a:hover img { transform: scale(1.025); }
.lh-beam-hero__spotlight-caption { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding-top: 16px; }
.lh-beam-hero__spotlight-caption > div { min-width: 0; overflow-wrap: anywhere; }
.lh-beam-hero__spotlight-caption span { display: block; font-size: var(--bh-spotlight-label); color: var(--bh-intro-color); }
.lh-beam-hero__spotlight-caption strong { display: block; margin-top: 5px; font-size: var(--bh-spotlight-title); font-weight: 400; }
.lh-beam-hero__spotlight-caption svg { width: 20px; height: 20px; flex: none; }
@media (min-width: 992px) {
  /* Stretch the copy grid through the hero's free space. The last spacer belongs
     to the spotlight too, so its bottom follows the divider, not the actions. */
  .lh-beam-hero[data-spotlight="true"] .lh-beam-hero__body { padding-bottom: 32px; }
  .lh-beam-hero[data-spotlight="true"] .lh-beam-hero__copy { flex: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, min(35%, var(--bh-spotlight-width))); grid-template-rows: minmax(0, var(--bh-spotlight-before, 1fr)) auto auto auto auto minmax(0, var(--bh-spotlight-after, 1fr)); grid-template-areas: ". ." "eyebrow eyebrow" "heading heading" "intro spotlight" "actions spotlight" ". spotlight"; column-gap: 48px; }
  .lh-beam-hero[data-spotlight="true"][data-vertical="top"] .lh-beam-hero__copy { --bh-spotlight-before: 0px; }
  .lh-beam-hero[data-spotlight="true"][data-vertical="bottom"] .lh-beam-hero__copy { --bh-spotlight-after: 0px; }
  .lh-beam-hero[data-spotlight="true"] .lh-beam-hero__eyebrow { grid-area: eyebrow; }
  .lh-beam-hero[data-spotlight="true"] .lh-beam-hero__heading { grid-area: heading; }
  .lh-beam-hero[data-spotlight="true"] .lh-beam-hero__intro { grid-area: intro; }
  .lh-beam-hero[data-spotlight="true"] .lh-beam-hero__actions { grid-area: actions; align-self: end; }
  .lh-beam-hero[data-spotlight="true"] .lh-beam-hero__spotlight { grid-area: spotlight; align-self: end; margin-top: var(--bh-intro-gap); }
}
.lh-beam-hero__footer { font-size: 12px; color: var(--bh-intro-color); }
.lh-beam-hero__footer[data-pill="true"] { margin-top: -24px; padding-bottom: 12px; }
.lh-beam-hero__divider { display: flex; align-items: center; min-height: 1px; }
.lh-beam-hero__divider::before, .lh-beam-hero__divider::after { content: ''; height: 1px; flex: 1; background: #ffffff1e; }
.lh-beam-hero__footer-controls { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 64px; }
.lh-beam-hero__footer-controls > a { color: inherit; text-decoration: none; }
.lh-beam-hero__pill { display: inline-flex; align-items: center; justify-content: center; flex: 0 1 auto; min-height: 48px; max-width: 100%; padding: 12px 20px; border: 1px solid #ffffff18; border-radius: 999px; background: #222224; color: #e5e5e2; text-decoration: none; font-size: 13px; line-height: 1.4; text-align: center; transition: background .2s ease, border-color .2s ease; }
.lh-beam-hero__pill-content { display: inline-flex; align-items: center; justify-content: center; min-width: 0; max-width: 100%; overflow-wrap: anywhere; }
.lh-beam-hero a.lh-beam-hero__pill:hover { background: #2c2c2f; border-color: #ffffff38; }
.lh-beam-hero__pause { margin-left: auto; padding: 10px 0 10px 16px; border: 0; background: none; color: inherit; font: inherit; display: flex; align-items: center; gap: 10px; cursor: pointer; }
.lh-beam-hero__projects a:focus-visible, .lh-beam-hero__spotlight a:focus-visible, .lh-beam-hero__footer a:focus-visible, .lh-beam-hero__pause:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
/* Shared beam renderer and mist, scoped so other hero components are unaffected. */
.lh-beam-hero .lh-beacon-art, .lh-beam-hero__shade { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.lh-beam-hero .lh-beacon-art { --lh-beacon-light-top: var(--bh-beam-top); overflow: hidden; }
.lh-beam-hero .lh-beacon-art canvas { width: 100%; height: 100%; display: block; opacity: 0; }
.lh-beam-hero .lh-beacon-art canvas[data-ready="true"] { opacity: 1; }
.lh-beam-hero .lh-beacon-art__fallback { position: absolute; inset: 0; z-index: -1; background: conic-gradient(from 180deg at 102% var(--lh-beacon-light-top), transparent 24deg, #ffffff10 29deg, #ffffff50 33deg, #ffffff70 36deg, #ffffff24 40deg, transparent 45deg); mask-image: linear-gradient(#000, transparent 90%); }
.lh-beam-hero .lh-beacon-art[data-beam-tone="purple"] .lh-beacon-art__fallback { background: conic-gradient(from 180deg at 102% var(--lh-beacon-light-top), transparent 24deg, #5e00ff10 29deg, #a875ff50 33deg, #efe6ff70 36deg, #5e00ff24 40deg, transparent 45deg); }
.lh-beam-hero__shade { background: linear-gradient(90deg, color-mix(in srgb, var(--bh-bg) 50%, transparent), transparent 75%), linear-gradient(0deg, var(--bh-bg), color-mix(in srgb, var(--bh-bg) 53%, transparent) 16%, transparent 54%); }
.lh-beam-hero .lh-beacon-mist { position: absolute; z-index: -1; inset: auto 0 0; height: var(--bh-mist-height); overflow: hidden; pointer-events: none; opacity: var(--bh-mist-opacity); background: linear-gradient(0deg, #cad0d41a, #cad0d407 35%, transparent 75%); }
.lh-beam-hero .lh-beacon-mist__layer { position: absolute; inset: -8% -18%; animation: lh-beam-hero-mist var(--bh-mist-back-duration) ease-in-out -3s infinite alternate; animation-play-state: paused; }
.lh-beam-hero .lh-beacon-mist__layer--back { background: radial-gradient(ellipse 48% 48% at 19% 93%, #d5dadd24 0%, #d5dadd12 38%, transparent 75%), radial-gradient(ellipse 38% 46% at 82% 58%, #dfe3e616 0%, #dfe3e60a 36%, transparent 76%); }
.lh-beam-hero .lh-beacon-mist__layer--middle { background: radial-gradient(ellipse 45% 28% at 46% 84%, #e5e7e926, #d8dde013 34%, transparent 73%), radial-gradient(ellipse 30% 36% at 3% 72%, #dde2e518, transparent 75%); animation-duration: var(--bh-mist-mid-duration); animation-delay: -6s; animation-direction: alternate-reverse; }
.lh-beam-hero .lh-beacon-mist__layer--front { background: radial-gradient(ellipse 62% 28% at 70% 111%, #ebedef38, #dde2e51b 45%, transparent 78%), radial-gradient(ellipse 34% 18% at 6% 104%, #dce0e321, transparent 80%); animation-duration: var(--bh-mist-front-duration); animation-delay: -10s; }
.lh-beam-hero[data-mist-tone="purple"] .lh-beacon-mist { background: linear-gradient(0deg, #5e00ff1a, #5e00ff07 35%, transparent 75%); }
.lh-beam-hero[data-mist-tone="purple"] .lh-beacon-mist__layer--back { background: radial-gradient(ellipse 48% 48% at 19% 93%, #5e00ff24 0%, #5e00ff12 38%, transparent 75%), radial-gradient(ellipse 38% 46% at 82% 58%, #5e00ff16 0%, #5e00ff0a 36%, transparent 76%); }
.lh-beam-hero[data-mist-tone="purple"] .lh-beacon-mist__layer--middle { background: radial-gradient(ellipse 45% 28% at 46% 84%, #5e00ff26, #5e00ff13 34%, transparent 73%), radial-gradient(ellipse 30% 36% at 3% 72%, #5e00ff18, transparent 75%); }
.lh-beam-hero[data-mist-tone="purple"] .lh-beacon-mist__layer--front { background: radial-gradient(ellipse 62% 28% at 70% 111%, #5e00ff38, #5e00ff1b 45%, transparent 78%), radial-gradient(ellipse 34% 18% at 6% 104%, #5e00ff21, transparent 80%); }
.lh-beam-hero .lh-beacon-mist[data-playing="true"] .lh-beacon-mist__layer { animation-play-state: running; }
@keyframes lh-beam-hero-mist { from { transform: translate3d(-13%, 3%, 0); } to { transform: translate3d(13%, -3%, 0); } }
@media (max-width: 991px) {
  .lh-beam-hero[data-layout] .lh-beam-hero__body { display: flex; flex-direction: column; align-items: stretch; padding-block: var(--bh-tablet-top) var(--bh-tablet-bottom); }
  .lh-beam-hero__heading { font-size: var(--bh-heading-tablet); }
  .lh-beam-hero[data-layout="side"][data-media-side="left"] .lh-beam-hero__media--main { order: initial; }
}
@media (max-width: 767px) {
  .lh-beam-hero { min-height: var(--bh-mobile-height); }
  .lh-beam-hero__container { padding-inline: var(--bh-mobile-sides); }
  .lh-beam-hero[data-layout] .lh-beam-hero__body { gap: var(--bh-media-mobile-gap); padding-block: var(--bh-mobile-top) var(--bh-mobile-bottom); }
  .lh-beam-hero__heading { font-size: var(--bh-heading-mobile); max-width: var(--bh-heading-mobile-width); }
  .lh-beam-hero__intro { font-size: var(--bh-intro-mobile); }
  .lh-beam-hero__media { --bh-image-width: var(--bh-mobile-image-width); --bh-image-max: var(--bh-mobile-image-max); --bh-image-height: var(--bh-mobile-image-height); --bh-image-aspect: var(--bh-mobile-image-aspect); --bh-image-fit: var(--bh-mobile-image-fit); --bh-image-position: var(--bh-mobile-image-position); --bh-image-radius: var(--bh-mobile-image-radius); }
  .lh-beam-hero__media--mobile { display: flex; }
  .lh-beam-hero[data-mobile-override="true"] .lh-beam-hero__media--main, .lh-beam-hero[data-mobile-media="false"] .lh-beam-hero__media--main { display: none; }
  .lh-beam-hero[data-mobile-beam="false"] .lh-beacon-art, .lh-beam-hero[data-mobile-mist="false"] .lh-beacon-mist { display: none; }
  .lh-beam-hero .lh-beacon-art { --lh-beacon-light-top: var(--bh-mobile-beam-top); }
  .lh-beam-hero .lh-beacon-mist { height: var(--bh-mobile-mist-height); opacity: calc(var(--bh-mist-opacity) * .7); }
  .lh-beam-hero .lh-beacon-mist__layer { animation: none; }
  .lh-beam-hero[data-mobile-spotlight="false"] .lh-beam-hero__spotlight { display: none; }
  .lh-beam-hero__footer { font-size: 10px; }
  .lh-beam-hero__footer-controls { min-height: 54px; }
  .lh-beam-hero__pill { padding: 12px 14px; font-size: 12px; }
  .lh-beam-hero__footer[data-pill-mobile="false"] .lh-beam-hero__pill { display: none; }
  .lh-beam-hero:not([data-mobile-project-motion="true"]) .lh-beam-hero__pause { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lh-beam-hero .lh-beacon-mist__layer { animation: none; }
  .lh-beam-hero__project-images img { transition: none; }
  .lh-beam-hero__spotlight-image img, .lh-beam-hero__pill { transition: none; }
  .lh-beam-hero__spotlight a:hover img { transform: none; }
  .lh-beam-hero__pause { display: none; }
}

