:root {
  font-family: "Work Sans", Arial, sans-serif;
  color: #fff;
  background: #0c48c8;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

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

.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  height: 100svh;
  min-height: 660px;
  max-height: 900px;
  overflow: hidden;
  background: #6f95ff;
}

.hero__background {
  position: absolute;
  z-index: -4;
  inset: -4% -1%;
  width: 102%;
  height: 104%;
  object-fit: cover;
  opacity: 0.3;
}

.hero__glow {
  --glow-x: 0px;
  --glow-y: 0px;
  position: absolute;
  z-index: -3;
  top: -28%;
  left: 50%;
  width: 161%;
  height: 210%;
  min-width: 1640px;
  transform: translate(calc(-49.7% + var(--glow-x)), var(--glow-y));
  mix-blend-mode: color;
  filter: none;
  pointer-events: none;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 10000;
  top: clamp(24px, 4.3vh, 34px);
  left: clamp(28px, 3.47vw, 50px);
  right: clamp(28px, 3.47vw, 50px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  isolation: isolate;
}

.site-logo {
  display: block;
  flex: 0 0 auto;
  width: 41px;
  height: 37px;
  margin-right: auto;
  overflow: visible;
}

.site-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  animation: heart-pulse 2.4s ease-in-out infinite;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.1em;
}

.site-nav a {
  transition: opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 0.65;
}

.site-whatsapp {
  display: flex;
  align-items: center;
  gap: 11px;
  height: 44px;
  padding: 0 17px;
  border: 0.714px solid rgba(255, 255, 255, 0.1);
  border-radius: 7.143px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 15.7px;
  line-height: 1.3;
  letter-spacing: -0.08em;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.site-whatsapp img {
  width: 21px;
  height: 21px;
  display: block;
}

.site-whatsapp:hover,
.site-whatsapp:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.site-menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 43px;
  height: 32px;
  border: 0;
  padding: 0;
  background:
    linear-gradient(#fff, #fff) right top / 27px 5px no-repeat,
    linear-gradient(#fff, #fff) right 13.5px / 43px 5px no-repeat,
    linear-gradient(#fff, #fff) left bottom / 27px 5px no-repeat;
  color: #fff;
  cursor: pointer;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.mobile-menu {
  position: fixed;
  z-index: 9000;
  inset: 0;
  display: none;
  height: 100dvh;
  overflow: hidden;
  background: linear-gradient(180deg, #7b82f6 0%, #c484dc 54%, #2962ff 100%);
  color: #fff;
}

.mobile-menu::before,
.mobile-menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mobile-menu::before {
  top: 0;
  left: 50%;
  width: 1915px;
  height: 1077px;
  transform: translateX(-50%);
  background: url("assets/bg-video.png") center / cover no-repeat;
  opacity: 0.3;
}

.mobile-menu::after {
  top: -8%;
  left: calc(50% + 6.5px);
  width: 1718px;
  height: 1056px;
  transform: translateX(-50%);
  background: url("assets/orange-circle.svg") center / 135% 135% no-repeat;
  mix-blend-mode: overlay;
}

.mobile-menu__nav {
  position: absolute;
  z-index: 2;
  top: clamp(132px, 17.5dvh, 149px);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 246px;
  height: min(440px, calc(100dvh - 286px));
  transform: translateX(-50%);
}

.mobile-menu__ticker {
  display: none;
}

.mobile-menu__nav a {
  position: relative;
  z-index: 2;
  font-size: 30px;
  line-height: 1.45;
  letter-spacing: -0.07em;
}

.mobile-menu__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 246px;
  height: 70px;
  border: 0.714px solid rgba(255, 255, 255, 0.3);
  border-radius: 7.143px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 30px;
  letter-spacing: -0.08em;
}

.mobile-menu__whatsapp img {
  width: 28px;
  height: 28px;
}

.hero__portrait {
  position: absolute;
  z-index: 0;
  top: 17.42%;
  left: 47.22%;
  width: 49.31%;
  height: 84.22%;
}

.hero__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__badge {
  position: absolute;
  z-index: -1;
  top: 20.3%;
  left: 77%;
  width: 13.36%;
  aspect-ratio: 192.341 / 192.332;
  min-width: 148px;
  height: auto;
}

.hero__badge-text,
.hero__badge-heart {
  position: absolute;
  display: block;
}

.hero__badge-text {
  inset: 0;
  width: 100%;
  height: 100%;
  animation: badge-spin 22s linear infinite;
}

.hero__badge-text svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__badge-heart {
  top: 50%;
  left: 50%;
  width: 41.6%;
  height: 37.5%;
  transform: translate(-50%, -50%);
}

.hero__shade {
  position: absolute;
  z-index: 1;
  inset: 31.3% -2% 8.4%;
  background:
    linear-gradient(to bottom, rgba(255, 179, 180, 0), #0044cb),
    linear-gradient(to bottom, transparent 62%, #0044cb);
  pointer-events: none;
}

.hero__content {
  position: absolute;
  z-index: 3;
  top: 19.04%;
  left: 10%;
  width: 49.74%;
}

.hero__content-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__content-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero[data-current-view="about"] .hero__intro,
.hero[data-current-view="about"] .hero__content h1,
.hero[data-current-view="contact"] .hero__intro,
.hero[data-current-view="contact"] .hero__content h1 {
  animation: none;
}

.hero__content-panel--about,
.hero__content-panel--contact {
  top: 19.92%;
  width: 46%;
  max-width: 662px;
}

.hero__content-panel h2 {
  margin: 0;
  font-size: clamp(44px, 4.17vw, 60px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.08em;
}

.hero__text {
  margin-top: 29px;
  max-width: 662px;
  font-size: 18px;
  line-height: 1.36;
  letter-spacing: -0.05em;
}

.hero__text p {
  margin: 0 0 22px;
}

.hero__text p:last-child {
  margin-bottom: 0;
}

.hero__intro {
  margin: 0 0 6px;
  font-size: clamp(34px, 3.62vw, 52px);
  line-height: 1.7012;
  letter-spacing: -0.08em;
  white-space: nowrap;
  opacity: 0;
  animation: title-reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms
    forwards;
}

.hero__content h1 {
  margin: 0;
  width: 100%;
  aspect-ratio: 716.274 / 371;
  line-height: 0;
  transform: translateX(-4.04%);
  opacity: 0;
  animation: heading-reveal 1100ms cubic-bezier(0.22, 1, 0.36, 1) 280ms
    forwards;
}

.hero__content h1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__content h1 img.hero__title-image--mobile {
  display: none;
}

.hero__ticker {
  position: absolute;
  z-index: 6;
  bottom: 0;
  left: -6.05%;
  width: 136.32%;
  height: 11.04%;
  min-height: 74px;
  overflow: hidden;
  background: #0c48c8;
}

.hero__ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: ticker-scroll 24s linear infinite;
  will-change: transform;
}

.hero__ticker p {
  flex: none;
  margin: 0;
  padding-right: 0.55em;
  font-size: 18px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

@keyframes heart-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.12);
  }

  24% {
    transform: scale(1);
  }

  36% {
    transform: scale(1.07);
  }

  48% {
    transform: scale(1);
  }
}

@keyframes badge-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-25%);
  }
}

@keyframes title-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes heading-reveal {
  from {
    opacity: 0;
    transform: translate(-4.04%, 34px);
  }

  to {
    opacity: 1;
    transform: translate(-4.04%, 0);
  }
}

.project-showcase {
  position: sticky;
  top: 0;
  z-index: 2;
  isolation: isolate;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background: linear-gradient(253.4deg, #9125ec 0%, #5a09fb 101.33%);
}

.section-before-footer {
  position: relative;
}

.project-showcase--wiply {
  background: linear-gradient(253.4deg, #9125ec 0%, #5a09fb 101.33%);
}

.project-showcase--mtower {
  background: linear-gradient(253.4deg, #003a3a 0%, #002d2d 101.33%);
}

.project-showcase--ostrovsky {
  background: linear-gradient(253.4deg, #6f95ff 0%, #2e65ff 101.33%);
}

.project-showcase--adcore {
  background: linear-gradient(253.4deg, #00033a 0%, #084583 101.33%);
}

.project-showcase--keshet {
  background:
    linear-gradient(90deg, rgba(46, 101, 253, 0.5), rgba(46, 101, 253, 0.5)),
    linear-gradient(253.88deg, #ffc6f7 0%, #00b0fa 98.54%);
}

.project-showcase--kalbidud {
  background:
    linear-gradient(90deg, rgba(46, 101, 253, 0.5), rgba(46, 101, 253, 0.5)),
    linear-gradient(253.88deg, #0900bd 0%, #003fbe 98.54%);
}

.project-showcase--metzger {
  background: linear-gradient(253.65deg, #7c0000 6.32%, #350005 101.33%);
}

.project-showcase__blur {
  position: absolute;
  z-index: -1;
  top: -52%;
  left: -23.8%;
  width: 129.3%;
  height: 169.7%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(40px);
  transform: rotate(-15deg);
  pointer-events: none;
}

.project-showcase__copy {
  position: absolute;
  top: 29.04%;
  left: 7.78%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  width: 29.45%;
  max-width: 424px;
}

.project-showcase--wiply .project-showcase__copy,
.project-showcase--mtower .project-showcase__copy,
.project-showcase--adcore .project-showcase__copy,
.project-showcase--kalbidud .project-showcase__copy {
  gap: 36px;
}

.project-showcase__copy h2,
.project-showcase__copy p {
  margin: 0;
}

.project-showcase__copy h2 {
  font-size: clamp(60px, 5.56vw, 80px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.project-showcase--keshet .project-showcase__copy h2,
.project-showcase--metzger .project-showcase__copy h2 {
  font-size: clamp(48px, 4.17vw, 60px);
  line-height: 1.13;
}

.project-showcase__copy p {
  width: 375px;
  font-size: 18px;
  line-height: 1.36;
  letter-spacing: -0.05em;
}

.project-showcase__tags {
  margin-top: -24px;
  font-weight: 500;
}

.project-showcase__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 341px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.08em;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.project-showcase__button img {
  width: 21px;
  height: 15px;
}

.project-showcase__button:hover,
.project-showcase__button:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.project-showcase__visual {
  position: absolute;
  top: calc(50% - 206px);
  right: 3.47%;
  width: 53.26%;
  height: 488px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: none;
}

.project-showcase__visual--static,
.project-site-frame {
  background: rgba(0, 0, 0, 0.18);
}

.project-showcase__visual--static > img,
.project-site-static,
.project-showcase__visual--catalog > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.project-showcase__visual--wiply-updated .project-site-static,
.project-site-static--crop-export {
  width: calc(100% + 34px);
  height: calc(100% + 34px);
  max-width: none;
  margin: -17px;
}

.project-showcase__visual--static > img {
  object-position: top center;
}

.project-showcase__visual--wiply-updated {
  top: calc(50% - 198px);
  right: 3.47%;
  width: 53.61%;
  height: 431px;
  background: rgba(0, 0, 0, 0.18);
}

.project-showcase--mtower .project-showcase__copy {
  top: 30.68%;
}

.project-showcase__visual--mtower-updated {
  top: calc(50% - 207px);
  right: 2.92%;
  width: 54.58%;
  height: 452px;
  background: rgba(0, 0, 0, 0.18);
}

.project-showcase__visual--mtower-updated > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-showcase__visual--dr {
  top: calc(50% - 211px);
  right: 3.47%;
  width: 53.96%;
  height: 488px;
}

.project-showcase__visual--short {
  top: calc(50% - 198px);
  right: 3.47%;
  width: 53.96%;
  height: 446px;
}

.project-site-frame {
  overflow: hidden;
}

.project-site-scroll {
  --scroll-distance: 0px;
  width: 100%;
  min-height: 100%;
  will-change: transform;
}

.project-site-scroll img {
  display: block;
  width: 100%;
  height: auto;
}

.project-site-frame--scroll .project-site-scroll {
  animation: project-site-inside-scroll 14s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.project-site-logo {
  position: absolute;
  top: 18px;
  left: 35px;
  width: 64px;
  height: auto;
}

.project-showcase__visual--catalog {
  top: calc(50% - 307px);
  right: 1.8%;
  width: 56.95%;
  height: 615px;
  border-radius: 0;
  box-shadow: none;
}

.project-showcase__visual--catalog > img {
  object-fit: contain;
}

@keyframes project-site-inside-scroll {
  0%,
  34% {
    transform: translateY(0);
  }

  68%,
  82% {
    transform: translateY(var(--scroll-distance));
  }

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

.wiply-demo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1d0935;
  color: #fff;
}

.wiply-demo__nav {
  position: absolute;
  z-index: 5;
  top: 24px;
  right: 5%;
  left: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wiply-demo__nav > img {
  width: 64px;
  max-height: 28px;
}

.wiply-demo__nav div {
  display: flex;
  gap: 34px;
  font-size: 8px;
  opacity: 0.85;
}

.wiply-demo__art {
  position: absolute;
  inset: 0;
}

.wiply-demo__glow {
  position: absolute;
  top: 70px;
  left: -60px;
  width: 450px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 54, 227, 0.6), transparent 68%);
  filter: blur(28px);
}

.wiply-demo__phone {
  position: absolute;
  z-index: 2;
  top: 21.65%;
  left: 14.17%;
  width: 34.65%;
  height: auto;
}

.wiply-demo__ball {
  position: absolute;
  z-index: 4;
  top: 74.4%;
  left: 17.9%;
  width: 13%;
  filter: drop-shadow(0 14px 12px rgba(0, 0, 0, 0.28));
}

.metric-card {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  width: 82px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 9px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.metric-card span,
.metric-card strong {
  display: block;
}

.metric-card i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  padding: 7px;
  border-radius: 6px;
  background: linear-gradient(#8436e3, #491e7d);
  font-style: normal;
  font-size: 14px;
}

.metric-card--ctr {
  top: 28.9%;
  left: 6.95%;
}

.metric-card--roas {
  top: 62.5%;
  left: 10.98%;
}

.metric-card--cpa {
  top: 69.9%;
  left: 36.8%;
}

.wiply-demo__content {
  position: absolute;
  z-index: 3;
  top: 25.94%;
  right: 6.6%;
  width: 38.6%;
  text-align: right;
}

.wiply-demo__eyebrow,
.wiply-demo__content h3,
.wiply-demo__content button,
.wiply-demo__content small {
  opacity: 1;
}

.wiply-demo__eyebrow {
  color: #8436e3;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 36px;
  line-height: 0.9;
}

.wiply-demo__content h3 {
  margin: -2px 0 28px;
  font-family: Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.wiply-demo__content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.wiply-demo__content li {
  opacity: 1;
}

.wiply-demo__content li::before {
  content: "✓";
  margin-left: 9px;
  color: #8436e3;
  font-weight: 700;
}

.wiply-demo__content button {
  width: 64%;
  height: 35px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(193deg, #8436e3, #5d28ed);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.wiply-demo__content small {
  display: block;
  width: 64%;
  margin-top: 10px;
  font-family: Arial, sans-serif;
  font-size: 7px;
  text-align: center;
  opacity: 1;
}

.wiply-demo__logos {
  position: relative;
  width: 64%;
  margin-top: 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.wiply-demo__logos-track {
  display: flex;
  align-items: center;
  gap: 35px;
  width: max-content;
}

.wiply-demo__logos img {
  width: 42px;
  max-height: 18px;
  opacity: 0.62;
  filter: brightness(0) invert(1);
}

.info-section {
  position: sticky;
  top: 0;
  z-index: 3;
  isolation: isolate;
  width: 100%;
  height: 100svh;
  min-height: 660px;
  max-height: 900px;
  overflow: hidden;
  background: #2962ff;
}

.info-section--contact {
  z-index: 4;
}

.info-section__background {
  position: absolute;
  z-index: -5;
  inset: -4% -1%;
  width: 102%;
  height: 104%;
  object-fit: cover;
  opacity: 0.3;
}

.info-section__glow {
  position: absolute;
  z-index: -4;
  top: 9.9%;
  left: calc(50% + 6px);
  width: 119.31%;
  height: 134%;
  min-width: 1400px;
  transform: translateX(-50%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.info-section__portrait {
  position: absolute;
  z-index: -1;
  top: 15.48%;
  left: 49.44%;
  width: 49.31%;
  height: 84.65%;
}

.info-section__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.info-section__badge {
  position: absolute;
  z-index: 0;
  top: 20.35%;
  left: 75.5%;
  width: 13.36%;
  min-width: 148px;
  aspect-ratio: 1;
}

.info-section__badge > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
}

.info-section__badge-heart {
  display: none;
}

.info-section__shade {
  position: absolute;
  z-index: 1;
  inset: 31.3% -2% 8.4%;
  background:
    linear-gradient(to bottom, rgba(255, 179, 180, 0), #0044cb),
    linear-gradient(to bottom, transparent 62%, #0044cb);
  pointer-events: none;
}

.info-section__content {
  position: absolute;
  z-index: 3;
  left: 7.64%;
  color: #fff;
}

.info-section__content--about {
  top: 19.92%;
  width: 46%;
  max-width: 662px;
}

.info-section__content--contact {
  top: 20.56%;
  width: 42%;
  max-width: 620px;
}

.info-section__content h2 {
  margin: 0;
  font-size: clamp(44px, 4.17vw, 60px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.08em;
}

.info-section__text {
  margin-top: 29px;
  max-width: 662px;
  font-size: 18px;
  line-height: 1.36;
  letter-spacing: -0.05em;
}

.info-section__text p {
  margin: 0 0 22px;
}

.info-section__text p:last-child {
  margin-bottom: 0;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 33px;
  font-size: clamp(30px, 2.78vw, 40px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-links a {
  width: max-content;
  max-width: 100%;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  height: 70px;
  margin-top: 36px;
  padding: 0 24px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 22px;
  letter-spacing: -0.08em;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.contact-whatsapp img {
  width: 30px;
  height: 30px;
  display: block;
}

.contact-whatsapp:hover,
.contact-whatsapp:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  z-index: 20;
  isolation: isolate;
  height: 792px;
  overflow: hidden;
  background: #2962ff;
}

.site-footer__background {
  position: absolute;
  z-index: -5;
  inset: 0 -16px auto;
  width: calc(100% + 32px);
  height: 819px;
  object-fit: cover;
  opacity: 0.3;
}

.site-footer__glow {
  position: absolute;
  z-index: -4;
  top: 155px;
  left: calc(50% + 6px);
  width: 119.31%;
  height: 1056px;
  min-width: 1400px;
  transform: translateX(-50%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.site-footer__shade {
  position: absolute;
  z-index: -1;
  inset: 370px 0 0;
  background:
    linear-gradient(to bottom, rgba(0, 68, 203, 0), #0044cb 110%),
    linear-gradient(to bottom, transparent 46%, #0044cb);
}

.site-footer__content {
  position: absolute;
  left: 4.58%;
  right: 4%;
  top: 247px;
}

.site-footer__content h2 {
  margin: 0 0 40px;
  font-size: clamp(46px, 4.17vw, 60px);
  font-weight: 400;
  line-height: 68px;
  letter-spacing: -0.08em;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 45px;
  width: 335px;
}

.site-footer__links > a:not(.site-footer__whatsapp) {
  font-size: clamp(26px, 2.31vw, 33.3px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.site-footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: 273px;
  height: 70px;
  padding: 0 21px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 22px;
  letter-spacing: -0.08em;
}

.site-footer__whatsapp img {
  width: 30px;
  height: 30px;
}

.site-footer__strip {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 59px;
  background: #0c48c8;
}

.site-footer__strip p {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.05em;
}

.site-footer__top {
  position: absolute;
  z-index: 4;
  color: #fff;
}

.site-footer__top {
  top: 478px;
  right: 4.1%;
  display: grid;
  place-items: center;
  width: 205px;
  height: 205px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.site-footer__top-text {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: badge-spin 24s linear infinite;
}

.site-footer__top-arrow {
  width: 53px;
  height: 38px;
  transform: rotate(-90deg);
  animation: footer-arrow-lift 3.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes footer-arrow-lift {
  0%,
  72%,
  100% {
    transform: rotate(-90deg) translateX(0);
  }

  82% {
    transform: rotate(-90deg) translateX(8px);
  }

  90% {
    transform: rotate(-90deg) translateX(0);
  }
}

.project-page {
  --project-accent: #7331e4;
  --project-header-bg:
    linear-gradient(244.76deg, rgba(145, 37, 236, 0.2) 0%, rgba(90, 9, 251, 0.2) 101.33%);
  background: #fff;
  color: #fff;
}

.project-page .site-header {
  position: fixed;
  z-index: 2147483000;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  padding: 0 50px;
  color: #fff;
  isolation: isolate;
  align-items: center;
  transition:
    color 260ms ease,
    filter 260ms ease;
}

.project-page .site-header::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--project-header-bg);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: opacity 260ms ease;
}

.project-page .site-logo,
.project-page .site-nav,
.project-page .site-whatsapp {
  position: relative;
  z-index: 2;
}

.project-page .site-logo {
  width: 31px;
  height: 28px;
}

.project-page .site-header.is-scrolled {
  color: var(--project-accent);
}

.project-page .site-header.is-scrolled::before {
  opacity: 1;
}

.project-page .site-header.is-scrolled .site-logo {
  background: var(--project-accent);
  -webkit-mask: url("assets/logo.svg") center / contain no-repeat;
  mask: url("assets/logo.svg") center / contain no-repeat;
}

.project-page .site-header.is-scrolled .site-logo img {
  opacity: 0;
}

.project-page .site-header .site-whatsapp {
  display: flex;
}

.project-page--wiply {
  --project-accent: #7331e4;
  --project-header-bg:
    linear-gradient(244.76deg, rgba(145, 37, 236, 0.2) 0%, rgba(90, 9, 251, 0.2) 101.33%);
}

.project-page--mtower {
  --project-accent: #007f74;
  --project-header-bg:
    linear-gradient(244.76deg, rgba(0, 58, 58, 0.2) 0%, rgba(0, 45, 45, 0.2) 101.33%);
}

.project-page--ostrovsky {
  --project-accent: #2e65ff;
  --project-header-bg:
    linear-gradient(244.76deg, rgba(111, 149, 255, 0.2) 0%, rgba(46, 101, 255, 0.2) 101.33%);
}

.project-page--adcore {
  --project-accent: #0b5da8;
  --project-header-bg:
    linear-gradient(244.76deg, rgba(0, 3, 58, 0.2) 0%, rgba(8, 69, 131, 0.2) 101.33%);
}

.project-page--keshet {
  --project-accent: #2e65fd;
  --project-header-bg:
    linear-gradient(244.76deg, rgba(255, 198, 247, 0.2) 0%, rgba(0, 176, 250, 0.2) 101.33%);
}

.project-page--kalbidud {
  --project-accent: #003fbe;
  --project-header-bg:
    linear-gradient(244.76deg, rgba(9, 0, 189, 0.2) 0%, rgba(0, 63, 190, 0.2) 101.33%);
}

.project-page--metzger {
  --project-accent: #9b1212;
  --project-header-bg:
    linear-gradient(244.76deg, rgba(124, 0, 0, 0.2) 6.32%, rgba(53, 0, 5, 0.2) 101.33%);
}

.project-page__hero {
  position: relative;
  isolation: isolate;
  height: 501px;
  overflow: hidden;
}

.project-page__hero--wiply {
  background: linear-gradient(244.76deg, #9125ec 0%, #5a09fb 101.33%);
}

.project-page__hero--mtower {
  background: linear-gradient(244.76deg, #003a3a 0%, #002d2d 101.33%);
}

.project-page__hero--ostrovsky {
  background: linear-gradient(244.76deg, #6f95ff 0%, #2e65ff 101.33%);
}

.project-page__hero--adcore {
  background: linear-gradient(244.76deg, #00033a 0%, #084583 101.33%);
}

.project-page__hero--keshet {
  background:
    linear-gradient(90deg, rgba(46, 101, 253, 0.5), rgba(46, 101, 253, 0.5)),
    linear-gradient(244.76deg, #ffc6f7 0%, #00b0fa 101.33%);
}

.project-page__hero--kalbidud {
  background:
    linear-gradient(90deg, rgba(46, 101, 253, 0.5), rgba(46, 101, 253, 0.5)),
    linear-gradient(244.76deg, #0900bd 0%, #003fbe 101.33%);
}

.project-page__hero--metzger {
  background: linear-gradient(244.76deg, #7c0000 6.32%, #350005 101.33%);
}

.project-page__hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -409px;
  left: -343px;
  width: 1862px;
  height: 1344px;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 58%);
  filter: blur(40px);
  opacity: 0.3;
  transform: rotate(-15deg);
}

.project-page__intro {
  position: absolute;
  top: 184px;
  left: 50%;
  width: min(760px, 82vw);
  transform: translateX(-50%);
  text-align: center;
}

.project-page__intro h1 {
  margin: 0 0 42px;
  font-size: clamp(58px, 5.56vw, 80px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.project-page__intro p {
  max-width: 760px;
  margin: 0;
  font-size: 16px;
  line-height: 1.36;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.project-page__intro strong {
  display: block;
  margin-top: 22px;
  font-weight: 500;
}

.project-page__gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
  width: min(786px, calc(100% - 48px));
  margin: 80px auto 0;
  padding-bottom: 80px;
}

.project-page__gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}

.project-page__gallery .project-page__tall {
  max-height: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: 1133px;
    max-height: none;
  }

  .site-header {
    top: 34px;
    left: 35px;
    right: 35px;
  }

  .site-logo {
    width: 44px;
    height: 40px;
  }

  .site-nav {
    display: none;
  }

  .site-whatsapp {
    display: none;
  }

  .site-header::after {
    content: none;
  }

  .site-menu-toggle {
    display: block;
  }

  .project-page .site-header::before {
    height: auto;
  }

  .project-page .site-header {
    top: 0;
    left: 0;
    right: 0;
    height: 82px;
    padding: 0 35px;
    align-items: center;
  }

  .project-page .site-logo {
    width: 33px;
    height: 30px;
  }

  .project-page .site-header::after {
    content: none;
  }

  .project-page .site-menu-toggle {
    width: 32px;
    height: 24px;
  }

  .project-page .site-header .site-whatsapp {
    display: none;
  }

  .site-footer {
    height: 1133px;
  }

  .site-footer__background {
    inset: 0 auto auto -635px;
    width: 2014px;
    height: 1133px;
  }

  .site-footer__glow {
    top: 155px;
    left: -481px;
    width: 1718px;
    height: 1056px;
    min-width: 0;
    transform: none;
  }

  .site-footer__shade {
    inset: 757px -356px 0;
  }

  .site-footer__content {
    top: 536px;
    left: 71px;
    right: 59px;
    bottom: auto;
  }

  .site-footer__content h2 {
    margin-bottom: 40px;
  }

  .site-footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .site-footer__top {
    top: 70px;
    right: 71px;
    width: 205px;
    height: 205px;
  }

  .site-footer__top-arrow {
    width: 53px;
    height: 38px;
  }

  .site-footer__strip {
    height: 59px;
  }

  .hero__content {
    top: 128px;
    left: 50%;
    width: 71.1%;
    transform: translateX(-50%);
    text-align: center;
  }

  .hero__content-panel {
    transform: translate(-50%, 20px);
  }

  .hero__content-panel.is-active {
    transform: translate(-50%, 0);
  }

  .hero__content h1 {
    transform: none;
  }

  .hero__intro {
    font-size: 40px;
  }

  @keyframes heading-reveal {
    from {
      opacity: 0;
      transform: translateY(34px);
    }

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

  .hero__portrait {
    top: 44.7%;
    left: 50%;
    width: 95.4%;
    height: 58.9%;
    aspect-ratio: auto;
    transform: translateX(-50%);
  }

  .hero__portrait img {
    object-fit: cover;
    object-position: center top;
  }

  .hero__badge {
    top: 45.9%;
    right: auto;
    left: calc(50% + clamp(92px, 24.5vw, 180px));
    transform: translateX(-50%);
    width: 28.5%;
    min-width: 0;
  }

  .hero__shade {
    inset: 44.75% -1.1% 2.35%;
  }

  .hero__ticker {
    height: 87px;
    min-height: 87px;
    z-index: 20;
  }

  .project-showcase {
    min-height: 1133px;
  }

  .project-showcase__copy {
    top: 185px;
    left: 35px;
    align-items: center;
    gap: 35px;
    width: calc(100% - 70px);
    max-width: none;
    text-align: center;
  }

  .project-showcase__copy h2 {
    width: 100%;
    font-size: 80px;
  }

  .project-showcase__copy p {
    width: min(581px, 100%);
  }

  .project-showcase__tags {
    margin-top: -24px;
  }

  .project-showcase__visual,
  .project-showcase__visual--wiply-updated,
  .project-showcase__visual--mtower-updated,
  .project-showcase__visual--dr,
  .project-showcase__visual--short,
  .project-showcase__visual--catalog {
    top: 640px;
    right: 35px;
    width: calc(100% - 70px);
    height: auto;
    aspect-ratio: 675 / 377;
    border-radius: 20px;
  }

  .info-section {
    min-height: 760px;
  }

  .info-section__content {
    left: 6%;
  }

  .info-section__content--about,
  .info-section__content--contact {
    top: 19%;
    width: 50%;
  }

  .info-section__portrait {
    top: 16%;
    left: 48%;
    width: 52%;
    height: 80%;
  }

  .info-section__badge {
    top: 22%;
    right: 3%;
    left: auto;
    width: 17%;
  }

  .info-section__text {
    font-size: 15px;
  }

  .contact-links {
    gap: 22px;
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .mobile-menu {
    display: block;
  }

  body.mobile-menu-open .site-header {
    z-index: 10001;
    background: transparent;
    box-shadow: none;
    color: #fff;
  }

  .hero {
    height: 100svh;
    min-height: 0;
    max-height: none;
  }

  .site-header {
    top: 34px;
    left: 50%;
    right: auto;
    width: min(328px, calc(100% - 64px));
    transform: translateX(-50%);
    align-items: center;
    color: #fff;
  }

  .project-page .site-header {
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 70px;
    padding: 0 22px;
    transform: none;
    align-items: center;
  }

  .project-page .site-header::before {
    height: auto;
  }

  .site-logo {
    width: 31px;
    height: 28px;
  }

  .site-menu-toggle {
    width: 32px;
    height: 24px;
    color: #fff;
    background:
      linear-gradient(#fff, #fff) right top / 20px 4px no-repeat,
      linear-gradient(#fff, #fff) right 10px / 32px 4px no-repeat,
      linear-gradient(#fff, #fff) left bottom / 20px 4px no-repeat;
  }

  .site-nav {
    display: none;
  }

  .hero__glow {
    top: -16%;
    left: 42%;
    width: auto;
    height: 165%;
  }

  .hero__content {
    top: 96px;
    left: 50%;
    width: min(295px, 75.1%);
    transform: translateX(-50%);
    text-align: center;
  }

  .hero__content-panel {
    transform: translate(-50%, 20px);
  }

  .hero__content-panel.is-active {
    transform: translate(-50%, 0);
  }

  .hero__intro {
    font-size: clamp(24px, 7.32vw, 28.76px);
    letter-spacing: -0.08em;
    white-space: nowrap;
  }

  .hero__content h1 img {
    width: 100%;
  }

  .hero__content h1 img.hero__title-image--desktop {
    display: none;
  }

  .hero__content h1 img.hero__title-image--mobile {
    display: block;
  }

  .hero__portrait {
    top: min(398px, 46.5svh);
    left: 50%;
    width: 97%;
    height: 45svh;
    aspect-ratio: auto;
    transform: translateX(-50%);
  }

  .hero__portrait img {
    object-fit: cover;
    object-position: center top;
  }

  .hero[data-current-view="about"] .hero__portrait {
    display: none;
  }

  .hero[data-current-view="about"] .hero__content {
    top: clamp(150px, 18svh, 175px);
  }

  .hero[data-current-view="about"] .hero__text {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.42;
    letter-spacing: -0.04em;
  }

  .hero[data-current-view="about"] .hero__text p {
    margin-bottom: 18px;
  }

  .hero__badge {
    display: none;
  }

  .hero__shade {
    inset: min(439px, 51.5svh) -10% 0;
  }

  .hero__ticker {
    left: -20%;
    width: 180%;
    height: 58px;
    min-height: 58px;
    z-index: 30;
  }

  .site-footer {
    position: relative;
    z-index: 40;
    height: 100svh;
    min-height: 100svh;
    margin-top: 0;
    background: #2962ff;
  }

  .site-footer__content {
    top: auto;
    bottom: 119px;
    left: 13%;
    right: auto;
    width: min(291px, 74%);
  }

  .site-footer__background {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .site-footer__shade {
    inset: 45% -10% 0;
  }

  .site-footer__content h2 {
    font-size: clamp(42px, 13vw, 51px);
    line-height: 1;
  }

  .site-footer__links > a:not(.site-footer__whatsapp) {
    font-size: 27px;
    white-space: normal;
  }

  .site-footer__whatsapp {
    width: 100%;
    max-width: 273px;
  }

  .site-footer__top {
    display: none;
  }

  .site-footer__strip p {
    font-size: 14px;
  }

  .project-showcase {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 100px 28px;
  }

  .project-showcase__copy {
    position: relative;
    top: auto;
    left: auto;
    gap: 28px;
    width: 100%;
    max-width: none;
  }

  .project-showcase__copy h2 {
    font-size: 58px;
  }

  .project-showcase__button {
    width: 100%;
  }

  .project-showcase__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 675 / 377;
    margin-top: 56px;
  }

  .project-showcase__visual--wiply-updated,
  .project-showcase__visual--mtower-updated,
  .project-showcase__visual--dr,
  .project-showcase__visual--short,
  .project-showcase__visual--catalog {
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
  }

  .project-showcase__visual--wiply-updated {
    aspect-ratio: 772 / 431;
  }

  .project-showcase__visual--mtower-updated {
    aspect-ratio: 786 / 452;
  }

  .project-showcase__visual--dr {
    aspect-ratio: 777 / 488;
  }

  .project-showcase__visual--short {
    aspect-ratio: 777 / 446;
  }

  .project-showcase__visual--catalog {
    aspect-ratio: 820 / 615;
  }

  .project-site-static,
  .project-showcase__visual--mtower-updated > img {
    height: auto;
    min-height: 100%;
    object-fit: unset;
  }

  .project-showcase__visual--wiply-updated .project-site-static,
  .project-site-static--crop-export {
    width: calc(100% + 24px);
    height: auto;
    min-height: calc(100% + 24px);
    margin: -12px;
  }

  .wiply-demo__content {
    top: 85px;
  }

  .wiply-demo__content h3 {
    margin-bottom: 20px;
  }

  .wiply-demo__content ul {
    gap: 5px;
    margin-bottom: 16px;
    font-size: 7px;
  }

  .wiply-demo__content button {
    height: 32px;
    font-size: 8px;
  }

  .info-section {
    position: relative;
    height: auto;
    min-height: 940px;
    max-height: none;
    padding: 150px 28px 86px;
  }

  .info-section__glow {
    top: -12%;
    left: 45%;
    width: auto;
    height: 155%;
    min-width: 0;
  }

  .info-section__portrait {
    top: 34%;
    left: 34%;
    width: 80%;
    height: 58%;
  }

  .info-section__badge {
    top: 43%;
    right: 2%;
    width: 26%;
    min-width: 112px;
  }

  .info-section__shade {
    inset: 38% -10% 9%;
  }

  .info-section__content,
  .info-section__content--about,
  .info-section__content--contact {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
  }

  .info-section__content h2 {
    font-size: 42px;
  }

  .info-section__text {
    width: 82%;
    margin-top: 24px;
    font-size: 14px;
  }

  .contact-links {
    gap: 20px;
    margin-top: 30px;
    font-size: 28px;
  }

  .contact-whatsapp {
    height: 58px;
    margin-top: 32px;
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero__glow {
    transform: translateX(-49.7%);
  }
}
