 :root {
      --purple: #6a5acd;
      --pink: #eb4d6d;
      --white: #fff;
      --gray-light: #f4f4f4;
      --max-width: 1000px;
    }
    *, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
    body { font-family:'Helvetica Neue',sans-serif; color:#333; }

    /* Hero */
    .hero {
      position: relative;
      height: 85vh;
      min-height: 560px;
      background: linear-gradient(135deg, rgba(106,90,205,0.8), rgba(235,77,109,0.75)), url('/img/hero-bg.png') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
     }

    .hero::after {
      content:"";
      position:absolute; inset:0;
      background:linear-gradient(135deg, rgba(106,90,205,0.8), rgba(235,77,109,0.75));
    }
   
   

    /* Features */
    .features {
      background: var(--gray-lighter);
      padding: 4rem 1rem;
      text-align: center;
    }
    .features .grid {
      display:grid;
      grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
      gap:2.5rem;
      max-width: var(--max-width);
      margin: auto;
    }
    .features .item img { width:60px; margin-bottom:.75rem; }
    .features .item h3 {
      margin: .5em 0;
      color: var(--purple);
      font-size:1.2rem;
    }
    .features .item p { font-size:.95rem; color:#555; }

    /* Proof */
    .proof {
      padding:2.5rem 1rem;
      background: var(--gray-light);
    }
    .proof .stats {
      display:flex;
      justify-content:center;
      gap:4rem;
      max-width: var(--max-width);
      margin:auto;
      flex-wrap: wrap;
    }
    .proof .stat { text-align:center; margin:1rem; }
    .proof .stat .num {
      font-size:2.4rem;
      font-weight:700;
      color: var(--pink);
    }
    .proof .stat .label {
      margin-top:.35em;
      font-size:1rem;
      color:#444;
    }

    /* Download – gradient purple → pink */
   /* Download – pink→purple (purple heavier at bottom) */
   .download {
  background: linear-gradient(180deg,
    rgba(235,77,109,1) 0%,
    rgba(106,90,205,1) 100%
  );
  color: var(--white);
  padding: 4rem 1rem;
  text-align: center;
    }

    .download h2 {
      font-size:2rem;
      margin-bottom:1.5rem;
      line-height:1.2;
      max-width: 800px;
      margin: 0 auto;
    }
    .download .btns {
      display:flex;
      justify-content:center;
      gap:16px;
      flex-wrap: wrap;
    }
    .download .btns img {
      height: 50px;
      cursor: pointer;
      transition: transform 0.3s;
    }
    .download .btns img:hover {
      transform: translateY(-4px);
    }

    /* Footer – solid brand purple */
    .footer {
      background: var(--purple);
      color: var(--white);
      text-align: center;
      padding: 1rem;
      font-size: .9rem;
    }

    /* Animations */
    @keyframes fadeInUp {
      from { opacity:0; transform: translateY(20px); }
      to { opacity:1; transform: translateY(0); }
    }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* Responsive tweaks */
    @media (max-width:600px) {
      .hero-content h1 { font-size:2.4rem; }
      .proof .stats { gap:2rem; }
    }
    
    
    
    #main-footer {
  background: #6a5acd; /* Brand purple */
  color: #fff;
  padding: 1.5rem 0 1rem 0;
  text-align: center;
  font-size: 1rem;
  margin-top: 0;
  border: none;
}

#main-footer .wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 12px;
}

#footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#footer-nav li {
  display: inline-block;
}

#footer-nav li a {
  color: #fff;
  text-decoration: none;
  transition: text-decoration 0.2s, color 0.2s;
  opacity: 0.88;
  font-weight: 500;
}

#footer-nav li a:hover {
  text-decoration: underline;
  color: #eb4d6d; /* Pink accent on hover */
  opacity: 1;
}

#footer-copyright {
  flex-basis: 100%;
  margin-top: 8px;
  opacity: 0.75;
  font-size: 0.95em;
  text-align: center;
}

/* Responsive: stack on mobile */
@media (max-width: 600px) {
  #footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  #footer-copyright {
    margin-top: 16px;
  }
}



.hero-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start; /* was center, should be flex-start */
  justify-content: space-between;
  max-width: var(--max-width);
  width: 100%;
  gap: 120px;
  padding: 0 48px;
  position: relative;
  z-index: 1;
  color: #fff; /* ensures white text for all children */
}


.text-col {
  flex: 1 1 0;
  min-width: 420px;
  max-width: 540px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  
  line-height: 2.09;
  margin-bottom: 1.35em;
  justify-content: flex-start;
}


.text-col h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 900;
  
  text-align: center;
  letter-spacing: -.020em;
}

.text-col p {
  color: #fff;
  font-size: 1.33rem;
  font-weight: 500;
  opacity: 0.96;
  margin-bottom: 2.1em;
  margin-top: 0.2em;
  text-align: center;
}

.stores {
  width: 100%;
  display: flex;
  justify-content: center; /* Left align like FaceApp */
  gap: 20px;
  margin-top: 0.2em;
  margin-bottom: 0.7em;
}

.stores img {
  height: 44px;
  max-width: 162px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
}

.mockup-outer {
  min-width: 300px;         /* Controls horizontal space for mockup */
  
  display: flex;
  flex-direction: column;
  justify-content: center;  /* Center .mockup vertically in this space */
  align-items: flex-end;    /* Image stays on the right of its column */
}

.mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;             /* Let the image control its own height */
}

.mockup img {
  max-width: 100%;
  width: 100%;
  min-width: 180px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 1100px) {
  .hero-content {
    gap: 48px;
    padding: 0 12px;
  }
  .text-col, .mockup-outer {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .hero-content {
    gap: 24px;
    padding: 0 8px;
  }
  .text-col, .mockup-outer {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 6px;
    text-align: center;
  }
  .text-col,
  .mockup-outer {
    width: 100%;
    min-width: 0;
    max-width: 110%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .text-col h1,
  .text-col p,
  .stores {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .mockup {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .mockup img {
    max-width: 220px;
    min-width: 120px;
    width: 100%;
  }
  .stores {
    justify-content: center;
    gap: 16px;
    margin-bottom: 1.1em;
  }
}

@media (max-width: 480px) {
  .mockup img {
    max-width: 180px;
    min-width: 80px;
    width: 100%;
  }
  .text-col h1 {
    font-size: 1.45rem;
  }
  .text-col p {
    font-size: 0.99rem;
  }
  .stores img {
    height: 36px;
    max-width: 120px;
  }
}




/* here is a slan for stakes


.w-full {
    display: block;
    width: 100%;
}

.txt1 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.4;
    color: #999999;
}

.txt2 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.4;
    color: #00ad5f;
}

.txt3 {
    font-family: Poppins-Regular;
    font-size: 15px;
    line-height: 1.4;
    color: #00ad5f;
    text-transform: uppercase;
}

/*==================================================================
[ Size ]*/
.size1 {
    width: 355px;
    max-width: 100%;
}

.size2 {
    width: calc(100% - 43px);
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.home {
    background-image: url(/img/hero_bg.png);
    background-size: auto;
    background-color: var(--main_page_background);
}

.home #main-footer {
    background-color: transparent !important;
    margin-top: 5px;
    padding-top: 0px;
    padding-bottom: 30px;
}

.home #main-footer li, .home #main-footer a {
    color: #ededed !important;
}

.limiter {
width: 100%;
margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: calc(100vh - 350px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: transparent;
}

.wrap-login100 {
    border-radius: 10px;
    width: 780px;
    background: var(--common_page_background);
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
    box-shadow: 0 5px 20px 11px rgba(24, 24, 31, 0.1);
}

.wrap-login100 .standard-page {
    width: 100%;
}

.wrap-login100 .opt-in {
    width: 100%;
}

/*==================================================================
[ login more ]*/
.login100-more {
    width: 55%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    background-image: url('/img/form_main_bg.png');
}

#signup-page .login100-more {

    background-image: url('/img/form_bg.jpg');
}

.signup-page .login100-more {
    width: 50%;
}

.login100-more .login100_sub_content {
    position: absolute;
    bottom: 30px;
}

.login100-more .login100_content {
    word-break: break-word;
    color: #fff;
    align-items: center;
    height: 100%;
    position: absolute;
    padding: 30px 40px;
    font-family: Lato,sans-serif;
    top: 0;
}


.login100_content h1 {
    font-size: 32px;
    margin-top: 0;
    font-weight: 800;
}

.login100_content p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.login100-more::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
}



/*==================================================================
[ Form ]*/

.login100-form {
    width: 45%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 45px 40px 45px;
}

.signup-page .login100-form {
    width: 50%;
}

.login100-form-title {
    font-size: 20px;
    color: var(--text_title);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 180px;
}

#signup-form .login100-form-title {
    padding-bottom: 100px;
}

.login100-form p {

    width: 100%;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
    .login100-form {
        width: 60%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .login100-more {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .login100-form {
        width: 100%;
    }

    .login100-more {
        display: none;
        width: 1000%;
    }
}

@media (max-width: 576px) {

    .login100-form {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 50px;
    }

    .login100-form-title {
        padding-top: 20px;
        padding-bottom: 80px;
    }
}


.wrap-landing-info-container {
  background: var(--gray-lighter); /* brand purple */
  padding: 2rem 0;
  text-align: center;
}

.wrap-landing-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.wrap-landing-info .avatar {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  display: inline-block;
  border: 2px solid #fff; /* subtle pop-out */
}


