.glass-surface {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.26s ease-out;
}

.glass-surface__filter {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.glass-surface__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}

.glass-surface--fallback::before {
  position: absolute;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.glass-surface--fallback::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 24% 18%, rgb(255 255 255 / 46%), transparent 42%),
    linear-gradient(135deg, rgb(255 255 255 / 26%), rgb(185 207 225 / 8%));
  opacity: 0.72;
}

.glass-surface--svg {
  background: hsl(0 0% 100% / var(--glass-frost, 0));
  backdrop-filter: var(--filter-id) blur(var(--glass-backdrop-blur, 1px)) saturate(var(--glass-saturation, 1));
  -webkit-backdrop-filter: var(--filter-id) blur(var(--glass-backdrop-blur, 1px)) saturate(var(--glass-saturation, 1));
  box-shadow:
    0 0 2px 1px color-mix(in oklch, black, transparent 85%) inset,
    0 0 8px 3px color-mix(in oklch, black, transparent 95%) inset;
}

.glass-surface--fallback {
  background:
    radial-gradient(circle at 26% 18%, rgb(255 255 255 / 54%), transparent 38%),
    linear-gradient(135deg, rgb(255 255 255 / 38%), rgb(185 207 225 / 12%));
  border: 1px solid rgb(233 233 233 / 78%);
  backdrop-filter: blur(var(--glass-fallback-blur, 2.5px)) saturate(var(--glass-saturation, 1.12));
  -webkit-backdrop-filter: blur(var(--glass-fallback-blur, 2.5px)) saturate(var(--glass-saturation, 1.12));
  box-shadow:
    inset 0 1px 1px rgb(255 255 255 / 92%),
    inset 0 -7px 14px rgb(205 216 226 / 10%),
    inset 1px 0 0 rgb(0 148 255 / 3%),
    inset -1px 0 0 rgb(255 55 120 / 3%);
}
@font-face {
  font-family: "Graphik LCG";
  src: url("/assets/GraphikLCG-Regular-DPbFs9bI.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Graphik LCG";
  src: url("/assets/GraphikLCG-Medium-BDgT0Yov.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Graphik LCG";
  src: url("/assets/GraphikLCG-Semibold-CVXp4p2N.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Graphik LCG";
  src: url("/assets/GraphikLCG-Bold-mkbbM47F.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Graphik LCG";
  src: url("/assets/GraphikLCG-Black-BBk285nz.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --page: #ffffff;
  --text: #242629;
  --muted: #999999;
  --chip: rgba(185, 207, 225, 0.1);
  --chip-border: #e9e9e9;
  --container: 1176px;
  font-family: "Graphik LCG", Arial, sans-serif;
  color: var(--text);
  background: var(--page);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  overflow-x: hidden;
}

body {
  min-width: 1440px;
  margin: 0;
  background: var(--page);
  color: var(--text);
  overflow-x: hidden;
}

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

.page-shell {
  position: relative;
  width: var(--container);
  min-height: 565px;
  margin: 0 auto;
  padding-top: 565px;
}

.site-header {
  position: absolute;
  left: 0;
  top: 24px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 36px;
  gap: 32px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  line-height: normal;
  user-select: none;
}

@media (min-width: 1440px) {
  .site-header {
    position: fixed;
    left: 50%;
    z-index: 50;
    isolation: isolate;
    width: var(--container);
    pointer-events: auto;
    transform: translate(-50%, calc(-1 * var(--header-lift, 0px)));
    transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-header::before {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    width: 100vw;
    height: 48px;
    background: rgba(250, 250, 252, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    content: "";
    opacity: var(--header-glass-opacity, 0);
    transform: translate(-50%, -50%);
    transition:
      opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
      background-color 520ms cubic-bezier(0.16, 1, 0.3, 1),
      backdrop-filter 520ms cubic-bezier(0.16, 1, 0.3, 1),
      -webkit-backdrop-filter 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.brand,
.header-links,
.cv-link,
.local-time {
  display: flex;
  align-items: center;
}

.brand-zone {
  position: relative;
  justify-self: start;
}

.brand {
  gap: 12px;
}

.brand span {
  line-height: 21px;
  white-space: pre;
}

.brand__avatar {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-lanyard {
  position: absolute;
  left: -1293px;
  top: 42px;
  z-index: 20;
  width: 2500px;
  height: 760px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-10px) scale(1.22);
  transform-origin: 34% 0;
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 260ms;
}

.brand-lanyard--visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0) scale(1.22);
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 0ms;
}

.local-time {
  justify-self: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
}

.local-time span,
.local-time time {
  color: var(--muted);
}

.local-time .local-time__city {
  color: var(--text);
}

.header-links {
  justify-self: end;
  align-items: center;
  gap: 32px;
}

.mobile-menu-button {
  display: none;
}

.mobile-menu-panel {
  display: none;
}

.header-links a {
  display: inline-flex;
  height: 24px;
  align-items: center;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.header-links a:hover {
  opacity: 0.68;
}

.animated-link {
  position: relative;
  overflow: visible;
}

.header-links .animated-link:hover {
  opacity: 1;
}

.animated-link::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.animated-link:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.cv-link {
  gap: 2px;
}

.header-links .cv-link:hover {
  opacity: 1;
}

.download-icon {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.download-icon__box,
.download-icon__arrow {
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-icon__arrow {
  transform-box: fill-box;
  transform-origin: center;
}

.cv-link:hover .download-icon__arrow {
  animation: download-arrow-loop 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes download-arrow-loop {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  24% {
    opacity: 1;
    transform: translateY(3px);
  }

  36% {
    opacity: 0;
    transform: translateY(4px);
  }

  52% {
    opacity: 0;
    transform: translateY(-7px);
  }

  68% {
    opacity: 1;
    transform: translateY(-4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: absolute;
  inset: 0;
  --chip-parallax-x: 0px;
  --chip-parallax-y: 0px;
  --device-parallax-x: 0px;
  --device-parallax-y: 0px;
  user-select: none;
}

.hero__content {
  position: absolute;
  left: 82px;
  top: 268px;
  z-index: 2;
  width: 1027px;
  text-align: center;
}

h1 {
  margin: 0;
  color: #242629;
  font-size: 120px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.hero__subtitle {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.51;
  text-align: center;
  white-space: nowrap;
}

.mobile-subtitle-break {
  display: none;
}

.audience-chips {
  position: absolute;
  left: 20px;
  top: 260px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translate3d(var(--chip-parallax-x), var(--chip-parallax-y), 0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.chip {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(233, 233, 233, 0.72);
  border-radius: 24px;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.51;
}

.audience-chip {
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.96),
    inset 0 -9px 18px rgba(205, 216, 226, 0.16),
    inset 1px 0 0 rgba(0, 148, 255, 0.03),
    inset -1px 0 0 rgba(255, 55, 120, 0.03),
    0 1px 2px rgba(35, 39, 45, 0.08);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.audience-chip:first-child {
  transform: translate3d(
    calc(var(--chip-parallax-x) * 0.18),
    calc(var(--chip-parallax-y) * 0.16),
    0
  );
}

.audience-chip:last-child {
  transform: translate3d(
    calc(var(--chip-parallax-x) * -0.12),
    calc(var(--chip-parallax-y) * -0.1),
    0
  );
}

.device-chip {
  position: absolute;
  left: 1064px;
  top: 355px;
  z-index: 4;
  flex-direction: row;
  transform: translate3d(var(--device-parallax-x), var(--device-parallax-y), 0);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.96),
    inset 0 -9px 18px rgba(205, 216, 226, 0.16),
    inset 1px 0 0 rgba(0, 148, 255, 0.03),
    inset -1px 0 0 rgba(255, 55, 120, 0.03),
    0 1px 2px rgba(35, 39, 45, 0.08);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.device-chip .glass-surface__content {
  gap: 0;
}

.device-chip span {
  display: grid;
  width: 26.5px;
  height: 26.5px;
  place-items: center;
}

.device-chip img {
  display: block;
  width: 26.5px;
  height: 26.5px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1440px) {
  .hero--safari-parallax .audience-chips,
  .hero--safari-parallax .audience-chip,
  .hero--safari-parallax .device-chip {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition-duration: 80ms;
    transition-timing-function: linear;
  }
}

.projects {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 576px);
  gap: 24px;
  margin-top: 0;
  padding-bottom: 0;
  user-select: none;
}

.project-card {
  position: relative;
  width: 1176px;
  height: 400px;
  overflow: hidden;
  border-radius: 32px;
  background: #f2f2f2;
  color: var(--text);
  transition:
    background 300ms cubic-bezier(0.22, 1, 0.36, 1),
    color 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:not(.project-card--voximplant):not(.project-card--akson):not(.project-card--hun-app):not(.project-card--research) {
  grid-column: 1 / -1;
}

.project-card--hoverable {
  cursor: pointer;
}

.project-card--openable:focus-visible {
  outline: 2px solid #242629;
  outline-offset: 4px;
}

.project-card--hoverable:hover {
  background: #292929;
  color: #ffffff;
}

.project-card--domclick.project-card--hoverable:hover {
  background:
    linear-gradient(158.74deg, #97ed7d 1.68%, #7cd892 32.61%, #5accc6 98.35%),
    #f2f2f2;
  color: var(--text);
}

.project-card--voximplant,
.project-card--akson,
.project-card--hun-app,
.project-card--research {
  width: 576px;
  height: 500px;
}

.project-card--hyundai {
  display: none;
}

.project-card--voximplant.project-card--hoverable:hover {
  background:
    linear-gradient(166.06deg, #7f5ed3 13.5%, #342067 97.21%),
    #f2f2f2;
  color: #ffffff;
}

.project-card--akson.project-card--hoverable:hover {
  background:
    linear-gradient(90deg, #5978b9 0%, #7d4889 37.116%, #e63341 100%),
    #f2f2f2;
  color: #ffffff;
}

.project-card--hun-bmo.project-card--hoverable:hover {
  background:
    linear-gradient(180deg, #26529d 0%, #0d2856 100%),
    #0d2856;
  color: #ffffff;
}

.project-card--hun-app.project-card--hoverable:hover {
  background:
    linear-gradient(179.847deg, #26529d 37.14%, #0d2856 99.847%),
    #0d2856;
  color: #ffffff;
}

.project-card--archive.project-card--hoverable:hover {
  background:
    linear-gradient(90deg, #7297f2 0%, #d079e5 100%),
    #7297f2;
  color: #ffffff;
}

.project-card--research {
  background: #f2f2f2;
  color: #242629;
}

.project-card--research.project-card--hoverable:hover {
  background:
    linear-gradient(180deg, #2c2e30 48.83%, #0b0b0b 100%),
    #0b0b0b;
  color: #ffffff;
}

.project-card--research .project-card__title,
.project-card--research .project-card__copy p {
  color: #242629;
}

.project-card--research .project-card__meta {
  color: #999999;
}

@media (min-width: 1440px) {
  /* Desktop paired project cards: height and text spacing supplied by the current design brief. */
  .project-card--voximplant,
  .project-card--akson,
  .project-card--hun-app,
  .project-card--research {
    height: 508px;
  }

  .project-card--hoverable {
    --project-hover-background: #292929;
  }

  .project-card--domclick.project-card--hoverable {
    --project-hover-background: linear-gradient(158.74deg, #97ed7d 1.68%, #7cd892 32.61%, #5accc6 98.35%), #f2f2f2;
  }

  .project-card--voximplant.project-card--hoverable {
    --project-hover-background: linear-gradient(166.06deg, #7f5ed3 13.5%, #342067 97.21%), #f2f2f2;
  }

  .project-card--akson.project-card--hoverable {
    --project-hover-background: linear-gradient(90deg, #5978b9 0%, #7d4889 37.116%, #e63341 100%), #f2f2f2;
  }

  .project-card--hun-bmo.project-card--hoverable {
    --project-hover-background: linear-gradient(180deg, #26529d 0%, #0d2856 100%), #0d2856;
  }

  .project-card--hun-app.project-card--hoverable {
    --project-hover-background: linear-gradient(179.847deg, #26529d 37.14%, #0d2856 99.847%), #0d2856;
  }

  .project-card--archive.project-card--hoverable {
    --project-hover-background: linear-gradient(90deg, #7297f2 0%, #d079e5 100%), #7297f2;
  }

  .project-card--research.project-card--hoverable {
    --project-hover-background: linear-gradient(180deg, #2c2e30 48.83%, #0b0b0b 100%), #0b0b0b;
  }

  .project-card--hoverable::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: inherit;
    background: var(--project-hover-background);
    content: "";
    opacity: 0;
    transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity;
    pointer-events: none;
  }

  .project-card--hoverable:hover {
    background: #f2f2f2;
  }

  .project-card--hoverable:hover::before {
    opacity: 1;
  }

  .project-card--hoverable .project-card__cover {
    transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .project-card--hoverable .project-card__video {
    transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.project-card__topline {
  position: absolute;
  left: 32px;
  top: 32px;
  z-index: 2;
  display: flex;
  width: 524px;
  align-items: center;
  justify-content: space-between;
}

.project-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  transition: color 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__meta--adaptive {
  display: none;
}

.project-card--hoverable:hover .project-card__meta {
  color: #ffffff;
}

.project-card--domclick.project-card--hoverable:hover .project-card__meta {
  color: var(--text);
}

.project-card--voximplant .project-card__topline,
.project-card--akson .project-card__topline,
.project-card--hun-app .project-card__topline,
.project-card--research .project-card__topline {
  top: 332px;
  width: 512px;
}

.project-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-card__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.project-card__explore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0;
  transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card--domclick .project-card__explore {
  color: var(--text);
}

.project-card--voximplant .project-card__explore,
.project-card--akson .project-card__explore,
.project-card--hun-app .project-card__explore,
.project-card--research .project-card__explore {
  color: #ffffff;
}

.project-card__explore-icon {
  display: inline-flex;
  width: 9px;
  height: 7px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-9px);
  transition:
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__explore-icon svg {
  display: block;
  width: 9px;
  height: 7px;
}

.project-card--archive .project-card__explore-icon {
  transform: translate(-7px, 7px) rotate(-45deg);
  transition:
    opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card--hoverable:hover .project-card__explore {
  opacity: 1;
}

.project-card--hoverable:hover .project-card__explore-icon {
  opacity: 1;
  transform: translateX(0);
}

.project-card--archive.project-card--hoverable:hover .project-card__explore-icon {
  transform: translate(0, 0) rotate(-45deg);
}

.project-card__copy {
  position: absolute;
  left: 32px;
  top: 268px;
  z-index: 2;
  width: 524px;
}

.project-card__title {
  display: flex;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--text);
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.32px;
  white-space: nowrap;
  transition: color 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__copy p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.18px;
  white-space: pre-line;
  transition: color 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__description--adaptive {
  display: none;
}

.project-card--hoverable:hover .project-card__title,
.project-card--hoverable:hover .project-card__copy p {
  color: #ffffff;
}

.project-card--domclick.project-card--hoverable:hover .project-card__title,
.project-card--domclick.project-card--hoverable:hover .project-card__copy p {
  color: var(--text);
}

.project-card--voximplant .project-card__copy,
.project-card--akson .project-card__copy,
.project-card--hun-app .project-card__copy,
.project-card--research .project-card__copy {
  top: 370px;
  width: 512px;
}

@media (min-width: 1440px) {
  /* 24px from the metadata baseline box to the project title on paired cards. */
  .project-card--voximplant .project-card__copy,
  .project-card--akson .project-card__copy,
  .project-card--hun-app .project-card__copy,
  .project-card--research .project-card__copy {
    top: 376px;
  }
}

.project-card__copy strong {
  font-weight: 600;
}

.project-card__visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 588px;
  height: 400px;
  overflow: hidden;
  border-radius: 32px;
  background: #f2f2f2;
}

.project-card__visual--media {
  background: #f2f2f2;
}

.project-card--video-frame-cover .project-card__visual--media {
  background: #f2f2f2;
}

.project-card__cover,
.project-card__mobile-cover,
.project-card__video {
  position: absolute;
  left: 0;
  top: -27px;
  display: block;
  width: 595px;
  height: 445px;
  max-width: none;
  object-fit: cover;
  backface-visibility: hidden;
  pointer-events: none;
  transform: translateZ(0);
  will-change: opacity;
}

.project-card__visual .project-card__mobile-cover {
  display: none;
}

.project-card__cover {
  z-index: 1;
  opacity: 1;
  transition: opacity 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__video {
  z-index: 4;
  opacity: 0;
  transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__cover-video {
  z-index: 1;
}

.project-card--domclick .project-card__visual {
  background: #ffffff;
}

.project-card--domclick .project-card__cover,
.project-card--domclick .project-card__video {
  top: -21px;
  width: 588px;
  height: 441px;
}

.project-card--voximplant .project-card__visual,
.project-card--akson .project-card__visual,
.project-card--hun-app .project-card__visual {
  left: 0;
  right: auto;
  width: 576px;
  height: 300px;
  background: #ffffff;
}

.project-card--hun-app .project-card__visual {
  background: #f2f2f2;
}

.project-card--akson .project-card__visual {
  background: #e9b3b3;
}

.project-card--hun-bmo .project-card__visual {
  background: #f2f2f2;
}

.project-card--archive .project-card__visual {
  background: #b9b3e9;
}

.project-card--archive .project-card__cover,
.project-card--archive .project-card__video {
  left: -106px;
  top: -20px;
  width: 794px;
  height: 440px;
}

.project-card--research .project-card__visual {
  left: 0;
  right: auto;
  top: 0;
  width: 576px;
  height: 300px;
  border-radius: 32px;
  background: #f2f2f2;
}

.project-card--research .project-card__cover,
.project-card--research .project-card__video {
  left: -3px;
  top: -10px;
  width: 582px;
  height: 325px;
}

.project-card--voximplant .project-card__cover,
.project-card--voximplant .project-card__video {
  top: -1px;
  width: 576px;
  height: 324px;
}

.project-card--akson .project-card__cover,
.project-card--akson .project-card__video {
  top: -12px;
  width: 576px;
  height: 324px;
}

.project-card--hun-bmo .project-card__cover,
.project-card--hun-bmo .project-card__video {
  top: -20px;
  width: 588px;
  height: 441px;
}

.project-card--hun-app .project-card__cover,
.project-card--hun-app .project-card__video {
  top: 0;
  width: 576px;
  height: 300px;
}

.project-card--video-active .project-card__cover {
  opacity: 0;
}

.project-card--video-active .project-card__video {
  opacity: 1;
}

.project-card--video-frame-cover .project-card__video {
  opacity: 1;
}

.project-card--safari-cover .project-card__cover {
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card--safari-cover.project-card--video-frame-cover .project-card__video {
  opacity: 0;
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card--safari-cover.project-card--video-active .project-card__video {
  opacity: 1;
}

.hyundai-card__title,
.hyundai-card__services,
.hyundai-card__service,
.hyundai-card__icon,
.hyundai-card__content,
.hyundai-card__meta,
.hyundai-card__name {
  display: none;
}

.project-card__visual--mockup {
  background:
    radial-gradient(circle at 37% 58%, rgba(226, 225, 216, 0.94) 0, rgba(214, 213, 204, 0.76) 18%, rgba(82, 81, 77, 0.54) 43%, rgba(39, 39, 37, 0.9) 78%),
    linear-gradient(135deg, #6a6964 0%, #282826 100%);
  transition: background 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card--hoverable:hover .project-card__visual--mockup {
  background:
    radial-gradient(circle at 41% 54%, rgba(238, 237, 226, 0.88) 0, rgba(202, 206, 196, 0.72) 22%, rgba(90, 89, 85, 0.72) 52%, rgba(34, 34, 32, 0.96) 100%),
    linear-gradient(135deg, #706f6a 0%, #2f302d 100%);
}

.project-card__visual--mockup::before,
.project-card__visual--mockup::after {
  position: absolute;
  content: "";
}

.project-card__visual--mockup::before {
  right: 360px;
  bottom: -78px;
  width: 220px;
  height: 130px;
  border-radius: 42% 58% 0 0;
  background: #1d1d1c;
  filter: blur(0.2px);
  transform: rotate(-12deg);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__visual--mockup::after {
  right: 168px;
  top: -78px;
  width: 230px;
  height: 130px;
  border-radius: 0 0 48% 52%;
  background: #171717;
  transform: rotate(15deg);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card--hoverable:hover .project-card__visual--mockup::before {
  transform: translate(-18px, 4px) rotate(-16deg);
}

.project-card--hoverable:hover .project-card__visual--mockup::after {
  transform: translate(12px, -4px) rotate(18deg);
}

.project-card__visual img {
  position: absolute;
  left: 0;
  top: -27px;
  z-index: 3;
  display: block;
  width: 595px;
  height: 445px;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.project-card__phone {
  position: absolute;
  left: 228px;
  top: 48px;
  z-index: 1;
  display: block;
  width: 132px;
  height: 258px;
  border: 5px solid #1f1d19;
  border-radius: 28px;
  background: #f4f5f1;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.86);
  transform: rotate(14deg);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card--hoverable:hover .project-card__phone {
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.86);
  transform: translate(22px, -6px) rotate(10deg) scale(1.04);
}

.project-card__phone::before {
  position: absolute;
  left: 39px;
  top: 7px;
  width: 54px;
  height: 15px;
  border-radius: 999px;
  background: #0f1011;
  content: "";
}

.project-card__phone span {
  position: absolute;
  left: 16px;
  right: 16px;
  border-radius: 10px;
  background: rgba(210, 216, 211, 0.58);
}

.project-card__phone-bar {
  top: 32px;
  height: 26px;
}

.project-card__phone-balance {
  top: 70px;
  height: 48px;
}

.project-card__phone-actions {
  top: 132px;
  height: 34px;
}

.project-card__phone-list {
  top: 180px;
  height: 52px;
  background: #bcefb6;
}

.project-card__orbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.project-card__float {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(142, 230, 190, 0.32)),
    rgba(180, 220, 218, 0.28);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.86) rotate(var(--float-rotation, 0deg));
  transition:
    opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card--hoverable:hover .project-card__float {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(var(--float-rotation, 0deg));
}

.project-card__float--chart {
  --float-rotation: 9deg;
  left: 104px;
  top: 36px;
  width: 124px;
  height: 92px;
}

.project-card__float--ticker {
  --float-rotation: -14deg;
  left: 58px;
  top: 150px;
  width: 118px;
  height: 70px;
}

.project-card__float--buy {
  --float-rotation: -10deg;
  right: 58px;
  top: 130px;
  width: 132px;
  height: 82px;
  background:
    linear-gradient(135deg, rgba(222, 255, 205, 0.72), rgba(116, 211, 117, 0.5)),
    rgba(181, 234, 166, 0.42);
}

.project-card__float--pie {
  --float-rotation: 13deg;
  right: 98px;
  bottom: 50px;
  width: 136px;
  height: 104px;
  border-radius: 22px;
}

.site-footer {
  position: relative;
  left: auto;
  width: 100%;
  min-width: 0;
  height: 296px;
  margin-top: 120px;
  margin-left: 0;
  padding: 60px 0 40px;
  background: #09090a;
  box-shadow: 0 0 0 100vmax #09090a;
  clip-path: inset(0 -100vmax);
  color: #ffffff;
  user-select: none;
}

.site-footer__inner {
  display: flex;
  width: var(--container);
  height: 196px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: space-between;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.site-footer__title,
.site-footer__email {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.site-footer__title {
  width: 240px;
  color: var(--muted);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer__email {
  color: #ffffff;
}

.site-footer__links {
  display: flex;
  align-items: flex-start;
  gap: 45px;
  padding-left: 43px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.site-footer__links a {
  color: #ffffff;
}

.site-footer__links .footer-link {
  height: 20px;
}

.site-footer__links .footer-link::after {
  bottom: -1px;
}

.site-footer__youtube {
  display: inline-flex;
  gap: 6px;
}

.site-footer__youtube span {
  color: var(--muted);
}

.site-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.site-footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__copyright p {
  margin: 0;
}

.site-footer__back {
  color: var(--muted);
  transition: color 180ms ease;
}

.site-footer__back:hover,
.site-footer__back:focus-visible {
  color: #ffffff;
}

.case-page-shell {
  position: relative;
  width: var(--container);
  min-height: 100vh;
  margin: 0 auto;
  padding-top: 162px;
  --case-projects-flyout-y: calc(24px - var(--header-lift, 0px) - 6px);
  --case-projects-closed-height: 48px;
  --case-projects-open-height: 278px;
  --case-projects-panel-height: var(--case-projects-closed-height);
}

.case-header {
  grid-template-columns: 1fr auto 1fr;
}

.case-header__back,
.case-header__center {
  display: inline-flex;
  align-items: center;
  color: #242629;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  line-height: 21px;
  white-space: nowrap;
}

.case-header__back {
  justify-self: start;
  gap: 2px;
}

.case-header__center {
  justify-self: center;
  gap: 6px;
}

.case-header__back img,
.case-header__center img {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.case-header__folder {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
}

.projects-folder-animation {
  display: block;
  width: 24px;
  height: 24px;
}

.projects-folder-animation > svg,
.projects-folder-animation__player > svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 1440px) {
  .case-page-shell {
    -webkit-user-select: none;
    user-select: none;
  }

  .case-page-shell .case-header::before {
    opacity: 0;
  }

  .case-header__center {
    padding: 16px 22px;
    margin: -16px -22px;
    cursor: pointer;
  }

  .case-projects-flyout {
    position: fixed;
    top: var(--case-projects-flyout-y);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 49;
    pointer-events: none;
  }

  .case-projects-flyout::after {
    position: absolute;
    top: var(--case-projects-panel-height);
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 620ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .case-projects-flyout__panel {
    position: relative;
    z-index: 1;
    height: var(--case-projects-panel-height);
    background: rgba(250, 250, 252, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 0;
    clip-path: inset(0 0 0 0);
    opacity: var(--header-glass-opacity, 0);
    pointer-events: none;
    transform-origin: top;
    transition:
      height 620ms cubic-bezier(0.19, 1, 0.22, 1),
      opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
      background-color 620ms cubic-bezier(0.19, 1, 0.22, 1),
      backdrop-filter 620ms cubic-bezier(0.19, 1, 0.22, 1),
      -webkit-backdrop-filter 620ms cubic-bezier(0.19, 1, 0.22, 1),
      border-radius 620ms cubic-bezier(0.19, 1, 0.22, 1),
      box-shadow 620ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .case-projects-flyout__panel::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background: rgba(215, 215, 215, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 620ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .case-projects-page-blur {
    display: none;
  }

  .case-page-shell--projects-open .case-projects-flyout {
    pointer-events: auto;
  }

  .case-page-shell--projects-open {
    --case-projects-panel-height: var(--case-projects-open-height);
  }

  .case-page-shell--projects-open .case-projects-flyout__panel {
    background: #fff;
    backdrop-filter: saturate(100%) blur(0);
    -webkit-backdrop-filter: saturate(100%) blur(0);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.045);
    opacity: 1;
    pointer-events: auto;
  }

  .case-page-shell--projects-open .case-projects-flyout__panel::after {
    opacity: 1;
  }

  .case-page-shell--projects-closing {
    --case-projects-panel-height: var(--case-projects-closed-height);
  }

  .case-page-shell--projects-closing .case-projects-flyout__panel {
    border-radius: 0;
    transition:
      height 740ms cubic-bezier(0.19, 1, 0.22, 1),
      opacity 740ms cubic-bezier(0.19, 1, 0.22, 1),
      background-color 740ms cubic-bezier(0.19, 1, 0.22, 1),
      backdrop-filter 740ms cubic-bezier(0.19, 1, 0.22, 1),
      -webkit-backdrop-filter 740ms cubic-bezier(0.19, 1, 0.22, 1),
      border-radius 740ms cubic-bezier(0.19, 1, 0.22, 1),
      box-shadow 740ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .case-page-shell--projects-closing .case-projects-flyout__panel::after {
    opacity: 0;
    transition: opacity 740ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .case-page-shell--projects-closing .case-projects-flyout::after {
    transition: opacity 740ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .case-page-shell--projects-closing-at-top .case-projects-flyout__panel {
    transition:
      height 980ms cubic-bezier(0.19, 1, 0.22, 1),
      opacity 980ms cubic-bezier(0.19, 1, 0.22, 1),
      background-color 980ms cubic-bezier(0.19, 1, 0.22, 1),
      backdrop-filter 980ms cubic-bezier(0.19, 1, 0.22, 1),
      -webkit-backdrop-filter 980ms cubic-bezier(0.19, 1, 0.22, 1),
      box-shadow 980ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .case-page-shell--projects-closing-at-top .case-projects-flyout::after {
    transition: opacity 980ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .case-page-shell--projects-open .case-projects-flyout::after {
    opacity: 1;
  }
}

.case-header__back img {
  transition: transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.case-header__back:hover img,
.case-header__back:focus-visible img {
  transform: translateX(-6px);
}

.case-header__links {
  justify-self: end;
}

.case-article {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.case-intro-card {
  width: 100%;
  border-radius: 32px;
  background: #f2f2f2;
  padding: 32px;
}

.case-intro-card__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.case-intro-card__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-intro-card h1 {
  margin: 0;
  color: #242629;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.52px;
  line-height: 1;
}

.case-intro-card__meta,
.case-section__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.case-intro-card__meta {
  padding-left: 6px;
  color: #242629;
}

.case-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.case-intro-card__copy {
  position: relative;
  width: 813px;
  padding-left: 6px;
}

.case-intro-card__copy p,
.case-text-block p,
.case-list-block p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
}

.case-intro-card__copy p {
  color: #242629;
}

.case-text-block p,
.case-list-block p {
  color: #000000;
}

.case-intro-card__copy p + p {
  margin-top: 16px;
  line-height: 1.6;
}

.case-intro-card strong,
.case-text-block strong,
.case-list-block strong {
  font-weight: 600;
}

.case-inline-logo {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin: 0 2px;
  vertical-align: -6px;
}

.case-inline-logo img {
  display: block;
  width: 24px;
  height: 24px;
}

.case-inline-invest {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 9px;
  margin: 0 1px 0 2px;
  vertical-align: 1px;
}

.case-inline-invest img {
  position: absolute;
  left: -2px;
  top: -2px;
  display: block;
  width: 22px;
  height: 13px;
  max-width: none;
}

.case-section {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.case-section--compact {
  gap: 32px;
}

.case-section__header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.case-section__header h2 {
  margin: 0;
  color: #242629;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: normal;
}

.case-section__meta {
  color: #999999;
}

.case-text-stack {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
  padding: 0 8px;
}

.case-text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-text-block p:not(.case-eyebrow),
.case-list-block {
  width: 980px;
}

.case-text-block .case-eyebrow {
  min-width: 100%;
  color: #999999;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 23px;
}

.case-list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-list-block p {
  line-height: 26px;
}

.case-media-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-image-block {
  /* Figma nodes 570:212 and 570:217: 1176x600 blocks. */
  display: flex;
  width: 100%;
  height: 600px;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background: #f2f2f2;
  padding: 32px;
}

.case-phone-row {
  display: flex;
  align-items: flex-start;
}

.case-phone-row--three {
  gap: 76px;
}

.case-phone-frame {
  /* Figma node 570:214: 220x496 image area; 6px stroke sits outside. */
  box-sizing: content-box;
  width: 220px;
  height: 496px;
  flex: 0 0 220px;
  overflow: hidden;
  border: 6px solid #d7d7d7;
  border-radius: 16px;
  background-color: lightgray;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Figma node 570:218: the 6px external stroke also frames the video. */
.case-phone-frame--video video {
  display: block;
  width: 222px;
  height: 496px;
  object-fit: cover;
  transform: translateX(-1px);
}

.portrait-mode-notice {
  display: none;
}

.portrait-mode-notice__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.portrait-mode-notice__content img {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.portrait-mode-notice__content p {
  width: 336px;
  margin: 0;
  color: #242629;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

@media (orientation: landscape) and (max-height: 520px) and (pointer: coarse) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .portrait-mode-notice {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #ffffff;
    touch-action: none;
  }
}

@media (min-width: 768px) and (max-width: 1439px), (min-width: 600px) and (max-width: 767px) and (min-height: 900px) and (pointer: coarse) {
  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .page-shell {
    --tablet-content: min(704px, calc(100vw - 64px));
    width: var(--tablet-content);
    max-width: 704px;
    min-height: 0;
    padding-top: 380px;
  }

  .site-header {
    position: fixed;
    left: 50%;
    top: 17px;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: var(--tablet-content);
    height: 56px;
    gap: 0;
    font-size: 18px;
    isolation: isolate;
    transform: translate(-50%, calc(-1 * var(--header-lift, 0px)));
    transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-header::before {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    width: 100vw;
    height: 56px;
    background: rgba(250, 250, 252, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    content: "";
    opacity: var(--header-glass-opacity, 0);
    transform: translate(-50%, -50%);
    transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .brand-zone,
  .local-time {
    display: none;
  }

  .brand-zone {
    display: block;
    justify-self: start;
  }

  .header-links {
    justify-self: end;
    gap: 32px;
  }

  .header-links a {
    height: 26px;
  }

  .brand span {
    font-size: 18px;
  }

  .brand,
  .site-footer__back {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .cv-link {
    gap: 0;
  }

  .download-icon {
    width: 26px;
    height: 26px;
  }

  .hero {
    inset: 0 auto auto 50%;
    width: var(--tablet-content);
    height: 242px;
    transform: translateX(-50%);
  }

  .hero__content {
    left: 0;
    top: 186px;
    width: var(--tablet-content);
    padding: 0;
    transform: none;
  }

  h1 {
    width: auto;
    font-size: clamp(58px, 9.9vw, 76px);
    line-height: normal;
    text-align: center;
    white-space: nowrap;
  }

  .hero__subtitle {
    position: static;
    width: auto;
    margin: 24px 0 0;
    font-size: 20px;
    white-space: nowrap;
  }

  .mobile-subtitle-break {
    display: none;
  }

  .audience-chips {
    left: calc(var(--tablet-content) * 0.0256);
    top: 171px;
    flex-direction: row;
    gap: 6px;
    transform: none;
  }

  .audience-chip:first-child,
  .audience-chip:last-child {
    transform: none;
  }

  .device-chip {
    left: calc(var(--tablet-content) - 106px);
    right: auto;
    top: 240px;
    transform: none;
  }

  .projects {
    display: flex;
    flex-direction: column;
    width: var(--tablet-content);
    max-width: 100%;
    gap: 16px;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .project-card {
    width: 100%;
    height: 326px;
    border-radius: 24px;
    background: #292929;
    color: #ffffff;
    cursor: default;
  }

  .project-card--sber-investments {
    height: 336px;
  }

  .project-card--hoverable:hover {
    background: #292929;
    color: #ffffff;
  }

  .project-card:nth-child(2) {
    background:
      linear-gradient(131.9deg, #97ed7d 5.59%, #7cd892 27.65%, #5accc6 87.55%),
      #292929;
    color: #242629;
  }

  .project-card__topline {
    left: 20px;
    top: 208px;
    width: 303px;
  }

  .project-card__meta {
    gap: 8px;
    color: currentColor;
    font-size: 14px;
    line-height: 1.45;
  }

  .project-card__copy {
    left: 20px;
    top: 240px;
    width: 303px;
  }

  .project-card--sber-investments .project-card__copy {
    top: 244px;
  }

  .project-card--sber-investments .project-card__title {
    font-size: 20px;
  }

  .project-card--sber-investments .project-card__copy p {
    font-size: 15px;
  }

  .project-card--sber-investments .project-card__meta--default {
    display: none;
  }

  .project-card--sber-investments .project-card__meta--adaptive {
    display: flex;
  }

  .project-card__title {
    gap: 6px;
    margin-bottom: 8px;
    color: currentColor;
    font-size: 18px;
    letter-spacing: 0;
  }

  .project-card__copy p {
    color: currentColor;
    font-size: 14px;
    letter-spacing: 0;
    white-space: pre-line;
  }

  .project-card__description--desktop {
    display: none;
  }

  .project-card__description--adaptive {
    display: block;
  }

  .project-card--hoverable:hover .project-card__meta,
  .project-card--hoverable:hover .project-card__title,
  .project-card--hoverable:hover .project-card__copy p {
    color: currentColor;
  }

  .project-card__explore {
    display: none;
  }

  .project-card__visual {
    left: 0;
    right: auto;
    top: 0;
    width: 100%;
    height: 184px;
    border-radius: 16px;
  }

  .project-card--akson {
    display: block;
  }

  .project-card--voximplant,
  .project-card--akson {
    display: block;
    color: #ffffff;
  }

  .project-card--voximplant {
    background:
      linear-gradient(172.46deg, #7f5ed3 13.497%, #342067 97.206%),
      #342067;
  }

  .project-card--akson {
    background:
      linear-gradient(89.22deg, #5978b9 0.64%, #7d4889 37.88%, #e63341 100.97%),
      #5978b9;
  }

  .project-card--voximplant .project-card__topline,
  .project-card--akson .project-card__topline {
    top: 208px;
    width: 303px;
  }

  .project-card--voximplant .project-card__copy,
  .project-card--akson .project-card__copy {
    top: 240px;
    width: 303px;
  }

  .project-card--voximplant .project-card__visual,
  .project-card--akson .project-card__visual {
    left: 0;
    right: auto;
    width: 100%;
    height: 184px;
  }

  .project-card__visual--media {
    background: #232322;
  }

  .project-card__visual--placeholder,
  .project-card__visual--mockup,
  .project-card:nth-child(2) .project-card__visual {
    background: #c6e5a5;
  }

  .project-card__cover,
  .project-card__video {
    display: none;
  }

  .project-card__visual .project-card__mobile-cover {
    left: 0;
    top: -3px;
    z-index: 2;
    display: block;
    width: 100%;
    height: 191px;
    object-fit: cover;
  }

  .project-card--domclick .project-card__visual--media {
    background:
      linear-gradient(180deg, #d8d8d8 0%, #c9c9c9 100%),
      #d8d8d8;
  }

  .project-card--domclick .project-card__visual .project-card__mobile-cover {
    top: 0;
    height: 184px;
  }

  .project-card--voximplant .project-card__visual .project-card__mobile-cover {
    top: -92px;
    height: 403px;
  }

  .project-card--akson .project-card__visual .project-card__mobile-cover {
    top: -4px;
    height: 193px;
  }

  .project-card--hyundai {
    display: block;
    height: 326px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, #26529d 0%, #0d2856 100%),
      #0d2856;
    color: #ffffff;
  }

  .project-card--hun-bmo,
  .project-card--hun-app {
    display: none;
  }

  .project-card--archive {
    display: block;
    background:
      linear-gradient(90deg, #7297f2 0%, #d079e5 100%),
      #7297f2;
    color: #ffffff;
  }

  .project-card--archive.project-card--hoverable:hover {
    background:
      linear-gradient(90deg, #7297f2 0%, #d079e5 100%),
      #7297f2;
    color: #ffffff;
  }

  .project-card--archive .project-card__topline {
    width: auto;
    justify-content: flex-start;
    gap: 8px;
  }

  .project-card--archive .project-card__explore {
    display: inline-flex;
    color: #ffffff;
    opacity: 1;
  }

  .project-card--archive .project-card__explore-text {
    display: none;
  }

  .project-card--archive .project-card__explore-icon {
    width: 11px;
    height: 11px;
    opacity: 1;
    transform: rotate(-45deg);
  }

  .project-card--archive .project-card__visual--media {
    background: transparent;
  }

  .project-card--archive .project-card__visual .project-card__mobile-cover {
    left: calc(50% - 2.5px);
    top: calc(50% - 1.5px);
    width: calc(100% + 15px);
    height: auto;
    transform: translate(-50%, -50%);
  }

  .project-card--research {
    display: block;
    background:
      linear-gradient(180.064deg, #2c2e30 33.475%, #0b0b0b 99.879%),
      #0b0b0b;
    color: #ffffff;
  }

  .project-card--research .project-card__meta,
  .project-card--research .project-card__title,
  .project-card--research .project-card__copy p {
    color: #ffffff;
  }

  .project-card--research .project-card__topline {
    left: 20px;
    top: 208px;
    z-index: 4;
    width: 303px;
  }

  .project-card--research .project-card__copy {
    left: 20px;
    top: 240px;
    z-index: 4;
    width: 303px;
  }

  .project-card--research .project-card__description--desktop {
    display: none;
  }

  .project-card--research .project-card__description--adaptive {
    display: block;
    color: #ffffff;
  }

  .project-card--research .project-card__description--adaptive strong {
    color: #ffffff;
    font-weight: 600;
  }

  .project-card--research .project-card__visual {
    left: 0;
    right: auto;
    top: 0;
    width: 100%;
    height: 184px;
    border-radius: 16px;
    background: #2d2d2d;
  }

  .project-card--research .project-card__visual .project-card__mobile-cover {
    left: -5px;
    top: -110px;
    width: calc(100% + 14px);
    height: 404px;
    filter: saturate(1.08);
  }

  .hyundai-card__title {
    position: absolute;
    left: 22px;
    top: 20px;
    display: block;
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0;
  }

  .hyundai-card__services {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .hyundai-card__service {
    display: flex;
    height: 68px;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 16px;
    background: #2c4c84;
  }

  .hyundai-card__icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: #3d5a8e;
  }

  .hyundai-card__icon img {
    display: block;
    width: 28px;
    height: 28px;
  }

  .hyundai-card__content {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 2px;
  }

  .hyundai-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    white-space: nowrap;
  }

  .hyundai-card__meta span:last-child {
    font-size: 13px;
  }

  .hyundai-card__dot {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
  }

  .hyundai-card__name {
    display: block;
    min-width: 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    white-space: nowrap;
  }

  .project-card__visual img:not(.project-card__mobile-cover) {
    display: none;
  }

  .project-card__visual--mockup::before,
  .project-card__visual--mockup::after,
  .project-card__phone,
  .project-card__orbit {
    display: none;
  }

  .site-footer {
    left: 50%;
    width: 100vw;
    min-width: 0;
    height: 274px;
    margin-top: 60px;
    margin-left: -50vw;
    padding: 32px;
  }

  .site-footer__inner {
    width: var(--tablet-content);
    height: 190px;
    gap: 40px;
    justify-content: flex-start;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 12px;
  }

  .site-footer__title,
  .site-footer__email {
    letter-spacing: 0;
  }

  .site-footer__title {
    width: 100%;
    font-size: 32px;
  }

  .site-footer__contact {
    gap: 32px;
  }

  .site-footer__email {
    font-size: 20px;
  }

  .site-footer__links {
    gap: 28px;
    padding-left: 0;
  }

  .site-footer__youtube {
    gap: 0;
  }

  .site-footer__youtube > span {
    display: none;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    font-size: 14px;
  }

  .site-footer__copyright {
    display: contents;
  }

  .site-footer__copyright p:first-child {
    width: 100%;
  }

  .site-footer__copyright p:nth-child(2) {
    display: inline;
  }

  .site-footer__back {
    align-self: flex-end;
    margin-top: -22px;
  }

  .project-card--hoverable:hover .project-card__explore,
  .project-card--hoverable:hover .project-card__explore-icon {
    display: none;
  }

  .site-footer .animated-link::after {
    bottom: -2px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    transform: scaleX(1);
    transform-origin: left center;
  }

  .project-card--sber-investments,
  .project-card--domclick,
  .project-card--voximplant,
  .project-card--akson,
  .project-card--research,
  .project-card--archive {
    height: 336px;
  }

  .project-card--sber-investments .project-card__copy,
  .project-card--domclick .project-card__copy,
  .project-card--voximplant .project-card__copy,
  .project-card--akson .project-card__copy,
  .project-card--research .project-card__copy,
  .project-card--archive .project-card__copy {
    top: 244px;
  }

  .project-card--sber-investments .project-card__title,
  .project-card--domclick .project-card__title,
  .project-card--voximplant .project-card__title,
  .project-card--akson .project-card__title,
  .project-card--research .project-card__title,
  .project-card--archive .project-card__title {
    font-size: 20px;
  }

  .project-card--sber-investments .project-card__copy p,
  .project-card--domclick .project-card__copy p,
  .project-card--voximplant .project-card__copy p,
  .project-card--akson .project-card__copy p,
  .project-card--research .project-card__copy p,
  .project-card--archive .project-card__copy p {
    font-size: 15px;
  }

  .project-card--sber-investments .project-card__meta--default,
  .project-card--domclick .project-card__meta--default,
  .project-card--voximplant .project-card__meta--default,
  .project-card--akson .project-card__meta--default,
  .project-card--research .project-card__meta--default,
  .project-card--archive .project-card__meta--default {
    display: none;
  }

  .project-card--sber-investments .project-card__meta--adaptive,
  .project-card--domclick .project-card__meta--adaptive,
  .project-card--voximplant .project-card__meta--adaptive,
  .project-card--akson .project-card__meta--adaptive,
  .project-card--research .project-card__meta--adaptive,
  .project-card--archive .project-card__meta--adaptive {
    display: flex;
  }
}

@media (max-width: 599px), (max-width: 767px) and (max-height: 899px) {
  :root {
    --mobile-scroll-header-height: 56px;
    --mobile-header-content-y: 18.5px;
  }

  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .page-shell {
    width: 100vw;
    min-height: 389px;
    padding-top: 389px;
  }

  .site-header {
    position: fixed;
    left: 50%;
    top: 24px;
    z-index: 50;
    display: flex;
    width: 100vw;
    height: var(--mobile-scroll-header-height);
    justify-content: center;
    gap: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.18px;
    isolation: isolate;
    overflow: visible;
    transform: translate(-50%, calc(-1 * var(--header-lift, 0px)));
    transition:
      height 440ms cubic-bezier(0.28, 0.11, 0.32, 1),
      transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-header::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: 100%;
    z-index: 0;
    background-color: rgba(250, 250, 252, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    content: "";
    opacity: var(--header-glass-opacity, 0);
    transition:
      top 440ms cubic-bezier(0.28, 0.11, 0.32, 1),
      height 440ms cubic-bezier(0.28, 0.11, 0.32, 1),
      opacity 460ms cubic-bezier(0.16, 1, 0.3, 1),
      background-color 440ms cubic-bezier(0.28, 0.11, 0.32, 1),
      backdrop-filter 440ms cubic-bezier(0.28, 0.11, 0.32, 1),
      -webkit-backdrop-filter 440ms cubic-bezier(0.28, 0.11, 0.32, 1);
  }

  .brand-zone,
  .local-time {
    display: none;
  }

  .brand-zone {
    position: absolute;
    left: 20px;
    top: var(--mobile-header-content-y);
    display: block;
    transform: translateY(-50%);
  }

  .brand {
    gap: 0;
    transition: opacity 320ms cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .brand:focus {
    outline: none;
  }

  .brand__avatar {
    display: none;
  }

  .brand span {
    color: #242629;
    font-size: 18px;
    letter-spacing: -0.18px;
    line-height: normal;
  }

  .header-links {
    display: none;
  }

  .site-header--menu-open::before {
    top: 0;
    height: 100%;
    background-color: var(--page);
    backdrop-filter: saturate(100%) blur(0);
    -webkit-backdrop-filter: saturate(100%) blur(0);
    opacity: 1;
  }

  .site-header--menu-closing::before {
    background-color: var(--page);
    backdrop-filter: saturate(100%) blur(0);
    -webkit-backdrop-filter: saturate(100%) blur(0);
    opacity: 1;
  }

  .site-header--menu-open.site-header--menu-from-scrolled-header::before {
    top: calc(-1 * (24px - var(--mobile-menu-header-lift, 0px)));
    height: calc(100% + 24px - var(--mobile-menu-header-lift, 0px));
    background-color: #fbfbfc;
  }

  .site-header--menu-closing.site-header--menu-from-scrolled-header::before {
    background-color: rgba(250, 250, 252, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    opacity: var(--header-glass-opacity, 1);
  }

  .site-header--menu-open {
    height: calc(100dvh + var(--mobile-menu-header-lift, 0px) - 24px);
    transform: translate(-50%, calc(-1 * var(--mobile-menu-header-lift, var(--header-lift, 0px))));
  }

  .site-header--menu-open .brand {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-menu-button {
    position: absolute;
    right: 0;
    top: var(--mobile-header-content-y);
    z-index: 3;
    display: grid;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    place-items: center;
    transform: translateY(-50%);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .mobile-menu-button:focus {
    outline: none;
  }

  .mobile-menu-button__line {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 1.8px;
    border-radius: 999px;
    background: #000;
    transform-origin: center;
    margin-left: -8px;
    -webkit-tap-highlight-color: transparent;
    transition:
      rotate 150ms cubic-bezier(0.42, 0, 0.58, 1),
      translate 150ms cubic-bezier(0.42, 0, 0.58, 1) 150ms,
      opacity 160ms ease;
    rotate: 0deg;
  }

  .mobile-menu-button__line--top {
    translate: 0 -4px;
  }

  .mobile-menu-button__line--bottom {
    translate: 0 4px;
  }

  .mobile-menu-button[aria-expanded="true"] .mobile-menu-button__line {
    transition:
      translate 150ms cubic-bezier(0.42, 0, 0.58, 1),
      rotate 150ms cubic-bezier(0.42, 0, 0.58, 1) 150ms,
      opacity 160ms ease;
    translate: 0 0;
  }

  .mobile-menu-button[aria-expanded="true"] .mobile-menu-button__line--top {
    rotate: 45deg;
  }

  .mobile-menu-button[aria-expanded="true"] .mobile-menu-button__line--bottom {
    rotate: -45deg;
  }

  body.mobile-menu-is-open {
    overflow: hidden;
  }

  .mobile-menu-panel {
    --mobile-menu-easing: cubic-bezier(0.28, 0.11, 0.32, 1);
    --mobile-menu-duration: 440ms;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    min-height: 0;
    backface-visibility: hidden;
    pointer-events: none;
    transition:
      visibility 0ms linear var(--mobile-menu-duration);
    visibility: hidden;
  }

  .mobile-menu-panel--open {
    pointer-events: none;
    transition: visibility 0ms linear 0ms;
    visibility: visible;
  }

  .mobile-menu-panel__links {
    position: absolute;
    left: 50%;
    right: auto;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
    padding: 0;
    color: #242629;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.24px;
    line-height: 1.15;
    pointer-events: auto;
    text-align: left;
    transform: translate(-50%, -50%);
  }

  .mobile-menu-panel__links a {
    width: max-content;
    opacity: 0;
    transform: translate3d(0, -10px, 0);
    transition:
      opacity 320ms ease,
      transform 520ms cubic-bezier(0.28, 0.11, 0.32, 1);
    will-change: transform, opacity;
  }

  .mobile-menu-panel--open .mobile-menu-panel__links a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu-panel--open .mobile-menu-panel__links a:nth-child(1) {
    transition-delay: 260ms;
  }

  .mobile-menu-panel--open .mobile-menu-panel__links a:nth-child(2) {
    transition-delay: 325ms;
  }

  .mobile-menu-panel--open .mobile-menu-panel__links a:nth-child(3) {
    transition-delay: 390ms;
  }

  .mobile-menu-panel__cv {
    display: inline-flex;
    align-items: center;
    gap: 2px;
  }

  .mobile-menu-panel__cv img {
    display: block;
    width: 32px;
    height: 32px;
  }

  .hero {
    inset: 0;
    height: 389px;
  }

  .hero__content {
    left: 0;
    top: 148px;
    width: 100vw;
    padding: 10px 16px 0;
  }

  h1 {
    width: 100%;
    font-size: clamp(56px, 19.2vw, 72px);
    line-height: 1;
    text-align: center;
    white-space: normal;
  }

  .hero__subtitle {
    position: absolute;
    left: 16px;
    top: 181px;
    width: calc(100vw - 32px);
    margin: 0;
    font-size: clamp(18px, 5.333vw, 20px);
    line-height: 1.51;
    white-space: normal;
  }

  .mobile-subtitle-break {
    display: block;
  }

  .audience-chips {
    left: clamp(28px, calc(6.667vw + 12px), 37px);
    top: 140px;
    flex-direction: row-reverse;
    gap: 6px;
    transform: none;
  }

  .audience-chip:first-child,
  .audience-chip:last-child {
    transform: none;
  }

  .device-chip {
    left: auto;
    right: clamp(22px, calc(5.333vw + 6px), 26px);
    top: 280px;
    transform: none;
  }

  .audience-chip,
  .device-chip {
    border-color: rgba(233, 233, 233, 0.72);
    background: rgba(185, 207, 225, 0.1);
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.96),
      inset 0 -9px 18px rgba(205, 216, 226, 0.16),
      inset 1px 0 0 rgba(0, 148, 255, 0.03),
      inset -1px 0 0 rgba(255, 55, 120, 0.03),
      0 1px 2px rgba(35, 39, 45, 0.08);
  }

  .projects {
    display: flex;
    flex-direction: column;
    width: calc(100vw - 32px);
    gap: 16px;
    margin: 64px auto 0;
    padding-bottom: 83px;
  }

  .project-card {
    width: 100%;
    height: 326px;
    border-radius: 24px;
    background: #292929;
    color: #ffffff;
  }

  .project-card--sber-investments {
    height: 336px;
  }

  .project-card--hoverable {
    cursor: default;
  }

  .project-card--hoverable:hover {
    background: #292929;
    color: #ffffff;
  }

  .project-card:nth-child(2) {
    background:
      linear-gradient(131.9deg, #97ed7d 5.59%, #7cd892 27.65%, #5accc6 87.55%),
      #292929;
    color: #242629;
  }

  .project-card__topline {
    left: 20px;
    top: 208px;
    width: calc(100% - 40px);
  }

  .project-card__meta {
    gap: 8px;
    color: currentColor;
    font-size: 14px;
    line-height: 1.45;
  }

  .project-card__meta-item {
    gap: 8px;
  }

  .project-card__copy {
    left: 20px;
    top: 240px;
    width: calc(100% - 40px);
  }

  .project-card--sber-investments .project-card__copy {
    top: 244px;
  }

  .project-card--sber-investments .project-card__title {
    font-size: 20px;
  }

  .project-card--sber-investments .project-card__copy p {
    font-size: 15px;
  }

  .project-card--sber-investments .project-card__meta--default {
    display: none;
  }

  .project-card--sber-investments .project-card__meta--adaptive {
    display: flex;
  }

  .project-card__title {
    gap: 6px;
    margin-bottom: 8px;
    color: currentColor;
    font-size: 18px;
    letter-spacing: 0;
  }

  .project-card__copy p {
    color: currentColor;
    font-size: 14px;
    letter-spacing: 0;
    white-space: pre-line;
  }

  .project-card__description--desktop {
    display: none;
  }

  .project-card__description--adaptive {
    display: block;
  }

  .project-card--hoverable:hover .project-card__meta,
  .project-card--hoverable:hover .project-card__title,
  .project-card--hoverable:hover .project-card__copy p {
    color: currentColor;
  }

  .project-card__explore {
    display: none;
  }

  .project-card__visual {
    left: 0;
    right: auto;
    top: 0;
    width: 100%;
    height: 184px;
    border-radius: 16px;
  }

  .project-card--akson {
    display: block;
  }

  .project-card--voximplant,
  .project-card--akson {
    display: block;
    color: #ffffff;
  }

  .project-card--voximplant {
    background:
      linear-gradient(164.8deg, #7f5ed3 13.497%, #342067 97.206%),
      #342067;
  }

  .project-card--akson {
    background:
      linear-gradient(89.22deg, #5978b9 0.64%, #7d4889 37.88%, #e63341 100.97%),
      #5978b9;
  }

  .project-card--voximplant .project-card__topline,
  .project-card--akson .project-card__topline {
    top: 208px;
    width: calc(100% - 40px);
  }

  .project-card--voximplant .project-card__copy,
  .project-card--akson .project-card__copy {
    top: 240px;
    width: calc(100% - 40px);
  }

  .project-card--voximplant .project-card__visual,
  .project-card--akson .project-card__visual {
    left: 0;
    right: auto;
    width: 100%;
    height: 184px;
  }

  .project-card__visual--media {
    background: #232322;
  }

  .project-card__visual--placeholder,
  .project-card__visual--mockup,
  .project-card:nth-child(2) .project-card__visual {
    background: #c6e5a5;
  }

  .project-card__cover,
  .project-card__video {
    display: none;
  }

  .project-card__visual .project-card__mobile-cover {
    left: 0;
    top: -3px;
    z-index: 2;
    display: block;
    width: 100%;
    height: 191px;
    object-fit: cover;
  }

  .project-card--domclick .project-card__visual--media {
    background:
      linear-gradient(180deg, #d8d8d8 0%, #c9c9c9 100%),
      #d8d8d8;
  }

  .project-card--domclick .project-card__visual .project-card__mobile-cover {
    top: 0;
    height: 184px;
  }

  .project-card--voximplant .project-card__visual .project-card__mobile-cover {
    top: 0;
    height: 195px;
  }

  .project-card--akson .project-card__visual .project-card__mobile-cover {
    top: -4px;
    height: 193px;
  }

  .project-card--hyundai {
    display: block;
    height: 326px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, #26529d 0%, #0d2856 100%),
      #0d2856;
    color: #ffffff;
  }

  .project-card--hun-bmo,
  .project-card--hun-app {
    display: none;
  }

  .project-card--archive {
    display: block;
    background:
      linear-gradient(90deg, #7297f2 0%, #d079e5 100%),
      #7297f2;
    color: #ffffff;
  }

  .project-card--archive.project-card--hoverable:hover {
    background:
      linear-gradient(90deg, #7297f2 0%, #d079e5 100%),
      #7297f2;
    color: #ffffff;
  }

  .project-card--archive .project-card__topline {
    width: auto;
    justify-content: flex-start;
    gap: 8px;
  }

  .project-card--archive .project-card__explore {
    display: inline-flex;
    color: #ffffff;
    opacity: 1;
  }

  .project-card--archive .project-card__explore-text {
    display: none;
  }

  .project-card--archive .project-card__explore-icon {
    width: 11px;
    height: 11px;
    opacity: 1;
    transform: rotate(-45deg);
  }

  .project-card--archive .project-card__visual--media {
    background: transparent;
  }

  .project-card--archive .project-card__visual .project-card__mobile-cover {
    left: calc(50% - 1.5px);
    top: calc(50% - 1px);
    width: calc(100% + 7px);
    height: auto;
    transform: translate(-50%, -50%);
  }

  .project-card--research {
    display: block;
    background:
      linear-gradient(180.132deg, #2c2e30 33.475%, #0b0b0b 99.879%),
      #0b0b0b;
    color: #ffffff;
  }

  .project-card--research .project-card__meta,
  .project-card--research .project-card__title,
  .project-card--research .project-card__copy p {
    color: #ffffff;
  }

  .project-card--research .project-card__topline {
    left: 20px;
    top: 208px;
    z-index: 4;
    width: 303px;
  }

  .project-card--research .project-card__copy {
    left: 20px;
    top: 240px;
    z-index: 4;
    width: 303px;
  }

  .project-card--research .project-card__description--desktop {
    display: none;
  }

  .project-card--research .project-card__description--adaptive {
    display: block;
    color: #ffffff;
  }

  .project-card--research .project-card__description--adaptive strong {
    color: #ffffff;
    font-weight: 600;
  }

  .project-card--research .project-card__visual {
    left: 0;
    right: auto;
    top: 0;
    width: 100%;
    height: 184px;
    border-radius: 16px;
    background: #2d2d2d;
  }

  .project-card--research .project-card__visual .project-card__mobile-cover {
    left: -5px;
    top: -7px;
    width: calc(100% + 9px);
    height: 198px;
    filter: saturate(1.08);
  }

  .hyundai-card__title {
    position: absolute;
    left: 22px;
    top: 20px;
    display: block;
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0;
  }

  .hyundai-card__services {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .hyundai-card__service {
    display: flex;
    height: 68px;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 16px;
    background: #2c4c84;
  }

  .hyundai-card__icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: #3d5a8e;
  }

  .hyundai-card__icon img {
    display: block;
    width: 28px;
    height: 28px;
  }

  .hyundai-card__content {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 2px;
  }

  .hyundai-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    white-space: nowrap;
  }

  .hyundai-card__meta span:last-child {
    font-size: 13px;
  }

  .hyundai-card__dot {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
  }

  .hyundai-card__name {
    display: block;
    min-width: 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    white-space: nowrap;
  }

  .project-card__visual img:not(.project-card__mobile-cover) {
    display: none;
  }

  .project-card__visual--mockup::before,
  .project-card__visual--mockup::after,
  .project-card__phone,
  .project-card__orbit {
    display: none;
  }

  .site-footer {
    left: auto;
    display: block;
    width: 100%;
    min-width: 0;
    height: 274px;
    margin-top: 0;
    margin-left: 0;
    padding: 32px 16px 52px;
  }

  .site-footer__inner {
    width: 100%;
    height: 190px;
    gap: 40px;
    justify-content: flex-start;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 12px;
  }

  .site-footer__title {
    width: 100%;
    font-size: 32px;
    letter-spacing: 0;
  }

  .site-footer__contact {
    gap: 32px;
  }

  .site-footer__email {
    font-size: 20px;
    letter-spacing: 0;
  }

  .site-footer__links {
    gap: 28px;
    padding-left: 0;
    font-size: 16px;
  }

  .site-footer__links .footer-link {
    height: 18px;
  }

  .site-footer__links .footer-link::after {
    bottom: -2px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    transform: scaleX(1);
    transform-origin: left center;
  }

  .site-footer__youtube {
    gap: 0;
  }

  .site-footer__youtube > span {
    display: none;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    font-size: 14px;
  }

  .site-footer__copyright {
    display: contents;
  }

  .site-footer__copyright p:first-child {
    width: 100%;
  }

  .site-footer__copyright p:nth-child(2) {
    display: inline;
  }

  .site-footer__back {
    align-self: flex-end;
    margin-top: -22px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .project-card--sber-investments,
  .project-card--domclick,
  .project-card--voximplant,
  .project-card--akson,
  .project-card--research,
  .project-card--archive {
    height: 336px;
  }

  .project-card--sber-investments .project-card__copy,
  .project-card--domclick .project-card__copy,
  .project-card--voximplant .project-card__copy,
  .project-card--akson .project-card__copy,
  .project-card--research .project-card__copy,
  .project-card--archive .project-card__copy {
    top: 244px;
  }

  .project-card--sber-investments .project-card__title,
  .project-card--domclick .project-card__title,
  .project-card--voximplant .project-card__title,
  .project-card--akson .project-card__title,
  .project-card--research .project-card__title,
  .project-card--archive .project-card__title {
    font-size: 20px;
  }

  .project-card--sber-investments .project-card__copy p,
  .project-card--domclick .project-card__copy p,
  .project-card--voximplant .project-card__copy p,
  .project-card--akson .project-card__copy p,
  .project-card--research .project-card__copy p,
  .project-card--archive .project-card__copy p {
    font-size: 15px;
  }

  .project-card--sber-investments .project-card__meta--default,
  .project-card--domclick .project-card__meta--default,
  .project-card--voximplant .project-card__meta--default,
  .project-card--akson .project-card__meta--default,
  .project-card--research .project-card__meta--default,
  .project-card--archive .project-card__meta--default {
    display: none;
  }

  .project-card--sber-investments .project-card__meta--adaptive,
  .project-card--domclick .project-card__meta--adaptive,
  .project-card--voximplant .project-card__meta--adaptive,
  .project-card--akson .project-card__meta--adaptive,
  .project-card--research .project-card__meta--adaptive,
  .project-card--archive .project-card__meta--adaptive {
    display: flex;
  }
}
