@charset "UTF-8";
:root {
  --color-bg-1: #181818;
  --color-bg-2: #1f1f1f;
  --color-bg-3: #2c2c2c;
  --color-bg-3: #5c5c5c;
  --color-text-1: #fff;
  --color-text-2: #e1e1e1;
  --color-text-3: #a3a3a3;
  --color-text-4: #777777;
  --color-prim-1: #6751f7;
  --color-prim-2: #6f7fcb;
  --color-rand-1: #68296d;
  --color-rand-2: #47296d;
  --color-rand-3: #5dffa8;
  --color-upwork: #6fda44;
  --color-red: #ff4d4d;
}

*,
*:before,
*:after {
  box-sizing: border-box !important;
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  background: var(--color-bg-1);
  font-family: "Inter", sans-serif;
  color: var(--color-text-2);
}

.layout-parent {
  width: 100%;
  overflow: hidden;
  position: relative;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

.component-logo {
  color: var(--color-text-1);
  padding-right: 6px;
  position: relative;
}

.layout-wrapper {
  max-width: 130.1rem;
  margin: 0 auto;
  padding: 0 16px !important;
}

.heading--h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 56.25em) {
  .heading--h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading--h1 {
    font-size: 32px;
  }
}
.heading--h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 56.25em) {
  .heading--h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading--h2 {
    font-size: 28px;
  }
}
.heading--h3 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}
@media only screen and (max-width: 56.25em) {
  .heading--h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading--h3 {
    font-size: 24px;
  }
}
.heading--h4 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}
@media only screen and (max-width: 56.25em) {
  .heading--h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading--h4 {
    font-size: 20px;
  }
}
.heading--h5 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}

.text--body {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}
@media only screen and (max-width: 56.25em) {
  .text--body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 37.5em) {
  .text--body {
    font-size: 14px;
  }
}
.text--small {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}
@media only screen and (max-width: 56.25em) {
  .text--small {
    font-size: 13px;
  }
}
@media only screen and (max-width: 37.5em) {
  .text--small {
    font-size: 12px;
  }
}
.text--xsmall {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

.font--light {
  font-weight: 300;
}
.font--regular {
  font-weight: 400;
}
.font--medium {
  font-weight: 500;
}
.font--bold {
  font-weight: 700;
}
.font--black {
  font-weight: 900;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-bottom-big {
  margin-bottom: 5.2rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.u-margin-bottom-small {
  margin-bottom: 2.4rem !important;
}

.u-margin-bottom-v-small {
  margin-bottom: 1.2rem !important;
}

.padding-tb-medium {
  padding-top: 3.2rem !important;
  padding-bottom: 3.2rem !important;
}

.rotate-0 {
  transform: rotate(0deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

.rotate-270 {
  transform: rotate(270deg);
}

.dot-list {
  list-style-type: disc;
  margin-left: 2.8rem;
  line-height: 1.8;
}

.section-header {
  height: 80px;
}
.section-header__wrapper {
  height: 100%;
  display: flex;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 52px;
}
@media only screen and (max-width: 37.5em) {
  .section-header__wrapper {
    grid-template-columns: max-content max-content;
    justify-content: space-between;
  }
}
.section-header__links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .section-header__links {
    display: none;
  }
}
.section-header__nav {
  height: 40px;
  padding: 0 16px;
  border-left: 1px solid var(--color-bg-3);
  display: flex;
  align-items: center;
  gap: 18px;
}
.section-header__nav li a {
  color: var(--color-text-2);
}
.section-header__nav li a:hover {
  color: var(--color-text-1);
}
@media only screen and (max-width: 37.5em) {
  .section-header__nav {
    display: none;
  }
}
.section-header__hamburger {
  cursor: pointer;
  display: none;
}
.section-header__hamburger svg {
  width: 2.4rem;
  height: 2.4rem;
}
.section-header__hamburger svg path {
  fill: var(--color-text-2);
}
@media only screen and (max-width: 37.5em) {
  .section-header__hamburger {
    display: block;
  }
}

.section-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  background: var(--color-bg-1);
  width: 0;
  height: 0;
  display: none;
  grid-template-rows: 80px 1fr max-content;
  opacity: 0;
  transition: opacity 0.2s;
}
.section-sidebar--active {
  opacity: 1;
  width: 100%;
  height: 100%;
  padding: 0 16px 16px 16px;
}
@media only screen and (max-width: 37.5em) {
  .section-sidebar {
    display: grid;
  }
}
.section-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-sidebar__close {
  background: none;
  outline: none;
  border: none;
}
.section-sidebar__close svg {
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.section-sidebar__close svg path {
  fill: var(--color-text-3);
}
.section-sidebar__nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.section-sidebar__nav ul li {
  cursor: pointer;
}
.section-sidebar__nav ul li > * {
  display: block;
  padding: 14px 0;
  color: var(--color-text-2);
}
.section-sidebar__nav ul li:not(:last-child) {
  border-bottom: 1px solid var(--color-bg-3);
}
.section-sidebar__nav ul li:hover {
  background-color: var(--color-bg-2);
}
.section-sidebar__footer {
  display: grid;
  grid-template-columns: 1fr max-content;
}

.nav-menu .menu {
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 14px;
  text-transform: uppercase;
}
.nav-menu .menu .menu-item {
  position: relative;
}
.nav-menu .menu .menu-item a {
  height: 40px;
  padding: 0 12px;
  text-decoration: none;
  color: var(--color-text-2);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-menu .menu .menu-item a:hover {
  background-color: var(--color-bg-prim-1);
}
.nav-menu .menu .menu-item.menu-item-has-children > a::after {
  content: "▼";
  margin-left: 5px;
  font-size: 0.75em;
}
.nav-menu .menu .menu-item.menu-item-has-children:hover > .sub-menu {
  display: block;
}
.nav-menu .menu .menu-item.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: var(--color-bg-1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.nav-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item {
  width: 180px;
  background-color: var(--color-bg-1);
  z-index: 2;
}
.nav-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item a:hover {
  background: var(--color-bg-prim-1) !important;
}
.nav-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item.menu-item-has-children {
  position: relative;
}
.nav-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item.menu-item-has-children:hover > .sub-menu {
  display: block;
}
.nav-menu .menu .menu-item.menu-item-has-children .sub-menu .menu-item.menu-item-has-children > .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 1px; /* Small gap to avoid overlap */
}

.section-footer {
  position: relative;
  overflow: hidden;
}
.section-footer .layout-wrapper {
  padding: 32px 16px !important;
  display: grid;
  grid-template-columns: minmax(0, 300px) 1fr;
}
.section-footer__details p {
  margin-top: 8px;
  color: var(--color-text-3);
}
.section-footer__navs {
  display: flex;
  justify-content: end;
  gap: 24px;
}
.section-footer__navs__wrapper h2 {
  margin-bottom: 12px;
}
.section-footer__navs__wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-footer__navs__wrapper ul li a {
  color: var(--color-text-2);
}
.section-footer__navs__wrapper ul li a:hover {
  color: var(--color-text-1);
}
.section-footer__copyright {
  border-top: 1px solid var(--color-bg-3);
  color: var(--color-text-3);
  padding: 24px 16px;
  text-align: center;
}
.section-footer__copyright a {
  font-weight: 600;
  color: inherit;
}
@media only screen and (max-width: 37.5em) {
  .section-footer .layout-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section-footer__navs {
    justify-content: start;
  }
}

.component-stars {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, -50%);
  display: flex;
  align-items: end;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  outline: none;
  cursor: pointer !important;
}
.button--sm {
  font-size: 13px;
  padding: 8px 16px;
  height: 40px;
  font-weight: 400;
}
.button--sm__i-before {
  padding: 8px 16px 8px 12px;
  gap: 4px;
}
.button--sm__i-after {
  padding: 8px 12px 8px 16px;
  gap: 4px;
}
.button--md {
  font-size: 14px;
  padding: 0 16px;
  height: 45px;
  gap: 8px;
}
.button--md__i-before {
  padding: 0 20px 0 18px;
  gap: 8px;
}
.button--md__i-after {
  padding: 0 14px 0 16px;
  gap: 4px;
}
.button--lg {
  font-size: 16px;
  padding: 0 32px;
  height: 50px;
  font-weight: 500;
}
.button--lg__i-before {
  padding: 0 32px 0 24px;
  gap: 8px;
}
.button--lg__i-after {
  padding: 0 24px 0 32px;
  gap: 8px;
}
.button--primary {
  color: var(--color-text-1);
  background-color: var(--color-prim-2);
  hover-background-color: var(--color-prim-1);
}
.button--primary:hover {
  background-color: var(--color-prim-1);
}
.button--secondary {
  color: var(--color-text-2);
  background-color: var(--color-bg-3);
  hover-background-color: var(--color-bg-3);
}
.button--secondary:hover {
  background-color: var(--color-bg-3);
}
.button--tertiary {
  color: var(--color-text-2);
  border: 1px solid var(--color-text-1);
  background-color: transparent;
  border-radius: 100px;
  hover-background-color: var(--color-bg-3);
}
.button--tertiary:hover {
  background-color: var(--color-bg-3);
}
.button--danger {
  color: var(--color-text-1);
  background-color: var(--color-red-1);
  hover-background-color: var(--color-red-2);
}
.button--danger:hover {
  background-color: var(--color-red-2);
}
.button--sm svg {
  width: 1.4rem;
  height: 1.4rem;
}
.button--md svg {
  width: 1.6rem;
  height: 1.6rem;
}
.button--lg svg {
  width: 1.8rem;
  height: 1.8rem;
}
.button--disabled {
  cursor: not-allowed !important;
  opacity: 0.6;
}

.component-avatars {
  width: 90px;
  min-height: 45px;
  display: flex;
  position: relative;
}
.component-avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-text-1);
  position: absolute;
}
.component-avatars img:nth-child(2) {
  transform: translateX(22px);
}
.component-avatars img:nth-child(3) {
  transform: translateX(45px);
}

.component-blob {
  background: var(--color-prim-1);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  position: absolute;
  z-index: -1;
}
.component-blob--1 {
  top: -200px;
  right: -200px;
  filter: blur(150px);
}
@media only screen and (max-width: 37.5em) {
  .component-blob--1 {
    width: 250px;
    height: 250px;
    filter: blur(100px);
    top: -100px;
    right: -100px;
  }
}
.component-blob--2 {
  filter: blur(180px);
  top: 80px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media only screen and (max-width: 37.5em) {
  .component-blob--2 {
    width: 100px;
    height: 100px;
    left: 50%;
    top: 120px;
    filter: blur(180px);
  }
}
.component-blob--3 {
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  filter: blur(180px);
}
@media only screen and (max-width: 37.5em) {
  .component-blob--3 {
    width: 100px !important;
    height: 100px !important;
    top: -50px;
    right: -50px;
    filter: blur(100px);
  }
}
.component-blob--4 {
  left: -50px;
  top: -50px;
  filter: blur(120px);
  background: var(--color-rand-3);
}

.component-glassy-block {
  width: max-content;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid #494949;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--color-text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.component-glassy-block svg {
  width: 20px;
  height: 20px;
}
.component-glassy-block:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.section-hero {
  width: 100%;
  padding: 96px 0 64px 0;
  overflow-x: clip;
}
.section-hero .layout-wrapper {
  position: relative;
}
.section-hero .layout-wrapper h1 {
  text-align: center;
  margin-bottom: 8px;
}
.section-hero .layout-wrapper h1 .stars-parent {
  width: max-content;
  margin: 0 auto;
  position: relative;
}
.section-hero .layout-wrapper h1 span {
  background-image: linear-gradient(45deg, #fff -10%, #5f48f7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.section-hero .layout-wrapper .section-hero__subheading {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 24px;
}
.section-hero__sites {
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translate(-30%, -50%) rotate(-15deg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-hero__sites > * {
  width: 100% !important;
}
@media only screen and (max-width: 56.25em) {
  .section-hero__sites {
    top: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-hero__sites {
    top: -100px;
    flex-direction: row;
    transform: translate(-10%, 0) rotate(-15deg);
  }
}
.section-hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.section-hero__users {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-tutorial {
  width: 100%;
  padding: 32px 16px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
.section-tutorial__works-with {
  margin: 0 auto 24px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.section-tutorial img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 32px;
}

.section-404 .layout-wrapper {
  min-height: 70vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.section-404 .layout-wrapper h1 {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
}
.section-404 .layout-wrapper h1 span {
  position: relative;
  font-size: 64px;
  background-image: linear-gradient(45deg, #fff -10%, #5f48f7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 37.5em) {
  .section-404 .layout-wrapper h1 {
    font-size: 24px;
  }
  .section-404 .layout-wrapper h1 span {
    font-size: 46px;
  }
}/*# sourceMappingURL=style.css.map */