@font-face {
  font-family: "Sohne";
  src: url("../fonts/sohne-regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Sohne";
  src: url("../fonts/sohne-medium.woff2") format("woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Sohne";
  src: url("../fonts/sohne-kraftig.woff2") format("woff2");
  font-weight: 600;
}

@font-face {
  font-family: "Sohne";
  src: url("../fonts/sohne-bold.woff2") format("woff2");
  font-weight: 700;
}

:root {
  --lime: #d7e56c;
  --black: #000000;
  --muted: #737373;
  --white: #ffffff;
  --mono: "Fira Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: "Sohne", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --parallax-offset: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--white);
  font-size: 20px;
  background: var(--black);
  line-height: 1.25;
}

.wp-site-blocks,
.eightarm-homepage {
  margin-top: 0;
  padding-top: 0;
}

.site-header-spacer,
.site-footer-spacer {
  display: none;
}

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

.wp-block-button {
  margin: 0;
}

.wp-block-button__link {
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
}

.container-sm,
.container,
.container-lg {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.container-sm {
  max-width: 1080px;
}

.container {
  max-width: 1230px;
}

.container-lg {
  max-width: 1400px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-row {
  flex-direction: row;
}

.space-between {
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.kicker {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
}

header.transparent {
  background: transparent;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  color: #000;
  padding: 0 20px;
  top: 0;
}

header .logo,
header .nav {
  padding: 20px 0;
}

header .logo .brand {
  line-height: 1;
  font-weight: 700;
  font-size: 54px;
  margin:0;
  letter-spacing: -1px;
}

.hero {
  background: var(--lime);
  color: var(--black);
  padding: 90px 20px 20px;
  position: relative;
  overflow: hidden;
}

.hero .content,
.hero .title,
.octopus {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.hero .container {
  position: relative;
}

.hero .border {
  position: relative;
  padding: 10px;
}

.hero .border:after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border: 2px solid #000;
  position: absolute;
  z-index: 3;
}

.hero .border .content {
  position: relative;
  height: 75vh;
}

.hero .border .est,
.hero .border .scroll-note,
.hero .border .edition {
  position: absolute;
  font-family: var(--mono);
  text-transform: uppercase;
  font-weight: 400;
  margin:0;
}

.hero .border .est,
.hero .border .edition {
  font-size: 15px;
}

.hero .border .scroll-note {
  right: 0;
  top: 35%;
  font-size: 18px;
  display: none;
}

.hero .border .est {
  bottom: 0;
  right: 0;
}

.hero .border .edition {
  left: 0;
  top: 0;
}

.hero .title {
  mix-blend-mode: difference;
  color: var(--lime);
  position: absolute;
  top: 20%;
  z-index: 2;
  left: -2px;
  right: -2px;
  font-size: 108px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}

.hero .title .left {
  text-align: left;
}

.hero .title .right {
  text-align: right;
  display: block;
}

.hero .octopus-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translateY(100px);
  animation: slideUpFade 3.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 2s;
}

.hero .octopus-wrapper .octopus {
  width: auto;
  height: 50vh;
  transform: translateY(var(--parallax-offset, 0px)) translateX(var(--mouse-x, 0px)) translateY(calc(var(--mouse-y, 0px) * 0.5)) scale(1.02);
  will-change: transform;
  transition: transform 0.1s ease-out;
  margin:0;
}

.slide-in {
  display: block;
  opacity: 0;
  animation-duration: 3000ms;
  animation-timing-function: cubic-bezier(.2, .8, .2, 1);
  animation-fill-mode: forwards;
}

.slide-in.left {
  transform: translateX(-60px);
  animation-name: slideInLeft;
  animation-delay: 600ms;
}

.slide-in.right {
  transform: translateX(60px);
  animation-name: slideInRight;
  animation-delay: 600ms;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .slide-in {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.info {
  padding: 20px 0;
}

.info .content {
  max-width: 595px;
  margin: 80px 0;
}

.info .one {
  font-size: 20px;
}

.info .reveal {
  font-size: 40px;
  margin: 0;
  font-weight: 500;
}

.info .prehead {
  font-weight: 400;
}

.info .reveal span {
  display: inline-block;
  margin-right: 0.2em;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.services .grid {
  display: grid;
  gap: 20px;
  padding: 20px;
  margin: 120px 0;
  grid-template-columns: 1fr;
}

.services .grid .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.services .grid .item div,
.services .grid .item ul {
  flex-basis: 50%;
  flex: 1;
}

.services .grid .item div {
  text-align: center;
}

.services .grid .item h4 {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  position: relative;
  width: fit-content;
  display: inline-block;
  margin: 0;
}

.services .grid .item h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.services .grid .item h4:hover::after {
  transform: scaleX(1);
}

.services .grid .item li {
  font-weight: 400;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  list-style: none;
}

.services .grid .item li:hover {
    color:var(--lime);
}

.services .grid .item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services .grid .item.is-visible ul li {
  opacity: 1;
  transform: translateX(0);
}

.services .grid .item.is-visible li:nth-child(1) {
  transition-delay: 0.3s;
}

.services .grid .item.is-visible li:nth-child(2) {
  transition-delay: 0.4s;
}

.services .grid .item.is-visible li:nth-child(3) {
  transition-delay: 0.5s;
}

.services .grid .item.is-visible li:nth-child(4) {
  transition-delay: 0.6s;
}

.services .grid .item.is-visible li:nth-child(5) {
  transition-delay: 0.7s;
}

.services .grid .item:nth-child(2) {
  transition-delay: 0.1s;
}

.services .grid .item:nth-child(3) {
  transition-delay: 0.2s;
}

#growth-marketing {
  margin-bottom: 100px;
}

#growth-marketing .row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

#growth-marketing .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

#growth-marketing .col-md-6:first-child {
  height: 100px;
}

#growth-marketing h2 {
  font-weight: 400;
  font-size: 34px;
  position: absolute;
  left: 0;
  right: 0;
  line-height: 1;
  z-index: 1;
  margin: 0;
  width: 100%;
  overflow: hidden;
  padding-bottom: 10px;
}

#growth-marketing h2 span {
  display: block;
}

#growth-marketing h2 .text-left,
#growth-marketing h2 .text-right {
  display: block;
  opacity: 0;
}

#growth-marketing h2 .text-left {
  transform: translateX(-60px);
}

#growth-marketing h2 .text-right {
  left: 50%;
  width: fit-content;
  transform: translateX(calc(-50% + 60px));
  position: relative;
}

#growth-marketing h2.is-visible .text-left {
  animation: slideInLeft 0.8s ease forwards;
}

#growth-marketing h2.is-visible .text-right {
  animation: slideInRight50 0.8s ease forwards;
}

#growth-marketing h2.is-visible .text-right:nth-of-type(2) {
  animation-delay: 0.15s;
}

#growth-marketing h2.is-visible .text-right:nth-of-type(3) {
  animation-delay: 0.3s;
}

#growth-marketing h2.is-visible .text-right:nth-of-type(4) {
  animation-delay: 0.45s;
}

@keyframes slideInRight50 {
  to {
    opacity: 1;
    transform: translateX(-50%);
  }
}

#growth-marketing .img-fluid {
  width: 100%;
  height: auto;
}

#growth-marketing .ring-wrap {
  position: relative;
}

#growth-marketing .base-img {
  display: block;
  width: 100%;
  height: auto;
}

#growth-marketing #water-rings {
  position: absolute;
  left: 37%;
  top: 72%;
  transform: translate(-50%, -50%);
  width: 22%;
  aspect-ratio: 178 / 83;
}

#growth-marketing #water-rings svg {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  transform: translate(-50%, -50%);
}

#growth-marketing #water-rings #ring-1 {
  width: 100%;
}

#growth-marketing #water-rings #ring-2 {
  width: 74%;
}

#growth-marketing #water-rings #ring-3 {
  width: 35%;
}

.lower {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
  align-items: start;
}

.col-md-6,
.card,
.content.swiper {
  min-width: 0;
}

.content.swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.content .swiper-wrapper {
  align-items: flex-start;
}

.content .swiper-slide {
  width: 100%;
  flex-shrink: 0;
  min-width: 0;
  display: flex;
  gap: 0;
  align-items: flex-end;
  flex-wrap: wrap;
}

.content .swiper-slide p {
  max-width: 100%;
}

.card:first-child {
  margin-top: 20px;
}

.card:last-child {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card h2 {
  margin: 10px 0 60px;
  font-weight: 400;
  font-size: 40px;
}

.card p {
  margin: 0;
  line-height: 1.65;
  max-width: 520px;
  font-weight: 400;
  flex: 1;
}

.card p.big-typ {
  font-size: 67px;
  line-height: 50.473px;
  letter-spacing: 1.346px;
  max-width: 520px;
  margin: 0;
  font-weight: 400;
  word-break: keep-all;
  padding-bottom: 15px;
}

.arrows {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  font-size: 15px;
}

.arrow {
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid #737373;
  fill: #737373;
  color: #737373;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.arrow--active,
.arrow:hover {
  border-color: rgba(215, 229, 108, 0.85);
  color: var(--lime);
}

.pill {
  border: 1px solid var(--black);
  border-radius: 100px;
  padding: 15px 20px;
  font-family: var(--mono);
  font-size: 15px;
  background: rgba(255, 255, 255, 0);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.pill.wp-block-button,
.pill .wp-block-button__link {
  font-family: var(--mono);
  font-size: 15px;
}

.pill .wp-block-button__link {
  background: transparent;
  color: inherit;
  padding: 0;
}

.pill:hover,
.pill:focus {
  background-color: var(--black);
  color: var(--white);
}

.divider-row {
  margin-top: 160px;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  color: var(--white);
}

.friction .hl {
  color: var(--lime);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.friction {
  display: flex;
  align-items: center;
  gap: 0.2em;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 40px;
  text-align: center;
}

.word-viewport {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.35em;
  min-width: 5.25em;
  vertical-align: middle;
}

.word-stack {
  position: relative;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid var(--lime);
}

.word {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(100%);
  margin: 0;
  white-space: nowrap;
  opacity: 0;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms cubic-bezier(0.22, 1, 0.36, 1), color 700ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.word.active {
  transform: translate(-50%, -50%) translateY(0%);
  opacity: 1;
  filter: blur(0);
  color: var(--lime);
}

.word.prev {
  transform: translate(-50%, -50%) translateY(-100%);
  opacity: 0.25;
}

.word.next {
  transform: translate(-50%, -50%) translateY(100%);
  opacity: 0.25;
}

.word.far {
  opacity: 0;
}

.bullets {
  letter-spacing: 0.4px;
  font-weight: 400;
}

.bullets ul {
  margin: 40px 0;
  padding-left: 25px;
  line-height: 1.6;
}

.bullets .foot {
  margin-top: 10px;
  line-height: 1.6;
}

.contact {
  background: var(--lime);
  color: #000;
  padding: 100px 0 150px;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid!important;
  grid-template-columns: 1fr 1.75fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
}

.contact h3 {
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.05;
  font-size: 40px;
}

.contact p {
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 1.7;
  max-width: 340px;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form .full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 15px;
}

input,
textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--black);
  padding: 12px 20px;
  outline: none;
}

textarea {
  border-radius: 22px;
  min-height: 96px;
  resize: vertical;
}

.submit {
  justify-self: start;
  border-radius: 999px;
  border: 1px solid var(--black);
  padding: 10px 20px;
  background: transparent;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--black);
  text-transform: uppercase;
  cursor: pointer;
}

.submit:hover,
.submit:focus {
  background-color: var(--black);
  color: var(--white);
}

.contact p.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-weight: 700;
  color: #000;
  font-size: 145px;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
  max-width: 100%;
}

footer {
  background: var(--black);
  padding: 50px 0;
  color: var(--white);
  font-size: 14px;
}
footer.wp-block-template-part {
    display:none;
}
footer p {
  margin: 0;
}

.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: 0.28px;
}

.social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social a {
  font-size: 20px;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social a:hover,
.social a:focus {
  color: var(--white);
}

@media (min-width: 531px) {
  header.transparent {
    padding: 0 60px;
  }
}

@media (min-width: 599px) {
  .hero {
    padding: 90px 60px 40px;
  }

  .hero .border .scroll-note {
    top: 55%;
    right: 40px;
    font-size: 22px;
    display: block;
  }

  .hero .title {
    font-size: 154px;
  }

  .hero .octopus-wrapper .octopus {
    width: 100%;
    height: auto;
    max-width: 2000px;
  }
}

@media screen and (min-width: 768px) and (max-height: 999px) {
  .hero .octopus-wrapper .octopus {
    max-width: 1600px;
  }
}

@media (min-width: 768px) {
  .services .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #growth-marketing h2 {
    font-size: 99px;
  }

  #growth-marketing .col-md-6:first-child {
    height: 400px;
  }

  #growth-marketing .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .info-row,
  .headline,
  .lower,
  .divider-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 599px) {
  .content .swiper-slide {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .services {
    grid-template-columns: 1fr;
  }

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