@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --gradient-primary: linear-gradient(70deg, #0099E6, #69CDFF)
}

html {
  overflow-x: hidden;
}

body {
  background-color: #0B062B;
  color: #fff;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  line-height: 120%;
}

.container {
  max-width: 1080px;
  padding: 0 24px;
  margin: 0 auto;
}

.button {
  background: var(--gradient-primary);
  display: block;
  border-radius: 8px;
  line-height: 120%;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
  max-width: 360px;
  text-align: center;
}

.section {
  position: relative;
  padding-top: 75px;
}

@media (min-width: 640px) {
  .section {
    padding-top: 100px;
  }
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 26px;
  line-height: 140%;
}

/* HERO */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}

.hero {}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__img-wrapper {}

.hero__img {
  width: 168px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 50px;
}

.hero__content-text {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 24px;
  line-height: 130%;
}

.hero__btn {
  text-transform: uppercase;
  margin: 0 auto;
}

@media (min-width: 640px) {

  .hero__inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }

  .hero__content {
    gap: 24px;
  }

  .hero__content-text {}

  .hero__img {
    width: 300px;
  }

  .hero__btn {
    text-transform: uppercase;
    margin: 0;
  }
}

.circles {}

.circles span {
  position: absolute;
  background-color: #4F9ABE;
  opacity: .5;
  border-radius: 50%;
  z-index: -10;
}

.hero__circle-1 {
  width: 50%;
  aspect-ratio: 1 / 1;
  top: -50%;
  right: -30%;
  filter: blur(100px);
}

.hero__circle-2 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  filter: blur(50px);
}

.hero__circle-3 {
  top: 60%;
  right: -50px;
  width: 200px;
  height: 200px;
  filter: blur(100px);
}

@media (min-width: 640px) {
  .hero__circle-3 {
    top: 60%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    filter: blur(100px);
  }
}

/* SUBHERO */
.sub-hero {}

.sub-hero__text {
  margin-bottom: 50px;
  font-size: 16px;
}

.sub-hero__btn {
  margin: 0 auto;
}

@media (min-width: 640px) {
  .sub-hero {
    display: flex;
    align-items: center;
  }

  .sub-hero__text {
    max-width: 400px;
    margin-bottom: 0px;
  }

  .sub-hero__btn {
    margin: 0;
    margin-left: auto;
  }
}

/* WHATIS */
.whatis {}

.whatis__inner {
  position: relative;
}

.whatis__content {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.whatis__content img {
  width: 180px;
}

.whatis__circle-1 {
  top: 0;
  left: -100px;
  width: 250px;
  height: 250px;
  filter: blur(50px);
}

.whatis__circle-2 {
  top: 50%;
  right: -75px;
  width: 200px;
  height: 200px;
  filter: blur(50px);
}

@media (min-width: 640px) {
  .whatis__content {
    flex-direction: row;
  }

  .whatis__content img {
    width: 300px;
  }

  .whatis__content p {
    flex: 1;
    text-align: right;
  }

  .whatis__circle-2 {
    top: 50%;
    right: -75px;
    width: 400px;
    height: 400px;
    filter: blur(100px);
  }
}

/* NEEDS */
.needs {}

.needs__inner {}

.needs__desc {
  margin-top: 24px;
  text-align: center;
}

.needs__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 12px;
  margin: 24px 0;
}

.needs__block-item {
  background-color: #4F9ABE;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
  padding: 12px;
}

@media (min-width: 640px) {
  .needs__block-item {
    padding: 32px 12px;
  }
}

.needs__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.needs__list-item {}

.needs__list-item .circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.needs__btn {
  margin: 50px auto 0;
}

/* BUILDON */
.buildon {}

.buildon__inner {
  position: relative;
}

.buildon__content {}

.buildon__img {
  width: 100%;
}

.buildon__content-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.buildon__btn {
  margin: 50px auto 0;
}

.buildon__circle-1 {
  bottom: 0;
  left: -100px;
  width: 250px;
  height: 250px;
  filter: blur(50px);
}

.buildon__circle-2 {
  top: 0;
  right: -100px;
  width: 250px;
  height: 250px;
  filter: blur(50px);
}

@media (min-width: 860px) {
  .buildon__content {
    display: flex;
    align-items: center;
    gap: 50px;
  }

  .buildon__img {
    width: 400px;
  }

  .buildon__content-text {
    flex: 1;
  }
}

/* SIGNALS */
.signals {}

.signals__inner {
  position: relative;
}

.signals__imgs {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.signals__circle-1 {
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  width: 300px;
  height: 300px;
  filter: blur(50px);
}

@media (min-width: 640px) {

  .signals__imgs {
    flex-direction: row;
  }

  .signals__circle-1 {
    right: 150px;
  }
}

/* REVIEWS */
.reviews {}

.reviews__inner {}

.reviews__list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.reviews__list-item {
  display: flex;
  background-color: rgba(79, 154, 190, .2);
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
}

.reviews__list-item img {
  width: 47px;
  height: 47px;
}

.reviews__list-item-content {}

.reviews__list-item-content .name {
  font-weight: 800;
}

.reviews__list-item-content .info {
  margin-top: 8px;
}

.reviews__btn {
  margin: 32px auto 0;
}

@media (min-width: 860px) {
  .reviews__list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* READY */
.ready {
  padding: 75px 0 100px;
}

.ready__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ready__img {
  margin-bottom: 50px;
}

.ready__text {
  text-align: center;
  margin-top: 32px;
}

.ready__btn {
  margin: 50px auto 0;
}

.ready__circle-1 {
  top: 0;
  right: -100px;
  width: 300px;
  height: 300px;
  filter: blur(100px);
}

.ready__circle-2 {
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  filter: blur(100px);
}

@media (min-width: 640px) {}