/* [project]/src/components/landing/LandingNavbar.module.css [app-client] (css) */
.LandingNavbar-module__m5_JCq__navWrapper {
  z-index: 200;
  pointer-events: none;
  justify-content: center;
  display: flex;
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
}

.LandingNavbar-module__m5_JCq__pill {
  pointer-events: all;
  border: 1px solid #0000;
  border-radius: 999px;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 960px;
  height: 60px;
  margin: 0 24px;
  padding: 0 8px;
  transition: background .25s, border-color .25s, box-shadow .25s, -webkit-backdrop-filter .25s, backdrop-filter .25s;
  display: flex;
}

.LandingNavbar-module__m5_JCq__pillDark {
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: #0a01188c;
  border-color: #ffffff14;
}

.LandingNavbar-module__m5_JCq__pillLight {
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: #fbf6eecc;
  border-color: #ddd0bc42;
}

.LandingNavbar-module__m5_JCq__pillScrolled.LandingNavbar-module__m5_JCq__pillDark {
  background: #0a0118d1;
  border-color: #ffffff1f;
  box-shadow: 0 8px 32px #00000073, inset 0 1px #ffffff0f;
}

.LandingNavbar-module__m5_JCq__pillScrolled.LandingNavbar-module__m5_JCq__pillLight {
  background: #fbf6eef0;
  border-color: #ddd0bc52;
  box-shadow: 0 8px 32px #05060a24;
}

.LandingNavbar-module__m5_JCq__logo {
  flex-shrink: 0;
  align-items: center;
  width: 140px;
  height: 40px;
  padding: 0 12px 0 8px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.LandingNavbar-module__m5_JCq__logoImg {
  object-fit: contain;
}

.LandingNavbar-module__m5_JCq__navLinks {
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 2px;
  display: flex;
}

.LandingNavbar-module__m5_JCq__navLink {
  font-family: var(--font-body);
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  border-radius: 999px;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background .15s, color .15s;
  display: inline-flex;
}

.LandingNavbar-module__m5_JCq__navLinkDark {
  color: #ffffffb3;
}

.LandingNavbar-module__m5_JCq__navLinkDark:hover {
  color: #fff;
  background: #ffffff12;
}

.LandingNavbar-module__m5_JCq__navLinkLight {
  color: #0d0f14;
}

.LandingNavbar-module__m5_JCq__navLinkLight:hover {
  color: #05060a;
  background: #05060a14;
}

.LandingNavbar-module__m5_JCq__navLinkDropdown {
  align-items: center;
  gap: 4px;
  display: inline-flex;
}

.LandingNavbar-module__m5_JCq__navLinkDisabled {
  cursor: default;
  opacity: .7;
}

.LandingNavbar-module__m5_JCq__comingSoon {
  font-family: var(--font-mono);
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 999px;
  align-items: center;
  margin-left: 2px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
}

.LandingNavbar-module__m5_JCq__comingSoonDark {
  color: #67e8f9;
  text-shadow: 0 0 12px #22d3ee66;
  background: #22d3ee2e;
  border: 1px solid #22d3ee59;
}

.LandingNavbar-module__m5_JCq__comingSoonLight {
  color: #5f938b;
  background: #63a89f1a;
  border: 1px solid #63a89f38;
  box-shadow: 0 0 10px #63a89f1a;
}

.LandingNavbar-module__m5_JCq__chevron {
  opacity: .6;
  transition: transform .2s;
}

.LandingNavbar-module__m5_JCq__chevronOpen {
  transform: rotate(180deg);
}

.LandingNavbar-module__m5_JCq__dropdownWrapper {
  position: relative;
}

.LandingNavbar-module__m5_JCq__dropdown {
  z-index: 300;
  border: 1px solid #0000;
  border-radius: 16px;
  flex-direction: column;
  gap: 2px;
  min-width: 220px;
  padding: 6px;
  animation: .15s LandingNavbar-module__m5_JCq__dropdownIn;
  display: flex;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}

@keyframes LandingNavbar-module__m5_JCq__dropdownIn {
  from {
    opacity: 0;
    transform: translateX(-50%)translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }
}

.LandingNavbar-module__m5_JCq__dropdownDark {
  -webkit-backdrop-filter: blur(20px);
  background: #0f0523f2;
  border-color: #ffffff1a;
  box-shadow: 0 16px 48px #0009, inset 0 1px #ffffff0f;
}

.LandingNavbar-module__m5_JCq__dropdownLight {
  background: #fbf6eefa;
  border-color: #05060a14;
  box-shadow: 0 16px 48px #05060a1f;
}

.LandingNavbar-module__m5_JCq__dropdownItem {
  border-radius: 10px;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  text-decoration: none;
  transition: background .12s;
  display: flex;
}

.LandingNavbar-module__m5_JCq__dropdownItemDark:hover {
  background: #ffffff12;
}

.LandingNavbar-module__m5_JCq__dropdownItemLight:hover {
  background: #0000000a;
}

.LandingNavbar-module__m5_JCq__dropdownItemLabel {
  font-size: 13.5px;
  font-weight: 500;
}

.LandingNavbar-module__m5_JCq__dropdownItemDark .LandingNavbar-module__m5_JCq__dropdownItemLabel {
  color: #fff;
}

.LandingNavbar-module__m5_JCq__dropdownItemLight .LandingNavbar-module__m5_JCq__dropdownItemLabel {
  color: #111827;
}

.LandingNavbar-module__m5_JCq__dropdownItemDesc {
  font-size: 12px;
}

.LandingNavbar-module__m5_JCq__dropdownItemDescDark {
  color: #ffffff73;
}

.LandingNavbar-module__m5_JCq__dropdownItemDescLight {
  color: #6b7280;
}

.LandingNavbar-module__m5_JCq__actions {
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
  padding: 0 8px 0 12px;
  display: flex;
}

.LandingNavbar-module__m5_JCq__iconBtn {
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 999px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  transition: background .15s, color .15s;
  display: flex;
}

.LandingNavbar-module__m5_JCq__iconBtnDark {
  color: #ffffffa6;
  background: #ffffff12;
}

.LandingNavbar-module__m5_JCq__iconBtnDark:hover {
  color: #fff;
  background: #ffffff21;
}

.LandingNavbar-module__m5_JCq__iconBtnLight {
  color: #05060a;
  background: #05060a14;
  border-color: #05060a33;
}

.LandingNavbar-module__m5_JCq__iconBtnLight:hover {
  color: #05060a;
  background: #05060a1f;
}

.LandingNavbar-module__m5_JCq__loginBtn {
  font-family: var(--font-body);
  letter-spacing: -.01em;
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
  display: inline-flex;
}

.LandingNavbar-module__m5_JCq__loginBtnDark {
  color: #fff;
  background: #ffffff1a;
  border: 1px solid #ffffff26;
}

.LandingNavbar-module__m5_JCq__loginBtnDark:hover {
  background: #ffffff2e;
  border-color: #ffffff40;
}

.LandingNavbar-module__m5_JCq__loginBtnLight {
  color: #fbf6ee;
  background: #05060a;
  border: 1px solid #0000;
  box-shadow: 0 12px 30px #05060a66;
}

.LandingNavbar-module__m5_JCq__loginBtnLight:hover {
  background: #0d0f14;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .LandingNavbar-module__m5_JCq__navLinks {
    display: none;
  }

  .LandingNavbar-module__m5_JCq__pill {
    justify-content: space-between;
  }
}

/* [project]/src/components/landing/HeroSection.module.css [app-client] (css) */
.HeroSection-module__xogimq__hero {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.HeroSection-module__xogimq__heroDark {
  background: #0a0118;
}

.HeroSection-module__xogimq__heroLight {
  background: #f5efe6;
}

.HeroSection-module__xogimq__videoWrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.HeroSection-module__xogimq__video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: filter .35s, transform .35s;
  position: absolute;
  inset: 0;
  transform: scale(1.03);
}

.HeroSection-module__xogimq__heroDark .HeroSection-module__xogimq__video {
  filter: blur(5px) brightness(.62) saturate(.76) contrast(.82);
}

.HeroSection-module__xogimq__heroLight .HeroSection-module__xogimq__video {
  filter: blur(6px) brightness(.94) saturate(.68) contrast(.74);
}

.HeroSection-module__xogimq__gradientOverlay {
  z-index: 2;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.HeroSection-module__xogimq__gradientOverlay:before, .HeroSection-module__xogimq__gradientOverlay:after {
  content: "";
  position: absolute;
  inset: 0;
}

.HeroSection-module__xogimq__gradientOverlayDark {
  background: linear-gradient(#06030e2e 0%, #06030e14 30%, #06030e38 62%, #06030eb8 100%), linear-gradient(90deg, #0704128f 0%, #07041252 32%, #07041214 58%, #0704120a 100%);
}

.HeroSection-module__xogimq__gradientOverlayDark:before {
  background: radial-gradient(circle at 22% 76%, #0a0118ad 0%, #0a01187a 28%, #0a01182e 52%, #0a011800 74%);
}

.HeroSection-module__xogimq__gradientOverlayDark:after {
  background: linear-gradient(0deg, #0a01183d 0%, #0a01180f 24%, #0a011800 48%);
}

.HeroSection-module__xogimq__gradientOverlayLight {
  background: linear-gradient(#f5efe638 0%, #f5efe624 32%, #f5efe661 64%, #f5efe6e0 100%), linear-gradient(90deg, #f6f1e9b8 0%, #f6f1e985 34%, #f6f1e92e 58%, #f6f1e90f 100%);
}

.HeroSection-module__xogimq__gradientOverlayLight:before {
  background: radial-gradient(circle at 20% 78%, #f6f0e7d1 0%, #f6f0e79e 26%, #f6f0e72e 48%, #f6f0e700 74%);
}

.HeroSection-module__xogimq__gradientOverlayLight:after {
  background: linear-gradient(0deg, #f5efe657 0%, #f5efe614 26%, #f5efe600 52%);
}

.HeroSection-module__xogimq__content {
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.HeroSection-module__xogimq__textContainer {
  isolation: isolate;
  border-radius: 24px;
  max-width: 680px;
  padding: 40px 48px;
  position: relative;
}

.HeroSection-module__xogimq__textContainer:before {
  content: "";
  z-index: -2;
  border-radius: 40px;
  position: absolute;
  inset: 0;
}

.HeroSection-module__xogimq__textContainer:after {
  content: "";
  z-index: -1;
  border-radius: 32px;
  position: absolute;
  inset: 0;
}

.HeroSection-module__xogimq__heroDark .HeroSection-module__xogimq__textContainer {
  box-shadow: none;
  background: none;
  border: none;
}

.HeroSection-module__xogimq__heroDark .HeroSection-module__xogimq__textContainer:before {
  filter: blur(38px);
  z-index: -1;
  opacity: .74;
  background: radial-gradient(circle at 28% 45%, #0a011885 0%, #0a01185c 34%, #0a01181a 58%, #0a011800 76%);
}

.HeroSection-module__xogimq__heroDark .HeroSection-module__xogimq__textContainer:after {
  background: linear-gradient(135deg, #0a01181a 0%, #0a01180a 32%, #0a011800 72%);
}

.HeroSection-module__xogimq__heroLight .HeroSection-module__xogimq__textContainer {
  box-shadow: none;
  background: none;
  border: none;
}

.HeroSection-module__xogimq__heroLight .HeroSection-module__xogimq__textContainer:before {
  filter: blur(48px);
  opacity: .74;
  background: radial-gradient(circle at 30% 44%, #f9f4edc7 0%, #f9f4ed94 36%, #f9f4ed29 62%, #f9f4ed00 80%);
}

.HeroSection-module__xogimq__heroLight .HeroSection-module__xogimq__textContainer:after {
  background: linear-gradient(135deg, #ffffff2e 0%, #ffffff0f 30%, #fff0 72%);
}

.HeroSection-module__xogimq__headline {
  font-family: var(--font-display);
  letter-spacing: -.03em;
  text-shadow: 0 4px 30px #0000004d, 0 2px 10px #0003;
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
}

.HeroSection-module__xogimq__headlineDark {
  color: #fff;
}

.HeroSection-module__xogimq__headlineLight {
  color: #1a1a1a;
  text-shadow: none;
}

.HeroSection-module__xogimq__headlineAccent {
  font-family: var(--font-display);
  background: linear-gradient(90deg, #5f938b 0%, #416e68 50%, #5f938b 100%);
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  white-space: nowrap;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 500;
}

.HeroSection-module__xogimq__heroDark .HeroSection-module__xogimq__headlineAccent {
  background: linear-gradient(90deg, #67e8f9 0%, #22d3ee 50%, #67e8f9 100%);
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px #22d3ee59);
  -webkit-background-clip: text;
  background-clip: text;
}

.HeroSection-module__xogimq__subheadline {
  font-family: var(--font-body);
  max-width: 520px;
  margin: 0 0 40px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.6;
}

.HeroSection-module__xogimq__subheadlineDark {
  color: #ffffffe6;
  text-shadow: 0 2px 20px #0000004d;
}

.HeroSection-module__xogimq__subheadlineLight {
  color: #1a1a1ab3;
}

.HeroSection-module__xogimq__ctaRow {
  flex-wrap: wrap;
  gap: 16px;
  display: flex;
}

.HeroSection-module__xogimq__ctaPrimary {
  font-family: var(--font-body);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.HeroSection-module__xogimq__ctaPrimaryDark {
  color: #fff;
  background: #5f938b;
}

.HeroSection-module__xogimq__ctaPrimaryDark:hover {
  background: #416e68;
  transform: translateY(-1px);
}

.HeroSection-module__xogimq__ctaPrimaryLight {
  color: #fff;
  background: #5f938b;
}

.HeroSection-module__xogimq__ctaPrimaryLight:hover {
  background: #416e68;
  transform: translateY(-1px);
}

.HeroSection-module__xogimq__ctaSecondary {
  border: 1px solid;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.HeroSection-module__xogimq__ctaSecondaryDark {
  color: #ffffffe6;
  background: #ffffff0d;
  border-color: #fff3;
}

.HeroSection-module__xogimq__ctaSecondaryDark:hover {
  background: #ffffff1a;
  border-color: #ffffff59;
}

.HeroSection-module__xogimq__ctaSecondaryLight {
  color: #1a1a1a;
  background: #fff9;
  border-color: #1a1a1a26;
}

.HeroSection-module__xogimq__ctaSecondaryLight:hover {
  background: #fffc;
  border-color: #1a1a1a40;
}

.HeroSection-module__xogimq__ambientGlow {
  z-index: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.HeroSection-module__xogimq__glowOrb {
  filter: blur(100px);
  opacity: .4;
  border-radius: 50%;
  position: absolute;
}

.HeroSection-module__xogimq__glowOrb1 {
  width: 600px;
  height: 600px;
  animation: 12s ease-in-out infinite alternate HeroSection-module__xogimq__driftA;
  top: -200px;
  left: -100px;
}

.HeroSection-module__xogimq__glowOrb1Dark {
  background: radial-gradient(circle, #3b0764 0%, #0000 70%);
}

.HeroSection-module__xogimq__glowOrb1Light {
  opacity: .3;
  background: radial-gradient(circle, #dff3ec99 0%, #0000 70%);
}

.HeroSection-module__xogimq__glowOrb2 {
  width: 500px;
  height: 500px;
  animation: 14s ease-in-out infinite alternate HeroSection-module__xogimq__driftB;
  bottom: -150px;
  right: -100px;
}

.HeroSection-module__xogimq__glowOrb2Dark {
  background: radial-gradient(circle, #0e7490 0%, #0000 70%);
}

.HeroSection-module__xogimq__glowOrb2Light {
  opacity: .25;
  background: radial-gradient(circle, #ddd0bc80 0%, #0000 70%);
}

@keyframes HeroSection-module__xogimq__driftA {
  from {
    transform: translate(0)scale(1);
  }

  to {
    transform: translate(30px, 20px)scale(1.05);
  }
}

@keyframes HeroSection-module__xogimq__driftB {
  from {
    transform: translate(0)scale(1);
  }

  to {
    transform: translate(-20px, 30px)scale(1.03);
  }
}

@keyframes HeroSection-module__xogimq__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.HeroSection-module__xogimq__fadeInUp {
  animation: .9s cubic-bezier(.16, 1, .3, 1) forwards HeroSection-module__xogimq__fadeInUp;
}

@media (max-width: 768px) {
  .HeroSection-module__xogimq__content {
    padding: 0 20px 60px;
  }

  .HeroSection-module__xogimq__textContainer {
    padding: 32px 24px;
  }

  .HeroSection-module__xogimq__headline {
    text-shadow: 0 3px 20px #0000004d, 0 1px 6px #0003;
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .HeroSection-module__xogimq__subheadline {
    margin-bottom: 32px;
    font-size: 1rem;
  }

  .HeroSection-module__xogimq__ctaRow {
    flex-direction: column;
    gap: 12px;
  }

  .HeroSection-module__xogimq__ctaPrimary, .HeroSection-module__xogimq__ctaSecondary {
    width: 100%;
    padding: 14px 24px;
  }
}

/* [project]/src/components/landing/AssociateShowcaseSection.module.css [app-client] (css) */
.AssociateShowcaseSection-module__NDj-bq__section {
  padding: 6rem 0;
  overflow: hidden;
}

.AssociateShowcaseSection-module__NDj-bq__sectionDark {
  background-color: #0a0118;
}

.AssociateShowcaseSection-module__NDj-bq__sectionLight {
  background-color: #f5efe6;
}

.AssociateShowcaseSection-module__NDj-bq__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.AssociateShowcaseSection-module__NDj-bq__header {
  text-align: center;
  margin-bottom: 2rem;
}

.AssociateShowcaseSection-module__NDj-bq__title {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 300;
}

.AssociateShowcaseSection-module__NDj-bq__titleDark {
  color: #fff;
}

.AssociateShowcaseSection-module__NDj-bq__titleLight {
  color: #1a1a1a;
}

.AssociateShowcaseSection-module__NDj-bq__subtitle {
  font-family: var(--font-body);
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 400;
}

.AssociateShowcaseSection-module__NDj-bq__subtitleDark {
  color: #fff9;
}

.AssociateShowcaseSection-module__NDj-bq__subtitleLight {
  color: #1a1a1a99;
}

.AssociateShowcaseSection-module__NDj-bq__professionSelector {
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  display: flex;
}

.AssociateShowcaseSection-module__NDj-bq__professionPill {
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  background: none;
  border: 1.5px solid;
  border-radius: 100px;
  padding: .625rem 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  transition: all .25s;
}

.AssociateShowcaseSection-module__NDj-bq__professionPillDark {
  color: #ffffffb3;
  border-color: #ffffff26;
}

.AssociateShowcaseSection-module__NDj-bq__professionPillDark:hover {
  color: #fffffff2;
  background: #ffffff0d;
  border-color: #ffffff59;
}

.AssociateShowcaseSection-module__NDj-bq__professionPillLight {
  color: #1a1a1aa6;
  border-color: #0000001f;
}

.AssociateShowcaseSection-module__NDj-bq__professionPillLight:hover {
  color: #1a1a1af2;
  background: #00000008;
  border-color: #00000040;
}

.AssociateShowcaseSection-module__NDj-bq__professionPillActive {
  font-weight: 600;
  color: #6ca79d !important;
  background: #6ca79d1f !important;
  border-color: #6ca79d !important;
}

.AssociateShowcaseSection-module__NDj-bq__content {
  justify-content: center;
  align-items: center;
  gap: 2rem;
  display: flex;
}

.AssociateShowcaseSection-module__NDj-bq__associateContainer {
  flex-shrink: 0;
  width: 480px;
  min-height: 600px;
}

.AssociateShowcaseSection-module__NDj-bq__questionsPanel {
  flex-shrink: 0;
  width: 300px;
}

.AssociateShowcaseSection-module__NDj-bq__questionsTitle {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: .75rem;
  font-weight: 600;
}

.AssociateShowcaseSection-module__NDj-bq__questionsTitleDark {
  color: #ffffffb3;
}

.AssociateShowcaseSection-module__NDj-bq__questionsTitleLight {
  color: #1a1a1ab3;
}

.AssociateShowcaseSection-module__NDj-bq__questionsList {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.AssociateShowcaseSection-module__NDj-bq__questionButton {
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
  background: none;
  border: 1px solid;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  padding: .875rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.AssociateShowcaseSection-module__NDj-bq__questionButton:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
}

.AssociateShowcaseSection-module__NDj-bq__questionButtonDark {
  color: #ffffffd9;
  border-color: #ffffff1a;
}

.AssociateShowcaseSection-module__NDj-bq__questionButtonDark:hover:not(:disabled) {
  background: #ffffff0d;
  border-color: #fff3;
  transform: translateX(4px);
}

.AssociateShowcaseSection-module__NDj-bq__questionButtonLight {
  color: #1a1a1ad9;
  border-color: #00000014;
}

.AssociateShowcaseSection-module__NDj-bq__questionButtonLight:hover:not(:disabled) {
  background: #00000008;
  border-color: #00000026;
  transform: translateX(4px);
}

.AssociateShowcaseSection-module__NDj-bq__questionButtonActive {
  background: #6ca79d1a !important;
  border-color: #6ca79d !important;
}

.AssociateShowcaseSection-module__NDj-bq__questionText {
  flex: 1;
  line-height: 1.4;
}

.AssociateShowcaseSection-module__NDj-bq__questionArrow {
  opacity: .5;
  flex-shrink: 0;
  margin-left: .75rem;
  transition: opacity .2s;
}

.AssociateShowcaseSection-module__NDj-bq__questionButton:hover:not(:disabled) .AssociateShowcaseSection-module__NDj-bq__questionArrow {
  opacity: 1;
}

.AssociateShowcaseSection-module__NDj-bq__demoPanel {
  color: #1e293b;
}

.AssociateShowcaseSection-module__NDj-bq__demoEmptyState {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  height: 100%;
  padding: 2rem;
  display: flex;
}

.AssociateShowcaseSection-module__NDj-bq__demoEmptyTitle {
  font-family: var(--font-body);
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
}

.AssociateShowcaseSection-module__NDj-bq__demoEmptyTitleDark, .AssociateShowcaseSection-module__NDj-bq__demoEmptyTitleLight {
  color: #334155;
}

.AssociateShowcaseSection-module__NDj-bq__demoEmptyHint {
  font-family: var(--font-body);
  max-width: 280px;
  margin: 0;
  font-size: .825rem;
  line-height: 1.5;
}

.AssociateShowcaseSection-module__NDj-bq__demoEmptyHintDark, .AssociateShowcaseSection-module__NDj-bq__demoEmptyHintLight {
  color: #64748b;
}

@media (max-width: 1024px) {
  .AssociateShowcaseSection-module__NDj-bq__content {
    flex-direction: column;
    align-items: center;
  }

  .AssociateShowcaseSection-module__NDj-bq__associateContainer {
    width: 100%;
    max-width: 480px;
  }

  .AssociateShowcaseSection-module__NDj-bq__questionsPanel {
    order: -1;
    width: 100%;
    max-width: 480px;
  }

  .AssociateShowcaseSection-module__NDj-bq__questionsList {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }

  .AssociateShowcaseSection-module__NDj-bq__professionSelector {
    gap: .5rem;
  }

  .AssociateShowcaseSection-module__NDj-bq__professionPill {
    padding: .5rem 1.25rem;
    font-size: .85rem;
  }
}

@media (max-width: 640px) {
  .AssociateShowcaseSection-module__NDj-bq__title {
    font-size: 2rem;
  }

  .AssociateShowcaseSection-module__NDj-bq__questionsList {
    grid-template-columns: 1fr;
  }

  .AssociateShowcaseSection-module__NDj-bq__container {
    padding: 0 1rem;
  }

  .AssociateShowcaseSection-module__NDj-bq__professionSelector {
    gap: .4rem;
  }

  .AssociateShowcaseSection-module__NDj-bq__professionPill {
    padding: .45rem 1rem;
    font-size: .8rem;
  }
}

/*# sourceMappingURL=src_components_landing_1phvof-._.css.map*/