/* [project]/src/app/components/HeroSection/HeroSection.module.css [app-client] (css) */
.HeroSection-module__1olGuq__heroContainer {
  text-align: center;
  box-sizing: border-box;
  background: linear-gradient(#f7fafc 0%, #fff 100%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem;
  display: flex;
}

.HeroSection-module__1olGuq__heading {
  color: #111827;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.HeroSection-module__1olGuq__subText {
  color: #4b5563;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

.HeroSection-module__1olGuq__inputContainer {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: .75rem;
  margin-bottom: 3rem;
  display: flex;
}

.HeroSection-module__1olGuq__dateWrapper {
  width: auto;
  min-width: 320px;
  max-width: none;
  margin: 0;
}

.HeroSection-module__1olGuq__dateLabel {
  color: #374151;
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 500;
  display: block;
}

.HeroSection-module__1olGuq__dateInputWrapper {
  cursor: pointer;
  background: #fff;
  border: 2px solid #d1d5db;
  border-radius: 12px;
  align-items: center;
  gap: .75rem;
  min-width: 380px;
  min-height: 52px;
  padding: .75rem .875rem;
  transition: box-shadow .2s, border-color .2s;
  display: flex;
  position: relative;
}

.HeroSection-module__1olGuq__dateInputWrapper:hover {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px #3b82f61a;
}

.HeroSection-module__1olGuq__dateIcon, .HeroSection-module__1olGuq__dateChevron {
  color: #9ca3af;
  align-items: center;
  display: inline-flex;
}

.HeroSection-module__1olGuq__dateDisplayText {
  color: #9ca3af;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
  font-size: 1rem;
  overflow: hidden;
}

.HeroSection-module__1olGuq__dateDisplayText[data-filled="true"] {
  color: #111827;
}

.HeroSection-module__1olGuq__dateInputNative {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.HeroSection-module__1olGuq__startButton {
  color: #fff;
  cursor: pointer;
  background: #111827;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-width: 130px;
  height: 52px;
  padding: .75rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s;
  display: inline-flex;
}

.HeroSection-module__1olGuq__startButton:hover {
  transform: translateY(-1px);
}

.HeroSection-module__1olGuq__startButton:hover svg {
  transition: transform .3s;
  transform: translateX(3px);
}

.HeroSection-module__1olGuq__startButton:active {
  transform: scale(.97);
}

.HeroSection-module__1olGuq__startButton:disabled {
  cursor: not-allowed;
  box-shadow: none;
  background: linear-gradient(90deg, #cbd5e0, #a0aec0);
}

:is(html, body) {
  max-width: 100%;
  overflow-x: hidden;
}

.HeroSection-module__1olGuq__dwContainer {
  text-align: center;
  background: #fff;
  padding-top: 4%;
  font-family: Geist, sans-serif !important;
}

.HeroSection-module__1olGuq__dwTitle {
  text-align: center;
  max-width: 800px;
  margin: auto;
  font-size: 32px;
  font-weight: bold;
}

.HeroSection-module__1olGuq__dwSubtitle {
  color: #555;
  max-width: 700px;
  margin: 20px auto 40px;
  font-family: Plus Jakarta Sans;
  font-size: 18px;
  font-weight: bold;
}

.HeroSection-module__1olGuq__dwCarousel {
  justify-content: center;
  align-items: center;
  height: 300px;
  display: flex;
  position: relative;
  font-family: Geist, sans-serif !important;
}

.HeroSection-module__1olGuq__dwCard {
  opacity: 0;
  background: #dfdae4;
  border-radius: 12px;
  width: 300px;
  padding: 20px;
  transition: all .5s;
  position: absolute;
  transform: scale(.9);
  box-shadow: 0 5px 15px #0000001a;
}

.HeroSection-module__1olGuq__dwCard img {
  border-radius: 8px;
  width: 100%;
}

.HeroSection-module__1olGuq__dwCardActive {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}

.HeroSection-module__1olGuq__dwCardPrev {
  opacity: .5;
  z-index: 1;
  transform: translateX(-350px)scale(.9);
}

.HeroSection-module__1olGuq__dwCardNext {
  opacity: .5;
  z-index: 1;
  transform: translateX(350px)scale(.9);
}

.HeroSection-module__1olGuq__dwCardHidden {
  display: none;
}

.HeroSection-module__1olGuq__dwDots {
  margin-top: 20px;
}

.HeroSection-module__1olGuq__dot {
  cursor: pointer;
  background: #bbb;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  display: inline-block;
}

.HeroSection-module__1olGuq__dotActive {
  background: #000;
}

.HeroSection-module__1olGuq__slideIcon {
  object-fit: contain;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .HeroSection-module__1olGuq__dwTitle {
    max-width: 90%;
    font-size: 28px;
  }

  .HeroSection-module__1olGuq__dwSubtitle {
    max-width: 90%;
    font-size: 16px;
  }

  .HeroSection-module__1olGuq__dwCard {
    width: 260px;
    padding: 18px;
  }

  .HeroSection-module__1olGuq__dwCardPrev {
    transform: translateX(-280px)scale(.9);
  }

  .HeroSection-module__1olGuq__dwCardNext {
    transform: translateX(280px)scale(.9);
  }
}

@media (max-width: 768px) {
  .HeroSection-module__1olGuq__dwTitle {
    padding: 0 16px;
    font-size: 24px;
  }

  .HeroSection-module__1olGuq__dwSubtitle {
    padding: 0 16px;
    font-size: 15px;
  }

  .HeroSection-module__1olGuq__dwCarousel {
    flex-direction: column;
    height: auto;
  }

  .HeroSection-module__1olGuq__dwCard {
    width: 90%;
    margin: 0 auto;
    position: relative;
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .HeroSection-module__1olGuq__dwCardPrev, .HeroSection-module__1olGuq__dwCardNext, .HeroSection-module__1olGuq__dwCardHidden {
    display: none;
  }

  .HeroSection-module__1olGuq__dwDots {
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .HeroSection-module__1olGuq__dwTitle {
    font-size: 20px;
  }

  .HeroSection-module__1olGuq__dwSubtitle {
    font-size: 14px;
  }

  .HeroSection-module__1olGuq__dwCard {
    width: 85%;
    padding: 16px;
  }

  .HeroSection-module__1olGuq__slideIcon {
    width: 40px;
    height: 40px;
  }
}

.HeroSection-module__1olGuq__featureGrid {
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 0 1rem;
  display: flex;
}

.HeroSection-module__1olGuq__featureCard {
  background: #fff;
  border-radius: 16px;
  width: 260px;
  padding: 1.5rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px #0000000d;
}

.HeroSection-module__1olGuq__featureCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #00000014;
}

@media (max-width: 768px) {
  .HeroSection-module__1olGuq__heading {
    font-size: 2rem;
  }

  .HeroSection-module__1olGuq__subText {
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .HeroSection-module__1olGuq__dateInputWrapper {
    min-width: 100%;
  }

  .HeroSection-module__1olGuq__dateWrapper {
    width: 100%;
  }
}

/* [project]/src/app/components/DisclaimerModal.module.css [app-client] (css) */
.DisclaimerModal-module__u2ab-G__backdrop {
  z-index: 50;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #0009;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.DisclaimerModal-module__u2ab-G__modal {
  color: #09090b;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  padding: 24px;
  animation: .2s ease-out DisclaimerModal-module__u2ab-G__fadeIn;
  box-shadow: 0 20px 40px #0003;
}

@media (prefers-color-scheme: dark) {
  .DisclaimerModal-module__u2ab-G__modal {
    color: #fafafa;
    background: #09090b;
  }

  .DisclaimerModal-module__u2ab-G__content {
    color: #d4d4d8;
  }
}

.DisclaimerModal-module__u2ab-G__header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.DisclaimerModal-module__u2ab-G__title {
  font-size: 18px;
  font-weight: 600;
}

.DisclaimerModal-module__u2ab-G__close {
  cursor: pointer;
  opacity: .8;
  background: none;
  border: none;
  transition: opacity .15s;
}

.DisclaimerModal-module__u2ab-G__close:hover {
  opacity: .6;
}

.DisclaimerModal-module__u2ab-G__content {
  color: #52525b;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}

.DisclaimerModal-module__u2ab-G__actions {
  justify-content: flex-end;
  margin-top: 24px;
  display: flex;
}

.DisclaimerModal-module__u2ab-G__primaryButton {
  color: #fff;
  cursor: pointer;
  background: #4f46e5;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 500;
  transition: background .15s;
}

.DisclaimerModal-module__u2ab-G__primaryButton:hover {
  background: #4338ca;
}

@keyframes DisclaimerModal-module__u2ab-G__fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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