html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* font family */
  --primary-font-family: "Satoshi", sans-serif;

  /* font color */
  --white-color-shade-1: #efeeec;
  --white-color-shade-2: #fff;
  --black-color-shade-1: #090909;
  --black-color-shade-2: #2f2f2f;
  --grey-color-shade-1: #9d9d9d;
  --grey-color-shade-2: #dbdad9;
  --accent-color-shade-1: #f2e700;
  --accent-color-shade-2: #14e6c9;
  --accent-color-shade-3: #c400ff;
  --accent-color-shade-4: #4b64ff;
}

body {
  font-family: var(--primary-font-family);
  line-height: 1.2;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.grey {
  color: var(--grey-color-shade-1);
}

/* button */
.button-primary {
  --button-shift-x: 0px;
  --button-shift-y: 0px;
  color: var(--black-color-shade-1);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 168px;
  height: 50px;
  padding: 0 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  background: transparent;
  transition: color 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white-color-shade-1);
  border-radius: 0;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button-primary__text {
  position: relative;
  z-index: 2;
  transform: translate(var(--button-shift-x), var(--button-shift-y));
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 280ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.button-primary__corner {
  position: absolute;
  width: 12px;
  height: 12px;
  opacity: 0;
  z-index: 2;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.button-primary__corner::before,
.button-primary__corner::after {
  content: "";
  position: absolute;
  background-color: var(--grey-color-shade-1);
}

.button-primary__corner::before {
  width: 12px;
  height: 1.5px;
}

.button-primary__corner::after {
  width: 1.5px;
  height: 12px;
}

.button-primary__corner--tl {
  top: 0;
  left: 0;
  transform: translate(-4px, -4px);
}

.button-primary__corner--tr {
  top: 0;
  right: 0;
  transform: translate(4px, -4px);
}

.button-primary__corner--bl {
  bottom: 0;
  left: 0;
  transform: translate(-4px, 4px);
}

.button-primary__corner--br {
  right: 0;
  bottom: 0;
  transform: translate(4px, 4px);
}

.button-primary__corner--tr::before,
.button-primary__corner--br::before,
.button-primary__corner--tr::after,
.button-primary__corner--br::after {
  right: 0;
}

.button-primary__corner--bl::before,
.button-primary__corner--br::before,
.button-primary__corner--bl::after,
.button-primary__corner--br::after {
  bottom: 0;
}

.button-primary:hover {
  color: var(--grey-color-shade-2);
}

.button-primary:hover::before {
  opacity: 0;
  transform: scale(0.96);
}

.button-primary:hover .button-primary__corner--tl {
  opacity: 1;
  transform: translate(0, 0);
}

.button-primary:hover .button-primary__corner--tr {
  opacity: 1;
  transform: translate(0, 0);
}

.button-primary:hover .button-primary__corner--bl {
  opacity: 1;
  transform: translate(0, 0);
}

.button-primary:hover .button-primary__corner--br {
  opacity: 1;
  transform: translate(0, 0);
}

img {
  width: 100%;
  height: auto;
  display: block;
}

video {
  width: 100%;
  display: block;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.hero-section-left,
.hero-left-top,
.hero-left-bottom,
.solutions-top,
.faq-content,
.site-footer__top > *,
.contact-section > *,
.contact-info-grid > *,
.about-hero__bottom > *,
.about-feature__row > *,
.about-proof__grid > *,
.about-process__grid > *,
.about-recent-work__intro > *,
.about-recent-work__layout > *,
.project-layout > *,
.project-details > *,
.not-found-grid > *,
.not-found-copy {
  min-width: 0;
}

/* hero wrapper  */
.hero-wrapper {
  background: url("../images/hero_bg_wallpaper.jpg") center/cover no-repeat;
}

/* navigation menu  */
.navigation-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem 1rem;
  background: transparent;
}

.navigation-bar img {
  width: 90px;
  height: 90px;
}

.what-we-do li {
  font-size: 12px;
  color: var(--white-color-shade-1);
  font-weight: 500;
  line-height: 1.8;
}

.what-we-do {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.courtesy {
  font-size: 12px;
  color: var(--white-color-shade-1);
  font-weight: 500;
}

.menu-link {
  font-size: 14px;
  color: var(--white-color-shade-1);
  font-weight: 500;
  font-family: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

/* overlay menu */
body.menu-open {
  overflow: hidden;
}

.site-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0s linear 0.56s;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.24s ease,
    visibility 0s linear 0s;
}

.site-menu__panel {
  width: clamp(380px, 34vw, 620px);
  height: 100vh;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #000;
  padding: 1.8rem 3.5rem 2.5rem;
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.28);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.site-menu.is-open .site-menu__panel {
  transform: translate3d(0, 0, 0);
}

.site-menu__top,
.site-menu__bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  column-gap: 2rem;
}

.site-menu__project,
.site-menu__meta-label,
.site-menu__close-label {
  color: var(--white-color-shade-1);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-menu__close {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white-color-shade-1);
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.site-menu__close-icon {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 300;
}

.site-menu__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2.5rem;
  max-width: 52rem;
  padding: 3.25rem 0 1rem;
}

.site-menu__nav {
  display: grid;
  gap: 0.85rem;
}

.site-menu__link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  color: var(--white-color-shade-1);
  font-size: 52px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-decoration: none;
  transition:
    color 220ms ease,
    opacity 220ms ease;
}

.site-menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2em;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu__link:hover {
  opacity: 1;
}

.site-menu__link:hover::after {
  transform: scaleX(1);
}

.site-menu__meta-block {
  display: grid;
  gap: 0.85rem;
  max-width: 21rem;
}

.site-menu__meta-copy,
.site-menu__socials a {
  color: var(--white-color-shade-1);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.55;
  text-decoration: none;
}

.site-menu__socials {
  display: grid;
  gap: 0.45rem;
}

.site-menu__panel > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu.is-open .site-menu__top {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.site-menu.is-open .site-menu__body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.site-menu.is-open .site-menu__bottom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}

/* hero section */
.hero-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 100vh;
  height: 80vh;
  padding: 3rem 3rem 2.5rem;
}

.hero-section-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.hero-left-top {
  margin-bottom: 0;
}

.hero-left-top h1 {
  font-size: 45.2px;
  font-weight: 400;
  color: var(--white-color-shade-1);
  margin-bottom: 2rem;
}

.hero-left-bottom p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white-color-shade-1);
}

@media (max-width: 1280px) {
  .navigation-bar {
    padding: 1rem 2rem;
    gap: 1.5rem;
  }

  .hero-section {
    padding: 2.5rem 2rem 2rem;
  }

  .hero-left-top h1 {
    font-size: 3rem;
    max-width: 34rem;
  }

  .solutions-bottom {
    width: min(90vw, 1080px);
  }

  .vision-line {
    font-size: 3.5rem;
  }

  .contact-cta-title {
    font-size: 2.35rem;
  }

  .offer-sticky {
    justify-content: center;
  }

  .offer-header {
    margin-bottom: 0.4rem;
  }
}

@media (max-width: 980px) {
  .navigation-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo year menu"
      "services services services";
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 1rem 1.25rem;
  }

  .navigation-bar > a {
    grid-area: logo;
  }

  .what-we-do {
    grid-area: services;
    width: 100%;
    gap: 0.25rem;
  }

  .courtesy {
    grid-area: year;
    justify-self: center;
  }

  .menu-link {
    grid-area: menu;
    justify-self: end;
  }

  .navigation-bar img {
    width: 72px;
    height: 72px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: calc(100vh - 11rem);
    padding: 1rem 1.25rem 2rem;
  }

  .hero-section-left {
    max-width: 36rem;
  }

  .hero-left-top {
    margin-bottom: 3rem;
  }

  .hero-left-top h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.02;
    margin-bottom: 1.5rem;
  }

  .hero-left-bottom p {
    max-width: 24rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .solutions-section {
    padding: 5rem 0 3rem;
  }

  .solutions-section .container {
    padding: 0 1.25rem;
  }

  .solutions-top h2 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin-bottom: 1.1rem;
  }

  .solutions-top p {
    font-size: 1rem;
  }

  .solutions-bottom {
    width: 100%;
    margin-top: 2.25rem;
    margin-left: 0;
    transform: none;
  }

  .video {
    border-radius: 1.2rem;
    max-height: none;
  }

  .video video {
    height: min(58vw, 420px);
  }

  .video-play-button {
    width: 76px;
    height: 76px;
  }

  .video-brand {
    top: 1.4rem;
    left: 1rem;
  }

  .video-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: 18rem;
    font-size: 0.8rem;
  }

  .numbers-block {
    margin-top: 1.8rem;
  }

  .vision-section {
    padding: 5rem 0 4rem;
  }

  .vision-shell {
    width: min(100%, 100%);
    padding: 0 1.25rem;
  }

  .vision-line {
    font-size: clamp(2.35rem, 7vw, 3.4rem);
  }

  .vision-inline-image {
    width: 76px;
    height: 46px;
  }

  .metrics-section {
    padding: 5rem 0 5.5rem;
  }

  .metrics-shell {
    width: min(100%, 100%);
    padding: 0 1.25rem;
  }

  .contact-cta-shell {
    width: min(100%, 100%);
    padding: 6rem 1.25rem;
  }

  .faq-shell {
    width: min(100%, 100%);
    padding: 0 1.25rem;
  }
}

/* solutions section */
.solutions-section {
  background-color: var(--black-color-shade-1);
  padding: 6rem 0 3.5rem;
}

.solutions-section .container {
  max-width: 980px;
  padding: 0 1.5rem;
}

.solutions-top {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.solutions-top h2 {
  color: var(--white-color-shade-1);
  font-size: 38.4px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.solutions-top p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--grey-color-shade-1);
  font-size: 18px;
  line-height: 1.45;
}

.solutions-bottom {
  margin-top: 3rem;
  width: min(82vw, 1080px);
  margin-left: 50%;
  transform: translateX(-50%);
}

.video {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background-color: #111;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.22);
  max-height: 460px;
}

.video video {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.16) 48%,
    rgba(0, 0, 0, 0.54) 100%
  );
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-brand {
  position: absolute;
  top: 2.2rem;
  left: 1.25rem;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
  display: inline-block;
  color: var(--white-color-shade-1);
}

.video-brand-text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  transform: translate(-50%, -50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition:
    transform 240ms ease,
    background-color 240ms ease,
    opacity 240ms ease;
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background: #fff;
}

.video-play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #1a1a1a;
}

.video-play-button.is-paused .video-play-icon {
  width: 16px;
  height: 18px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(
    90deg,
    #1a1a1a 0,
    #1a1a1a 5px,
    transparent 5px,
    transparent 11px,
    #1a1a1a 11px,
    #1a1a1a 16px
  );
}

.video-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.4rem;
  max-width: 320px;
  color: rgba(239, 238, 236, 0.92);
  font-size: 0.85rem;
  line-height: 1.28;
}

.numbers-block {
  margin-top: 2.6rem;
}

.numbers-kicker {
  color: var(--grey-color-shade-1);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.number-card {
  padding: 1.35rem 1.4rem 1.5rem;
  border: 1px solid rgba(239, 238, 236, 0.1);
  border-radius: 1.2rem;
  background: linear-gradient(
    180deg,
    rgba(239, 238, 236, 0.04),
    rgba(239, 238, 236, 0.015)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 40px rgba(0, 0, 0, 0.22);
}

.number-label {
  color: var(--grey-color-shade-1);
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.number-value {
  color: var(--white-color-shade-1);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

/* vision section */
.vision-section {
  background-color: var(--black-color-shade-1);
  min-height: 100vh;
  padding: 6.5rem 0 5rem;
  display: flex;
  align-items: center;
}

.vision-shell {
  width: min(96vw, 1720px);
  margin: 0 auto;
  position: relative;
  padding: 0 1.5rem;
}

.vision-copy {
  max-width: 1630px;
  margin: 0 auto;
  padding-right: 0;
}

.vision-line-wrap {
  overflow: hidden;
}

.vision-line {
  color: var(--white-color-shade-1);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: vision-line-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vision-copy .vision-line-wrap:nth-child(2) .vision-line {
  animation-delay: 0.12s;
}

.vision-copy .vision-line-wrap:nth-child(3) .vision-line {
  animation-delay: 0.24s;
}

.vision-copy .vision-line-wrap:nth-child(4) .vision-line {
  animation-delay: 0.36s;
}

.vision-copy .vision-line-wrap:nth-child(5) .vision-line {
  animation-delay: 0.48s;
}

.vision-line--title {
  padding-top: 0.35rem;
}

.vision-inline-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: -0.28em;
  width: 92px;
  height: 56px;
  margin: 0 0.22rem;
  border-radius: 999px;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  clip-path: inset(0 100% 0 0 round 999px);
  animation: vision-image-reveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vision-inline-image--one {
  animation-delay: 0.34s;
}

.vision-inline-image--three {
  animation-delay: 0.44s;
}

.vision-inline-image--four {
  animation-delay: 0.56s;
}

.vision-inline-image--one img {
  animation-delay: 0.34s;
}

.vision-inline-image--three img {
  animation-delay: 0.44s;
}

.vision-inline-image--four img {
  animation-delay: 0.56s;
}

.vision-inline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(24px) scale(1.03);
  animation: vision-image-pan 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes vision-line-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vision-image-reveal {
  from {
    clip-path: inset(0 100% 0 0 round 999px);
  }

  to {
    clip-path: inset(0 0 0 0 round 999px);
  }
}

@keyframes vision-image-pan {
  from {
    transform: translateX(24px) scale(1.03);
  }

  to {
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 768px) {
  .navigation-bar {
    grid-template-columns: auto auto;
    grid-template-areas:
      "logo menu"
      "year year"
      "services services";
    align-items: start;
  }

  .courtesy {
    justify-self: start;
  }

  .what-we-do li,
  .courtesy,
  .menu-link {
    font-size: 0.78rem;
  }

  .hero-section {
    min-height: 100svh;
    padding: 0.75rem 1rem 1.75rem;
  }

  .hero-left-top {
    margin-bottom: 2rem;
  }

  .hero-left-top h1 {
    font-size: 2.15rem;
    margin-bottom: 1.25rem;
  }

  .hero-left-bottom p {
    font-size: 0.88rem;
    max-width: 19rem;
  }

  .solutions-section {
    padding: 4rem 0 2.5rem;
  }

  .solutions-section .container {
    padding: 0 1rem;
  }

  .solutions-top h2 {
    font-size: 1.75rem;
  }

  .solutions-top p {
    font-size: 0.92rem;
  }

  .video video {
    height: 15rem;
  }

  .video-play-button {
    width: 64px;
    height: 64px;
  }

  .video-play-icon {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .numbers-block {
    text-align: center;
  }

  .number-card {
    padding: 1.2rem 1.25rem 1.35rem;
  }

  .vision-line {
    font-size: 2rem;
    text-align: center;
    line-height: 1.18;
  }

  .vision-inline-image {
    width: 58px;
    height: 36px;
    margin: 0 0.14rem;
  }
}

/* metrics section */
.metrics-section {
  background-color: var(--black-color-shade-1);
  padding: 6rem 0 7rem;
}

.metrics-shell {
  width: min(94vw, 1720px);
  margin: 0 auto;
}

.metrics-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "experience . growth"
    ". clients cases";
  gap: 1.1rem;
  align-items: stretch;
}

.metrics-card {
  min-height: 14.75rem;
  height: 100%;
  padding: 1.1rem 1rem 0.96rem;
  border-radius: 0.35rem;
  background: rgba(239, 238, 236, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 20px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metrics-card--experience {
  grid-area: experience;
}

.metrics-card--growth {
  grid-area: growth;
}

.metrics-card--clients {
  grid-area: clients;
}

.metrics-card--cases {
  grid-area: cases;
}

.metrics-card__value {
  color: var(--white-color-shade-1);
  font-size: clamp(1.9rem, 2.8vw, 2.45rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-align: right;
}

.metrics-card__body {
  max-width: 31rem;
}

.metrics-card__title {
  color: var(--white-color-shade-1);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.metrics-card__copy {
  color: var(--grey-color-shade-2);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "experience growth"
      "clients cases";
  }

  .metrics-card--experience,
  .metrics-card--growth,
  .metrics-card--clients,
  .metrics-card--cases {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .metrics-section {
    padding: 4.25rem 0 5rem;
  }

  .metrics-shell {
    width: min(100%, 100%);
    padding: 0 1rem;
  }

  .metrics-grid {
    gap: 0.95rem;
  }

  .metrics-card {
    min-height: 13.75rem;
    padding: 1.02rem 0.92rem 0.92rem;
  }

  .metrics-card__value {
    font-size: clamp(1.95rem, 5vw, 2.55rem);
  }
}

@media (max-width: 800px) {
  .metrics-section {
    padding: 4.5rem 0 5.5rem;
  }

  .metrics-shell {
    width: min(100%, 100%);
    padding: 0 1rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 1rem;
  }

  .metrics-card--experience,
  .metrics-card--growth,
  .metrics-card--clients,
  .metrics-card--cases {
    grid-area: auto;
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .metrics-card {
    min-height: 13.5rem;
    padding: 1.04rem 0.9rem 0.9rem;
  }

  .metrics-card__value {
    font-size: 2rem;
  }

  .metrics-card__copy {
    font-size: 0.9rem;
  }
}

/* offer section */
.offer-section {
  background-color: var(--black-color-shade-1);
  min-height: auto;
  padding: 2.5rem 0 4rem;
}

.offer-shell {
  width: min(92vw, 1720px);
  margin: 0 auto;
}

.offer-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 1.15rem;
  margin-bottom: 1.6rem;
}

.offer-header::after {
  content: "";
  height: 1px;
  background: rgba(239, 238, 236, 0.12);
}

.offer-kicker {
  color: var(--white-color-shade-1);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.78;
}

.offer-stack {
  width: min(100%, 760px);
  height: 21.75rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.offer-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  overflow: hidden;
  border-radius: 0.8rem;
  background: var(--black-color-shade-2);
  border: 1px solid rgba(239, 238, 236, 0.08);
  transform-origin: center center;
  will-change: transform, opacity;
  pointer-events: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.offer-content {
  background: var(--black-color-shade-2);
  padding: 1.15rem 1.15rem 0.4rem;
  display: flex;
  flex-direction: column;
  min-height: 21.75rem;
  gap: 0.2rem;
}

.offer-copy {
  max-width: 14.5rem;
  min-height: 3.15rem;
  margin-bottom: 1.15rem;
}

.offer-title {
  color: var(--white-color-shade-1);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.offer-subtitle {
  color: var(--white-color-shade-1);
  font-size: 0.82rem;
  line-height: 1.45;
}

.offer-price {
  color: var(--white-color-shade-1);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1.35rem;
  display: flex;
  align-items: baseline;
  gap: 0.42rem;
  max-width: 14.5rem;
}

.offer-price__amount {
  display: inline-flex;
  align-items: baseline;
  gap: 0.14rem;
}

.offer-features-block {
  max-width: 14.5rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0;
}

.offer-features-heading {
  color: var(--white-color-shade-1);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.offer-features {
  display: grid;
  gap: 0.5rem;
}

.offer-features li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--white-color-shade-1);
  font-size: 0.78rem;
  line-height: 1.35;
}

.offer-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--white-color-shade-1);
  font-size: 0.9rem;
  line-height: 1;
}

.offer-features li.is-muted {
  color: rgba(239, 238, 236, 0.55);
}

.offer-features li.is-muted::before {
  content: "*";
  color: rgba(239, 238, 236, 0.55);
}

.offer-button.button-primary {
  align-self: flex-start;
  width: 104px;
  height: 40px;
  padding: 0 0.9rem;
  font-size: 0.78rem;
}

.offer-media {
  min-height: 21.75rem;
  background: #d9d6d1;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.offer-media--web img {
  object-position: center 22%;
}

.offer-media--brand img {
  object-position: center 42%;
}

.offer-media--product img {
  object-position: center 34%;
}

@media (max-width: 1100px) {
  .offer-section {
    min-height: auto;
    padding: 2.4rem 0 5.5rem;
  }

  .offer-shell {
    width: min(100%, 100%);
    padding: 0 1rem;
  }

  .offer-header {
    column-gap: 0.85rem;
    margin-bottom: 2rem;
  }

  .offer-stack {
    display: grid;
    gap: 1rem;
    height: auto;
  }

  .offer-card {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    pointer-events: auto;
  }

  .offer-media {
    order: -1;
  }

  .offer-content,
  .offer-media {
    min-height: auto;
  }

  .offer-content {
    padding: 1.1rem 1rem 1.1rem;
  }

  .offer-media {
    height: 16rem;
  }
}

@media (max-width: 768px) {
  .offer-title {
    font-size: 1.35rem;
  }

  .offer-price {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .offer-subtitle,
  .offer-features-heading,
  .offer-features li {
    font-size: 0.78rem;
  }

  .offer-button.button-primary {
    width: 96px;
    height: 38px;
    font-size: 0.75rem;
  }

  .offer-media {
    height: 14rem;
  }

  .offer-shell {
    padding: 0 1rem;
  }

  .offer-card {
    border-radius: 0.65rem;
  }
}

/* offer plans override */
.offer-section {
  padding: 3.5rem 0 5rem;
}

.offer-header {
  margin-bottom: 5rem;
}

.offer-stack {
  width: 100%;
  height: auto;
  margin: 0;
  position: static;
  overflow: visible;
  perspective: none;
  transform-style: flat;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  position: relative;
  inset: auto;
  display: block;
  min-height: 35rem;
  pointer-events: auto;
  transform: none !important;
  opacity: 1 !important;
  z-index: auto !important;
  border-radius: 0;
  background: #1e1e1e;
  border-color: rgba(239, 238, 236, 0.06);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.offer-card__bar {
  height: 5px;
  background: rgba(239, 238, 236, 0.95);
}

.offer-card--featured .offer-card__bar {
  background: #dd4d49;
}

.offer-content {
  min-height: 35rem;
  padding: 1.25rem 1.15rem 1.15rem;
  gap: 0;
  background: #1e1e1e;
}

.offer-copy {
  min-height: 3.55rem;
  margin-bottom: 1.1rem;
}

.offer-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #f1f0ed;
}

.offer-price {
  font-weight: 400;
  color: #f3f1ee;
}

.offer-price--plans {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  gap: 0.06rem;
}

.offer-price--plans .offer-price__amount {
  gap: 0;
}

.offer-price--plans .offer-price__currency {
  font-size: 0.92em;
}

.offer-meta {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.offer-meta p {
  color: #f0efec;
  font-size: 0.92rem;
  line-height: 1.35;
}

.offer-meta span {
  font-weight: 500;
}

.offer-divider {
  height: 1px;
  background: rgba(239, 238, 236, 0.12);
  margin: 0 -1.15rem 1rem;
}

.offer-features-block {
  margin-bottom: 1.35rem;
}

.offer-subtitle,
.offer-features-heading,
.offer-features li {
  color: #f0efec;
  font-size: 0.88rem;
}

.offer-features li::before {
  content: "\2713";
}

.offer-button.button-primary {
  align-self: center;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .offer-section {
    padding: 3rem 0 4.75rem;
  }

  .offer-header {
    margin-bottom: 1.8rem;
  }

  .offer-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card {
    min-height: 33rem;
  }

  .offer-content {
    min-height: 33rem;
    padding: 1.15rem 1rem 1rem;
  }
}

@media (max-width: 768px) {
  .offer-stack {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .offer-content {
    min-height: auto;
  }

  .offer-title {
    font-size: 1rem;
  }

  .offer-price--plans {
    font-size: 1.85rem;
    margin-bottom: 2.2rem;
  }

  .offer-meta {
    margin-bottom: 1.1rem;
  }

  .offer-meta p {
    font-size: 0.86rem;
  }

  .offer-divider {
    margin: 0 -1rem 1rem;
  }
}

/* contact cta section */
.contact-cta-section {
  position: relative;
  background: url("../images/section_bg_wallpaper.jpg") right center / cover
    no-repeat;
  background-color: var(--black-color-shade-1);
}

.contact-cta-shell {
  width: min(92vw, 1720px);
  margin: 0 auto;
  padding: 8.75rem 0;
}

.contact-cta-panel {
  width: min(100%, 58rem);
  margin: 0 auto;
  text-align: center;
}

.contact-cta-title {
  color: var(--white-color-shade-1);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.045em;
  max-width: 34rem;
  margin: 0 auto 2.1rem;
}

.contact-cta-button {
  color: var(--black-color-shade-1);
  background: var(--white-color-shade-1);
  border-radius: 0;
  min-width: 10.4rem;
  height: 3rem;
  padding: 0 1.25rem;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
}

.contact-cta-button__icon {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-cta-button__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-cta-button__text {
  position: relative;
  height: 1em;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.95rem;
}

.contact-cta-button__label {
  display: block;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-cta-button__label--duplicate {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  transform: translateY(110%) rotateX(-90deg);
  transform-origin: center top;
}

.contact-cta-button:hover .contact-cta-button__label:first-child {
  transform: translateY(-110%) rotateX(90deg);
  transform-origin: center bottom;
}

.contact-cta-button:hover .contact-cta-button__label--duplicate {
  transform: translateY(0) rotateX(0deg);
}

/* faq section */
.faq-section {
  background-color: var(--black-color-shade-1);
  padding: 8rem 0 4.75rem;
}

.faq-shell {
  width: min(88vw, 1080px);
  margin: 0 auto;
}

.faq-layout {
  display: block;
}

.faq-content {
  max-width: 40rem;
  margin: 0 auto;
}

.faq-title {
  color: var(--white-color-shade-1);
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.05em;
  max-width: 38rem;
  margin: 0 auto 0.9rem;
  text-align: center;
}

.faq-subtitle {
  color: rgba(239, 238, 236, 0.72);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 38rem;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0;
  max-width: 40rem;
  margin: 0 auto;
}

.faq-item {
  background: transparent;
  border-bottom: 1px solid rgba(239, 238, 236, 0.08);
  transition: border-color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(239, 238, 236, 0.13);
}

.faq-item[open] .faq-question {
  padding-bottom: 0.65rem;
}

.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.15rem 0;
  cursor: pointer;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question span:first-child {
  color: var(--white-color-shade-1);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.4;
}

.faq-toggle {
  position: relative;
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(239, 238, 236, 0.03);
  border: 1px solid rgba(239, 238, 236, 0.08);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white-color-shade-1);
  transform: translate(-50%, -50%);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-toggle::before {
  width: 0.9rem;
  height: 1.5px;
}

.faq-toggle::after {
  width: 1.5px;
  height: 0.9rem;
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-answer {
  color: rgba(239, 238, 236, 0.78);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 29rem;
  padding: 0 3.2rem 1rem 0;
}

@media (max-width: 980px) {
  .faq-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-cta-shell {
    padding: 5rem 1rem;
  }

  .contact-cta-title {
    font-size: 1.4rem;
    line-height: 1.18;
    max-width: 19rem;
    margin-bottom: 1.5rem;
  }

  .contact-cta-button {
    min-width: 9rem;
    height: 2.65rem;
    font-size: 0.8rem;
  }

  .faq-section {
    padding: 2.5rem 0 4.5rem;
  }

  .faq-title {
    font-size: 1.6rem;
  }

  .faq-subtitle {
    font-size: 0.92rem;
    margin-bottom: 2rem;
  }

  .faq-question {
    gap: 1rem;
    padding: 1rem 0;
  }

  .faq-question span:first-child {
    font-size: 0.92rem;
  }

  .faq-toggle {
    width: 2.15rem;
    height: 2.15rem;
  }

  .faq-answer {
    font-size: 0.84rem;
    padding: 0 0 1rem;
  }
}

/* footer */
.site-footer {
  background-color: var(--black-color-shade-1);
  padding: 5.5rem 0 2rem;
}

.site-footer__shell {
  width: min(92vw, 1720px);
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 2.5rem;
  padding-bottom: 7.5rem;
}

.site-footer__mail {
  color: var(--white-color-shade-1);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.045em;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  overflow-wrap: anywhere;
  transition: color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer__mail:hover {
  color: var(--grey-color-shade-1);
}

.site-footer__copy {
  max-width: 24rem;
  color: rgba(239, 238, 236, 0.58);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
}

.site-footer__socials {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  justify-self: end;
}

.site-footer__social {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color-shade-1);
  opacity: 0.92;
  transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer__social:hover {
  opacity: 1;
}

.site-footer__social img,
.site-footer__social svg {
  width: 100%;
  height: 100%;
  display: block;
}

.site-footer__social svg {
  fill: currentColor;
}

.site-footer__social[aria-label="LinkedIn"] svg {
  transform: scale(1.15);
  transform-origin: center;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 1.2rem;
}

.site-footer__meta,
.site-footer__links a {
  color: rgba(239, 238, 236, 0.58);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.4;
}

.site-footer__meta span {
  color: var(--white-color-shade-1);
}

.site-footer__links {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
}

.site-footer__links a {
  position: relative;
}

.site-footer__links a + a::before {
  content: "";
  position: absolute;
  left: -0.58rem;
  top: 50%;
  width: 1px;
  height: 0.9rem;
  background: rgba(239, 238, 236, 0.18);
  transform: translateY(-50%);
}

@media (max-width: 980px) {
  .site-footer {
    padding: 4.5rem 0 2rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 4rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 4rem 0 1.5rem;
  }

  .site-footer__mail {
    font-size: 1.35rem;
    gap: 0.5rem;
  }

  .site-footer__copy {
    font-size: 0.88rem;
  }

  .site-footer__socials {
    gap: 1.35rem;
  }

  .site-footer__social {
    width: 1.1rem;
    height: 1.1rem;
  }

  .site-footer__links {
    flex-wrap: wrap;
    gap: 0.85rem 1.15rem;
  }

  .site-footer__links a + a::before {
    display: none;
  }
}

/* contact page */
.contact-page {
  min-height: 100vh;
  background: var(--black-color-shade-1);
  color: var(--white-color-shade-1);
}

.license-page {
  min-height: 100vh;
  background: var(--black-color-shade-1);
  color: var(--white-color-shade-1);
}

.project-page {
  min-height: 100vh;
  background: var(--black-color-shade-1);
  color: var(--white-color-shade-1);
}

.about-page {
  min-height: 100vh;
  background: var(--black-color-shade-1);
  color: var(--white-color-shade-1);
}

.license-header {
  background: transparent;
}

.license-main {
  padding: 0 0 3rem;
}

.project-main {
  padding: 0 0 1rem;
}

.about-main {
  padding: 0 0 1rem;
}

.license-shell {
  width: min(92vw, 1280px);
  margin: 0 auto;
}

.project-shell {
  width: min(92vw, 1780px);
  margin: 0 auto;
}

.about-shell {
  width: min(92vw, 1720px);
  margin: 0 auto;
}

.button-primary--accent {
  color: var(--white-color-shade-1);
}

.button-primary--accent::before {
  background: #ff5a26;
}

.button-primary--accent:hover {
  color: #ff8f68;
}

.button-primary--accent .button-primary__corner::before,
.button-primary--accent .button-primary__corner::after {
  background-color: #ff5a26;
}

.button-primary--ghost {
  color: var(--grey-color-shade-2);
}

.button-primary--ghost::before {
  opacity: 0;
  transform: scale(0.96);
}

.button-primary--ghost .button-primary__corner {
  opacity: 1;
  transform: translate(0, 0);
}

.button-primary--ghost-accent {
  color: #ff8f68;
}

.button-primary--ghost-accent::before {
  background: #ff5a26;
  opacity: 0;
  transform: scale(0.96);
}

.button-primary--ghost-accent .button-primary__corner {
  opacity: 1;
  transform: translate(0, 0);
}

.button-primary--ghost-accent .button-primary__corner::before,
.button-primary--ghost-accent .button-primary__corner::after {
  background-color: #ff5a26;
}

.button-primary--ghost-accent:hover {
  color: #ff8f68;
  background: transparent;
}

.button-primary--ghost-accent:hover::before {
  background: #ff5a26;
  opacity: 0;
  transform: scale(0.96);
}

.button-primary--ghost-accent:hover .button-primary__corner {
  transform: translate(0, 0);
}

.about-hero {
  padding: 2.5rem 0 4.5rem;
}

.about-page-title {
  font-size: clamp(4.8rem, 11vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.88;
  text-align: center;
  margin-bottom: 3.5rem;
}

.about-hero__bottom {
  display: grid;
  grid-template-columns: minmax(0, 20rem) auto minmax(0, 16rem);
  gap: 2rem;
  align-items: center;
}

.about-hero__copy {
  max-width: 18rem;
  color: rgba(239, 238, 236, 0.92);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

.about-hero__cta-wrap {
  display: flex;
  justify-content: center;
}

.about-hero__button {
  width: 156px;
  height: 46px;
}

.about-hero__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.about-hero__socials a {
  color: rgba(239, 238, 236, 0.82);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.78rem 1.08rem;
  border: 1px solid rgba(239, 238, 236, 0.12);
  border-radius: 999px;
  transition:
    color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero__socials a:hover {
  color: var(--white-color-shade-1);
  border-color: rgba(239, 238, 236, 0.28);
}

.about-feature,
.about-proof,
.about-process,
.about-recent-work {
  padding: 4.5rem 0;
}

.about-kicker {
  color: rgba(239, 238, 236, 0.6);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.about-kicker::before {
  content: "//";
  color: #ff5a26;
  margin-right: 0.3rem;
}

.about-feature__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.about-feature__copy {
  max-width: 56rem;
}

.about-feature__copy h2 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.07em;
  margin-bottom: 1.6rem;
}

.about-feature__copy p {
  max-width: 47rem;
  color: rgba(239, 238, 236, 0.92);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.55;
}

.about-feature__copy p span {
  color: #ff5a26;
}

.about-feature__button {
  width: 194px;
  height: 50px;
  padding: 0 1.15rem;
  font-size: 0.86rem;
}

.about-section-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(230px, 0.96fr) minmax(
      0,
      0.88fr
    );
  gap: 0.7rem;
  align-items: stretch;
}

.about-proof-card {
  background: rgba(239, 238, 236, 0.04);
  border: 1px solid rgba(239, 238, 236, 0.1);
  border-radius: 0.9rem;
  padding: 1rem;
}

.about-proof-card--brands {
  display: flex;
  align-items: flex-start;
  min-height: 7.2rem;
}

.about-proof-card--brands p {
  color: var(--white-color-shade-1);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.45;
  max-width: 22rem;
}

.about-proof-card--quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 20rem;
  grid-column: 1;
  grid-row: 2 / span 2;
  gap: 0.25rem;
}

.about-proof__quote-mark {
  color: var(--white-color-shade-1);
  font-size: 3.3rem;
  line-height: 0.72;
  font-weight: 500;
  margin-bottom: -0.35rem;
}

.about-proof__quote {
  color: var(--white-color-shade-1);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: -0.85rem;
}

.about-proof__metric {
  display: grid;
  gap: 0.55rem;
  margin-top: 2.35rem;
}

.about-proof__metric strong {
  color: var(--white-color-shade-1);
  font-size: clamp(2.7rem, 4.6vw, 3.7rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin-bottom: 0.72rem;
}

.about-proof__metric span {
  color: rgba(239, 238, 236, 0.58);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
}

.about-proof-card--image {
  grid-column: 2;
  grid-row: 1 / span 2;
  overflow: hidden;
  padding: 0;
  min-height: 24.5rem;
}

.about-proof-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-proof-card--accent {
  grid-column: 2;
  grid-row: 3;
  min-height: 6.2rem;
  background: #ff5a26;
  border-color: #ff5a26;
  color: var(--white-color-shade-1);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.about-proof-card--accent strong {
  display: block;
  font-size: clamp(2.15rem, 4.2vw, 3rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin-bottom: 0.72rem;
}

.about-proof-card--accent p {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25;
}

.about-proof-card--testimonial {
  grid-column: 3;
  grid-row: 1;
  min-height: 7.3rem;
}

.about-proof-card--testimonial p {
  color: var(--white-color-shade-1);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.22;
}

.about-proof-card--testimonial p span {
  color: #ff5a26;
  font-size: 1.32em;
}

.about-proof-card--projects {
  grid-column: 3;
  grid-row: 2;
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}

.about-proof-card--projects strong {
  color: var(--white-color-shade-1);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin-bottom: 0.76rem;
}

.about-proof-card--projects span {
  color: rgba(239, 238, 236, 0.58);
  font-size: 1rem;
  font-weight: 500;
}

.about-proof-card--availability {
  grid-column: 3;
  grid-row: 3;
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.8rem 1rem;
}

.about-proof__availability {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.about-proof__availability-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 0 0.22rem rgba(48, 209, 88, 0.12);
  animation: availability-blink 1.4s ease-in-out infinite;
}

.about-proof__availability p {
  color: var(--white-color-shade-1);
  font-size: 0.9rem;
  font-weight: 500;
}

@keyframes availability-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.42;
    transform: scale(0.88);
  }
}

.about-process {
  position: relative;
  overflow: hidden;
}

.about-process::before {
  content: "";
  position: absolute;
  inset: 7rem 12% 3rem;
  background:
    radial-gradient(circle at 30% 70%, rgba(255, 90, 38, 0.22), transparent 36%),
    radial-gradient(circle at 52% 24%, rgba(101, 69, 255, 0.28), transparent 34%),
    radial-gradient(circle at 74% 36%, rgba(86, 174, 255, 0.2), transparent 32%);
  filter: blur(48px);
  opacity: 0.95;
  pointer-events: none;
}

.about-process .about-shell {
  position: relative;
  z-index: 1;
}

.about-process__title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.07em;
  text-align: center;
  margin-bottom: 3rem;
}

.about-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: end;
}

.about-process-card {
  min-height: 29rem;
  padding: 2rem 1.6rem 1.8rem;
  background: rgba(239, 238, 236, 0.05);
  border: 1px solid rgba(239, 238, 236, 0.1);
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-process-card:nth-child(1),
.about-process-card:nth-child(3) {
  transform: translateY(2rem);
}

.about-process-card:nth-child(4) {
  transform: translateY(1rem);
}

.about-process-card__number {
  color: var(--white-color-shade-1);
  font-size: clamp(5.8rem, 10vw, 10.8rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.09em;
  margin-bottom: 2rem;
  align-self: center;
  text-align: center;
  transition: color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-process-card h3 {
  color: var(--white-color-shade-1);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: auto;
  margin-bottom: 0.75rem;
}

.about-process-card p {
  color: rgba(239, 238, 236, 0.8);
  font-size: 1rem;
  line-height: 1.5;
}

.about-process-card--featured h3 {
  color: #ff5a26;
}

.about-process-card:hover .about-process-card__number {
  color: #ff5a26;
}

.about-recent-work__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.6rem;
}

.about-recent-work__intro h2 {
  color: var(--white-color-shade-1);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 1.15rem;
}

.about-recent-work__intro p:last-child {
  color: rgba(239, 238, 236, 0.82);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 24rem;
}

.about-recent-work__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.95fr);
  gap: 1.4rem;
  align-items: center;
  justify-content: center;
}

.about-recent-work__media {
  display: block;
  width: min(100%, 34rem);
  background: rgba(239, 238, 236, 0.04);
  border: 1px solid rgba(239, 238, 236, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}

.about-recent-work__browser-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  background: rgba(239, 238, 236, 0.03);
  border-bottom: 1px solid rgba(239, 238, 236, 0.08);
}

.about-recent-work__browser-bar span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
}

.about-recent-work__browser-bar span:nth-child(1) {
  background: #ff5f57;
}

.about-recent-work__browser-bar span:nth-child(2) {
  background: #febb2e;
}

.about-recent-work__browser-bar span:nth-child(3) {
  background: #28c840;
}

.about-recent-work__media img {
  width: 100%;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
  object-position: top center;
}

.about-recent-work__content {
  display: grid;
  gap: 1.15rem;
  padding-top: 0;
  align-content: center;
  max-width: 28rem;
}

.about-recent-work__eyebrow {
  display: grid;
  gap: 0.35rem;
}

.about-recent-work__eyebrow span {
  color: rgba(239, 238, 236, 0.5);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-recent-work__eyebrow p {
  color: var(--white-color-shade-1);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
}

.about-recent-work__meta {
  display: grid;
  gap: 0.95rem;
  padding-top: 0.2rem;
}

.about-recent-work__meta span {
  display: inline-block;
  color: rgba(239, 238, 236, 0.5);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.about-recent-work__meta p,
.about-recent-work__copy {
  color: var(--white-color-shade-1);
  font-size: 1rem;
  line-height: 1.55;
}

.about-recent-work__copy {
  color: rgba(239, 238, 236, 0.88);
}

.about-recent-work__button {
  width: 146px;
  height: 42px;
  margin-top: 0.35rem;
}

.project-hero {
  padding: 1.25rem 0 3rem;
}

.project-topline {
  width: 100%;
  height: 1px;
  background: rgba(239, 238, 236, 0.18);
  margin-bottom: 2.5rem;
}

.project-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 6rem;
}

.project-title {
  font-size: clamp(3rem, 6.8vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
  max-width: 11ch;
}

.project-year {
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.88;
  color: rgba(239, 238, 236, 0.92);
  padding-top: 0.35rem;
}

.project-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: start;
}

.project-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "email phone"
    ". linkedin"
    ". instagram"
    ". about";
  gap: 2.75rem 4rem;
  align-items: start;
  min-height: 100%;
}

.project-detail--email {
  grid-area: email;
}

.project-detail--phone {
  grid-area: phone;
}

.project-detail--linkedin {
  grid-area: linkedin;
}

.project-detail--instagram {
  grid-area: instagram;
}

.project-detail--about {
  grid-area: about;
}

.project-detail h2 {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.project-detail a,
.project-detail p {
  color: rgba(239, 238, 236, 0.86);
  font-size: clamp(0.95rem, 1.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.035em;
}

.project-detail a {
  display: inline-block;
  transition: color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-detail a:hover {
  color: var(--white-color-shade-1);
}

.project-detail--about p {
  max-width: 22rem;
}

.project-visual-shell {
  display: flex;
  justify-content: flex-end;
}

.project-visual {
  width: min(100%, 24rem);
  aspect-ratio: 0.86;
  overflow: hidden;
  border-radius: 1.4rem;
  background: #101010;
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-visual img.is-switching {
  opacity: 0;
}

.license-hero {
  padding: 4.5rem 0 2.5rem;
}

.license-page-title {
  font-size: clamp(3.2rem, 8vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.license-section {
  padding: 3rem 0 1.5rem;
}

.license-section-head {
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(239, 238, 236, 0.12);
}

.license-section h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.license-intro {
  max-width: 36rem;
  color: rgba(239, 238, 236, 0.88);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.license-card {
  max-width: 28rem;
}

.license-card--single {
  max-width: 34rem;
}

.license-card h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}

.license-card p {
  color: rgba(239, 238, 236, 0.78);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.license-card a {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--white-color-shade-1);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.license-card a:hover {
  color: var(--grey-color-shade-1);
}

@media (max-width: 1200px) {
  .about-page-title {
    font-size: clamp(4rem, 10vw, 7rem);
  }

  .about-hero__bottom {
    grid-template-columns: minmax(0, 17rem) auto minmax(0, 14rem);
  }

  .about-proof__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.9fr) minmax(
        0,
        0.95fr
      );
  }

  .about-process__grid {
    gap: 0.9rem;
  }

  .about-recent-work__layout {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.8fr);
    gap: 1.5rem;
  }

  .about-recent-work__intro {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
  }

  .project-title {
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  }

  .project-year {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
  }

  .project-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }

  .project-details {
    gap: 2.25rem 3rem;
  }

  .license-shell {
    width: min(92vw, 1180px);
  }

  .license-page-title {
    font-size: clamp(3rem, 7vw, 4.2rem);
  }

  .license-section h2 {
    font-size: clamp(1.95rem, 4vw, 2.75rem);
  }
}

@media (max-width: 1024px) {
  .about-hero {
    padding: 2rem 0 3.5rem;
  }

  .about-page-title {
    margin-bottom: 2.75rem;
  }

  .about-hero__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-hero__copy {
    max-width: 24rem;
  }

  .about-hero__socials {
    justify-content: center;
  }

  .about-feature__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-feature__button {
    justify-self: start;
  }

  .about-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-proof-card--brands {
    grid-column: 1;
    grid-row: 1;
  }

  .about-proof-card--testimonial {
    grid-column: 2;
    grid-row: 1;
  }

  .about-proof-card--quote {
    grid-column: 1;
    grid-row: 2 / span 2;
    min-height: 22rem;
  }

  .about-proof-card--image {
    grid-column: 2;
    grid-row: 2 / span 2;
    min-height: 28rem;
  }

  .about-proof-card--accent {
    grid-column: 1;
    grid-row: 4;
  }

  .about-proof-card--projects {
    grid-column: 2;
    grid-row: 4;
  }

  .about-proof-card--availability {
    grid-column: 1 / -1;
    grid-row: 5;
  }

  .about-recent-work__layout {
    grid-template-columns: 1fr;
  }

  .about-recent-work__intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-recent-work__content {
    padding-top: 0;
    max-width: none;
  }

  .about-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-process-card,
  .about-process-card:nth-child(1),
  .about-process-card:nth-child(3),
  .about-process-card:nth-child(4) {
    transform: none;
  }

  .about-process-card {
    min-height: 22rem;
  }

  .project-hero {
    padding: 1rem 0 2.5rem;
  }

  .project-topline {
    margin-bottom: 2rem;
  }

  .project-head {
    margin-bottom: 3rem;
  }

  .project-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .project-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "email phone"
      "linkedin instagram"
      "about about";
    gap: 2rem;
  }

  .project-visual-shell {
    justify-content: flex-start;
  }

  .project-visual {
    width: min(100%, 20rem);
  }

  .license-hero {
    padding: 3.75rem 0 2rem;
  }

  .license-grid {
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .about-main {
    padding-bottom: 0.5rem;
  }

  .about-hero,
  .about-feature,
  .about-proof,
  .about-process,
  .about-recent-work {
    padding: 3rem 0;
  }

  .about-page-title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  .about-hero__copy {
    font-size: 0.92rem;
  }

  .about-hero__button {
    width: 148px;
    height: 44px;
  }

  .about-hero__socials {
    gap: 0.7rem;
  }

  .about-hero__socials a {
    font-size: 0.85rem;
    padding: 0.82rem 1.05rem;
  }

  .about-kicker {
    font-size: 0.88rem;
  }

  .about-feature__copy h2 {
    font-size: 2.35rem;
  }

  .about-feature__copy p {
    font-size: 0.98rem;
  }

  .about-feature__button {
    width: 176px;
    height: 46px;
    font-size: 0.8rem;
  }

  .about-recent-work__intro h2 {
    font-size: 2.35rem;
  }

  .about-recent-work__intro p:last-child,
  .about-recent-work__eyebrow p,
  .about-recent-work__meta p,
  .about-recent-work__copy {
    font-size: 0.95rem;
  }

  .about-recent-work__button {
    width: 152px;
    height: 44px;
  }

  .about-recent-work__media img {
    aspect-ratio: 16 / 11;
  }

  .about-proof__grid,
  .about-process__grid {
    grid-template-columns: 1fr;
  }

  .about-proof-card,
  .about-proof-card--quote,
  .about-proof-card--image,
  .about-proof-card--accent,
  .about-proof-card--testimonial,
  .about-proof-card--projects,
  .about-proof-card--availability {
    grid-column: auto;
    grid-row: auto;
  }

  .about-proof-card--quote,
  .about-proof-card--image,
  .about-proof-card--accent,
  .about-proof-card--projects,
  .about-process-card {
    min-height: auto;
  }

  .about-proof-card--image {
    min-height: 23rem;
  }

  .about-proof__quote-mark {
    font-size: 4rem;
  }

  .about-proof__quote,
  .about-proof-card--testimonial p {
    font-size: 1rem;
  }

  .about-proof__metric strong,
  .about-proof-card--accent strong,
  .about-proof-card--projects strong {
    font-size: 2.8rem;
  }

  .about-process__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .about-process-card {
    padding: 1.5rem 1.25rem;
  }

  .about-process-card__number {
    font-size: 5rem;
    margin-bottom: 1.4rem;
  }

  .about-process-card h3 {
    font-size: 1rem;
  }

  .about-process-card p {
    font-size: 0.9rem;
  }

  .project-main {
    padding-bottom: 0.5rem;
  }

  .project-hero {
    padding: 0.85rem 0 2rem;
  }

  .project-topline {
    margin-bottom: 1.5rem;
  }

  .project-head {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.25rem;
  }

  .project-title {
    font-size: 2.5rem;
    max-width: 8ch;
  }

  .project-year {
    font-size: 2.2rem;
    padding-top: 0;
  }

  .project-details {
    grid-template-columns: 1fr;
    grid-template-areas:
      "email"
      "phone"
      "linkedin"
      "instagram"
      "about";
    gap: 1.5rem;
  }

  .project-detail h2 {
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
  }

  .project-detail a,
  .project-detail p {
    font-size: 0.95rem;
  }

  .project-visual {
    width: min(100%, 18rem);
    border-radius: 1.2rem;
  }

  .license-main {
    padding-bottom: 2rem;
  }

  .license-hero {
    padding: 2.8rem 0 1.6rem;
  }

  .license-section {
    padding: 2.2rem 0 1rem;
  }

  .license-section-head {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .license-page-title {
    font-size: 2.8rem;
  }

  .license-section h2 {
    font-size: 1.9rem;
  }

  .license-intro {
    font-size: 0.86rem;
    margin-bottom: 2rem;
  }

  .license-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .license-card,
  .license-card--single {
    max-width: 100%;
  }

  .license-card h3 {
    font-size: 1.7rem;
  }

  .license-card p,
  .license-card a {
    font-size: 0.86rem;
  }
}

.contact-main {
  min-height: 100vh;
  padding: 0;
}

.contact-board {
  position: relative;
  min-height: 100vh;
  background: var(--black-color-shade-1);
  overflow: hidden;
}

.contact-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/section_bg_wallpaper.jpg") 82% center / cover
    no-repeat;
}

.contact-header,
.contact-section {
  position: relative;
  z-index: 1;
}

@keyframes contact-flame {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
    background-position:
      center center,
      100% 50%;
    filter: saturate(1) brightness(0.96);
  }

  50% {
    transform: scale(1.02) translate3d(-0.6%, 0.3%, 0);
    background-position:
      center center,
      96% 46%;
    filter: saturate(1.08) brightness(1);
  }

  100% {
    transform: scale(1.04) translate3d(0.8%, -0.4%, 0);
    background-position:
      center center,
      102% 54%;
    filter: saturate(1.14) brightness(1.04);
  }
}

.contact-header {
  padding: 1.3rem 2.4rem 0;
}

.contact-nav {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: 2rem;
}

.contact-wordmark {
  color: var(--white-color-shade-1);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.contact-services {
  color: var(--white-color-shade-1);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0.94;
}

.contact-meta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 1.5rem;
}

.contact-year,
.contact-cart,
.contact-menu {
  color: var(--white-color-shade-1);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.contact-menu {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(2.25rem, 4.2vw, 4.5rem);
  min-height: calc(100vh - 5rem);
  padding: 1.6rem 2.4rem 2.2rem;
}

.contact-details {
  max-width: 28rem;
  padding-left: 0.9rem;
}

.contact-heading {
  font-size: clamp(3.15rem, 4.8vw, 4rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 2.3rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.25rem;
}

.contact-info-block--address {
  grid-column: 1 / -1;
}

.contact-label {
  color: rgba(239, 238, 236, 0.5);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.7rem;
}

.contact-value {
  color: var(--white-color-shade-1);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-decoration: none;
  display: inline-block;
}

.contact-info-block a.contact-value,
.contact-info-block a.contact-value:visited,
.contact-info-block a.contact-value:hover,
.contact-info-block a.contact-value:active,
.contact-info-block a[x-apple-data-detectors] {
  color: var(--white-color-shade-1) !important;
  text-decoration: none !important;
  font: inherit !important;
}

.contact-form-shell {
  display: flex;
  justify-content: flex-end;
}

.contact-form {
  width: min(100%, 36rem);
  padding: 2rem 1.7rem 1.7rem;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-field {
  display: block;
  padding-bottom: 0.9rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid rgba(239, 238, 236, 0.32);
}

.contact-field--message {
  margin-bottom: 1.9rem;
}

.contact-field__label {
  display: block;
  color: var(--white-color-shade-1);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--white-color-shade-1);
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.5;
  resize: none;
  outline: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(239, 238, 236, 0.52);
}

.contact-field textarea {
  min-height: 6rem;
}

.contact-submit.button-primary {
  align-self: flex-start;
  min-width: 8.4rem;
  width: auto;
  height: 2.55rem;
  padding: 0 1rem;
  border: 0;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 980px) {
  .contact-nav {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-meta {
    justify-self: start;
    gap: 1.4rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }

  .contact-details {
    max-width: 100%;
    padding-left: 0;
  }

  .contact-form-shell {
    justify-content: stretch;
  }

  .contact-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-header,
  .contact-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-heading {
    font-size: 2.9rem;
    margin-bottom: 2rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-value {
    font-size: 17px;
  }

  .contact-form {
    padding: 1.5rem 1.1rem;
  }

  .contact-field__label {
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 0.94rem;
  }
}

/* responsive system */
@media (max-width: 1440px) {
  .navigation-bar,
  .hero-section,
  .contact-header,
  .contact-section {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .solutions-section .container,
  .metrics-shell,
  .offer-shell,
  .faq-shell,
  .site-footer__shell {
    width: min(92vw, 1240px);
  }

  .vision-shell,
  .contact-cta-shell {
    width: min(94vw, 1440px);
  }

  .vision-copy {
    max-width: 1420px;
  }
}

@media (max-width: 1200px) {
  .navigation-bar {
    gap: 1.25rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .navigation-bar img {
    width: 80px;
    height: 80px;
  }

  .hero-section {
    column-gap: 2rem;
    padding: 2.5rem 1.75rem 2.25rem;
  }

  .hero-left-top {
    margin-bottom: 4.5rem;
  }

  .hero-left-top h1 {
    font-size: clamp(3.15rem, 4.9vw, 4rem);
    max-width: 34rem;
  }

  .hero-left-bottom p {
    max-width: 25rem;
  }

  .solutions-section {
    padding: 5.25rem 0 3.25rem;
  }

  .solutions-section .container {
    padding: 0 1.5rem;
  }

  .solutions-bottom {
    width: min(88vw, 980px);
  }

  .solutions-top h2 {
    font-size: clamp(2.2rem, 4.8vw, 2.95rem);
  }

  .solutions-top p {
    font-size: 1.02rem;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision-section {
    min-height: auto;
    padding: 5.5rem 0 4.5rem;
  }

  .vision-line {
    font-size: clamp(3.1rem, 4.9vw, 3.75rem);
  }

  .vision-inline-image {
    width: 82px;
    height: 50px;
  }

  .metrics-shell {
    width: min(92vw, 1140px);
  }

  .metrics-grid {
    gap: 1rem;
  }

  .metrics-card__value {
    font-size: clamp(2rem, 3vw, 2.55rem);
  }

  .metrics-card__title {
    font-size: 0.95rem;
  }

  .metrics-card__copy {
    font-size: 0.9rem;
  }

  .offer-section {
    padding-bottom: 4.5rem;
  }

  .offer-shell {
    width: min(92vw, 1100px);
  }

  .offer-stack {
    width: min(100%, 700px);
    height: 20.5rem;
  }

  .offer-content,
  .offer-media {
    min-height: 20.5rem;
  }

  .offer-title {
    font-size: 1rem;
  }

  .offer-subtitle,
  .offer-features-heading,
  .offer-features li {
    font-size: 0.8rem;
  }

  .offer-price {
    font-size: 0.98rem;
  }

  .contact-cta-shell {
    padding: 7rem 1.25rem;
  }

  .contact-cta-title {
    max-width: 32rem;
    font-size: 2.5rem;
  }

  .faq-section {
    padding: 7rem 0 4.5rem;
  }

  .faq-shell {
    width: min(90vw, 980px);
  }

  .faq-title {
    font-size: clamp(2.15rem, 4vw, 2.65rem);
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .site-footer {
    padding: 5rem 0 2rem;
  }

  .site-footer__top {
    gap: 2rem;
    padding-bottom: 5.5rem;
  }

  .site-footer__mail {
    font-size: clamp(1.45rem, 2vw, 1.8rem);
  }

  .site-footer__copy {
    font-size: 0.92rem;
  }

  .contact-section {
    grid-template-columns: minmax(260px, 0.86fr) minmax(340px, 0.98fr);
    gap: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .navigation-bar {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo year menu"
      "services services services";
    align-items: center;
    gap: 1rem 1.1rem;
    padding: 1rem 1.25rem;
  }

  .navigation-bar > a {
    grid-area: logo;
  }

  .what-we-do {
    grid-area: services;
    width: 100%;
    gap: 0.2rem;
  }

  .courtesy {
    grid-area: year;
    justify-self: center;
  }

  .menu-link {
    grid-area: menu;
    justify-self: end;
  }

  .navigation-bar img {
    width: 72px;
    height: 72px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 80svh;
    align-items: end;
    padding: 1rem 1.25rem 2rem;
  }

  .hero-section-left {
    max-width: 38rem;
  }

  .hero-left-top {
    margin-bottom: 3rem;
  }

  .hero-left-top h1 {
    font-size: clamp(2.8rem, 6.7vw, 3.7rem);
    line-height: 1.02;
    margin-bottom: 1.5rem;
  }

  .hero-left-bottom p {
    max-width: 24rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .solutions-section {
    padding: 4.75rem 0 3rem;
  }

  .solutions-section .container,
  .metrics-shell,
  .offer-shell,
  .faq-shell,
  .site-footer__shell {
    width: min(100%, 100%);
    padding: 0 1.25rem;
  }

  .solutions-top {
    max-width: 36rem;
  }

  .solutions-top h2 {
    font-size: clamp(2.15rem, 5.7vw, 2.85rem);
    margin-bottom: 1rem;
  }

  .solutions-top p {
    font-size: 1rem;
  }

  .solutions-bottom {
    width: 100%;
    margin-top: 2.25rem;
  }

  .video {
    border-radius: 1.1rem;
  }

  .video video {
    height: min(60vw, 420px);
  }

  .video-play-button {
    width: 74px;
    height: 74px;
  }

  .video-brand {
    top: 1.2rem;
    left: 1rem;
  }

  .video-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: 18rem;
    font-size: 0.8rem;
  }

  .numbers-block {
    margin-top: 2rem;
  }

  .vision-shell {
    width: min(100%, 100%);
    padding: 0 1.25rem;
  }

  .vision-line {
    font-size: clamp(2.7rem, 5.8vw, 3.35rem);
  }

  .vision-inline-image {
    width: 78px;
    height: 48px;
  }

  .contact-cta-shell {
    width: min(100%, 100%);
    padding: 6.5rem 1.25rem;
  }

  .contact-cta-title {
    font-size: clamp(2.2rem, 4.9vw, 2.9rem);
  }

  .faq-section {
    padding: 6rem 0 4.5rem;
  }

  .faq-content {
    max-width: 38rem;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-subtitle {
    font-size: 0.98rem;
  }

  .faq-question span:first-child {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 4rem;
  }

  .site-footer__socials {
    justify-self: start;
  }

  .site-footer__mail {
    font-size: 1.5rem;
  }

  .site-footer__copy {
    font-size: 0.9rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-section {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2.5rem;
    padding-top: 3rem;
  }

  .contact-details {
    max-width: 100%;
    padding-left: 0;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-info-block--address {
    grid-column: 1 / -1;
  }

  .contact-form-shell {
    justify-content: stretch;
  }

  .contact-form {
    width: 100%;
    max-width: 38rem;
  }

  .metrics-card__value {
    font-size: clamp(1.95rem, 4.3vw, 2.5rem);
  }

  .metrics-card__title {
    font-size: 0.94rem;
  }

  .metrics-card__copy {
    font-size: 0.88rem;
  }
}

@media (max-width: 767px) {
  .navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.9rem 1rem;
    padding: 0.9rem 1rem;
  }

  .what-we-do,
  .courtesy {
    display: none;
  }

  .navigation-bar img {
    width: 64px;
    height: 64px;
  }

  .menu-link {
    font-size: 0.75rem;
  }

  .hero-section {
    min-height: auto;
    padding: 0.75rem 1rem 1.75rem;
  }

  .hero-left-top {
    margin-bottom: 2.25rem;
  }

  .hero-left-top h1 {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .hero-left-bottom p {
    max-width: 21rem;
    font-size: 0.92rem;
  }

  .button-primary {
    width: 160px;
    height: 48px;
    font-size: 0.84rem;
  }

  .solutions-section {
    padding: 4rem 0 2.5rem;
  }

  .solutions-section .container,
  .metrics-shell,
  .offer-shell,
  .faq-shell,
  .site-footer__shell {
    padding: 0 1rem;
  }

  .solutions-top h2 {
    font-size: 2rem;
  }

  .solutions-top p {
    font-size: 0.95rem;
  }

  .video video {
    height: 260px;
  }

  .video-play-button {
    width: 62px;
    height: 62px;
  }

  .numbers-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .numbers-block {
    text-align: center;
  }

  .number-card:last-child,
  .contact-info-block--address {
    grid-column: auto;
  }

  .vision-section {
    padding: 4.25rem 0 3.5rem;
  }

  .vision-line {
    font-size: clamp(2.05rem, 8.8vw, 2.55rem);
    line-height: 1.15;
  }

  .vision-inline-image {
    display: none;
  }

  .metrics-section {
    padding: 4rem 0 5rem;
  }

  .metrics-card {
    min-height: 13rem;
  }

  .metrics-card__value {
    font-size: 2rem;
  }

  .metrics-card__title {
    font-size: 0.95rem;
  }

  .metrics-card__copy {
    font-size: 0.85rem;
  }

  .offer-section {
    padding: 2.25rem 0 4.5rem;
  }

  .offer-header {
    margin-bottom: 1.5rem;
  }

  .offer-stack {
    gap: 1.25rem;
  }

  .offer-content {
    padding: 1rem 0.95rem 1rem;
  }

  .offer-media {
    height: 13.5rem;
  }

  .contact-cta-shell {
    padding: 5.5rem 1rem;
  }

  .contact-cta-title {
    max-width: 18rem;
    font-size: 1.85rem;
    margin-bottom: 1.75rem;
  }

  .contact-cta-button {
    min-width: 9.2rem;
    height: 2.8rem;
    padding: 0 1rem;
  }

  .faq-section {
    padding: 5rem 0 4rem;
  }

  .faq-content {
    max-width: 100%;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-subtitle {
    font-size: 0.96rem;
    margin-bottom: 2.25rem;
  }

  .faq-question {
    gap: 0.9rem;
    padding: 1rem 0;
  }

  .faq-question span:first-child {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.86rem;
    padding: 0 0 1rem;
  }

  .site-footer {
    padding: 4rem 0 1.5rem;
  }

  .site-footer__mail {
    font-size: 1.3rem;
  }

  .site-footer__copy {
    font-size: 0.88rem;
  }

  .site-footer__socials {
    gap: 1.25rem;
  }

  .contact-header,
  .contact-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-heading {
    font-size: 2.35rem;
    margin-bottom: 1.8rem;
  }

  .contact-value {
    font-size: 17px;
  }

  .contact-form {
    padding: 1.4rem 1rem;
  }
}

@media (max-width: 479px) {
  .hero-left-top h1,
  .contact-cta-title,
  .faq-title {
    letter-spacing: -0.035em;
  }

  .hero-left-top h1 {
    font-size: 1.95rem;
  }

  .solutions-top h2 {
    font-size: 1.75rem;
  }

  .video video {
    height: 220px;
  }

  .vision-line {
    font-size: 1.82rem;
  }

  .metrics-card__value {
    font-size: 1.9rem;
  }

  .offer-media {
    height: 12rem;
  }

  .offer-button.button-primary {
    width: 92px;
    height: 36px;
    font-size: 0.72rem;
  }

  .contact-cta-title {
    font-size: 1.58rem;
    max-width: 15rem;
  }

  .contact-cta-button {
    min-width: 8.7rem;
    height: 2.65rem;
    font-size: 0.82rem;
  }

  .faq-title {
    font-size: 1.55rem;
  }

  .faq-question span:first-child,
  .faq-answer,
  .site-footer__meta,
  .site-footer__links a {
    font-size: 0.82rem;
  }

  .site-footer__mail {
    font-size: 1.1rem;
  }

  .contact-heading {
    font-size: 2rem;
  }
}

/* final offer plans responsive lock */
@media (min-width: 1101px) {
  .offer-stack {
    width: 100%;
  }

  .offer-card,
  .offer-content {
    min-height: 35rem;
  }
}

@media (max-width: 1200px) {
  .offer-stack {
    width: 100%;
    height: auto;
  }

  .offer-card,
  .offer-content {
    min-height: 33rem;
  }
}

@media (max-width: 767px) {
  .offer-stack {
    width: 100%;
    gap: 1rem;
  }

  .offer-card,
  .offer-content {
    min-height: auto;
  }
}

/* overlay menu responsive */
@media (max-width: 1280px) {
  .site-menu__panel {
    width: min(42vw, 560px);
    padding: 1.6rem 2.4rem 2.2rem;
  }

  .site-menu__link {
    font-size: 48px;
  }
}

@media (max-width: 980px) {
  .site-menu {
    background: #000;
  }

  .site-menu__panel {
    width: 100%;
    padding: 1.4rem 1.5rem 2rem;
    box-shadow: none;
  }

  .site-menu__body {
    gap: 2.4rem;
    padding: 1.8rem 0 1rem;
  }

  .site-menu__link {
    font-size: 42px;
  }

  .site-menu__bottom {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .site-menu__meta-copy,
  .site-menu__socials a {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .site-menu__top {
    grid-template-columns: 1fr auto;
  }

  .site-menu__project,
  .site-menu__meta-label,
  .site-menu__close-label {
    font-size: 0.72rem;
  }

  .site-menu__close-icon {
    font-size: 1.45rem;
  }

  .site-menu__link {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .site-menu__meta-copy,
  .site-menu__socials a {
    font-size: 0.9rem;
  }
}

/* global type and desktop polish */
body {
  line-height: 1.3;
}

.hero-section-left {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100%;
}

.hero-left-top {
  align-self: center;
  max-width: 46rem;
}

.hero-left-top h1 {
  font-size: clamp(3.3rem, 4.5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-left-bottom {
  align-self: end;
}

.hero-left-bottom p {
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-field input,
.contact-field textarea {
  font-size: 0.94rem;
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 2vw, 1.8rem);
  bottom: clamp(1rem, 2.6vw, 1.8rem);
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 238, 236, 0.16);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.74);
  color: var(--white-color-shade-1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  font: inherit;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 220ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background-color 220ms ease;
  z-index: 120;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(239, 238, 236, 0.32);
  background: rgba(18, 18, 18, 0.9);
}

.back-to-top span {
  display: block;
  transform: translateY(-1px);
}

@media (min-width: 1200px) {
  .what-we-do li,
  .courtesy,
  .menu-link {
    font-size: 0.82rem;
  }

  .hero-left-bottom p {
    font-size: 1.08rem;
  }

  .solutions-top h2 {
    font-size: clamp(2.9rem, 3.8vw, 3.7rem);
  }

  .solutions-top p {
    font-size: 1.1rem;
  }

  .numbers-kicker {
    font-size: 1rem;
  }

  .number-label,
  .metrics-card__title {
    font-size: 1rem;
  }

  .number-value {
    font-size: clamp(3rem, 4.2vw, 4.3rem);
  }

  .metrics-card__value {
    font-size: clamp(2.15rem, 3vw, 2.7rem);
  }

  .metrics-card__copy {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .offer-title {
    font-size: 1.15rem;
  }

  .offer-meta p {
    font-size: 0.98rem;
  }

  .offer-subtitle,
  .offer-features-heading,
  .offer-features li {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .contact-section {
    grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1fr);
    gap: clamp(3rem, 5vw, 5.5rem);
    padding: 2rem 3rem 2.5rem;
  }

  .contact-heading {
    font-size: clamp(3.6rem, 4.8vw, 5rem);
    margin-bottom: 2.5rem;
  }

  .contact-label {
    font-size: 0.96rem;
  }

  .contact-value {
    font-size: 17px;
    line-height: 1.4;
  }

  .contact-form {
    width: min(100%, 40rem);
    padding: 2.4rem 2.15rem 2rem;
  }

  .contact-field__label {
    font-size: 1.02rem;
    margin-bottom: 0.95rem;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 1rem;
  }

  .contact-field textarea {
    min-height: 7.5rem;
  }

  .faq-title {
    font-size: clamp(2.4rem, 3.2vw, 3.25rem);
  }

  .faq-subtitle {
    font-size: 1.08rem;
  }

  .faq-question span:first-child {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.96rem;
  }

  .site-footer__mail {
    font-size: clamp(1.7rem, 2vw, 2.2rem);
  }

  .site-footer__copy {
    font-size: 1rem;
  }

  .about-hero__copy {
    font-size: 1.04rem;
  }

  .about-kicker {
    font-size: 1rem;
  }

  .about-feature__copy p,
  .about-recent-work__copy,
  .about-recent-work__meta p {
    font-size: 1.06rem;
  }

  .about-proof-card--brands p {
    font-size: 1rem;
  }

  .about-proof-card--testimonial p {
    font-size: 1.36rem;
  }

  .about-process-card p {
    font-size: 1.04rem;
  }

  .project-detail h2 {
    font-size: 1.12rem;
  }

  .project-detail a,
  .project-detail p {
    font-size: 1rem;
  }

  .license-intro,
  .license-card p {
    font-size: 0.98rem;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    justify-items: start;
    align-items: end;
  }

  .hero-section-left {
    width: 100%;
    max-width: 38rem;
    gap: 2.75rem;
    justify-items: start;
    text-align: left;
    justify-content: space-between;
  }

  .hero-left-top {
    display: grid;
    gap: 1.15rem;
    justify-items: start;
    text-align: left;
    margin-bottom: 0;
  }

  .hero-left-top h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 7vw, 3.55rem);
    margin-inline: 0;
    line-height: 0.96;
    text-wrap: balance;
  }

  .hero-left-bottom {
    justify-self: start;
  }

  .hero-left-bottom p {
    max-width: 27rem;
    font-size: 1rem;
    margin-inline: 0;
    text-align: left;
    line-height: 1.6;
  }

  .contact-form {
    padding: 1.9rem 1.5rem 1.6rem;
  }

  .contact-section {
    justify-items: stretch;
    text-align: left;
  }

  .contact-details {
    max-width: 36rem;
    width: 100%;
    justify-self: start;
  }

  .contact-info-grid {
    justify-content: start;
  }

  .contact-info-block {
    justify-self: start;
    width: 100%;
    max-width: 15rem;
  }

  .contact-form-shell {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .hero-left-top h1 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 9vw, 2.95rem);
    margin-inline: auto;
    text-wrap: balance;
  }

  .hero-left-bottom p {
    font-size: 0.98rem;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-question span:first-child {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.92rem;
  }

  .contact-heading {
    font-size: 2.7rem;
  }

  .contact-value {
    font-size: 17px;
  }

  .contact-form {
    padding: 1.55rem 1.1rem;
  }

  .contact-field__label {
    font-size: 0.96rem;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 0.94rem;
  }

  .contact-section {
    gap: 2.1rem;
    padding-top: 2.4rem;
  }

  .contact-details {
    max-width: 24rem;
  }

  .contact-info-grid {
    gap: 1.4rem;
  }

  .contact-info-block {
    max-width: 18rem;
  }

  .contact-form {
    max-width: 24rem;
  }

  .back-to-top {
    width: 2.8rem;
    height: 2.8rem;
  }
}

@media (max-width: 479px) {
  .contact-heading {
    font-size: 2.2rem;
  }

  .contact-field__label {
    font-size: 0.9rem;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 0.9rem;
  }

  .contact-section {
    gap: 1.8rem;
    padding-top: 2rem;
  }

  .contact-details {
    max-width: 20rem;
  }

  .contact-form {
    max-width: 20rem;
  }

  .back-to-top {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 2.55rem;
    height: 2.55rem;
    font-size: 0.96rem;
  }
}

/* responsive polish */
@media (max-width: 1024px) {
  .site-menu__panel {
    padding: 1.35rem 1.4rem 1.8rem;
  }

  .site-menu__body {
    gap: 2rem;
    padding: 2rem 0 0.95rem;
  }

  .site-menu__nav {
    gap: 1rem;
  }

  .site-menu__bottom {
    gap: 1.35rem;
  }

  .hero-section-left {
    gap: 3rem;
  }

  .hero-left-top {
    margin-bottom: 0;
  }

  .hero-left-bottom {
    padding-top: 0.5rem;
  }

  .offer-header {
    margin-bottom: 2.25rem;
  }

  .offer-content {
    padding: 1.2rem 1rem 1.05rem;
  }

  .contact-cta-shell {
    padding: 6.75rem 1.25rem;
  }

  .faq-shell {
    width: min(92vw, 42rem);
  }

  .site-footer__top {
    gap: 1.75rem;
    padding-bottom: 4.5rem;
  }

  .site-footer__copy {
    max-width: 20rem;
  }

  .contact-section {
    gap: 2rem;
    padding: 1.25rem 1.5rem 2rem;
  }

  .contact-details {
    padding-left: 0;
  }

  .contact-form {
    width: min(100%, 34rem);
    padding: 1.7rem 1.4rem 1.45rem;
  }

  .about-proof-card {
    border-radius: 0.75rem;
    padding: 0.95rem;
  }

  .about-proof-card--image {
    min-height: 24rem;
  }

  .about-process__grid {
    gap: 0.85rem;
  }

  .about-process-card {
    padding: 1.5rem 1.15rem 1.25rem;
    border-radius: 1rem;
  }

  .about-recent-work__intro {
    margin-bottom: 1.9rem;
  }

  .about-recent-work__layout {
    gap: 1.2rem;
  }

  .project-head {
    margin-bottom: 3.5rem;
  }

  .project-details {
    gap: 1.75rem 2rem;
  }

  .project-visual {
    width: min(100%, 20rem);
  }
}

@media (max-width: 767px) {
  .site-menu__panel {
    padding: 1rem 1rem 1.35rem;
  }

  .site-menu__body {
    gap: 1.75rem;
    padding: 1.9rem 0 0.75rem;
  }

  .site-menu__nav {
    gap: 1rem;
  }

  .site-menu__top,
  .site-menu__bottom {
    column-gap: 1rem;
  }

  .site-menu__bottom {
    gap: 1.15rem;
  }

  .site-menu__link {
    font-size: clamp(2.35rem, 13vw, 3.15rem);
    line-height: 0.94;
  }

  .site-menu__socials {
    gap: 0.5rem;
  }

  .hero-section-left {
    gap: 2.5rem;
    max-width: none;
  }

  .hero-left-bottom {
    padding-top: 0.35rem;
  }

  .hero-left-bottom p {
    max-width: 19.5rem;
    font-size: 0.9rem;
  }

  .solutions-section {
    padding: 3.5rem 0 2.35rem;
  }

  .vision-section {
    padding: 3.75rem 0 3rem;
  }

  .metrics-section {
    padding: 3.5rem 0 4rem;
  }

  .offer-section {
    padding: 2rem 0 3.5rem;
  }

  .contact-cta-shell {
    padding: 4.75rem 1rem;
  }

  .faq-section {
    padding: 4.25rem 0 3.5rem;
  }

  .site-footer {
    padding: 3.5rem 0 1.5rem;
  }

  .site-footer__top {
    gap: 1.5rem;
    padding-bottom: 3rem;
  }

  .site-footer__socials {
    gap: 1.1rem;
  }

  .about-hero__bottom {
    gap: 1.4rem;
  }

  .about-hero__socials {
    max-width: 18rem;
    margin-inline: auto;
    justify-content: center;
  }

  .about-hero__socials a {
    padding: 0.72rem 0.95rem;
  }

  .about-proof__grid {
    gap: 0.85rem;
  }

  .about-proof-card {
    padding: 0.9rem;
    border-radius: 0.8rem;
  }

  .about-proof-card--quote {
    gap: 0;
  }

  .about-proof__quote-mark {
    margin-bottom: -0.6rem;
  }

  .about-process-card {
    padding: 1.15rem 1rem 1rem;
    border-radius: 0.9rem;
  }

  .about-process-card__number {
    margin-bottom: 1.25rem;
  }

  .about-recent-work__layout {
    gap: 1rem;
  }

  .about-recent-work__media {
    width: min(100%, 24rem);
    margin: 0 auto;
  }

  .about-recent-work__content {
    gap: 0.95rem;
  }

  .project-shell,
  .about-shell,
  .license-shell {
    width: min(94vw, 100%);
  }

  .project-head {
    gap: 0.75rem;
    margin-bottom: 2.75rem;
  }

  .project-layout {
    gap: 2rem;
  }

  .project-details {
    gap: 1.4rem;
  }

  .project-visual-shell {
    justify-content: center;
  }

  .project-visual {
    width: min(100%, 16.5rem);
    border-radius: 1rem;
  }
}

@media (max-width: 479px) {
  .site-menu__panel {
    padding: 0.95rem 0.85rem 1.2rem;
  }

  .site-menu__body {
    padding-top: 1.6rem;
  }

  .site-menu__link {
    font-size: clamp(2rem, 13vw, 2.65rem);
  }

  .site-menu__meta-copy,
  .site-menu__socials a {
    font-size: 0.82rem;
  }

  .hero-section {
    padding: 0.75rem 0.85rem 1.5rem;
  }

  .hero-left-top h1 {
    font-size: 1.88rem;
  }

  .solutions-top,
  .faq-content {
    max-width: 19rem;
    margin-inline: auto;
  }

  .offer-header {
    margin-bottom: 1.35rem;
  }

  .contact-cta-shell {
    padding: 4.1rem 0.85rem;
  }

  .site-footer__mail {
    font-size: 1rem;
  }

  .about-page-title {
    font-size: 2.45rem;
  }

  .about-feature__copy h2 {
    font-size: 1.95rem;
  }

  .about-recent-work__intro h2 {
    font-size: 2rem;
  }

  .about-proof-card--image {
    min-height: 20rem;
  }

  .project-title {
    font-size: 2.45rem;
  }

  .project-year {
    font-size: 2.3rem;
  }

  .project-visual {
    width: min(100%, 15rem);
  }

  .contact-form {
    padding: 1.25rem 0.95rem 1.1rem;
  }
}

/* global desktop responsiveness */
@media (min-width: 1280px) {
  .container {
    width: min(92vw, 1500px);
  }

  .vision-shell,
  .metrics-shell,
  .offer-shell,
  .site-footer__shell,
  .about-shell,
  .project-shell,
  .contact-cta-shell {
    width: min(92vw, 1720px);
  }

  .faq-shell {
    width: min(88vw, 1140px);
  }

  .license-shell {
    width: min(92vw, 1320px);
  }
}

@media (min-width: 1536px) {
  .contact-header {
    width: min(92vw, 1720px);
    margin: 0 auto;
    padding: 1.5rem 0 0;
  }

  .contact-section {
    width: min(92vw, 1720px);
    margin: 0 auto;
    min-height: calc(100vh - 6rem);
    grid-template-columns: minmax(360px, 0.86fr) minmax(620px, 1fr);
    gap: clamp(3rem, 5vw, 6.5rem);
    padding: clamp(2rem, 3vw, 3rem) 0 clamp(2.5rem, 3.5vw, 3.5rem);
  }

  .contact-details {
    max-width: 34rem;
    padding-left: 0;
  }

  .contact-heading {
    font-size: clamp(3.9rem, 4.9vw, 5rem);
    margin-bottom: 2.75rem;
  }

  .contact-info-grid {
    gap: 2.25rem 3rem;
  }

  .contact-label {
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
  }

  .contact-value {
    font-size: 17px;
  }

  .contact-form {
    width: min(100%, 46rem);
    padding: clamp(2.4rem, 3vw, 3rem) clamp(2.2rem, 2.8vw, 2.85rem)
      clamp(2rem, 2.8vw, 2.5rem);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  }

  .contact-field {
    padding-bottom: 1.05rem;
    margin-bottom: 1.55rem;
  }

  .contact-field--message {
    margin-bottom: 2.25rem;
  }

  .contact-field__label {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 1.04rem;
    line-height: 1.6;
  }

  .contact-field textarea {
    min-height: 8.5rem;
  }

  .contact-submit.button-primary {
    min-width: 10.75rem;
    height: 3.1rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 1400px) {
  .navigation-bar,
  .hero-section {
    width: min(92vw, 1720px);
    margin: 0 auto;
  }

  .hero-left-top h1 {
    max-width: 15ch;
  }

  .solutions-top {
    max-width: 42rem;
  }

  .faq-content,
  .faq-list {
    max-width: 43rem;
  }

  .site-footer__top {
    gap: clamp(2.5rem, 3vw, 4rem);
  }
}

/* 404 page */
.not-found-page {
  min-height: 100vh;
  background: var(--black-color-shade-1);
  color: var(--white-color-shade-1);
}

.not-found-main {
  position: relative;
  overflow: hidden;
}

.not-found-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.not-found-hero {
  position: relative;
  z-index: 1;
  width: min(92vw, 1780px);
  margin: 0 auto;
  padding: 1.5rem 0 4.75rem;
}

.not-found-grid {
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 8rem);
}

.not-found-copy {
  max-width: 46rem;
  display: grid;
  justify-items: center;
  text-align: center;
}

.not-found-kicker {
  color: rgba(239, 238, 236, 0.6);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
}

.not-found-code {
  color: rgba(239, 238, 236, 0.18);
  font-size: clamp(5.5rem, 16vw, 13rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.09em;
  margin-bottom: 0.8rem;
}

.not-found-title {
  max-width: 12ch;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin-bottom: 1.35rem;
}

.not-found-description {
  max-width: 36rem;
  color: rgba(239, 238, 236, 0.8);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.65;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin: 2rem 0 2.1rem;
}

.not-found-actions .button-primary {
  width: auto;
  min-width: 10.4rem;
  padding: 0 1.35rem;
}

@media (max-width: 1200px) {
  .not-found-hero {
    width: min(100%, 100%);
    padding: 1.25rem 1.75rem 4rem;
  }

  .not-found-grid {
    min-height: auto;
  }

  .not-found-copy,
  .not-found-description {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .not-found-hero {
    padding: 1rem 1rem 3rem;
  }

  .not-found-kicker {
    font-size: 0.76rem;
    margin-bottom: 0.9rem;
  }

  .not-found-code {
    font-size: clamp(4.5rem, 24vw, 7rem);
  }

  .not-found-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    max-width: 10ch;
  }

  .not-found-description {
    font-size: 0.95rem;
  }

  .not-found-actions .button-primary {
    width: 100%;
    min-width: 0;
  }

}

@media (min-width: 1536px) {
  .not-found-title {
    font-size: clamp(3.8rem, 4.9vw, 5.2rem);
  }

  .not-found-description {
    max-width: 40rem;
    font-size: 1.16rem;
  }
}

@media (min-width: 1400px) {
  .video {
    max-height: clamp(520px, 36vw, 620px);
  }

  .video video {
    height: clamp(520px, 36vw, 620px);
  }

  .offer-shell {
    width: min(82vw, 1240px);
  }

  .offer-stack {
    max-width: 1140px;
    margin: 0 auto;
  }
}

/* phone-only polish */
@media (max-width: 767px) {
  .hero-wrapper {
    background-position: 58% center;
  }

  .navigation-bar {
    padding: 0.9rem 1rem;
  }

  .hero-section {
    min-height: calc(100svh - 5.5rem);
    align-items: center;
    justify-items: center;
    padding: 1rem 1rem 2rem;
  }

  .hero-section-left {
    width: 100%;
    max-width: 26rem;
    gap: 2rem;
    justify-items: center;
    text-align: center;
    justify-content: center;
  }

  .hero-left-top {
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  .hero-left-top .button-primary {
    margin-inline: auto;
  }

  .hero-left-top h1 {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    font-size: clamp(2.3rem, 10.8vw, 3.15rem);
    text-wrap: balance;
  }

  .hero-left-bottom {
    justify-self: center;
    padding-top: 0;
  }

  .hero-left-bottom p {
    max-width: 19rem;
    margin-inline: auto;
    text-align: center;
    line-height: 1.6;
  }

  .button-primary {
    width: auto;
    min-width: 10rem;
  }

  .solutions-top,
  .faq-content {
    max-width: 21rem;
    margin-inline: auto;
  }

  .solutions-top p,
  .faq-subtitle {
    line-height: 1.65;
  }

  .video {
    border-radius: 0.9rem;
  }

  .solutions-bottom {
    margin-top: 2rem;
  }

  .video video {
    height: min(68vw, 290px);
  }

  .video-brand {
    top: 1rem;
    left: 0.85rem;
  }

  .video-brand-text {
    font-size: 1rem;
  }

  .video-caption {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    max-width: 15rem;
    font-size: 0.76rem;
  }

  .vision-line {
    font-size: clamp(1.95rem, 8.8vw, 2.5rem);
    line-height: 1.12;
  }

  .metrics-card,
  .number-card,
  .offer-card,
  .contact-form,
  .about-proof-card,
  .about-process-card {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  }

  .contact-form {
    border: 1px solid rgba(239, 238, 236, 0.12);
    background: rgba(0, 0, 0, 0.48);
  }

  .numbers-grid {
    gap: 0.85rem;
  }

  .number-card {
    padding: 1.2rem 1.1rem 1.25rem;
  }

  .metrics-grid {
    gap: 0.9rem;
  }

  .metrics-card {
    min-height: 12.5rem;
    padding: 1rem 0.95rem 0.95rem;
  }

  .metrics-card__value {
    font-size: clamp(2rem, 11vw, 2.6rem);
  }

  .offer-header {
    margin-bottom: 1.75rem;
  }

  .offer-stack {
    gap: 1.1rem;
  }

  .offer-content {
    padding: 1.05rem 1rem 1rem;
  }

  .offer-copy {
    min-height: auto;
  }

  .offer-button.button-primary {
    width: 100%;
    min-width: 0;
    height: 2.9rem;
  }

  .offer-price--plans {
    font-size: 1.95rem;
    margin-bottom: 2rem;
  }

  .offer-meta p,
  .offer-subtitle,
  .offer-features-heading,
  .offer-features li {
    font-size: 0.84rem;
  }

  .contact-cta-panel {
    max-width: 20rem;
  }

  .contact-cta-title {
    font-size: clamp(1.8rem, 8vw, 2.15rem);
    max-width: 17rem;
  }

  .faq-list {
    max-width: 100%;
  }

  .site-footer__top {
    justify-items: center;
    text-align: center;
  }

  .site-footer__copy {
    max-width: 19rem;
  }

  .site-footer__socials {
    justify-self: center;
  }

  .site-footer__bottom {
    align-items: center;
    text-align: center;
  }

  .site-footer__mail {
    word-break: break-word;
  }

  .contact-section {
    justify-items: center;
    text-align: center;
  }

  .contact-details {
    max-width: 24rem;
    justify-self: center;
  }

  .contact-info-grid {
    justify-content: center;
  }

  .contact-info-block {
    justify-self: center;
    max-width: 18rem;
  }

  .contact-form-shell {
    justify-content: center;
  }

  .contact-form {
    width: min(100%, 24rem);
  }

  .about-page-title {
    font-size: clamp(2.5rem, 12vw, 3.3rem);
  }

  .about-feature__copy h2,
  .about-recent-work__intro h2 {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  .about-proof-card--image {
    min-height: 19rem;
  }

  .project-title {
    max-width: none;
    font-size: clamp(2.25rem, 12vw, 2.9rem);
  }

  .project-year {
    font-size: clamp(2rem, 10vw, 2.45rem);
  }

  .project-visual {
    width: min(100%, 17.5rem);
  }

  .not-found-copy {
    max-width: 21rem;
  }
}

@media (max-width: 479px) {
  .navigation-bar {
    padding: 0.85rem 0.85rem;
  }

  .hero-section {
    padding: 1rem 0.85rem 1.85rem;
  }

  .hero-section-left {
    max-width: 22rem;
  }

  .hero-left-top h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(2.15rem, 11vw, 2.65rem);
  }

  .hero-left-bottom p {
    max-width: 17.5rem;
    font-size: 0.92rem;
  }

  .button-primary {
    min-width: 9.4rem;
    height: 2.9rem;
  }

  .solutions-top,
  .faq-content {
    max-width: 18.5rem;
  }

  .video video {
    height: min(72vw, 250px);
  }

  .video-brand {
    top: 0.9rem;
    left: 0.75rem;
  }

  .video-brand-text {
    font-size: 0.9rem;
  }

  .metrics-card__value {
    font-size: 2.15rem;
  }

  .site-footer__copy,
  .contact-details,
  .contact-form {
    max-width: 18.5rem;
  }

  .contact-cta-title {
    max-width: 15.5rem;
  }

  .project-visual {
    width: min(100%, 16rem);
  }
}


