:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #F5B301;
  --primary-font: "JetBrains Mono", monospace;
  --secondary-font: "IBM Plex Sans", sans-serif;
  --heading-font: "IBM Plex Sans", sans-serif;
  --translucents-dark-10: rgba(0, 0, 0, 0.10);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  color: #000;
}

body {
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  background: radial-gradient(28.18% 45% at 0% 58.82%, rgba(123, 76, 255, 0.10) 0%, rgba(103, 94, 255, 0.00) 100%), radial-gradient(30.99% 45.35% at 100% 31.43%, rgba(255, 89, 236, 0.10) 0%, rgba(255, 89, 236, 0.00) 100%), radial-gradient(28.11% 34.78% at 0% 0%, rgba(255, 189, 78, 0.10) 0%, rgba(255, 189, 78, 0.00) 100%), var(--Page-Full-Page-BG, #FFF);
  color: #000;
  line-height: 1.6;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-primary {
  color: var(--primary);
}

.header-section {
  border-bottom: 1px solid var(--translucents-dark-10);
  background: var(--white, #FFF);

  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1380px;
  }

  .logo {
    max-width: 185px;
    display: flex;
  }

  .nav button {
    border: none;
    background: transparent;
    font-weight: 500;
    line-height: 148%;
  }

  .nav {
    a {
      text-decoration: none;
      &:hover {
        color: var(--primary);
      }
    }
  }
}

.body-wrapper {}

.top-hero-section {
  background: var(--Page-Dividers, rgba(0, 0, 0, 0.05));
  .container {
    display: flex;
    padding: 112px 0px 62px 0px;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    max-width: 1380px;
    .tap-img {
      max-width: 110px;
    }
    .main-heading,.main-heading * {
      margin-bottom: 0;
      font-size: 68px;
      font-weight: 700;
      line-height: 125%;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
  }
}

.hero-section {
  padding: 80px 0;

  .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

    .content-block {
      text-align: center;
    }
    .divider {
      height: 1px;
      width: 100%;
      background: rgba(0, 0, 0, 0.10);
      margin: 32px auto;
      max-width: 368px;
    }
    .sub-heading {
      color: var(--Neutral-Black, #000);
      text-align: center;
      font-size: 20px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      margin-bottom: 32px;
    }

    .content-block p:not(:last-child) {
      margin-bottom: 16px;
    }

    .list-item {
      list-style: none;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      align-items: flex-start;
      justify-content: space-between;
      flex-shrink: 0;

      li {
        width: calc(25% - 24px);
        border-radius: 12px;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.20);
        padding: 12px;
        display: flex;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
        flex-shrink: 0;
        .list-icon {max-width: 36px;}
      }
    }
  }
}

.heading,
.heading span,
.heading div {
  font-size: 36px;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.heading span,
.heading div {
  margin-bottom: 0;
}

.section-heading {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 24px;
}

.how-it-work-section {
  background: rgba(0, 0, 0, 0.05);
  padding: 80px 0;

  .list-item {
    list-style: none;
    display: flex;
    flex-direction: column;
    max-width: 960px;
    margin: 0 auto;

    li {
      display: flex;
      justify-content: space-between;
      align-items: center;

      &:not(:last-child) {
        margin-bottom: 60px;
      }

      &:nth-child(even) {
        .list-img {
          order: 2;
        }

        .list-content {
          order: 1;
        }
      }

      .list-img {
        max-width: 340px;
      }

      .list-content {
        max-width: 580px;
        display: flex;
        flex-direction: column;
        gap: 12px;

        h3 {
          font-size: 24px;
          font-weight: 500;
        }
      }
    }
  }
}

.waitlist-section {
  padding: 60px 0;
  background: var(--white, #FFF);
  text-align: center;

  .heading {
    margin-bottom: 24px;
  }

  .info-text {
    color: rgba(0, 0, 0, 0.80);
    max-width: 625px;
    margin: 0 auto 60px;
  }

  .waitlist-form {
    margin: 0 auto;
    text-align: left;
    max-width: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;

    .input-box {
      border-radius: 12px;
      border: 1px solid #000;
      background: #FFF;
      box-shadow: 2px 2px 0px 0px #333;
      padding: 12px 12px 12px 16px;
      min-height: 60px;
      width: calc(100% - 150px);

      &:focus {
        outline: none;
        border-color: var(--primary);
      }
    }

    .btn-notify {
      display: flex;
      min-height: 60px;
      padding: 0px 12px;
      justify-content: center;
      align-items: center;
      border-radius: 10px;
      background: #131313;
      color: var(--Neutral-White, #FFF);
      text-align: center;
      font-size: 16px;
      font-weight: 500;
      line-height: 148%;
      /* 23.68px */
      text-transform: uppercase;

      &:hover {
        outline: none;
        background: var(--Button-Hover-Bg, #414141);
        background: var(--Button-Hover-Bg, color(display-p3 0.2531 0.2531 0.2531));
      }
    }

  }
}

.footer-section {
  background: rgba(0, 0, 0, 0.10);
  padding: 24px 0;

  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;

    .footer-logo {
      max-width: 185px;
    }

    .footer-nav {
      .nav-list {
        list-style: none;
        display: flex;
        margin-bottom: 12px;

        li {
          position: relative;
          line-height: 140%;

          &:not(:last-child) {
            padding-right: 17px;

            &::after {
              content: "";
              background: var(--translucents-dark-40, rgba(0, 0, 0, 0.40));
              width: 1px;
              display: flex;
              height: 100%;
              position: absolute;
              right: 8px;
              top: 0;
            }
          }

          a {
            color: var(--translucents-dark-40, rgba(0, 0, 0, 0.40));
            font-size: 12px;
            font-weight: 400;
            line-height: 140%;
            /* 16.8px */
            text-decoration: none;

            &:hover {
              color: var(--translucents-dark-60, rgba(0, 0, 0, 0.60));
              text-decoration: underline;
            }
          }
        }
      }
    }

    .copyright-text {
      color: rgba(0, 0, 0, 0.60);
      font-size: 14px;
      font-weight: 400;
      line-height: 140%;
      /* 19.6px */
    }
  }
}

@media (max-width: 767px) {
  .header-section {
    .logo {max-width: 150px;}
  }
  .top-hero-section {
    .container {
      padding: 60px 0;
      flex-direction: column;
      gap: 48px;
      .main-heading, .main-heading * {
        font-size: 40px;
      }
      .main-heading {
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 0;
      }
      .main-heading * {
        display: inline;
      }
    }
  }
  .hero-section {
    padding: 40px 0;

    .heading {
      display: flex;
      flex-direction: column;
      font-size: 36px;

      div,
      span {
        margin-bottom: 0;
        font-size: 36px;
      }
    }

    .content-wrapper {
      flex-direction: column;

      .section-heading {
        text-align: center;
        font-size: 32px;
      }
      .divider {max-width: 210px;}

      .content-block {
        width: 100%;
        max-width: 100%;
      }

      .list-item {
        width: 100%;
        gap: 16px;

        li {
          width: 100%;
          max-width: 100%;
          display: flex;
          flex-direction: row;
          align-items: center;

          .list-icon {
            max-width: 36px;
          }
        }
      }
    }
  }

  .how-it-work-section {
    .list-item {
      li {
        flex-direction: column;

        .list-content {
          order: 2;
          text-align: center;
        }

        &:nth-child(even) {
          .list-img {
            order: 1;
          }
        }

        .list-img {
          max-width: 240px;
          margin-bottom: 24px;
        }

        .list-content {
          max-width: 100%;
        }
      }
    }
  }

  .waitlist-section {
    .info-text {
      margin-bottom: 40px;
    }

    .waitlist-form {
      flex-direction: column;
      max-width: 300px;

      .input-box {
        width: 100%;
      }

    }
  }

  .footer-section {
    & .container {
      & .footer-nav {
        & .nav-list {
          & li {
            &:not(:last-child) {
              padding-right: 8px;
            }
            a {
              width: 100%;
              display: flex;
            }
          }
        }
      }
    }
  }
}