@font-face {
  font-family: Inter;
  src: url('../fonts/inter-v12-latin-regular.woff2') format("woff2"), url('../fonts/inter-v12-latin-regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/inter-v12-latin-500.woff2') format("woff2"), url('../fonts/inter-v12-latin-500.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/inter-v12-latin-600.woff2') format("woff2"), url('../fonts/inter-v12-latin-600.woff') format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #f7f8f8;
  --text-secondary: #b4bcd0;
  --primary: var(--purple);
  --dark: #111110;
  --dark-gray: #27272a;
  --purple: #4f39f6;
  --gray: #a1a1aa;
}

body {
  color: var(--white);
  background-color: #000212;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.page-wrapper {
  width: 100%;
  overflow: hidden;
}

.main {
  margin-top: 200px;
}

.nav {
  z-index: 999;
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  background-color: #ffffff05;
  border: 1px solid #ffffff1c;
  border-radius: 20px;
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  position: fixed;
  inset: 20px 0 auto;
}

.page-padding {
  padding-left: 32px;
  padding-right: 32px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container.faq {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-menu-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu, .nav-btns {
  align-items: center;
  display: flex;
}

.hero {
  margin-top: 200px;
  margin-bottom: -164px;
}

.hero-header {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-heading {
  letter-spacing: -.05em;
  margin-bottom: 24px;
  padding-bottom: .13em;
  padding-left: .13em;
  padding-right: .13em;
  font-size: 78px;
  font-weight: 500;
  line-height: 1;
}

.regular-text {
  color: var(--text-secondary);
  letter-spacing: -.025em;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.regular-text.subheading--hero {
  max-width: 580px;
}

.cta-button {
  grid-column-gap: 8px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  text-shadow: 0 3px 8px #00000040;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 500;
  text-decoration: none;
  transition: text-shadow .12s, box-shadow .12s;
  display: flex;
}

.cta-button:hover {
  text-shadow: 0 3px 12px #0000008f;
  box-shadow: 0 1px 40px #503fcd80;
}

.cta-button.cta-button--nav {  
  margin-left: 16px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
}

.svg-embed {
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-img-target {
  transform-style: preserve-3d;
  grid-template: "Area"
  / 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 650px;
  display: grid;
  position: relative;
  transform: rotateX(28deg)rotateY(0)rotateZ(0);
}

.hero-img {
  z-index: 1;
  opacity: 0;
  border-radius: 30px;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  position: relative;
}

.hero-img-blur {
  opacity: 0;
  filter: blur(100px);
  background-color: #4f39f6;
}

.hero-img-lines {
  justify-content: center;
  align-items: center;
  display: flex;
  transform: translate(0);
}

.hero-img-wrap {
  perspective: 2000px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 220px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.nav-logo {
  align-items: center;
  font-weight: 600;
  display: flex;
}

.nav-favicon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.nav-link {
  text-shadow: 0 1px 4px #0000004d;
  align-items: center;
  height: 48px;
  margin-left: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 48px;
  transition: color .25s;
  display: flex;
}

.nav-link:hover {
  color: #8a8f98;
}

.hero-img-bg {
  border-radius: 30px;
  position: relative;
  inset: 0%;
}

.custom-css {
  display: none;
}

.section-highlights {
  z-index: 10;
  text-align: center;
  position: relative;
}

.section-header {
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  text-align: center;
}

.dock-wrapper {
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  text-align: center;
}

.heading-medium {
  letter-spacing: -.04em;
  margin-bottom: 20px;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
}

.highlights-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.highlights-card {
  background-color: #161616;
  border-radius: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow: hidden;
}

.animations-css {
  display: none;
}

.section-cta {
  text-align: center;
  margin-top: 220px;
  padding-bottom: 128px;
}

.cta-heading {
  letter-spacing: -.04em;
  margin-top: 60px; 
  padding: .13em;
  font-size: 80px;
  font-weight: 400;
  line-height: .9;
}

.body {
  background-color: var(--dark);
}

.logo {
  margin-bottom: 30px;
}

.download-container {
  flex-flow: column;
  margin-bottom: 10px;
  display: flex;
}

.download-btn.cta-button {
  margin-top: 40px;
  margin-bottom: 20px;
}

.all-downloads {
  margin-left: 5px;
  font-size: 14px;
}

.div-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.platform-icon {
  margin-left: 4px;
  margin-right: 4px;
}

.footer {
  margin-bottom: 60px;
}

.animate-heartbeat {
  margin-left: 10px;
  margin-right: 10px;
}

.div-block-4 {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.div-block-5 {
  color: #a4f4cf;
  background-color: #002c22;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.image-2 {
  margin-right: 10px;
}

.paragraph {
  color: var(--text-secondary);
}

.text-span {
  color: var(--white);
}

.column {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button {
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 15px;
  display: flex;
}

.button.dark-gray {
  background-color: var(--dark-gray);
}

.column-2 {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.columns {
  border-bottom: 1px solid var(--dark-gray);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.section-faq {
  z-index: 10;
  text-align: center;
  margin-top: 140px;
  position: relative;
}

.faq-answer-text {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--dark-gray);
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
}

.faq-q-text {
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.faq-plus {
  background-color: var(--white);
  border-radius: 3px;
  width: 100%;
  height: 3px;
}

.faq-answer {
  border-bottom: 1px solid #2d3e501f;
  padding-left: 45px;
  overflow: hidden;
}

.faq-plus-wrap {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-right: 25px;
  display: flex;
  position: relative;
}

.link {
  color: #2aa8ff;
  font-weight: 600;
}

.faq-plus-l {
  background-color: var(--white);
  border-radius: 3px;
  width: 3px;
  height: 100%;
  position: absolute;
}

.faq-question {
  cursor: pointer;
  align-items: center;
  height: 90px;
  font-size: 22px;
  font-weight: 800;
  display: flex;
}

.faq-wrapper {
  width: 100%;
  max-width: 720px;
  margin-top: 60px;
}

.headline-h3 {
  font-size: 20px;
  font-weight: 600;
}

.list {
  margin-top: 20px;
  margin-bottom: 50px;
  margin-left: 0px;
  padding-left: 20px;
  list-style-type: disc;
}

.section-content {
  max-width: 700px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.section-content.changelog {
  border-bottom: 1px solid var(--dark-gray);
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.checkmark {
  background-color: #002c22;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  display: flex;
}

.checkmark-icon {
  width: 50%;
  height: 50%;
}

.copied-text {
  font-size: 14px;
  display: none;
}

.copy-to-clipboard-text {
  font-size: 14px;
}

.highlight-card-wrapper {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 40px;
  display: flex;
  position: relative;
}

.small-text {
  color: var(--text-secondary);
  letter-spacing: -.025em;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.small-text.mt-10 {
  margin-top: 5px;
}

.lottie-animation-2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.apple-logo {
  padding-left: 3px;
  padding-right: 3px;
}

.box-icon {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 50px;
  display: flex;
}

.windows-logo, .linux-logo {
  padding-left: 3px;
  padding-right: 3px;
}

.free-badge {
  color: #a4f4cf;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #002c22;
  border-radius: 6px;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 600;
}

.image-4 {
  height: 46px;
}

.lottie-animation-3 {
  opacity: .3;
  width: 700px;
  margin-top: 100px;
  position: absolute;
}

.list-item {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20-copy {
  margin-right: 20px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.absolute {
  position: absolute;
}

@media screen and (max-width: 991px) {
  .hero-header {
    max-width: 690px;
  }

  .hero-heading {
    font-size: 68px;
  }

  .hero-img {
    z-index: 4;
  }

  .hero-img-blur {
    filter: blur(80px);
  }

  .highlights-wrap {
    grid-column-gap: 12px;
    flex-flow: column;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    overflow: auto;
  }

  .highlights-card {
    min-width: 100%;
    height: auto;
    min-height: 420px;
    padding: 32px;
  }

  .cta-heading {
    font-size: 72px;
  }
}

@media screen and (max-width: 767px) {
  .page-padding {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-header {
    max-width: 570px;
  }

  .hero-heading {
    font-size: 56px;
  }

  .regular-text {
    font-size: 18px;
  }

  .hero-img-target {
    margin-top: 80px;
  }

  .hero-img-wrap {
    padding-bottom: 256px;
  }

  .nav-link {
    display: none;
  }

  .nav-link.nav-link--log-in {
    display: flex;
  }

  .heading-medium {
    font-size: 50px;
  }

  .cta-heading {
    font-size: 52px;
  }

  .small-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 479px) {
  .hero-header {
    max-width: 420px;
  }

  .hero-heading {
    font-size: 44px;
  }

  .hero-img-target {
    margin-top: 72px;
  }

  .hero-img, .hero-img-bg {
    border-radius: 2px;
  }

  .heading-medium {
    margin-bottom: 18px;
    font-size: 36px;
  }

  .cta-heading {
    font-size: 38px;
  }
}

#w-node-_2548d445-5cac-d907-4cc4-e0e179a3c909-b5ab8997, #w-node-e5f17ebd-e03a-b780-1243-8d064c472342-b5ab8997, #w-node-_6f428898-e82f-266b-c4c2-ad14c706aaf7-b5ab8997, #w-node-_76e33c5a-9def-c984-8b4d-095f3f0ecdb2-b5ab8997 {
  grid-area: Area;
}

#w-node-_8eee35df-ad3d-02c4-63b6-4e63ab5fde44-b5ab8997 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f90bbaf5-7be7-e276-9a51-f5d1a05c32fe-b5ab8997 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_034c70b5-52e0-92db-2718-a55361774349-b5ab8997, #w-node-_441f36cd-5b64-9b76-e4ed-a8de5c7e5cda-b5ab8997, #w-node-_5c7a47b7-bf60-d862-a5c6-a5a50f6bb26e-b5ab8997 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v12-latin-regular.woff2') format('woff2'), url('../fonts/inter-v12-latin-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v12-latin-500.woff2') format('woff2'), url('../fonts/inter-v12-latin-500.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v12-latin-600.woff2') format('woff2'), url('../fonts/inter-v12-latin-600.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}