:root {
  --main-indigo: #6370f1;
  --indigo-dark: #4754d9;
  --white: #fff;
  --fade-duration: 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  70% {
    transform: scale(1.05) translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-right-color: transparent;
  }
}

.comment-box {
  opacity: 0;
  will-change: transform, opacity;
  border: 1px solid var(--indigo-dark);
  background-color: var(--main-indigo);
  color: #fff;
  border-radius: 0 20px 20px;
  padding: 16px;
  position: absolute;
  box-shadow: 0 0 32px #0003;
  font-family: Satoshi Variable, Arial, sans-serif;
  font-weight: 500;
  transition: opacity 0.3s ease-out;
}

.comment-box.animate {
  opacity: 1;
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.content-wrapper > * {
  animation: fadeIn var(--fade-duration) ease-out forwards;
  opacity: 0;
}

.content-wrapper > *:nth-child(1) { animation-delay: 0.1s; }
.content-wrapper > *:nth-child(2) { animation-delay: 0.2s; }
.content-wrapper > *:nth-child(3) { animation-delay: 0.3s; }
.content-wrapper > *:nth-child(4) { animation-delay: 0.4s; }
.content-wrapper > *:nth-child(5) { animation-delay: 0.5s; }
.content-wrapper > *:nth-child(6) { animation-delay: 0.6s; }
.content-wrapper > *:nth-child(7) { animation-delay: 0.7s; }
.content-wrapper > *:nth-child(8) { animation-delay: 0.8s; }

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
  gap: 0;
}

@media screen and (max-width: 479px) {
  .w-layout-hflex.features-grid {
    row-gap: 0 !important;
    gap: 0 !important;
    grid-row-gap: 0 !important;
  }
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.hero-background {
  z-index: -100;
  background-color: var(--main-indigo);
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  position: absolute;
  inset: 0% 0% auto;
}

.hero-bg-image {
  width: 100vw;
  max-width: 100vw;
}

.main-container {
  justify-content: center;
  align-items: center;
  max-width: 1080px;
  display: flex;
}

.content-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  max-width: 1200px;
  margin-top: 100px;
  margin-bottom: 40px;
}

.h1 {
  color: #fff;
  font-family: Satoshi Variable, Arial, sans-serif;
  font-size: 60px;
}

.p {
  color: #fff;
  text-align: center;
  width: 54%;
  font-family: Satoshi Variable, Arial, sans-serif;
  font-size: 16px;
  line-height: 150%;
}

.header-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: center;
  align-items: center;
}

.dashboard-preview {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
}

.dashboard-screenshot {
  z-index: -20;
  max-width: 90%;
  max-height: 45%;
  position: static;
  inset: 0% auto auto;
}

.features-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-top: -32%;
  position: static;
  overflow: visible;
}

.feature-image {
  max-width: 723px;
  display: flexbox;
  position: relative;
  animation: fadeIn var(--fade-duration) ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.feature-card {
  flex: 0 auto;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.feature-card.chat-feature {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
.comment-box {
  border: 1px solid var(--indigo-dark);
  background-color: var(--main-indigo);
  color: #fff;
  border-radius: 0 20px 20px;
  padding: 16px;
  position: absolute;
  box-shadow: 0 0 32px #0003;
  font-family: Satoshi Variable, Arial, sans-serif;
  font-weight: 500;
}

.comment-box .text-content {
  opacity: 0;
}

.comment-box.animate .text-content {
  opacity: 1;
  transition: opacity 0.5s ease-out;
  transition-delay: 0.6s;
}

.comment-box.feature-realtime {
  z-index: 40;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 0;
  width: 266px;
  position: absolute;
  inset: auto 5% 32% auto;
  padding: 12px 16px;
}

@media screen and (max-width: 991px) {
  .comment-box.feature-realtime {
    width: 220px;
    inset: auto 40% 25% auto;
  }
}

@media screen and (max-width: 767px) {
  .comment-box.feature-realtime {
    width: 180px;
    inset: auto 10% 25% auto;
  }
}

@media screen and (max-width: 479px) {
  .comment-box.feature-realtime {
    width: 160px;
    inset: 25% 5% auto auto;
  }
}

.comment-box.feature-chat {
  z-index: 80;
  border-top-left-radius: 0;
  border-bottom-left-radius: 20px;
  width: 258px;
  position: absolute;
  inset: auto auto 15% 40%;
}

.comment-box.feature-costs {
  z-index: 10;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 305px;
  position: absolute;
  inset: auto auto 5% 5%;
}

.comment-box.feature-management {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 0;
  width: 230px;
  position: absolute;
  inset: 5% 5% auto auto;
}

.comment-box.feature-chat {
  z-index: 80;
  border-top-left-radius: 0;
  border-bottom-left-radius: 20px;
  width: 258px;
  position: absolute;
  inset: auto auto 15% 40%;
}

.comment-box.feature-costs {
  z-index: 10;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 305px;
  position: absolute;
  inset: auto auto 5% 5%;
}

.comment-box.feature-management {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 0;
  width: 230px;
  position: absolute;
  inset: 5% 5% auto auto;
}

.button {
  background-color: var(--main-indigo);
  border: 1px solid #fff;
  border-radius: 20px;
  padding-left: 24px;
  padding-right: 24px;
  font-family: Satoshi Variable, Arial, sans-serif;
}

.button:hover {
  background-color: var(--white);
  color: var(--indigo-dark);
}

.image3 {
  max-width: 340px;
  position: relative;
}

.image-6 {
  max-width: 888px;
  margin-right: 15%;
}

.usage-section {
  justify-content: flex-start;
  align-self: center;
  align-items: left;
  width: 100%;
  margin-top: -16%;
  display: flex;
  position: relative;
}

.image-7 {
  max-width: 888px;
  margin-right: 0;
}

.tasks-section {
  justify-content: flex-end;
  align-self: center;
  align-items: right;
  width: 100%;
  margin-top: -8%;
  display: flex;
  position: relative;
}

.subscription-heading {
  text-align: center;
  width: 60%;
  font-family: Satoshi Variable, Arial, sans-serif;
  font-size: 24px;
  line-height: 120%;
}

.subscription-form {
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
  animation: fadeIn var(--fade-duration) ease-out forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.email-input {
  border-radius: 8px;
  width: 100%;
}

.subscribe-form {
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  padding-left: 220px;
  padding-right: 220px;
  display: flex;
}

.subscribe-button {
  background-color: var(--main-indigo);
  border-radius: 12px;
  padding-left: 40px;
  padding-right: 40px;
  font-family: Satoshi Variable, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.body {
  background-color: var(--white);
  margin-top: 0;
}

.form-label {
  font-family: Satoshi Variable, Arial, sans-serif;
  font-weight: 500;
}

.div-block-2-copy {
  flex: 0 auto;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.div-block-2-copy._3 {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .content-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 100px;
  }

  .h1 {
    font-size: 50px;
  }

  .p {
    width: 70%;
  }

  .header-content {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .features-grid {
    margin-top: -28%;
    overflow: hidden;
  }

  .feature-image {
    max-width: 600px;
  }

  .comment-box.feature-realtime {
    width: 220px;
    inset: auto 40% 25% auto;
    padding: 12px 16px;
  }

  .comment-box.feature-chat {
    z-index: 10;
    min-width: 180px;
    max-width: 280px;
    bottom: 10%;
  }

  .comment-box.feature-costs {
    z-index: 10;
    min-width: 220px;
    max-width: 320px;
    right: auto;
    left: 3%;
    bottom: 5%;
  }

  .comment-box.feature-management {
    min-width: 180px;
    max-width: 280px;
    inset: 5% 5% auto auto;
  }

  .image3 {
    max-width: 330px;
  }

  .image-6 {
    max-width: 691px;
    margin-top: -10px;
  }

  .usage-section {
    margin-top: -12%;
  }

  .image-7 {
    max-width: 691px;
    margin-top: 0;
    margin-right: 1px;
  }

  .tasks-section {
    margin-top: -8%;
  }

  .image-8 {
    width: 100%;
    max-width: 50%;
  }

  .div-block-6 {
    flex: 0 auto;
    justify-content: center;
    align-self: center;
    align-items: center;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .content-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    overflow: hidden;
  }

  .h1 {
    text-align: center;
    font-size: 24px;
  }

  .p {
    width: 80%;
    font-size: 16px;
  }

  .header-content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .dashboard-screenshot {
    max-width: 105%;
    overflow: hidden;
  }

  .features-grid {
    flex-flow: column;
    margin-top: 20px;
    padding: 0;
    gap: 40px;
    position: relative;
    overflow: visible;
  }

  .feature-card {
    padding: 0;
    margin: 0;
  }

  .feature-image {
    max-width: 95%;
    margin: 0 auto;
    display: block;
    position: relative;
  }

  .feature-card {
    overflow: visible;
    width: 100%;
    margin-bottom: 40px;
    padding: 0 10px;
    position: relative;
  }

  .usage-section,
  .tasks-section {
    margin-top: 40px;
    padding: 0 10px;
    overflow: visible;
  }

  .usage-section img,
  .tasks-section img {
    max-width: 95%;
    margin: 0 auto;
    display: block;
  }

  .feature-card.chat-feature {
    margin-top: 0;
  }

  .comment-box {
    max-width: 280px;
  }

  .comment-box.feature-realtime {
    font-size: 16px;
    position: absolute;
    inset: auto 10% 25% auto;
    display: flex;
    align-items: center;
    min-width: 140px;
    max-width: 220px;
    padding: 12px 16px;
  }

  .comment-box.feature-chat {
    min-width: 140px;
    max-width: 220px;
    font-size: 16px;
    bottom: 13%;
    left: 34%;
  }

  .comment-box.feature-costs {
    min-width: 160px;
    max-width: 240px;
    left: 5%;
    bottom: 5%;
  }

  .comment-box.feature-management {
    z-index: 0;
    min-width: 140px;
    max-width: 220px;
    inset: 5% 5% auto auto;
    overflow: visible;
  }

  .image3 {
    max-width: 70%;
    margin-left: 0;
  }

  .image-6 {
    max-width: 100%;
    margin-top: 0;
    margin-right: 10%;
    overflow: visible;
  }

  .usage-section {
    z-index: 50;
    margin-top: -10%;
    overflow: visible;
  }

  .image-7 {
    max-width: 110%;
    margin-top: 0;
    margin-right: -79px;
    overflow: visible;
  }

  .tasks-section {
    margin-top: 2%;
    overflow: visible;
  }

  .h3 {
    font-size: 19px;
  }

  .image-8 {
    max-width: 50%;
  }

  .div-block-2-copy {
    overflow: hidden;
  }

  .div-block-2-copy._3 {
    margin-top: 0;
  }
}

@media screen and (max-width: 479px) {
  .content-wrapper {
    padding: 16px;
    margin-top: 60px;
    gap: 32px;
  }

  .features-grid {
    margin-top: 0;
    padding: 16px;
    gap: 0px;
  }

  .feature-card,
  .feature-card.realtime-feature {
    margin: 0 0 60px 0;
    padding: 0;
    width: 100%;
    position: relative;
    min-height: 120px;
  }

  .feature-image {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
    position: relative;
  }

  .feature-card:last-child {
    margin-bottom: 0;
  }

  .feature-image {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
  }

  .dashboard-preview {
    margin: 0;
    padding: 0;
  }

  .dashboard-screenshot {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }

  .main-container {
    padding: 0;
  }

  .content-wrapper {
    margin: 20px 0 0 0;
  }

  .header-content {
    padding: 0 16px;
  }

  .p {
    padding: 0 16px;
  }

  .flex-block {
    margin-top: 60px;
    margin-bottom: 20px;
    overflow: visible;
  }

  .h1 {
    font-size: 22px;
  }

  .p {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 140%;
  }

  .flex-block-2 {
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    margin-top: -24px;
  }

  .flex-block-3 {
    padding-top: 0;
    overflow: auto;
  }

  .image-2 {
    max-width: 130%;
  }

  .flex-block-4 {
    box-sizing: content-box;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: contain;
    margin-top: -24%;
    display: block;
    overflow: scroll;
  }

  .image-4 {
    margin-top: 0;
    margin-right: 0;
    padding-right: 0;
    left: 60px;
    overflow: visible;
  }

  .div-block-2 {
    margin-top: -40px;
    overflow: visible;
  }

  .div-block-2._3 {
    overflow: visible;
  }

  .feature-card {
    position: relative !important;
    margin-bottom: 40px !important;
  }

  .comment-box {
    font-size: 14px;
    padding: 12px 16px;
    width: auto;
    min-width: 120px;
    max-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
    white-space: normal;
    position: absolute;
    z-index: 10;
  }

  .comment-box.feature-realtime {
    right: 5%;
    bottom: 15%;
  }

  .comment-box.feature-chat {
    left: 5%;
    bottom: 15%;
  }

  .comment-box.feature-costs {
    left: 5%;
    bottom: 10%;
  }

  .comment-box.feature-management {
    right: 5%;
    top: 10%;
  }

  .feature-card {
    margin-bottom: 80px;
  }

  .usage-section,
  .tasks-section {
    margin-top: 10px;
    padding: 16px;
  }

  .usage-section img,
  .tasks-section img {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .image3 {
    max-width: 230px;
    margin-top: 0;
    margin-left: -17px;
    left: 0;
  }

  .image-6 {
    margin-top: 0;
    padding-bottom: 76px;
  }

  .usage-section {
    margin-top: -12%;
  }

  .image-7 {
    width: 110%;
    max-width: 110%;
    margin-right: -10%;
  }

  .tasks-section {
    margin-top: 0;
    padding-top: 50px;
  }

  .subscription-heading {
    width: 100%;
    padding: 0 16px;
    font-size: 20px;
    margin: 40px 0 20px;
  }

  .subscribe-form {
    padding: 0 16px;
    width: 100%;
  }

  .email-input {
    width: 100%;
    margin-bottom: 16px;
  }

  .subscribe-button {
    width: 100%;
    padding: 12px;
  }

  .body {
    margin-top: 0;
  }

  .success-message,
  .error-message {
    background-color: transparent;
  }
  
  .footer-logo {
    max-width: 50%;
    animation: fadeIn var(--fade-duration) ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
  }

  .div-block-2-copy, .div-block-2-copy._3 {
    overflow: visible;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}