@charset "UTF-8";
* {
  box-sizing: border-box;
  text-wrap: pretty;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  font-size: max(0.9vw, 16px);
}

:root {
  --font-family: "Akzidenz Grotesk BQ Medium", -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-family);
  line-height: 1.34;
}

section {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
}

h3 {
  font-weight: 500;
  margin: 2rem 0 3rem;
}

:root {
  --button-border-color: rgba(0, 0, 0, .3);
  --button-hover-border-color: rgba(0, 0, 0, .5);
  --button-bg-color: rgba(255, 255, 255, 1);
  --border-color: rgba(0, 0, 0, .25);
  --border-radius-small: .5rem;
  --border-radius-medium: 1rem;
  --button-hover-color: #f9f9f9;
  --hover-border-color: rgba(0, 0, 0, .5);
  --box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
  --box-shadow-small: .1rem .1rem 2px rgba(0, 0, 0, .1);
  --box-shadow-small-hover: .125rem .125rem .5rem rgba(0, 0, 0, .1);
  --screenshot-scale: 1;
}

.buttons {
  display: flex;
  gap: 0.5rem;
}

.button {
  font-size: 0.875rem;
  border: 1px solid var(--button-border-color);
  border-radius: var(--border-radius-small);
  padding: 0.5rem 0.75rem;
  line-height: 1;
  cursor: pointer;
  background: var(--button-bg-color);
  color: #000;
  font-weight: 500;
  transition: 0.1s all;
  box-shadow: var(--box-shadow-small);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.button:hover {
  border-color: var(--button-hover-border-color);
  box-shadow: var(--box-shadow-small-hover);
  transform: scale(1.03);
}
.button.disabled {
  opacity: 0.5;
  cursor: default;
}
.button.disabled:hover {
  border-color: var(--button-border-color);
  box-shadow: var(--box-shadow-small);
  transform: initial;
}
.button.size-small {
  padding: 0.33rem 0.5rem;
  font-size: 0.75rem;
  gap: 0.25rem;
}
.button.primary {
  border: 1px solid transparent !important;
  position: relative;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, #50d365, #304ffe) border-box;
}
.button:active {
  transform: scale(0.98);
  box-shadow: none;
  transition: 0.07s all;
}
.button .buttonIcon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.button .buttonIcon svg, .button .buttonIcon img {
  width: 1rem;
  height: 1rem;
}
.button .content {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
}
.button .price {
  opacity: 0.5;
}

@keyframes fadeInSlideDown {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header {
  position: fixed;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 75rem;
  border-radius: 1rem;
  z-index: 1000;
  background: #fff;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
  font-weight: 500;
  justify-content: space-between;
}
header .hamburger-toggle-wrapper, header .menu-toggle-checkbox {
  display: none;
}
header .main-nav-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
header ul {
  display: flex;
  list-style: none;
  width: 100%;
  justify-content: right;
  margin: 0;
  padding: 0;
  align-items: center;
  position: static;
}
header ul img.chevron-down {
  width: 1rem;
  height: 1rem;
  transition: 0.1s all;
  transform: rotate(0deg);
  opacity: 0.5;
  position: relative;
}
@media screen and (max-width: 768px) {
  header ul img.chevron-down {
    display: none;
  }
}
header ul li {
  font-size: 0.875rem;
  margin: 0;
  padding: 0.75rem 0;
}
header ul li:hover img.chevron-down {
  transform: rotate(-90deg);
}
header ul li:hover ul {
  display: block;
  animation: fadeInSlideDown 0.2s ease-in-out;
}
header ul li ul {
  min-width: 20rem;
  max-width: 20rem;
  position: absolute;
  flex-direction: column;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  gap: 0;
  overflow: hidden;
  display: none;
  z-index: 1001;
  padding: 0.25rem;
}
header ul li ul li {
  width: 100%;
  padding: 0;
}
header ul li ul li a {
  display: block;
  padding: 0.75rem 1rem;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header ul li ul li a:hover {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.05);
}
header ul li ul li:last-child a {
  border-bottom: 0;
}
header a {
  text-decoration: none;
  border: 0 !important;
  padding: 0.4rem 0.7rem;
  border-radius: var(--border-radius-small);
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
header a:hover {
  background: rgba(0, 0, 0, 0.05);
}
header img {
  width: 1.5rem;
  transition: 0.1s all;
}
header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0;
  flex-shrink: 0;
}
header .logo:hover {
  background: none;
}
header .logo:hover img {
  transform: scale(1.1);
}

.landing .background {
  width: 50%;
  height: 100%;
  overflow: hidden;
  flex: 0 0 auto;
  position: relative;
  cursor: pointer;
}
.landing .background #new-designs {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  transition: 0.1s all;
  opacity: 0;
}
.landing .background #new-designs:hover {
  transform: translateX(-50%) scale(1.03);
}
.landing .background #new-designs.hidden {
  display: none;
}
.landing .background:hover #new-designs {
  opacity: 1;
}
.landing .hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5rem;
  position: relative;
}
.landing .hero h1 {
  font-size: 2.5rem;
}
.landing .hero .caret-down {
  position: absolute;
  bottom: 1.75rem;
  opacity: 0.45;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  user-select: none;
  font-weight: 500;
}
.landing .hero .caret-down img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}
.landing .logo {
  display: flex;
  align-height: center;
  margin-bottom: 4rem;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -1px;
  cursor: default;
}
.landing img {
  height: 3rem;
  margin-right: 1rem;
}
.landing .cta {
  margin-top: 4rem;
}
.landing .cta p {
  font-size: 0.875rem;
  opacity: 0.5;
}

.waitlist {
  display: flex;
  margin-top: 4rem;
}

input {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-right: 0.5rem;
  font-size: 1rem;
  width: 20rem;
  font-family: var(--font-family);
}

ul li {
  margin-bottom: 0.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}
a:hover {
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}

.tag.partly {
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

@property --color1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #72bbff;
}
@property --color2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #ffffff;
}
@property --gradient-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 45deg;
}
.design {
  --color1:#ffffff;
  --color2:#ffffff;
  --gradient-angle:45deg;
  height: 100%;
  position: relative;
  transition: --color1 0.4s, --color2 0.4s, --gradient-angle 0.4s;
  background: linear-gradient(var(--gradient-angle), var(--color1), var(--color2));
}

.circle {
  width: 300px;
  height: 300px;
  background: radial-gradient(transparent, rgba(255, 255, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 120px;
  left: -10px;
  transition: 0.4s all;
  mix-blend-mode: normal;
}

.video {
  width: 64rem;
  margin: -5rem auto 0;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 100;
  position: relative;
  padding: 1rem;
  background: white;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #dedede;
  border-radius: 0.5rem;
}
.video .thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #dedede;
  border-radius: 0.5rem;
}
.video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  width: 100px;
  height: 100px;
  cursor: pointer;
  transition: 0.1s all;
  z-index: 10;
}
.video .play img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video .play:hover {
  transform: translate(-50%, 20%) scale(1.05);
}

.subheader {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: #fefefe;
  display: inline-block;
}

.problem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  height: auto;
  padding: 10rem 0;
}
.problem h2 {
  font-size: 2rem;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.features {
  background: linear-gradient(55deg, #dcdcdc 30%, #fff 60%, #dcdcdc 90%);
  display: block;
  height: auto;
  position: relative;
  overflow: visible;
}

.feature-desc {
  opacity: 0.5;
  font-weight: 300;
  padding-top: 0.75rem;
}

.features .usps {
  margin: 0;
  width: 50%;
  height: 100vh;
  background: white;
  flex: 0 0 auto;
  text-align: right;
  padding-top: calc(8rem + 60px);
  position: sticky;
  top: 0;
  float: left;
}
.features .usps h3 {
  padding-right: 3rem;
  margin-bottom: 5rem;
  font-size: 2rem;
}
.features .usps h2 {
  padding: 0 3rem 3rem 5rem;
}
.features .usps ul {
  list-style: none;
  padding: 0;
  overflow: hidden;
}
.features .usps ul li {
  margin: 0;
}
.features .usps ul li a {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  padding: 1rem 3rem 1rem;
  transition: 0.1s all;
  position: relative;
}
.features .usps ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -0.25rem;
  right: 1rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.1);
  transition: 0.1s all;
}
.features .usps ul li.selected a {
  font-weight: 600;
}
.features .usps ul li.selected a::before {
  background: lime;
  animation: pop 0.2s;
}
.features .usps ul li a:hover {
  background: rgba(0, 0, 0, 0.05);
}
.features .usps > div {
  width: 100%;
}

.explainer {
  padding: 5rem 3rem 0;
  flex: 1;
  text-align: center;
  padding-left: calc(50% + 3rem);
}
.explainer > div {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.explainer > div.selected {
  display: block;
}
.explainer h3 {
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin: 0;
}
.explainer .video {
  max-width: 90%;
  height: 320px;
  max-width: 90%;
  background: #fff;
  margin: 2rem auto;
  border-radius: 0.5rem;
}

@keyframes imageZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.4);
  }
}
.image {
  align-items: center;
}
.image .img {
  width: 50%;
  flex: 0 0 auto;
}
.image img {
  max-width: 100%;
}
.image .text {
  display: flex;
  width: 50%;
  height: 100%;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 2rem;
  background: #fff;
  z-index: 1;
}
.image .text .author {
  display: block;
  text-align: right;
  font-size: 1rem;
  opacity: 0.5;
  margin-top: 0.5rem;
  padding-right: 1rem;
}
.image .text .note {
  display: block;
  text-align: right;
  font-size: 0.875rem;
  opacity: 0.3;
  margin-top: 0.5rem;
  padding-right: 1rem;
}

.flex-wrapper {
  display: flex;
  padding-top: 1rem;
  gap: 6rem;
  align-items: center;
}
.flex-wrapper .testimonial {
  width: 24rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 3rem 2rem;
  border-radius: 1rem;
}
.flex-wrapper .testimonial .quote {
  font-weight: 500;
}
.flex-wrapper .testimonial a {
  border: none;
  font-weight: 500;
}
.flex-wrapper .testimonial a:hover {
  text-decoration: underline;
}
.flex-wrapper .testimonial .name {
  font-size: 0.875rem;
  opacity: 0.5;
}
.flex-wrapper .testimonial > img {
  border-radius: 50%;
  border: 0.25rem solid rgba(255, 255, 255, 0.5);
  width: 8rem;
}

.pricing {
  background: linear-gradient(var(--gradient-angle), var(--color1), var(--color2));
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: --color1 0.4s, --color2 0.4s, --gradient-angle 0.4s;
  text-align: center;
}
.pricing .price {
  margin: 0 0 3rem;
}
.pricing .price span {
  font-size: 4rem;
  display: block;
  font-weight: 600;
}
.pricing .commercials h3 {
  text-align: left;
  margin: 0 0 1rem;
}
.pricing .feature-checklist {
  text-align: left;
  line-height: 1.8;
}
.pricing .feature-checklist .note {
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  margin-left: 0.25rem;
  white-space: nowrap;
}
.pricing .cta {
  margin-top: 3rem;
}
.pricing .cta p {
  font-size: 0.875rem;
  opacity: 0.5;
  text-align: left;
}

footer {
  padding: 3rem 0 20rem;
}
footer .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  justify-content: center;
}
footer .wrapper .block {
  max-width: 14rem;
}
footer .links {
  display: flex;
  gap: 2rem;
}
footer h3 {
  margin: 0;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer .emojis {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.25rem;
}
footer .bubbles {
  position: relative;
  width: 640px;
  margin: 3rem auto 0;
  text-align: center;
  padding-top: 16rem;
}
footer .bubbles .bubble {
  width: 250px;
  height: 250px;
  top: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: radial-gradient(transparent, rgba(0, 0, 0, 0.2));
  position: absolute;
}
footer .bubbles .bubble:nth-of-type(1) {
  width: 500px;
  height: 500px;
  left: 70px;
  top: 20px;
}
footer .bubbles h3 {
  font-size: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem;
}
table td, table th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  text-align: left;
}

article {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 0;
  line-height: 1.6;
}
article h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 6rem;
}
article h2 {
  margin-top: 3rem;
}
article h3 {
  margin-bottom: 1rem;
}
article .article-logo {
  width: 3rem;
  display: block;
  margin: 0 auto 1rem;
}

article.blog-post {
  padding: 2rem 0.5rem;
}
article.blog-post .date-author {
  font-size: 0.875rem;
  opacity: 0.5;
  margin-bottom: 2rem;
}

.blog-post-title {
  padding: 12rem 0 9rem;
  text-align: center;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.blog-post-title::before, .blog-post-title::after {
  content: "";
  display: block;
  width: 300px;
  height: 300px;
  background: radial-gradient(transparent, rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.blog-post-title::after {
  width: 500px;
  height: 500px;
  top: 20px;
  left: 20px;
}
.blog-post-title .description {
  max-width: 800px;
  display: block;
  margin: 0 auto;
}

.blog-post-cta {
  padding: 3rem 0 5rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.blog-post-cta h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.blog-index {
  width: 80%;
  max-width: none;
}
.blog-index ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.blog-index ul li {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  width: 33%;
}
.blog-index ul li .title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.blog-index ul li .image {
  width: 100%;
  height: 200px;
  background: #f0f0f0;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.table-wrapper {
  overflow-x: auto;
  width: 100%;
  margin-bottom: 3rem;
}

.comparison-table {
  margin: 0;
  font-size: 0.875rem;
}
.comparison-table tr td:first-child, .comparison-table tr th:first-child {
  text-align: right;
  font-weight: 500;
  border-right: 2px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .comparison-table tr td:first-child, .comparison-table tr th:first-child {
    min-width: 0;
  }
}
.comparison-table td, .comparison-table th {
  padding: 1rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 12rem;
}
.comparison-table th {
  white-space: nowrap;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.comparison-table tr:nth-child(odd) td {
  background: #f7f7f7;
}

.comparison-table tr:first-child th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 2;
}
.comparison-table td:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  background-color: #fff;
  z-index: 1;
}
.comparison-table tr:first-child th:first-child {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 3;
}

.comparison-wrapper .filters {
  margin: 0 0 1rem;
  padding-top: 1rem;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .comparison-wrapper .filters {
    flex-direction: column;
  }
}
.comparison-wrapper .filters .filter {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0 0.5rem;
  line-height: 2rem;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.comparison-wrapper .filters .filter label {
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
}
.comparison-wrapper .filters .filter input {
  width: auto;
  transform: translate(2px, 2px);
}
.comparison-wrapper .filters .filter select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  padding: 0.25rem;
  line-height: 2rem;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 0.75rem;
}
.comparison-wrapper .tool-count-display {
  font-size: 0.75rem;
  margin: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.feature-deep-dive {
  background: rgba(0, 0, 0, 0.025);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

article.blog-post {
  position: relative;
}

.table-of-contents {
  position: fixed;
  top: 0;
  transform: translateX(-100%);
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-only {
  display: none;
}

/* mobile */
@media (max-width: 768px) {
  .mobile-only {
    display: block;
    text-align: center;
  }
  .mobile-only .subheader {
    margin: 2rem 0 1rem !important;
  }
  section {
    height: auto;
  }
  header {
    width: 100%;
    border-radius: 0 !important;
    top: 0;
    left: 0;
    transform: none;
    padding: 0.5rem 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    gap: 0.5rem;
  }
  header .logo {
    margin-right: auto;
    z-index: 1002;
  }
  header .hamburger-toggle-wrapper {
    display: block;
    order: 1;
  }
  header .hamburger-toggle-wrapper label.hamburger-menu {
    display: inline-block;
    cursor: pointer;
    padding: 10px;
    position: relative;
    width: 40px;
    height: 40px;
    transform: scale(0.75) translateY(0.2rem);
  }
  header .hamburger-toggle-wrapper label.hamburger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 70%;
    background: #333;
    border-radius: 3px;
    opacity: 1;
    left: 15%;
    transition: 0.25s ease-in-out;
  }
  header .hamburger-toggle-wrapper label.hamburger-menu span:nth-child(1) {
    top: 25%;
  }
  header .hamburger-toggle-wrapper label.hamburger-menu span:nth-child(2) {
    top: 48%;
  }
  header .hamburger-toggle-wrapper label.hamburger-menu span:nth-child(3) {
    top: 71%;
  }
  header .menu-toggle-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    order: 2;
  }
  header .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow-y: auto;
    transition: max-height 0.2s ease-out;
    order: 4;
  }
  header .main-nav ul {
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0;
    gap: 0;
  }
  header .main-nav ul li {
    width: 100%;
    padding: 0;
    text-align: left;
  }
  header .main-nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
  }
  header .main-nav ul li ul {
    position: static !important;
    animation: none !important;
    display: block;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0;
    background: #f9f9f9;
    max-width: none;
    min-width: auto;
    border-radius: 0;
    overflow: hidden;
  }
  header .main-nav ul li ul li a {
    padding: 0.75rem 0.5rem 0.75rem 2rem;
    border-bottom: none;
    font-size: 0.875rem;
  }
  header .main-nav ul li ul li a:active {
    transform: none !important;
  }
  header .main-nav ul li:last-child a {
    border-bottom: none;
  }
  header .menu-toggle-checkbox:checked ~ .main-nav-container .main-nav {
    max-height: calc(100vh - 60px);
  }
  header .menu-toggle-checkbox:checked ~ .hamburger-toggle-wrapper label.hamburger-menu span:nth-child(1) {
    top: 48%;
    transform: rotate(135deg);
  }
  header .menu-toggle-checkbox:checked ~ .hamburger-toggle-wrapper label.hamburger-menu span:nth-child(2) {
    opacity: 0;
  }
  header .menu-toggle-checkbox:checked ~ .hamburger-toggle-wrapper label.hamburger-menu span:nth-child(3) {
    top: 48%;
    transform: rotate(-135deg);
  }
  header .start-now-button {
    order: 3;
    margin-left: 0.5rem;
    white-space: nowrap;
  }
  header li:nth-of-type(3) {
    display: list-item;
  }
  .landing {
    padding-top: calc(5.5rem + 20px);
  }
  .landing .background, .landing #new-designs {
    display: none;
  }
  .landing .hero {
    padding: 0 1rem;
  }
  .landing .hero h1 {
    font-size: 2rem;
  }
  .landing .hero .caret-down, .landing .hero .usps {
    display: none;
  }
  .landing .cta {
    margin: 2rem 0;
  }
  .landing .logo {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .landing .waitlist {
    flex-direction: column;
  }
  .landing .waitlist input {
    width: 100%;
    margin-bottom: 1rem;
  }
  .features > h3 {
    margin: 0;
    background: linear-gradient(0deg, transparent, white);
    text-align: center;
    font-size: 1.75rem;
    padding: 6rem 0 4rem;
    margin-bottom: -2rem;
  }
  .features .usps {
    display: none;
  }
  .features-explained {
    flex-direction: column;
    justify-content: flex-start;
  }
  .explainer {
    padding: 0 1rem;
  }
  .explainer > div {
    height: auto;
    padding: 3.5rem 0 0;
  }
  .image .img {
    width: 100%;
  }
  .image .text {
    align-items: flex-end;
    font-size: 4.5rem;
    line-height: 4.5rem;
    background: none;
    width: 100%;
    color: white;
    position: absolute;
    padding: 0 1rem;
  }
  .pricing {
    padding: 6rem 0;
  }
  .pricing .commercials {
    padding: 0 0.5rem;
    font-size: 0.875rem;
  }
  .pricing .testimonial {
    width: calc(100% - 1rem);
    margin: 0 0.5rem;
  }
  .pricing .price span {
    font-size: 2rem;
  }
  .pricing .waitlist {
    flex-wrap: wrap;
  }
  .pricing .waitlist input {
    width: 100%;
    margin-bottom: 1rem;
  }
  footer {
    padding: 2rem 1rem;
  }
  footer .wrapper {
    flex-direction: column;
    gap: 2rem;
    flex-wrap: wrap;
  }
  footer .wrapper .block {
    max-width: none;
  }
  footer .bubbles {
    width: 100%;
    padding: 10rem 0;
  }
  footer .bubbles .bubble {
    width: 150px;
    height: 150px;
  }
  footer .bubbles .bubble:nth-of-type(1) {
    width: 300px;
    height: 300px;
    left: 20px;
    top: 10px;
  }
  footer h3 {
    font-size: 1.25rem;
  }
  .video {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .video .thumbnail {
    width: 100%;
  }
  .problem {
    padding: 4rem 0;
  }
  .problem h2 {
    font-size: 1.5rem;
    padding: 0 1rem;
    text-align: center;
  }
  .blog-index ul li {
    width: 100%;
    flex: 0 0 auto;
  }
  .pricing .flex-wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.value-props {
  height: auto;
  flex-direction: column;
  padding: 4rem 0;
  gap: 2rem;
}
@media (max-width: 768px) {
  .value-props {
    padding: 2rem 0;
  }
}
.value-props .value-prop {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  /* breakpoint for mobile */
}
@media (max-width: 768px) {
  .value-props .value-prop {
    flex-wrap: wrap;
    flex-direction: column-reverse !important;
    gap: 1rem;
    align-items: flex-start;
  }
}
.value-props .value-prop .image {
  width: 30rem;
  height: 20rem;
  background: #f0f0f0;
}
.value-props .value-prop:nth-child(odd) {
  flex-direction: row-reverse;
}
.value-props .value-prop .text-content {
  width: 40%;
}
@media (max-width: 768px) {
  .value-props .value-prop .text-content {
    width: 100%;
    padding: 0 1rem;
  }
}
.value-props .value-prop .text-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.value-props .value-prop .text-content p {
  font-size: 1rem;
}

@keyframes demo-bubble-appear {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.screenshot {
  position: relative;
  width: 90%;
  margin: 3rem auto;
  background: linear-gradient(45deg, rgb(255, 255, 255), transparent);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screenshot video {
  width: 100%;
  margin: 0;
}

.demo-bubble {
  width: 14rem;
  min-height: 4rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  position: absolute;
  text-align: left;
}
.demo-bubble span.tag {
  color: #3389df;
  font-weight: 500;
}
.demo-bubble.demo-bubble-appear {
  animation: demo-bubble-appear 0.3s cubic-bezier(0.42, 0, 0.43, 1.46) forwards;
}
.demo-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.demo-bubble:nth-of-type(1) {
  top: 2rem;
  left: 3rem;
}
.demo-bubble.empty-bubble {
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
  opacity: 0;
}
.demo-bubble.picture-bubble {
  padding: 0;
  left: 40%;
  top: 6rem;
  width: 16rem;
}
.demo-bubble.user-active .active-user {
  display: none;
}

.screenshot.share-workspaces .user-active {
  border-color: #21897E !important;
}
.screenshot.share-workspaces .user-active .active-user {
  position: absolute;
  display: block;
  top: 0;
  right: 1rem;
  background: #21897E;
  color: white;
  padding: 0.25rem 0.5rem;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  transform: translateY(-100%);
}

.screenshot.ai-tools {
  border: 0;
  background: none;
}
.screenshot.ai-tools .buttons {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.screenshot.ai-tools img {
  width: 100%;
}

.bubble-list {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: -1px 0 1rem rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 1rem;
  transform: translateX(110%);
  transition: 0.5s all;
  transition-delay: 1s;
}
.bubble-list.visible {
  transform: translateX(0);
}
.bubble-list .bubbles-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bubble-list .header {
  margin: -0.25rem 0 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
}
.bubble-list h4 {
  margin: 0.25rem 0;
}
.bubble-list ul {
  padding-left: 1rem;
}
.bubble-list .demo-bubble {
  position: relative;
  top: auto;
  left: auto;
  transition: 0.1s all;
}
.bubble-list .demo-bubble.full-bubble {
  width: 30rem;
  height: 30rem;
  border-radius: 0;
  border: 0;
  padding: 2rem 5rem;
  margin: -2.5rem -1rem -1rem;
}
.bubble-list .demo-bubble.full-bubble::after {
  content: "✖";
  font-size: 1rem;
  position: absolute;
  top: 2rem;
  right: 4rem;
  opacity: 0.5;
}

.cursor {
  position: absolute;
  top: 30%;
  left: 30%;
  width: 1rem;
  height: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  z-index: 10;
}
.cursor.visible {
  animation: cursor-animation 8s forwards;
}

@keyframes cursor-animation {
  10% {
    top: 2.2rem;
    left: 6rem;
    background: rgba(0, 0, 0, 0.3);
  }
  13% {
    background: lime;
  }
  17% {
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
  }
  30% {
    top: 4rem;
    left: 5rem;
    opacity: 0;
  }
  47% {
    top: 15%;
    left: 70%;
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
  }
  50% {
    background: lime;
  }
  51% {
    background: rgba(0, 0, 0, 0.3);
    top: 15%;
    left: 70%;
  }
  55% {
    opacity: 0;
  }
  60% {
    top: 10rem;
    left: 20rem;
  }
  80% {
    opacity: 0;
  }
  95% {
    top: 2rem;
    left: 25rem;
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
  }
  97% {
    background: lime;
  }
  99% {
    background: rgba(0, 0, 0, 0.3);
  }
  100% {
    top: 2rem;
    left: 25rem;
    opacity: 0;
  }
}