@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

:root {
  --light-grey: #cccccc;
  --white: #ffffff;
  --pink: #d14890;
  --teal: #12c7d6;
  --cta-secondary: #7a3edf;
  --black: #171717;
  --black2: #0f0f0f;
  --black3: #141414;
  --black4: #292929;
  --black5: #1f1f1f;
  --transparent: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
}

.container {
  max-width: 1344px;
  width: 100%;
  padding: 0px 16px;
  margin: 0 auto;
}

.hp-flex {
  display: flex;
}

.hp-flex-column {
  flex-direction: column;
}

.hp-align-center {
  align-items: center;
}

.hp-align-flex-end {
  align-items: flex-end;
}

.hp-justify-center {
  justify-content: center;
}

.hp-justify-between {
  justify-content: space-between;
}

.hide-desktop {
  display: none;
}

a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}

p,
.regular400 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  color: var(--light-grey);
}

.heading2 {
  font-size: 60px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -3px;
}

.cta-secondary {
  padding: 12px 24px;
  background-color: var(--pink);
  color: var(--white);
  border: none;
  cursor: pointer;
  -webkit-box-shadow: 0px 8px 16px 5px rgba(209, 72, 144, 0.32);
  box-shadow: 0px 8px 16px 5px rgba(209, 72, 144, 0.32);
  border-radius: 999px;
}

.gradientText {
  background-image: linear-gradient(
    100deg,
    var(--pink) 0%,
    var(--cta-secondary) 49%,
    var(--teal) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* optional fallback */
}

/* Header Styles */

header {
  background-color: #0f0f0f33;
  padding: 16px 0px;
  position: relative;
  overflow: hidden;
  z-index: 999;
}

header .logo {
  max-height: 64px;
}

.header-right {
  gap: 80px;
}

.header-right .menu-items {
  gap: 32px;
  list-style-type: none;
  color: var(--white);
}

.menu-items .dropdown {
  display: flex;
  align-items: center;
  gap: 13px;
}

.menu-items .dropdown::after {
  content: "";
  width: 10px;
  height: 5px;
  background: url(/assets/images/down-arrow.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: block;
}

.header-right button {
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 12px 24px;
  background: var(--transparent);
  border: 1px solid var(--cta-secondary);
  border-radius: 999px;
}

/* Hero Section */

.hero-section {
  background: url(/assets/images/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -96px;
  position: relative;
}

.hero-container {
  max-width: 800px;
  padding-top: 215px;
  padding-bottom: 215px;
  color: var(--white);
}

.hero-container .hero-heading {
  font-size: 128px;
  line-height: 140px;
  font-weight: 800;
  letter-spacing: -5px;
}

.hero-container .hero-heading .gradientText {
  display: block;
}

.hero-container p {
  font-size: 20px;
  line-height: 28px;
  margin-top: 16px;
  margin-bottom: 48px;
}

.hero-section .hero-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 800px;
  object-fit: contain;
  z-index: 1;
}

.pink-glow {
  width: 254px;
  height: 254px;
  background-color: var(--pink);
  border-radius: 100%;
  filter: blur(200px);
  position: absolute;
  top: 220px;
  right: 0;
}

.teal-glow {
  width: 254px;
  height: 254px;
  background-color: var(--teal);
  border-radius: 100%;
  filter: blur(200px);
  position: absolute;
  right: 0;
  bottom: 0;
}

.hero-bottom-grad {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 999;
}

/* Slider Section */

.slider-section {
  padding: 160px 0px;
  background-color: var(--black2);
  color: var(--white);
}

.splide__slide > div {
  gap: 80px;
  min-height: 600px;
}

.splide__slide > div img {
  width: 480px;
  height: 480px;
  object-fit: cover;
  border-radius: 48px;
  padding: 0px 2px;
}

.splide__slide .slider-right-col {
  width: 50%;
}

.splide__slide > div .label {
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #1f3b3d;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--teal);
}

.splide__slide > div .slide-head {
  font-size: 80px;
  line-height: 100px;
  font-weight: 700;
  letter-spacing: -3px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.splide__slide > div .slide-desc {
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 48px;
}

.splide__slide > div .slide-desc span {
  font-weight: 600;
}

.splide__pagination button {
  height: 80px;
  width: 2px;
  border-radius: 0;
  background: #292929;
}

.splide__pagination--ttb {
  gap: 24px;
  right: 0px !important;
}

/* Sticky Container */

.sticky-section {
  padding: 160px 0px;
  background-color: var(--black2);
}

.sticky-section .container {
  position: relative;
  gap: 32px;
}

.sticky-container {
  gap: 80px;
  padding: 48px;
  border-radius: 48px;
  background-color: var(--black);
  color: var(--white);
  position: sticky;
  top: 20vh;
}

.sticky-container2 {
  top: 30vh;
}

.sticky-container img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 48px;
}

.sticky-container p {
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
}

/* 3 Card Grid Section */

.ai-powered-marketing-section {
  padding: 160px 0px;
  background: var(--black2);
}

.ai-powered-marketing-section .section-title {
  max-width: 1090px;
  margin: 0px auto;
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

.ai-powered-marketing-section .section-title p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: var(--light-grey);
  max-width: 790px;
  margin: 0 auto;
  margin-top: 24px;
}

.marketing-cards {
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
}

.teal-glow300 {
  width: 300px;
  height: 300px;
  background-color: var(--teal);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(900px);
  opacity: 0.7;
}

.marketing-card {
  width: 33.33%;
  text-align: center;
  z-index: 999;
}

.marketing-card-image-container {
  height: 506px;
  margin-bottom: 32px;
  position: relative;
  padding: 0 18px;
}

.marketing-card-image-container .marketing-card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  border-radius: 48px;
}

.marketing-card-image-container .marketing-card-thumb {
  max-height: 400px;
  z-index: 999;
}

.marketing-card h3 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
  color: var(--white);
}

.marketing-card p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: var(--light-grey);
}

.marketing-card1 {
  margin-top: 120px;
}

.marketing-card3 {
  margin-top: 200px;
}

/* Partner With Us */

.partner-with-us {
  padding: 80px 0px;
  text-align: center;
  background-color: var(--black3);
}

.partner-with-us-columns {
  position: relative;
  gap: 80px;
  margin-bottom: 48px;
}

.partner-with-us-columns .sep {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 1px;
  height: 100%;
  background-color: var(--black4);
}

.partner-column {
  width: 50%;
}

.partner-column .gradientText {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 56px;
}

.partner-column span {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--pink);
}

.partner-column h3 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-top: 16px;
  margin-bottom: 24px;
  color: var(--white);
}

.partner-column p {
  font-size: 20px;
  line-height: 32px;
  color: var(--light-grey);
}

.partner-column p span {
  font-weight: 600;
  color: var(--teal);
}

/* Get The App */

.get-the-app {
  background-color: var(--black2);
  padding: 240px 0px;
  color: var(--white);
}

.get-the-app .container {
  gap: 80px;
}

.get-the-app-column {
  width: 50%;
  position: relative;
}

.get-the-app-column h2 {
  font-size: 80px;
  line-height: 100px;
  font-weight: 700;
  letter-spacing: -1px;
}

.get-the-app-column > p {
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
  color: var(--light-grey);
  margin-top: 24px;
  margin-bottom: 48px;
}

.get-the-app-download {
  background-color: var(--black);
  padding: 24px;
  border-radius: 24px;
  gap: 32px;
}

.get-the-app-download .qr-code {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.get-the-app-download h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.get-the-app-download p {
  margin-top: 16px;
  margin-bottom: 32px;
}

.download-stores {
  gap: 8px;
}

.get-the-app-pink {
  width: 265px;
  height: 265px;
  border-radius: 100%;
  background-color: var(--pink);
  position: absolute;
  top: 86px;
  left: 133px;
  filter: blur(200px);
}

.get-the-app-teal {
  width: 190px;
  height: 190px;
  border-radius: 100%;
  background-color: var(--teal);
  position: absolute;
  bottom: 100px;
  right: 140px;
  filter: blur(200px);
}

.get-the-app-column img {
  z-index: 999;
}

/* Contact Form */

.contact-form {
  padding: 160px 0px;
  background-color: var(--black2);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-form .container {
  gap: 120px;
}

.contact-form p {
  margin-top: 24px;
  margin-bottom: 48px;
}

.contact-form .email {
  gap: 16px;
}

.contact-form-column1 {
  max-width: 672px;
}

.contact-form-column2 {
  flex-grow: 1;
}

.contact-form-column2 form {
  gap: 16px;
}

.contact-form-column2 form input:not([type="submit"]),
.contact-form-column2 form textarea {
  padding: 16px;
  border-radius: 12px;
  background-color: var(--black5);
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: var(--white);
  border: none;
}

.contact-form-column2 form input::placeholder,
.contact-form-column2 form textarea::placeholder {
  color: #666666;
}

.contact-form-column2 form .cta-secondary {
  width: fit-content;
  margin-top: 32px;
  margin-left: auto;
}

.contact-form-pink {
  width: 300px;
  height: 300px;
  background-color: var(--pink);
  border-radius: 100%;
  position: absolute;
  bottom: -150px;
  left: -230px;
  filter: blur(200px);
}

.contact-form-teal {
  width: 300px;
  height: 300px;
  background-color: var(--teal);
  border-radius: 100%;
  position: absolute;
  top: -255px;
  right: -287px;
  filter: blur(200px);
}

/* Footer */

footer {
  padding: 100px 0px;
  background-color: #000;
  color: var(--white);
}

footer .column1,
footer .column2,
footer .column3 {
  width: 270px;
}

.footer-right {
  width: fit-content;
  gap: 48px;
}

footer .column1 p {
  font-size: 20px;
  line-height: 32px;
  margin: 24px 0px;
}

footer .column1 > div {
  gap: 8px;
}

footer .column2 h3,
footer .column3 h3 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 32px;
}

.footer-menu-items {
  list-style-type: none;
  gap: 16px;
}

.footer-menu-items a {
  font-weight: 500;
  color: var(--white);
}

footer .column3 .social-links {
  gap: 16px;
}

@media (max-width: 1000px) {
  .hide-mobile {
    display: none;
  }

  .hide-desktop {
    display: block;
  }

  .hp-flex-column-mob {
    flex-direction: column;
  }

  /* Header */

  header {
    padding: 24px 0px;
    background-color: var(--black2);
  }

  .header-right {
    position: absolute;
    right: -1000px;
  }

  header .hamburger-icon {
    width: 48px;
    height: 48px;
    background-color: var(--transparent);
    border: none;
    padding: 0;
  }

  /* Hero Section */

  .hero-section {
    margin-top: 0;
    align-items: flex-end;
  }

  .hero-container {
    margin: 0 auto;
    text-align: center;
    padding: 48px 0px;
  }

  .hero-container .hero-heading {
    font-size: 64px;
    line-height: 72px;
    font-weight: 800;
    letter-spacing: -5px;
  }

  .hero-container p {
    font-size: 16px;
    line-height: 24px;
  }

  .pink-glow {
    width: 150px;
    height: 150px;
    filter: blur(100px);
    top: 50%;
    right: 50%;
  }

  .teal-glow {
    width: 150px;
    height: 150px;
    filter: blur(100px);
    right: 78px;
    bottom: 28px;
  }

  /* Slider Section */

  .slider-section {
    padding-top: 80px;
    padding-bottom: 0px;
  }

  .splide__slide > div {
    gap: 48px;
    padding-bottom: 80px;
  }

  .splide__slide > div img {
    width: 100%;
    height: auto;
  }

  .splide__slide .slider-right-col {
    width: 100%;
  }

  .splide__slide > div .label {
    font-size: 16px;
    line-height: 28px;
  }

  .splide__slide > div .slide-head {
    font-size: 40px;
    line-height: 48px;
  }

  .splide__slide > div .slide-desc {
    font-size: 16px;
    line-height: 24px;
  }

  /* Sticky Section */

  .sticky-section {
    padding: 0;
  }

  .sticky-container {
    padding: 24px;
    top: 5vh;
    text-align: center;
    gap: 48px;
  }

  .sticky-container img {
    width: 100%;
  }

  .heading2 {
    font-size: 40px;
    line-height: 48px;
  }

  .sticky-container p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
  }

  /* Ai Powered */

  .ai-powered-marketing-section {
    padding: 54px 0px;
  }

  .marketing-card {
    width: 100%;
    margin: 0px;
  }
  .marketing-card-image-container .marketing-card-thumb {
    width: inherit;
    margin: auto;
  }

  .teal-glow300 {
    width: 400px;
    height: 400px;
    filter: blur(400px);
    opacity: 1;
  }

  /* Partner */
  .partner-with-us {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .partner-with-us-columns {
    gap: 24px;
  }

  .partner-column {
    width: 100%;
  }

  .partner-with-us-columns .sep {
    position: relative;
    width: 100%;
    height: 1px;
  }

  /* Get The App */

  .get-the-app {
    padding: 54px 0px;
  }

  .get-the-app-column {
    width: fit-content;
  }

  .get-the-app-column h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .get-the-app-column > p {
    font-size: 20px;
    line-height: 32px;
  }
  .get-the-app-download {
    width: fit-content;
  }

  /* Contact */

  .contact-form {
    padding-bottom: 56px;
  }

  .contact-form p,
  .contact-form .email {
    font-size: 20px;
    line-height: 32px;
  }

  /* Footer */

  footer .container {
    gap: 177px;
  }

  footer .column1,
  footer .column2,
  footer .column3 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-phone-mobile {
    max-width: 348px;
  }
}
