:root {
  --color-1: #000000;
  --color-2: #FFFFFF;
  --color-3: #000000;
  --color-4: #FFFFFF;
  --bg-padding: 7px;
  --button-width: 99px;
  --button-height: 38px;
  --animation-time: .3s;
  --flamingo-black-1: #000;
  --flamingo-violet: #5136C4;
  --flamingo-red: #cc2e4c;
  --flamingo-black-4: #000;
  --border-size: 3px;
  --border-radius: 17px;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes spin {
  to {
    --angle: 360deg;
  }
}
.box-animation {
  position: relative;
  width: 100%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
}

.box-animation-1::before,
.box-animation-1::after {
  content: "";
  position: absolute;
  inset: calc(var(--border-size) * -1);
  border-radius: calc(var(--border-radius) + var(--border-size));
  background-image: conic-gradient(from var(--angle), var(--color-1) 0deg, var(--color-1) 200deg, var(--flamingo-violet) 270deg, var(--flamingo-red) 330deg, var(--color-1) 360deg);
  z-index: -1;
  animation: spin 3.5s linear infinite;
  transition-property: opacity;
  transition-duration: 400ms;
  transition-timing-function: ease;
}

.dashboard-btn {
  text-decoration: none;
  font-family: "Rethink Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  padding: 0.9rem 1.5rem;
  border: 0.06rem solid transparent;
  border-radius: 2rem;
  position: relative;
  line-height: 1;
  background-color: #cc2e4c;
  color: #fff;
  margin-right: 0.2rem;
}
.dashboard-btn:hover {
  background-color: #a84452;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .dashboard-btn {
    margin-right: 0;
  }
}

.nav-menu-mobile {
  margin-left: auto;
  margin-right: 20px;
}
.nav-menu-mobile li {
  background-color: #cc2e4c;
  color: #fff;
}

.nav-menu-layouts {
  margin: 0 auto;
}

.landing-main-content {
  overflow: hidden;
}

.main-title {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .main-title {
    font-size: 2.3rem;
  }
}

.hero-section {
  padding-top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  background-image: url("../img/hero-background-image.webp");
}
.hero-section .animated-svg-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 4rem;
  max-width: 40rem;
  width: 100%;
  margin: 0 auto;
}
.hero-section .animated-svg-wrapper svg {
  width: 100%;
}
.hero-section__wrapper {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
}
.hero-section__info {
  max-width: 45rem;
  margin: 0 auto 2.7rem;
  text-align: center;
}
.hero-section__text {
  font-size: 1.2rem;
}
.hero-section__title {
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-section__under-text {
  font-size: 0.8rem;
}
.hero-section__button {
  max-width: 12.7rem;
  margin: 1.5rem auto 0.65rem;
}
.hero-section .animate-text {
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  width: fit-content;
  animation: blink-caret 0.75s step-end infinite;
}
@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}
.hero-section__media {
  width: 100%;
  max-width: 67rem;
  margin: 0 auto;
  background-color: #0F0F0F;
  border: 1px solid #393939;
  box-shadow: 0 4px 70px #000000;
  border-radius: 17px 17px 16px 16px;
}
@media screen and (max-width: 1024px) {
  .hero-section .animated-svg-wrapper {
    top: 0;
  }
  .hero-section__wrapper {
    padding-top: 6rem;
  }
  .hero-section__media {
    max-width: 40rem;
  }
}

.single-platform {
  padding: 2rem 0;
}
.single-platform__wrapper {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 43% 54%;
  gap: 2.3rem;
}
.single-platform__wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: -33rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/bg-blure.svg");
  width: 100rem;
  height: 100rem;
  opacity: 0.5;
}
.single-platform__info {
  position: relative;
  max-width: 26rem;
  margin-left: 11rem;
  z-index: 2;
  display: grid;
  gap: 2rem;
}
.single-platform__text {
  max-width: 20rem;
}
.single-platform__list {
  color: #fff;
  font-weight: 400;
}
.single-platform__media {
  position: relative;
  width: 100%;
  padding: 1rem;
}
.single-platform__media img {
  max-width: 35rem;
  position: relative;
  margin-left: auto;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .single-platform__media img {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .single-platform {
    padding-bottom: 0;
  }
  .single-platform__info {
    gap: 1.5rem;
    margin-left: 0;
    max-width: 100%;
  }
  .single-platform__wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .single-platform__media img {
    margin: 0 auto;
  }
  .single-platform__wrapper::before {
    left: -25rem;
    top: -7rem;
    width: 69rem;
    height: 69rem;
  }
}

.how-works {
  padding-top: 0;
}
.how-works__wrapper {
  display: grid;
  gap: 5rem;
}
.how-works__title {
  text-align: center;
}
.how-works__list {
  display: flex;
  gap: 2.5rem 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.how-works__item-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 0.75rem;
}
.how-works__item-text {
  width: 306px;
  height: 48px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: #CECECE;
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .how-works .how-works__wrapper {
    gap: 2rem;
  }
  .how-works__item-title {
    justify-content: center;
    margin: 1rem 0 0.75rem;
  }
  .how-works__item-info {
    text-align: center;
  }
}

.what-get__wrapper {
  padding: 7.5rem 6.25rem;
  background: linear-gradient(305.83deg, #0A0A0A 37.75%, #0F0F0F 85.85%);
  border: 0.06rem solid #262626;
  border-radius: 2rem;
}
.what-get__title {
  text-align: center;
}
.what-get__section-media {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 32.3rem;
}
.what-get__section-media img {
  width: 100%;
}
.what-get__section {
  display: grid;
  grid-template-columns: 45% 53%;
  grid-auto-flow: dense;
  gap: 1.5rem;
  align-items: center;
  padding: 7.2rem 0;
  border-bottom: 0.06rem solid #262626;
}
.what-get__section:nth-child(2n) {
  grid-template-columns: 53% 45%;
}
.what-get__section:nth-child(2n) .what-get__section-media {
  grid-column: 1;
  grid-row: 1;
}
.what-get__section-info {
  max-width: 22.5rem;
}
.what-get .title {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #FFF;
  font-size: clamp(1.5rem, 1.995vw + 0.904rem, 2.5rem);
  font-weight: 600;
}
.what-get .title .count {
  width: 3.3em;
  height: 3.3em;
  border-radius: 1rem;
}
.what-get .text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 23.5rem;
  letter-spacing: -0.54px;
}
.what-get__section:last-child {
  border-bottom: none;
}
.what-get__btn {
  margin: auto;
  max-width: 11.8rem;
}
@media screen and (max-width: 1280px) {
  .what-get__section {
    gap: 2.5rem;
    padding: 5.2rem 0;
  }
  .what-get__wrapper {
    padding: 5rem 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .what-get .container {
    padding: 0;
  }
  .what-get__section, .what-get__section:nth-child(2n) {
    display: flex;
    flex-direction: column;
  }
  .what-get__section-info {
    text-align: center;
  }
  .what-get .title .count {
    margin: 0 auto;
  }
  .what-get__wrapper {
    padding: 2.5rem;
    border-radius: 0;
  }
  .what-get__section {
    padding: 2.5rem 0;
  }
  .what-get__section-media {
    max-width: 100%;
    margin: 0 auto;
  }
}

.pricing {
  position: relative;
}
.pricing.pricing-section {
  padding-top: 0;
}
.pricing:before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='993' viewBox='0 0 1440 993' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_47_168)'%3E%3Cellipse cx='720' cy='363' rx='339' ry='130' fill='%237C66FF' fill-opacity='0.7'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_47_168' x='-119' y='-267' width='1678' height='1260' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='250' result='effect1_foregroundBlur_47_168'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
}
.pricing__wrapper {
  position: relative;
  z-index: 2;
}
.pricing__title {
  text-align: center;
  margin-bottom: 5rem;
}
.pricing__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.2rem 1.5rem;
  margin: 0 auto;
  max-width: 55rem;
}
.pricing__item {
  padding: 3rem 2rem;
  background: linear-gradient(306.03deg, #101010 37.95%, #191919 85.9%);
  border-radius: 1.5rem;
  border: 0.06rem solid #262626;
}
.pricing__item:last-child {
  border-color: rgba(155, 107, 111, 0.368627451);
  background: linear-gradient(306.03deg, #161420 37.95%, #24040a 85.9%);
}
.pricing__item, .pricing__item-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing .title {
  margin-bottom: 0.85em;
  font-weight: 700;
  font-size: clamp(1.5rem, 0.9975vw + 1.202rem, 2rem);
  text-align: center;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
.pricing .list {
  margin: 2rem 0;
  width: 100%;
}
.pricing__item-header {
  text-align: center;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 2rem;
}
.pricing__item-text {
  font-size: 0.8rem;
}
.pricing__item-btn {
  max-width: 100%;
  margin-top: auto;
}
.pricing__item .price {
  font-size: 2rem;
  font-weight: 700;
}
.pricing .sell {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  padding: 0.48rem 1.03rem;
  width: max-content;
  background-color: #000;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.87rem;
}
.pricing .prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  isolation: isolate;
}
.pricing__item .price span {
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1024px) {
  .pricing__title {
    margin-bottom: 2rem;
  }
  .pricing__list {
    grid-template-columns: 1fr;
  }
  .pricing__item {
    padding: 1.2rem;
  }
  .pricing__item-header {
    padding-bottom: 1rem;
  }
  .pricing__item-text {
    font-size: 0.7rem;
  }
  .pricing__list {
    grid-template-columns: 1fr;
  }
}

.subscribe-section {
  padding-top: 0;
  position: relative;
}
.subscribe-section__wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 48% 50%;
  gap: 1rem 2rem;
  isolation: isolate;
  border-radius: 1.5rem;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/subscribe-bg.svg");
  background-position: center;
}
.subscribe-section__content {
  position: relative;
  z-index: 2;
  padding: 5rem;
}
.subscribe-section__text {
  margin: 1.3rem 0;
}
.subscribe-section__media {
  position: relative;
}
.subscribe-section__media img {
  position: absolute;
  width: 100%;
  left: -3rem;
  bottom: 0;
}
@media screen and (max-width: 1280px) {
  .subscribe-section__content {
    padding: 3rem;
  }
  .subscribe-section__wrapper {
    gap: 1rem;
  }
  .subscribe-section__media img {
    width: 100%;
    left: -1rem;
  }
}
@media screen and (max-width: 1024px) {
  .subscribe-section__wrapper {
    grid-template-columns: 1fr;
  }
  .subscribe-section__content {
    padding: 1.2rem;
  }
  .subscribe-section__title {
    font-size: 2rem;
  }
  .subscribe-section__title, .subscribe-section__text {
    text-align: center;
  }
  .subscribe-section__text {
    font-size: 1.2em;
    margin: 1rem 0;
  }
  .subscribe-section__media {
    max-width: 480px;
    margin: 0 auto;
  }
  .subscribe-section__media img {
    width: calc(100% - 2rem);
    position: relative;
    left: unset;
  }
}

.success_w {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

.compare-hero {
  overflow: hidden;
}

@media screen and (max-width: 1280px) {
  .header__logo, .header .auth-buttons {
    position: relative;
    top: unset;
    transform: none;
  }
  .header .signup, .dashboard-btn {
    min-width: fit-content;
    padding: 0.8rem 1.1rem;
  }
  .header .auth-buttons {
    margin-left: auto;
  }
  .responsive-menu {
    width: 100%;
  }
  .nav-menu.nav-menu-desktop {
    display: flex;
    justify-content: center;
    margin: 0 0.2rem 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .nav-menu.nav-menu-desktop {
    margin: 0;
  }
  .header .auth-buttons {
    margin: auto auto 0;
  }
  .menu-indicator {
    display: none;
  }
}
