html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  /* font-family: 'Arial', sans-serif; */
  background-color: #0a2240;
  ;
  color: white;
  overflow: hidden;
  font-family: "Sora", sans-serif;
}


.outer-space {
  background-color: #0a2240;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.container {
  background-color: white;
  max-width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  box-sizing: border-box;
  border-radius: 0 32px 32px 0;
  width: 85vw;
  /* max-width: 1200px; */
  height: 90vh;
}

.left {
  flex: 1;
  /* padding: 50px 20px 50px 50px; */
  display: flex;
  flex-direction: column;
  background-color: #0a2240;
  /* width: 100vw; */
  border-radius: 0 0 50px 0;
  /* overflow-y: auto; */
  scrollbar-width: thin;
  scrollbar-color: #fcdc3a transparent;
  height: auto;
  width: 70vw;

}

.left::-webkit-scrollbar {
  width: 6px;
}

.left::-webkit-scrollbar-thumb {
  background-color: #fcdc3a;
  border-radius: 4px;
}

.right {
  background-color: white;
  /* border-radius: 0 40px 40px 0; */
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
  height: auto;
  width: 30vw;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  /* margin-top: 15px;
  margin-right: 15px; */
  flex-direction: column;
  border-radius: 0 32px 32px 0;

}




/* 
.store-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.store-buttons img {
  height: 36px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
} */










h1 {
  font-size: 48px;
  margin: 0;
}

h2 {
  font-size: 24px;
  color: #ffeb3b;
  margin-bottom: 10px;
}

/* ------------------------------------- Features Layout Code ------------------------------------------------ */

.features-layout {
  display: grid;
  /* grid-template-columns: 1fr 1fr 200px; */
  /* grid-template-columns: 200px 200px 1fr;
  grid-template-rows: 200px 220px; */
  gap: 10px;
  /* margin-top: 30px; */
  max-width: 70vw;
  /* grid-template-areas:
    "f1 f2 tall"
    "wide wide tall"; */
  /* margin-bottom: 80px;
    height: 90vh; */
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "wide1 tall"
    "wide2  tall";
  align-content: center;
  width: 52vw;
  margin: auto 0;
}




.feature {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  padding: 16px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 120px;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  /* cursor: pointer; */
}

/* .feature .icon{
  margin-bottom: 10px;
} */

.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.feature h3,
.feature p {
  position: relative;
  z-index: 1;
  /* margin: 0 0 6px 0; */
}

.feature h3 {
  color: #fcdc3a;
  font-size: 20px;
  font-weight: bold;
  /* margin-top: 0; */
  padding-top: 0;
}

.feature p {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 0;
  padding-top: 0;
  text-align: justify;
}


/* .feature.small:nth-child(1) {
  grid-area: f1;
  width: auto;
  height: 160px;
} */

/* .feature.small:nth-child(2) {
  grid-area: f2;
  width: auto;
  height: 160px;
} */


/* .feature.wide {
  grid-area: wide;
  min-height: 100px;
  width: auto;
} */
.feature.wide1 {
  grid-area: wide1;
  min-height: 150px;
  width: auto;
}

.feature.wide2 {
  grid-area: wide2;
  min-height: 150px;
  width: auto;
}


.feature.tall {
  grid-area: tall;
  min-height: 255px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature.tall h3 {
  /* padding-top: 5px; */
  font-size: 2.5rem;
}


.qr-code {
  width: 95%;
  height: 80%;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
}


/* --------------------------------------------------------------------------------- */


/* ------------------------------------- Phone Code ------------------------------------------------ */


/* Phone area (white card layer) */
/* .right {
  flex-shrink: 0;
  background-color: white;
  padding: 20px;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
} */


.phone-wrapper {
  position: relative;
  width: 75%;
  height: 85%;
  margin-bottom: 4%;
  /* left: 13px; */
}

.right {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100%;  */
}

.scrollable-screen {
  /* position: absolute; */
  /* top: 0px;
  left: 0px; */
  /* width: 90%; */
  height: 100%;
  width: auto;
  margin: auto;
  overflow-y: scroll;
  z-index: 1;
  border-radius: 40px;
  scrollbar-width: none;
  border: 10px solid black;
}

.scrollable-screen::-webkit-scrollbar {
  display: none;
}

.scrollable-screen img {
  width: 100%;
  /* border-radius: 40px; */
  object-fit: cover;
}

/* .iphone-frame {
  width: 250%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: -55px;
  left: -255px;
  z-index: 2;
  pointer-events: none;
} */
/* --------------------------------------------------------------------------------- */


/* ------------------------------------- Brand Code ------------------------------------------------ */

.brand {
  display: flex;
  align-items: center;
  /* margin-top: 5vh; */
  /* height: 5vh; */
  margin-bottom: 2vh;
}

.brand .logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: #fcdc3a;
  font-size: 25px;
  margin: 0;
}

.brand-tagline {
  color: white;
  font-size: 45px;
  margin: 0;
  margin-top: 4px;
}


/* --------------------------------------------------------------------------------- */



/* ------------------------------------- Features Boxes Expantion Code ------------------------------------------------ */


/* .features-layout.expanded .feature {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.features-layout.expanded .feature.active {
  position: absolute;
  top: 57%;
  left: 30%;
  width: 80%;
  max-width: 700px;
  height: 400px;
  transform: translate(-50%, -50%);
  background-size: cover;
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: all 0.4s ease;
}


.feature {
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.close-btn {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fcdc3a;
  border: none;
  color: #0a2240;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  z-index: 11;
}

.feature.active .close-btn {
  display: block;
}

.expanded-content {
  display: none;
  margin-top: 20px;
  font-size: 14px;
  color: #fff;
  z-index: 11;
  position: relative;
  line-height: 1.5;
}

.feature.active .expanded-content {
  display: block;
} */


/* Feature Default State */
/* .feature {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  padding: 16px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 120px;
  transition: opacity 0.4s ease;
  z-index: 1;
} */

/* Hover effect  */
.feature:hover {
  transform: scale(1.02);
}

/* Hidden state when another is expanded */
/* .features-layout.expanded .feature {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
} */

/* Active Expanded Feature */
/* .features-layout.expanded .feature.active {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 700px;
  height: 400px;
  transform: translate(-85%, -52%) scale(0.9);
  opacity: 1;
  pointer-events: auto;
  background-size: cover;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 10;
  transition: opacity 0.4s ease;
} */



/* Close Button */
/* .close-btn {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fcdc3a;
  border: none;
  color: #0a2240;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  z-index: 11;
}

.feature.active .close-btn {
  display: block;
} */

/* Expanded Content */
/* .expanded-content {
  display: none;
  margin-top: 20px;
  font-size: 14px;
  color: #fff;
  z-index: 11;
  position: relative;
  line-height: 1.5;
}

.feature.active .expanded-content {
  display: block;
} */






/* --------------------------------------------------------------------------------- */


/* ------------------------------------- Form Code ------------------------------------------------ */


.waitlist-form {
  /* margin-top: 40px; */
  /* max-width: 95%; */
  /* position: relative; */
  /* top: -80px; */
  /* height: 5vh; */
  margin-bottom: 10vh;
  width: 95%;
  /* margin: auto; */
}



.waitlist-form h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #fcdc3a;
}

.input-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.input-group input {
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  /* outline: 1px rgba(255, 255, 255, 0.15) solid; */
  border: 1px solid #fcdc3a;
  border-radius: 100px;
  color: white;
  font-size: 14px;
  outline: none;
  flex: 1;
  min-width: 150px;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.40);
}

.input-group button {
  background-color: #fcdc3a;
  color: #0a2240;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  /* transition: background 0.3s ease; */
}

.input-group button:hover {
  background-color: #ffe84d;
}


/* --------------------------------------------------------------------------------- */
.mobile-only-btn {
  display: none;
  /* Hide by default */
}

/* Default hide both */
.features-layout-for-tab,
.features-layout-for-phone {
  display: none;
}



/* Responsive */


/* Tablet View */

@media (min-width: 769px) and (max-width: 1024px) {

  * {
    box-sizing: border-box;
  }

  html,
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }

  .container::-webkit-scrollbar {
    display: none;
  }


  .container {
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #0a2240;
    width: auto;
    padding-top: 30px;
    height: 100vh;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .brand {
    justify-content: center;
  }

  .right {
    display: none;
  }

  .left {
    padding-bottom: 5%;
  }

  .input-group button {
    width: 100%;
  }



  .waitlist-form {
    /* position: absolute;
    top: 720px;
    left: 0; */
    /* width: auto; */
    /* background-color: #0a2240; */
    /* padding: 16px; */
    box-sizing: border-box;
    z-index: 8000;
    /* margin-bottom: 10vh; */
    width: 95%;
    margin-left: 20px;
    /* height: auto; */

  }

  .mobile-only-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fcdc3a;
    color: black;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
  }



  .features-layout {
    display: none;
  }

  .features-layout-for-tab {
    display: inline-block;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    width: auto;
  }

  .features-layout-for-tab .feature.wide3 {
    align-items: center;
  }

}




/* Mobile view */
@media (max-width: 768px) {

  * {
    box-sizing: border-box;
  }

  html,
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }

  .container::-webkit-scrollbar {
    display: none;
  }

  .container {
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #0a2240;
    width: auto;
    padding-top: 30px;
    height: 100vh;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .brand {
    justify-content: center;
  }

  .right {
    display: none;
  }

  .left {
    padding-bottom: 5%;
    width: 90vw;
  }

  .input-group button {
    width: 100%;
  }



  .waitlist-form {
    /* position: absolute;
    top: 720px;
    left: 0; */
    /* width: auto; */
    /* background-color: #0a2240; */
    /* padding: 16px; */
    box-sizing: border-box;
    z-index: 8000;
    /* width: auto; */
    /* height: auto; */
    width: 93%;
    margin-left: 20px;

  }

  .mobile-only-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fcdc3a;
    color: black;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
  }



  .features-layout, .features-layout-for-tab {
    display: none;
  }

  .features-layout-for-phone {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
  }

  .features-layout-for-phone .wide1,
.features-layout-for-phone .wide2 {
  flex: 1 1 calc(50% - 5px); /* Two equal columns */
  min-height: 120px;
  padding: 16px;
  box-sizing: border-box;
  align-items: center;
}

.features-layout-for-phone .wide3 {
  flex-basis: 100%; /* full width below */
  padding: 16px;
  box-sizing: border-box;
  margin-top: 10px;
  align-items: center;
}
  /* .features-layout-for-phone .feature.wide3 {
    align-items: center;
  } */

  .features-layout-for-phone .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px;
}

.features-layout-for-phone .feature .icon {
  font-size: 1.2rem !important;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.features-layout-for-phone .feature h3,
.features-layout-for-phone .feature p {
  margin: 4px 0;
  padding: 0;
  line-height: 1.2;
}

.features-layout-for-phone .feature p{
  font-size: 12px;
  padding: 5px;
}

.features-layout-for-phone .feature h3{
  font-size: 18px;
    margin-top: 20px;

}

}