@font-face {
  font-family: "LT Amber Cond";
  src: url("./assets/fonts/LT-Amber-Cond-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LT Amber Cond";
  src: url("./assets/fonts/LT-Amber-Cond-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LT Amber Cond";
  src: url("./assets/fonts/LT-Amber-Cond-Demibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LT Amber";
  src: url("./assets/fonts/LT-Amber-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LT Amber";
  src: url("./assets/fonts/LT-Amber-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LT Amber";
  src: url("./assets/fonts/LT-Amber-Demibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --surface: #f7f7f7;
  --surface-hover: #e4e4e4;
  --text: #000;
  --muted: #898989;
  --muted-hover: #6f6f6f;
  --stroke-strong: rgba(0, 0, 0, 0.5);
  --card-radius: 40px;
  --image-radius: 24px;
  --image-radius-lg: 32px;
  --stage-scale: 1;
  --fixed-scale: 1;
  --control-top: 34px;
  --contact-left: 32px;
  --language-left: 1484px;
  --language-right: 32px;
  --note-bottom: 34px;
  --update-note-left: 32px;
  --time-note-right: 32px;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "LT Amber", Arial, sans-serif;
  letter-spacing: 0;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

img {
  display: block;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  overflow: hidden;
  background: #000;
  color: #fff;
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 780ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 820ms;
}

.preloader-active .site-preloader {
  display: block;
}

.site-preloader.is-complete {
  visibility: hidden;
  opacity: 0;
  filter: blur(24px);
  transform: scale(1.04);
  pointer-events: none;
}

.site-preloader__fill {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #fff;
  transform: scaleX(var(--preloader-progress, 0));
  transform-origin: left center;
  transition: transform 280ms ease-out;
}

.site-preloader__value {
  position: absolute;
  right: 48px;
  bottom: 42px;
  z-index: 2;
  display: block;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: clamp(64px, 12vw, 168px);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0;
  text-align: right;
  color: #fff;
  font-variant-numeric: tabular-nums;
  mix-blend-mode: difference;
}

.desktop-root {
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.desktop-root {
  position: relative;
  display: block;
  min-width: 1024px;
  overflow: hidden;
  background: #fff;
}

.preloader-active .desktop-root {
  opacity: 0;
  filter: blur(14px);
}

.stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1600px;
  height: 12294px;
  transform: translateX(-50%) scale(var(--stage-scale));
  transform-origin: top center;
  background: #fff;
}

.mobile-placeholder {
  display: none;
}

[data-motion-block] {
  contain: layout paint;
  transform-origin: center;
  will-change: transform, opacity;
}

.motion-ready .motion-reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 72px, 0) scale(0.985);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .motion-reveal.experience-item,
.motion-ready .motion-reveal.section-title {
  transform: translate3d(0, 42px, 0);
}

.motion-ready .motion-reveal.experience-item.is-visible,
.motion-ready .motion-reveal.section-title.is-visible {
  transform: translate3d(0, 0, 0);
}

[data-i18n] {
  transition:
    opacity 260ms ease,
    filter 260ms ease;
}

.i18n-fade-out {
  opacity: 0.12;
  filter: blur(6px);
}

.i18n-fade-in {
  opacity: 1;
  filter: blur(0);
}

.fixed-ui {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.contact-nav {
  position: fixed;
  top: var(--control-top);
  left: var(--contact-left);
  display: flex;
  width: 229px;
  flex-wrap: wrap;
  gap: 4px;
  pointer-events: auto;
  transform: scale(var(--fixed-scale));
  transform-origin: top left;
}

.contact-tooltip-wrap {
  position: relative;
  display: flex;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 40px;
  padding: 8px;
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  font-family: "LT Amber", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: var(--muted);
  --fill-0: var(--muted);
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.contact-chip-button {
  cursor: pointer;
}

.contact-chip:hover {
  background-color: var(--surface-hover);
  color: var(--muted-hover);
  --fill-0: var(--muted-hover);
}

.contact-chip img {
  width: 24px;
  height: 24px;
  transition: filter 160ms ease;
}

.contact-chip:hover img {
  filter: brightness(0.82);
}

.contact-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 72px;
  padding: 7px 10px 8px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  text-align: center;
  font-family: "LT Amber", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -2px);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.contact-tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #000;
  border-left: 6px solid transparent;
  transform: translateX(-50%);
}

.contact-tooltip.is-copied::after,
.contact-tooltip.is-confirmed::after {
  content: "";
  order: -1;
  width: 0.72em;
  height: 0.4em;
  border-bottom: 0.14em solid currentColor;
  border-left: 0.14em solid currentColor;
  transform: translateY(-0.2em) rotate(-45deg);
}

.contact-tooltip-wrap:hover .contact-tooltip,
.contact-chip-button:focus-visible + .contact-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.language-switch {
  position: fixed;
  top: var(--control-top);
  left: var(--language-left);
  width: 84px;
  height: 40px;
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  pointer-events: auto;
  transform: scale(var(--fixed-scale));
  transform-origin: top left;
}

.language-switch button {
  position: absolute;
  top: 2px;
  width: 40px;
  height: 34px;
  padding: 8px;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  text-align: center;
  font-family: "LT Amber", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.language-switch button:not(.active):hover {
  color: var(--text);
}

.language-switch button:first-child {
  left: 2px;
}

.language-switch button:last-child {
  left: 42px;
}

.language-switch .active {
  background: #fff;
  color: var(--text);
  cursor: default;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-copy {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1600px;
  height: 320px;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-weight: 500;
  pointer-events: auto;
}

.hero-line {
  position: absolute;
  left: 288px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: var(--text);
  font-size: 56px;
  line-height: 64px;
}

.hero-line h1,
.hero-line h2,
.hero-line span {
  margin: 0;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
}

.line-1 {
  top: 34px;
  gap: 9px;
}

.line-2 {
  top: 99px;
  gap: 14px;
}

.line-3 {
  top: 164px;
  gap: 8px;
}

.line-4 {
  top: 229px;
  gap: 4px;
}

.line-4 .rocket:first-of-type {
  margin-right: 8px;
}

.rocket {
  width: 48px;
  height: 48px;
}

.avatar-sticker {
  --flee-x: 0px;
  --flee-y: 0px;
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 12px;
  box-shadow:
    0 5px 12px rgba(0, 0, 0, 0.15),
    0 0 4px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  transform: translate3d(var(--flee-x), var(--flee-y), 0) rotate(15deg);
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.avatar-sticker img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.avatar-sticker .avatar-bg {
  width: 142.87%;
  height: 214.29%;
  top: -59.83%;
  left: -18.75%;
}

.rotate-pos {
  margin-left: 0;
}

.experience-group {
  display: flex;
  align-items: center;
  gap: 11px;
}

.experience-badge {
  --flee-x: 0px;
  --flee-y: 0px;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 56px;
  background: linear-gradient(143deg, #2288fa 17.3%, #7bb9ff 86.3%);
  box-shadow:
    0 5px 12px rgba(0, 0, 0, 0.15),
    0 0 4px rgba(0, 0, 0, 0.25),
    inset -3px -5px 11px rgba(27, 89, 159, 0.7),
    inset 6px 5px 14px rgba(255, 255, 255, 0.5);
  color: #fff;
  pointer-events: auto;
  transform: translate3d(var(--flee-x), var(--flee-y), 0) rotate(-10deg);
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.experience-badge span {
  font-size: 40px;
  line-height: 40px;
}

.brand-cluster {
  position: relative;
  display: flex;
  width: 151px;
  height: 58px;
  align-items: flex-start;
}

.brand-cluster .avatar-sticker {
  position: absolute;
  top: 5px;
}

.brand-cluster .avatar-sticker:nth-child(1) {
  left: 5px;
}

.brand-cluster .avatar-sticker:nth-child(2) {
  left: 51px;
}

.brand-cluster .avatar-sticker:nth-child(3) {
  left: 98px;
}

.section-title {
  position: absolute;
  left: 288px;
  margin: 0;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 64px;
  white-space: nowrap;
}

.experience-heading {
  top: 357px;
}

.cases-heading {
  top: 1521px;
}

.experience-section {
  position: absolute;
  top: 461px;
  left: 288px;
  display: flex;
  width: 753px;
  flex-direction: column;
  gap: 40px;
}

.experience-item,
.experience-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.experience-item {
  gap: 16px;
}

.experience-copy {
  gap: 8px;
}

.experience-period,
.experience-title,
.experience-body {
  margin: 0;
}

.experience-period {
  width: 100%;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

.experience-title {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 37px;
  white-space: nowrap;
}

.experience-company {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.experience-logo {
  position: relative;
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow:
    0 5px 12px rgba(0, 0, 0, 0.15),
    0 0 4px rgba(0, 0, 0, 0.25);
}

.experience-logo img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.experience-body {
  width: 100%;
  color: rgba(0, 0, 0, 0.5);
  font-family: "LT Amber", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

.experience-tags {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-tags li {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--surface);
  color: rgba(0, 0, 0, 0.5);
  font-family: "LT Amber", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  white-space: nowrap;
}

.fixed-ui .update-note,
.fixed-ui .time-note {
  position: fixed;
  bottom: var(--note-bottom);
  width: 198px;
  margin: 0;
  color: var(--muted);
  font-family: "LT Amber", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
}

.fixed-ui .update-note {
  left: var(--update-note-left);
}

.fixed-ui .time-note {
  right: var(--time-note-right);
  width: max-content;
  max-width: calc(100vw - var(--time-note-right) - 16px);
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
}

.project-card,
.mini-card,
.article-card,
.event-card,
.concept-card {
  --cover-blur-x: 50%;
  --cover-blur-y: 50%;
  --cover-blur-size: 520px;
  position: absolute;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--surface);
}

.project-card::before,
.mini-card::before,
.article-card::before,
.event-card::before,
.concept-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: var(--cover-blur-y);
  left: var(--cover-blur-x);
  width: var(--cover-blur-size);
  height: var(--cover-blur-size);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(40, 128, 255, 0.22) 0%,
      rgba(72, 150, 255, 0.16) 34%,
      rgba(120, 178, 255, 0.08) 58%,
      rgba(180, 214, 255, 0) 76%
    );
  filter: blur(34px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(0.82);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: top, left, opacity, transform;
}

.project-card.is-cover-blur-active::before,
.mini-card.is-cover-blur-active::before,
.article-card.is-cover-blur-active::before,
.event-card.is-cover-blur-active::before,
.concept-card.is-cover-blur-active::before {
  opacity: 0.2;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.project-card > *,
.mini-card > *,
.article-card > *,
.event-card > *,
.concept-card > * {
  z-index: 1;
}

.coming-soon-cursor {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 140ms ease;
  will-change: transform, opacity;
}

.coming-soon-cursor.is-visible {
  opacity: 1;
}

.card-lg {
  left: 288px;
  width: 1024px;
  height: 905px;
}

.project-ai {
  top: 1625px;
  height: auto;
}

.project-retention {
  top: 3625px;
  height: 1016px;
}

.project-hotels {
  top: 4661px;
  height: auto;
}

.project-head {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.project-ai .project-head {
  position: relative;
  inset: auto;
  height: 280px;
}

.project-hotels .project-head {
  position: relative;
  inset: auto;
  height: 280px;
}

.brand-lockup {
  position: absolute;
  top: 40px;
  left: 49px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 37px;
}

.brand-lockup img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
}

.brand-lockup.centered {
  left: 50%;
  transform: translateX(-50%);
}

.brand-lockup.alfa {
  width: max-content;
}

.project-head h3 {
  position: absolute;
  top: 40px;
  left: 179px;
  width: auto;
  margin: 0;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 37px;
  white-space: nowrap;
}

.project-head p {
  position: absolute;
  top: 94px;
  left: 49px;
  width: 840px;
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
  font-family: "LT Amber", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

.project-ai .project-head h3 {
  left: 188px;
}

.project-retention .project-head h3 {
  left: 234px;
}

.project-hotels .project-head h3 {
  left: 165px;
}

.parly-card .project-head h3 {
  left: 179px;
}

.project-meta {
  position: absolute;
  top: 176px;
  left: 49px;
  display: grid;
  width: max-content;
  grid-template-columns: repeat(4, max-content);
  column-gap: 40px;
  margin: 0;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 24px;
  line-height: 28px;
}

.project-meta div,
.project-meta dt,
.project-meta dd {
  margin: 0;
}

.project-meta dt {
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
}

.project-meta dd {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

.phone-frame,
.screen-frame,
.photo-frame,
.event-photo,
.concept-image {
  position: absolute;
  overflow: hidden;
  border: 4px solid var(--stroke-strong);
  border-radius: var(--image-radius);
  background: #fff;
}

.phone-frame img,
.phone-frame video,
.screen-frame img,
.screen-frame video,
.photo-frame img,
.event-photo img,
.concept-image img,
.automation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-ai-media {
  position: relative;
  z-index: 1;
  width: calc(100% - 72px);
  margin: 0 auto 40px;
}

.case-ai-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.two-col {
  position: absolute;
  left: 288px;
  display: flex;
  width: 1024px;
  height: 896px;
  gap: 20px;
}

.block-2gis {
  top: 2709px;
}

.block-alfa {
  top: 6523px;
}

.block-alfa .onboarding-card {
  order: 2;
}

.block-alfa .stacked-column {
  order: 1;
}

.mini-card {
  position: relative;
  width: 502px;
  flex: 0 0 502px;
}

.vote-card,
.onboarding-card {
  height: 896px;
}

.vote-card h3,
.onboarding-card h3,
.practice-card h3,
.automation-card h3 {
  position: absolute;
  left: 82px;
  width: 339px;
  margin: 0;
  text-align: center;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 37px;
}

.vote-card h3,
.onboarding-card h3 {
  top: 92px;
}

.vote-phone {
  top: 217px;
  left: 103px;
  width: 295px;
  height: 640px;
  border: 0;
  border-radius: 40px;
  background: #000;
}

.vote-phone::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 9px solid #000;
  border-radius: inherit;
  pointer-events: none;
}

.vote-video {
  display: block;
  border-radius: inherit;
}

.stacked-column {
  display: flex;
  width: 502px;
  height: 100%;
  flex: 0 0 502px;
  flex-direction: column;
  gap: 20px;
}

.stacked-column > .mini-card {
  flex: 1 1 auto;
}

.practice-card {
  height: 633px;
  cursor: zoom-in;
}

.practice-card h3 {
  top: 39px;
}

.practice-base {
  top: 128px;
  left: 41px;
  width: 420px;
  height: 422px;
  border: 0;
  border-radius: 0;
  transition:
    box-shadow 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.practice-base img {
  height: 100%;
  transform: none;
}

.practice-tilt-left,
.practice-tilt-right {
  width: 420px;
  height: 420px;
  border: 0;
  border-radius: 0;
  transition:
    box-shadow 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.practice-tilt-left {
  top: 157px;
  left: 17px;
  transform: rotate(-6.94deg);
}

.practice-tilt-right {
  top: 107px;
  left: 67px;
  transform: rotate(6.7deg);
}

.practice-card.is-gallery-hovered .practice-base,
.practice-card.is-gallery-hovered .practice-tilt-left,
.practice-card.is-gallery-hovered .practice-tilt-right {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.practice-card.is-gallery-hovered .practice-base {
  transform: translateY(-10px) rotate(-1.5deg);
}

.practice-card.is-gallery-hovered .practice-tilt-left {
  transform: translate(-16px, -18px) rotate(-11deg);
}

.practice-card.is-gallery-hovered .practice-tilt-right {
  transform: translate(16px, -22px) rotate(10deg);
}

.article-card {
  position: relative;
  width: 502px;
  height: 243px;
  flex: 0 0 243px;
}

.article-card h3,
.article-card p {
  position: absolute;
  left: 32px;
  margin: 0;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-weight: 500;
}

.article-card h3 {
  top: 24px;
  font-size: 32px;
  line-height: 37px;
}

.article-card p {
  top: 76px;
  width: 433px;
  font-size: 24px;
  line-height: 28px;
}

.article-links {
  position: absolute;
  top: 29px;
  left: 318px;
  display: flex;
  gap: 24px;
  color: rgba(0, 0, 0, 0.5);
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

.article-links a,
.article-stats li {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-links a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.article-links a img {
  transition: transform 180ms ease;
}

.article-links a:hover,
.article-links a:focus-visible {
  color: #000;
}

.article-links a:hover img,
.article-links a:focus-visible img {
  transform: translate(3px, -3px);
}

.article-links img,
.article-stats img {
  width: 24px;
  height: 24px;
}

.article-stats {
  position: absolute;
  top: 183px;
  left: 32px;
  display: flex;
  gap: 21px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(0, 0, 0, 0.5);
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

.screen-frame {
  border-radius: var(--image-radius-lg);
}

.alfa-shot {
  position: absolute;
  z-index: 1;
  top: 280px;
  left: 40px;
  width: calc(100% - 80px);
  overflow: visible;
  border-radius: 20px;
  box-shadow: 8px 24px 72px rgba(9, 20, 50, 0.15);
}

.alfa-shot img {
  width: 100%;
  height: auto;
  border-radius: inherit;
  object-fit: contain;
}

.event-card {
  top: 5745px;
  left: 288px;
  width: 1024px;
  height: 758px;
}

.event-card h3 {
  position: absolute;
  top: 39px;
  left: 50%;
  margin: 0;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 37px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.event-row {
  position: absolute;
  left: 40px;
  display: flex;
  width: 944px;
  height: 300px;
  gap: 12px;
}

.event-top {
  top: 107px;
}

.event-bottom {
  top: 419px;
}

.event-photo {
  position: relative;
  height: 300px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.event-photo img {
  border-radius: 0;
}

.event-narrow {
  width: 252px;
}

.event-wide {
  width: 680px;
}

.event-flex {
  width: 561px;
}

.event-medium {
  width: 371px;
}

.onboarding-screen {
  top: 243px;
  left: 0;
  width: 420px;
  height: 722px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.onboarding-screen .onboarding-video {
  border-radius: 0;
  object-fit: contain;
  object-position: left top;
}

.article-2 {
  flex-basis: 243px;
}

.automation-card {
  height: 633px;
}

.automation-card h3 {
  top: 32px;
}

.automation-img {
  position: absolute;
  overflow: hidden;
  background: transparent;
}

.automation-top {
  top: 147px;
  left: -10px;
  width: 512px;
  height: 289px;
}

.automation-bottom {
  top: 436px;
  left: -6px;
  width: 427px;
  height: 241px;
}

.parly-card {
  top: 7439px;
  left: 288px;
  width: 1024px;
  height: 994px;
}

.parly-mark {
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 4px;
}

.parly-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parly-media {
  position: absolute;
  top: 280px;
  left: 0;
  width: 100%;
  height: 714px;
  margin: 0;
  overflow: hidden;
}

.parly-media img {
  position: absolute;
  top: -38px;
  left: 0;
  width: 1024px;
  height: auto;
  max-width: none;
}

.concept-card {
  top: 8453px;
  left: 288px;
  width: 1024px;
  height: 3560px;
}

.concept-card h3 {
  position: absolute;
  top: 40px;
  left: 49px;
  margin: 0;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 37px;
}

.concept-image {
  left: 40px;
  width: 944px;
  border: 0;
  border-radius: 24px;
  background: transparent;
}

.concept-1 {
  top: 112px;
  height: 652px;
}

.concept-2 {
  top: 788px;
  height: 652px;
}

.concept-3 {
  top: 1464px;
  height: 642px;
}

.concept-4 {
  top: 2130px;
  height: 708px;
}

.concept-5 {
  top: 2862px;
  height: 638px;
}

html.gallery-scroll-lock,
body.gallery-scroll-lock {
  overflow: hidden;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  overscroll-behavior: contain;
  transition: opacity 220ms ease;
}

.project-lightbox.is-visible {
  opacity: 1;
}

.project-lightbox-dialog {
  position: relative;
  width: 100vw;
  height: 100svh;
  padding: 32px 0 48px;
}

.project-lightbox-bar {
  position: relative;
  z-index: 2;
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}

.project-lightbox-close {
  position: relative;
  display: flex;
  width: 52px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: #000;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.project-lightbox-close::before,
.project-lightbox-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.project-lightbox-close::before {
  transform: rotate(45deg);
}

.project-lightbox-close::after {
  transform: rotate(-45deg);
}

.project-lightbox-close:hover {
  background: #fff;
  transform: translateY(-1px);
}

.project-lightbox-close:focus-visible {
  outline: 3px solid #2288fa;
  outline-offset: 4px;
}

.project-lightbox-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-lightbox.is-ready .project-lightbox-reveal {
  opacity: 1;
  transform: translateY(0);
}

.project-lightbox.is-opening .project-lightbox-slide,
.project-lightbox.is-closing .project-lightbox-slide {
  opacity: 0;
}

.project-lightbox-kicker {
  margin: 0 0 4px;
  color: rgba(0, 0, 0, 0.5);
  font-family: "LT Amber", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
}

.project-lightbox-title {
  margin: 0;
  font-family: "LT Amber Cond", Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 37px;
}

.project-lightbox-rail {
  --slide-gap: 24px;
  --slide-height: min(72svh, 700px);
  display: flex;
  height: calc(100svh - 132px);
  align-items: center;
  gap: var(--slide-gap);
  margin-top: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 48px 20px;
  scroll-padding-left: 48px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.project-lightbox-rail::-webkit-scrollbar {
  height: 10px;
}

.project-lightbox-rail::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
}

.project-lightbox-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
}

.project-lightbox-slide {
  flex: 0 0 auto;
  width: auto;
  height: var(--slide-height);
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  opacity: 0;
  scroll-snap-align: start;
  transform: translateY(calc((var(--slide-index) % 3) * 10px));
  transition:
    opacity 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(max(var(--slide-index) - 2, 0) * 44ms);
}

.project-lightbox.is-ready .project-lightbox-slide {
  opacity: 1;
}

.project-lightbox-slide img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.project-lightbox-clone {
  position: fixed;
  z-index: 90;
  object-fit: cover;
  pointer-events: none;
  transform-origin: top left;
  will-change: transform, border-radius;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

@media (max-width: 900px) {
  .project-lightbox-dialog {
    padding: 18px 0 32px;
  }

  .project-lightbox-bar {
    height: 48px;
    padding: 0 18px;
  }

  .project-lightbox-title {
    font-size: 28px;
    line-height: 32px;
  }

  .project-lightbox-rail {
    --slide-gap: 14px;
    --slide-height: 68svh;
    height: calc(100svh - 112px);
    margin-top: 14px;
    padding: 0 18px 18px;
    scroll-padding-left: 18px;
  }

  .project-lightbox-slide {
    height: var(--slide-height);
    border-radius: 0;
  }
}

@media (max-width: 1023px) {
  .site-preloader {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader,
  .site-preloader__fill,
  .desktop-root {
    transition: none;
  }

  .motion-ready .motion-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .avatar-sticker,
  .experience-badge {
    transition: none;
  }

  .project-lightbox,
  .project-lightbox-reveal,
  .project-lightbox-close {
    transition: none;
  }

  .practice-base,
  .practice-tilt-left,
  .practice-tilt-right {
    transition: box-shadow 160ms ease;
  }

  .practice-card.is-gallery-hovered .practice-base {
    transform: none;
  }

  .practice-card.is-gallery-hovered .practice-tilt-left {
    transform: rotate(-6.94deg);
  }

  .practice-card.is-gallery-hovered .practice-tilt-right {
    transform: rotate(6.7deg);
  }
}

@media (max-width: 1023px) {
  body {
    min-height: 100svh;
    background: var(--surface);
  }

  .desktop-root {
    display: none;
  }

  .mobile-placeholder {
    display: grid;
    min-height: 100svh;
    place-items: center;
    padding: 28px;
    background: var(--surface);
    color: var(--text);
  }

  .mobile-placeholder div {
    width: calc(100vw - 56px);
    max-width: 520px;
    overflow: hidden;
  }

  .placeholder-kicker {
    margin: 0 0 14px;
    color: var(--muted);
    font-family: "LT Amber", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
  }

  .mobile-placeholder h1 {
    margin: 0 0 16px;
    font-family: "LT Amber Cond", Arial, sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 48px;
  }

  .mobile-placeholder p:last-child {
    margin: 0;
    color: rgba(0, 0, 0, 0.55);
    font-family: "LT Amber", Arial, sans-serif;
    font-size: 20px;
    line-height: 26px;
  }
}
