* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

:root {
  --accentYellow: #ffed4a;
}

@font-face {
  font-family: "Replica LL";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/ReplicaLLWeb-Regular.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url(".fonts/ReplicaLLWeb-Regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
  font-family: "Replica LL";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/ReplicaLLWeb-Light.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("./fonts/ReplicaLLWeb-Light.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

body {
  font-family: "Replica LL", sans-serif;
  font-size: 18px;
  font-weight: 300;
}

p,
ul {
  letter-spacing: 0.015em;
}

h1 {
  font-size: 2.6667rem;
  margin-bottom: 1.555rem;
  line-height: 1.2em;
}

h2 {
  font-size: 1.333rem;
  line-height: 1.5em;
}

h3 {
  font-size: 1.5555rem;
  line-height: 1.2em;
}

.label {
  font-size: 0.7222rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4em;
  margin-bottom: 1em;
}

header,
section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 2.333rem 0;
  max-width: 100%;
}

header {
  background-color: var(--accentYellow);
  overflow: clip;
}

header svg {
  overflow: clip;
  position: absolute;
  z-index: 0;
  left: 100px;
  top: 100px;
  transform: translate(-50%, -50%);
}

header .content {
  display: flex;
  align-items: center;
  gap: 3.5555rem;
  z-index: 1;
}

header .left {
  flex-basis: 50%;
}

header .right {
  flex-basis: 50%;
  border-radius: 12px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6.5px);
  padding: 1rem 1.333rem;
}

header .right img {
  width: 100%;
}

.mockup.desktop {
  max-width: 556px;
}

.mockup.mobile {
  display: none;
}

.content {
  width: 100%;
  max-width: 1208px;
  margin: 0 2rem;
}

#why {
  padding: 3rem 0;
}

#why .content {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

#why .content h2 {
  flex-basis: 100%;
  font-size: 2.333rem;
}

#why .content .column {
  flex-basis: 30.5%;
}

#why .content .column .heading {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

#why .content .column .heading img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-right: 1.3rem;
}

#why .content .column ul li {
  margin-bottom: 1em;
  line-height: 1.4em;
  list-style-type: circle;
  margin-left: 0.5em;
}

span.accent {
  font-weight: 400;
}

section#cta {
  background-color: #000;
  color: #fff;
  flex-wrap: wrap;
}

section#cta .content img {
  max-width: 500px;
  object-fit: contain;
}

section#cta .content {
  display: flex;
  align-items: center;
}

section#cta .content .link {
  color: var(--accentYellow);
  text-decoration: none;
  font-weight: 400;
  border-bottom: 0.5px solid var(--accentYellow);
}

section#cta .content h3 {
  font-size: 2.333rem;
  margin-bottom: 0.5em;
  line-height: 1.2em;
}

section#cta .content .left,
section#cta .content .right {
  flex-basis: 50%;
}

section#cta .content .left img {
  width: 100%;
}

section#cta .content p {
  margin-bottom: 1em;
  line-height: 1.4em;
}

section#cta .button {
  display: inline-block;
  background-color: var(--accentYellow);
  color: #000;
  text-decoration: none;
  font-weight: 400;
  padding: 0.8rem 1.2rem;
  border-radius: 2px;
  margin-top: 0.5rem;
}

section#cta .button:hover {
  text-decoration: underline;
}

@keyframes fade {
  from {
    opacity: 0.2;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.01);
  }
}

circle {
  transform-origin: 50% 50%;
}

#one {
  animation: fade 400ms infinite alternate;
}

#two {
  animation: fade 400ms 200ms infinite alternate;
}

#three {
  animation: fade 400ms 400ms infinite alternate;
}

#four {
  animation: fade 400ms 600ms infinite alternate;
}

#five {
  animation: fade 400ms 800ms infinite alternate;
}

#six {
  animation: fade 400ms 1000ms infinite alternate;
}

#seven {
  animation: fade 600ms 1200ms infinite alternate;
}

#eight {
  animation: fade 600ms 1400ms infinite alternate;
}

@media (max-width: 1000px) {
  header .content {
    flex-direction: column;
    padding-top: 100px;
  }
  #why .content .column {
    flex-basis: 48%;
  }
  #cta .content {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  header svg {
    left: 60px;
  }

  .mobileHide {
    display: none;
  }

  header .right {
    padding: 0;
    background: none;
    border: none;
  }

  .mockup.desktop {
    display: none;
  }

  .mockup.mobile {
    display: block;
  }

  .content {
    margin: 0 1rem;
    max-width: 100%;
  }

  header .content {
    flex-direction: column;
  }
  #why .content .column:first-child {
    border: none;
    padding-top: 0;
  }
  #why .content .column {
    flex-basis: 100%;
    border-top: 1px solid #ccc;
    padding-top: 3rem;
  }

  #cta .content {
    flex-direction: column;
  }
  .button {
    width: 100%;
    text-align: center;
  }
}
