/* [project]/app/[locale]/LandingSection.module.css [app-client] (css) */
.LandingSection-module__N99t3W__landing-section {
  width: 100%;
  height: calc(95vh + 1rem);
  max-height: 95vh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

@media (max-height: 950px) {
  .LandingSection-module__N99t3W__landing-section {
    min-height: 950px !important;
  }
}

.LandingSection-module__N99t3W__landing-content {
  z-index: 1;
  width: 100%;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
}

.LandingSection-module__N99t3W__landing-main-container {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 85%;
  margin: 0 auto;
  display: flex;
}

.LandingSection-module__N99t3W__landing-main-container p {
  font-size: clamp(1rem, 2vw + .5rem, 1.25rem);
}

.LandingSection-module__N99t3W__landing-main-container button {
  margin-top: 1rem;
}

.LandingSection-module__N99t3W__landing-images {
  z-index: -1;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  height: 100%;
  display: grid;
  position: absolute;
  left: 1rem;
  right: 1rem;
}

@media (max-width: 1200px) {
  .LandingSection-module__N99t3W__landing-images {
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }

  .LandingSection-module__N99t3W__img-wrapper:nth-child(3) img {
    display: none;
  }

  .LandingSection-module__N99t3W__img-wrapper:nth-child(2) img {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
}

@media (max-width: 800px) {
  .LandingSection-module__N99t3W__landing-images {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }

  .LandingSection-module__N99t3W__img-wrapper:nth-child(2) img {
    display: none;
  }

  .LandingSection-module__N99t3W__img-wrapper:first-child img {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
}

.LandingSection-module__N99t3W__landing-images:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 0 100%, #0d6199c9 0%, #0d61991a 50%, #0d619900 75%), radial-gradient(circle at 100% 100%, #219446a6 0%, #21944626 40%, #21944600 75%);
  border-radius: 1rem;
  position: absolute;
  inset: 0;
}

.LandingSection-module__N99t3W__img-wrapper {
  position: relative;
}

.LandingSection-module__N99t3W__img-wrapper img {
  object-fit: cover;
  opacity: .1;
  width: 100%;
  height: 100%;
}

.LandingSection-module__N99t3W__img-wrapper:first-child img {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.LandingSection-module__N99t3W__img-wrapper:last-child img {
  object-position: right;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.LandingSection-module__N99t3W__landing-download-container {
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-top: 3rem;
  display: flex;
}

.LandingSection-module__N99t3W__download-badges {
  flex-direction: row;
  gap: 1rem;
  display: flex;
}

.LandingSection-module__N99t3W__social-icons {
  z-index: 20000;
  flex-direction: row;
  justify-content: flex-end;
  gap: .5rem;
  width: calc(100% - 1rem);
  margin-top: 1rem;
  display: flex;
  bottom: .5rem;
  right: 2rem;
}

/* [project]/app/[locale]/LandingPhones.module.css [app-client] (css) */
.LandingPhones-module__UkU4Aq__landing-phones {
  z-index: 1;
  justify-content: center;
  display: flex;
  position: absolute;
  bottom: -15rem;
  left: 0;
  right: 0;
}

.LandingPhones-module__UkU4Aq__landing-phones img {
  width: auto;
  height: clamp(600px, 20vw, 800px);
}

.LandingPhones-module__UkU4Aq__samsung-img {
  z-index: -1;
  margin-top: 2rem;
  margin-left: clamp(-7rem, -20vw, -5rem);
}

@media (max-width: 600px) {
  .LandingPhones-module__UkU4Aq__samsung-img {
    display: none;
  }
}

/* [project]/components/ui/Button.css [app-client] (css) */
.button-container {
  justify-content: end;
  align-items: center;
  width: 100%;
  display: flex;
  container-type: inline-size;
}

.button-container.align-start {
  justify-content: start;
}

.button-container.align-center {
  justify-content: center;
}

.button-container.align-end {
  justify-content: end;
}

button {
  border: none;
  border: 1px solid var(--border);
  border-top: 1px solid var(--highlight);
  cursor: pointer;
  background-color: #000;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  margin: 0;
  padding: .6em 2rem;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
}

button:hover {
  transform: scale(1.05);
}

button:focus, button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

button.transparent {
  color: #fff;
  background-color: #0000;
  border: none;
  width: fit-content !important;
  padding: 0 !important;
}

button.transparent:hover {
  transform-origin: center;
  transform: scale(1.05);
}

button.transparent:focus {
  outline: none;
}

button.primary {
  background-color: #316b98;
}

button.long {
  padding: .7rem clamp(2rem, 2vw + .1rem, 3rem);
}

.button-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  overflow: hidden;
  font-size: 1rem !important;
}

button.approve {
  background-color: var(--approve);
  border-color: var(--approve-border);
  border-top-color: var(--approve-highlight);
  color: var(--button-text);
}

button.reject {
  background-color: var(--reject);
  border-color: var(--reject-border);
  border-top-color: var(--reject-highlight);
  color: var(--button-text);
}

@container (max-width: 8rem) {
  .button-label {
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 50%;
    min-width: 0%;
    display: none;
    overflow: hidden;
  }
}

/* [project]/app/[locale]/WaitlistSection.module.css [app-client] (css) */
.WaitlistSection-module__WRJbvq__waitlist-section {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 4rem auto;
  display: flex;
}

.WaitlistSection-module__WRJbvq__waitlist-section h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
}

.WaitlistSection-module__WRJbvq__waitlist-section p {
  width: 80%;
  font-size: clamp(1rem, 1.5vw + .5rem, 1.5rem);
}

.WaitlistSection-module__WRJbvq__waitlist-section form {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 80%;
  max-width: 400px;
  margin-top: 2rem;
  display: flex;
}

.WaitlistSection-module__WRJbvq__waitlist-section form button {
  margin-top: 1rem;
}

/* [project]/app/[locale]/CountryInput.module.css [app-client] (css) */
.CountryInput-module__MsvIOG__country-input-container {
  width: 100%;
  position: relative;
}

.CountryInput-module__MsvIOG__suggestions-list {
  z-index: 20;
  border: 1px solid var(--border);
  background-color: #fff;
  border-radius: 1rem;
  width: 100%;
  max-height: 200px;
  margin-top: .25rem;
  position: absolute;
  overflow-y: auto;
}

.CountryInput-module__MsvIOG__suggestion-item:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}

.CountryInput-module__MsvIOG__suggestion-item {
  cursor: pointer;
  border-bottom: 1px solid #e6e6e6;
  padding: .5rem;
}

.CountryInput-module__MsvIOG__suggestion-item:hover {
  color: #fff;
  background-color: #316b98;
}

.CountryInput-module__MsvIOG__no-country-found {
  color: tomato;
  text-align: start;
  margin-top: .5rem;
  font-size: 1rem !important;
}

/* [project]/components/ui/Input.css [app-client] (css) */
.input-container {
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  width: 100%;
  display: flex;
}

.label-container {
  justify-content: start;
  align-items: center;
  gap: .25rem;
  width: 100%;
  display: flex;
}

input {
  width: 100%;
  height: 3rem;
  color: var(--text);
  text-indent: .75rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  font-size: 1rem;
  box-shadow: 0 2px 10px #00000008, 0 2px 20px #00000026;
}

input.valid {
  background-color: #f0fff0;
  border-color: green;
  box-shadow: 0 0 5px green;
}

input.invalid {
  background-color: #fff0f0;
  border-color: red;
  box-shadow: 0 0 5px red;
}

input:focus {
  border-color: var(--primary);
  outline: none;
}

input.indent {
  text-indent: 1.5rem;
}

.input-container label {
  align-self: flex-start;
}

input.no-label {
  margin-top: 0 !important;
}

.input-icon-container {
  width: 100%;
  position: relative;
}

input:disabled {
  cursor: not-allowed;
  background-color: #e6e6e6;
}

.input-icon-container svg {
  opacity: .25;
  position: absolute;
  top: 50%;
  left: .5rem;
  transform: translateY(-50%);
}

/* [project]/app/[locale]/CityInput.module.css [app-client] (css) */
.CityInput-module__WdvjPq__city-input-container {
  width: 100%;
  position: relative;
}

.CityInput-module__WdvjPq__suggestions-list {
  z-index: 200;
  border: 1px solid var(--border);
  background-color: #fff;
  border-radius: 1rem;
  width: 100%;
  max-height: 200px;
  margin-top: .25rem;
  position: absolute;
  overflow-y: auto;
}

.CityInput-module__WdvjPq__suggestion-item:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}

.CityInput-module__WdvjPq__suggestion-item {
  cursor: pointer;
  border-bottom: 1px solid #e6e6e6;
  padding: .5rem;
}

.CityInput-module__WdvjPq__suggestion-item:hover {
  color: #fff;
  background-color: #316b98;
}

.CityInput-module__WdvjPq__no-city-found {
  color: tomato;
  text-align: start;
  margin-top: .5rem;
  font-size: 1rem !important;
}

.CityInput-module__WdvjPq__map-container {
  border: 1px solid var(--border);
  border-radius: 1rem;
  width: 300px;
  height: 150px;
}

.CityInput-module__WdvjPq__map-container-selected {
  border: 2px solid var(--accent);
  border-radius: 1rem;
  width: 100%;
  height: 150px;
  margin-top: 1rem;
  overflow: hidden;
}

/* [project]/components/ui/EmailInput.module.css [app-client] (css) */
.EmailInput-module__wmYITG__email-input-container {
  width: 100%;
}

.EmailInput-module__wmYITG__invalid-email-message {
  color: tomato;
  text-align: start;
  margin-top: .5rem;
  width: 100% !important;
  font-size: 1rem !important;
}

/* [project]/app/[locale]/FeatureSection.module.css [app-client] (css) */
.FeatureSection-module__mRerxW__features-section {
  text-align: center;
  background: linear-gradient(151deg, #316b9863 0%, #82cc9a6b 100%);
  border-radius: 1rem;
  flex-direction: column;
  align-items: center;
  width: 95vw;
  margin: 5rem auto;
  padding-bottom: 4rem;
  display: flex;
}

.FeatureSection-module__mRerxW__features-section h2 {
  width: 90%;
  max-width: 800px;
  margin-top: 2rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.FeatureSection-module__mRerxW__features-section p {
  color: #000d;
  max-width: 800px;
  margin: 1rem 2rem;
  font-size: 1rem;
}

.FeatureSection-module__mRerxW__features-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  width: 90%;
  max-width: 1200px;
  margin-top: 1rem;
  display: grid;
}

.FeatureSection-module__mRerxW__feature-item {
  text-align: left;
  cursor: pointer;
  background: #fffa;
  border-radius: 1rem;
  padding: 24px;
  box-shadow: 0 4px 6px #0000001a;
}

.FeatureSection-module__mRerxW__feature-item p {
  color: #000d;
  margin: 1rem 0;
}

.FeatureSection-module__mRerxW__feature-icon {
  color: #316b98;
  background: linear-gradient(151deg, #316b9863 0%, #82cc9a6b 100%);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  padding: .75rem;
  font-size: 2rem;
}

/*# sourceMappingURL=_9230d3d7._.css.map*/